Lines Matching refs:stored
182 setup->fs.stored = NULL;
733 * adjust last_layer (stored as depth) plus the mip level offsets
895 * Just like stored scissor rects need inclusive coords.
1019 * adjust last_layer (stored as depth) plus the mip level
1043 * the size (stored as width) plus the base pointer.
1172 boolean new_scene = (setup->fs.stored == NULL);
1184 struct lp_jit_viewport *stored;
1186 stored = (struct lp_jit_viewport *)
1189 if (!stored) {
1194 memcpy(stored, setup->viewports, sizeof setup->viewports);
1196 setup->fs.current.jit_context.viewports = stored;
1205 uint8_t *stored =
1208 if (!stored) {
1214 float *fstored = (float *) (stored + 4 * 16);
1223 stored[i*16 + j] = c;
1227 setup->blend_color.stored = stored;
1228 setup->fs.current.jit_context.u8_blend_color = stored;
1268 void *stored = lp_scene_alloc(scene, current_size);
1269 if (!stored) {
1274 memcpy(stored,
1278 setup->constants[i].stored_data = stored;
1322 if (!setup->fs.stored ||
1323 memcmp(setup->fs.stored,
1326 /* The fs state that's been stored in the scene is different from
1330 struct lp_rast_state *stored =
1331 (struct lp_rast_state *) lp_scene_alloc(scene, sizeof *stored);
1332 if (!stored) {
1337 memcpy(&stored->jit_context,
1341 stored->jit_context.aniso_filter_table =
1343 stored->variant = setup->fs.current.variant;
1350 setup->fs.stored = stored;
1435 assert(setup->fs.stored);