| /xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/ |
| H A D | st_program.c | 278 delete_fp_variant(struct st_context *st, struct st_fp_variant *fpv) argument 280 if (fpv->driver_shader) { 281 if (st->has_shareable_shaders || fpv->key.st == st) { 282 cso_delete_fragment_shader(st->cso_context, fpv->driver_shader); 284 st_save_zombie_shader(fpv->key.st, PIPE_SHADER_FRAGMENT, 285 fpv->driver_shader); 289 free(fpv); 299 struct st_fp_variant *fpv; local in function:st_release_fp_variants 301 for (fpv = stfp->variants; fpv; ) { 1362 struct st_fp_variant *fpv; local in function:st_get_fp_variant 1894 struct st_fp_variant *fpv, **prevPtr = &stfp->variants; local in function:destroy_program_variants [all...] |
| H A D | st_cb_drawpixels.c | 742 struct st_fp_variant *fpv, 846 if (fpv) { 849 uint num = MAX3(fpv->drawpix_sampler + 1, 850 fpv->pixelmap_sampler + 1, 857 samplers[fpv->drawpix_sampler] = &sampler; 859 samplers[fpv->pixelmap_sampler] = &sampler; 871 if (fpv) { 874 uint num = MAX3(fpv->drawpix_sampler + 1, 875 fpv->pixelmap_sampler + 1, 881 sampler_views[fpv 735 draw_textured_quad(struct gl_context * ctx,GLint x,GLint y,GLfloat z,GLsizei width,GLsizei height,GLfloat zoomX,GLfloat zoomY,struct pipe_sampler_view ** sv,int num_sampler_view,void * driver_vp,void * driver_fp,struct st_fp_variant * fpv,const GLfloat * color,GLboolean invertTex,GLboolean write_depth,GLboolean write_stencil) argument 1126 struct st_fp_variant *fpv; local in function:get_color_fp_variant 1158 struct st_fp_variant *fpv; local in function:get_color_index_fp_variant 1280 struct st_fp_variant *fpv = NULL; local in function:st_DrawPixels 1648 struct st_fp_variant *fpv = NULL; local in function:st_CopyPixels [all...] |
| H A D | st_cb_bitmap.c | 174 struct st_fp_variant *fpv; local in function:setup_render_state 183 fpv = st_get_fp_variant(st, st->fp, &key); 215 cso_set_fragment_shader_handle(cso, fpv->driver_shader); 228 uint num = MAX2(fpv->bitmap_sampler + 1, 235 samplers[fpv->bitmap_sampler] = &st->bitmap.atlas_sampler; 237 samplers[fpv->bitmap_sampler] = &st->bitmap.sampler; 245 uint num = MAX2(fpv->bitmap_sampler + 1, 249 sampler_views[fpv->bitmap_sampler] = sv;
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/ |
| H A D | st_cb_drawpixels.c | 742 struct st_fp_variant *fpv, 847 if (fpv) { 850 uint num = MAX3(fpv->drawpix_sampler + 1, 851 fpv->pixelmap_sampler + 1, 858 samplers[fpv->drawpix_sampler] = &sampler; 860 samplers[fpv->pixelmap_sampler] = &sampler; 875 if (fpv) { 882 num_views = MAX3(fpv->drawpix_sampler + 1, fpv->pixelmap_sampler + 1, 885 sampler_views[fpv 735 draw_textured_quad(struct gl_context * ctx,GLint x,GLint y,GLfloat z,GLsizei width,GLsizei height,GLfloat zoomX,GLfloat zoomY,struct pipe_sampler_view ** sv,int num_sampler_view,void * driver_vp,void * driver_fp,struct st_fp_variant * fpv,const GLfloat * color,GLboolean invertTex,GLboolean write_depth,GLboolean write_stencil) argument 1138 struct st_fp_variant *fpv; local in function:get_color_fp_variant 1171 struct st_fp_variant *fpv; local in function:get_color_index_fp_variant 1320 struct st_fp_variant *fpv = NULL; local in function:st_DrawPixels 1720 struct st_fp_variant *fpv = NULL; local in function:st_CopyPixels [all...] |
| H A D | st_cb_bitmap.c | 175 struct st_fp_variant *fpv; local in function:setup_render_state 185 fpv = st_get_fp_variant(st, st->fp, &key); 215 cso_set_fragment_shader_handle(cso, fpv->base.driver_shader); 228 uint num = MAX2(fpv->bitmap_sampler + 1, 235 samplers[fpv->bitmap_sampler] = &st->bitmap.atlas_sampler; 237 samplers[fpv->bitmap_sampler] = &st->bitmap.sampler; 249 num_views = MAX2(fpv->bitmap_sampler + 1, num_views); 250 sampler_views[fpv->bitmap_sampler] = sv;
|
| H A D | st_program.c | 1662 struct st_fp_variant *fpv; local in function:st_get_fp_variant 1665 for (fpv = st_fp_variant(stfp->variants); fpv; 1666 fpv = st_fp_variant(fpv->base.next)) { 1667 if (memcmp(&fpv->key, key, sizeof(*key)) == 0) { 1672 if (!fpv) { 1695 fpv = st_create_fp_variant(st, stfp, key); 1696 if (fpv) { 1697 fpv [all...] |