Home | History | Annotate | Download | only in llvmpipe

Lines Matching refs:stored

125    setup->fs.stored = NULL;
778 boolean new_scene = (setup->fs.stored == NULL);
784 uint8_t *stored;
787 stored = lp_scene_alloc_aligned(scene, 4 * 16, 16);
788 if (!stored) {
797 stored[i*16 + j] = c;
800 setup->blend_color.stored = stored;
801 setup->fs.current.jit_context.blend_color = setup->blend_color.stored;
819 void *stored;
821 stored = lp_scene_alloc(scene, current_size);
822 if (!stored) {
827 memcpy(stored,
831 setup->constants.stored_data = stored;
845 if (!setup->fs.stored ||
846 memcmp(setup->fs.stored,
850 struct lp_rast_state *stored;
853 /* The fs state that's been stored in the scene is different from
857 stored = (struct lp_rast_state *) lp_scene_alloc(scene, sizeof *stored);
858 if (!stored) {
863 memcpy(stored,
866 setup->fs.stored = stored;
894 assert(setup->fs.stored);