Searched refs:tex_templ (Results 1 – 3 of 3) sorted by relevance
/external/mesa3d/src/gallium/frontends/xvmc/ |
D | subpicture.c | 267 struct pipe_resource tex_templ, *tex; in XvMCCreateSubpicture() local 297 memset(&tex_templ, 0, sizeof(tex_templ)); in XvMCCreateSubpicture() 298 tex_templ.target = PIPE_TEXTURE_2D; in XvMCCreateSubpicture() 299 tex_templ.format = XvIDToPipe(pipe->screen, xvimage_id); in XvMCCreateSubpicture() 300 tex_templ.last_level = 0; in XvMCCreateSubpicture() 305 tex_templ.width0 = width; in XvMCCreateSubpicture() 306 tex_templ.height0 = height; in XvMCCreateSubpicture() 309 tex_templ.width0 = util_next_power_of_two(width); in XvMCCreateSubpicture() 310 tex_templ.height0 = util_next_power_of_two(height); in XvMCCreateSubpicture() 312 tex_templ.depth0 = 1; in XvMCCreateSubpicture() [all …]
|
/external/mesa3d/src/gallium/auxiliary/hud/ |
D | font.c | 385 struct pipe_resource tex_templ, *tex; in util_font_create_fixed_8x13() local 405 memset(&tex_templ, 0, sizeof(tex_templ)); in util_font_create_fixed_8x13() 406 tex_templ.target = PIPE_TEXTURE_RECT; in util_font_create_fixed_8x13() 407 tex_templ.format = tex_format; in util_font_create_fixed_8x13() 408 tex_templ.width0 = 128; in util_font_create_fixed_8x13() 409 tex_templ.height0 = 256; in util_font_create_fixed_8x13() 410 tex_templ.depth0 = 1; in util_font_create_fixed_8x13() 411 tex_templ.array_size = 1; in util_font_create_fixed_8x13() 412 tex_templ.usage = PIPE_USAGE_DEFAULT; in util_font_create_fixed_8x13() 413 tex_templ.bind = PIPE_BIND_SAMPLER_VIEW; in util_font_create_fixed_8x13() [all …]
|
/external/mesa3d/src/gallium/auxiliary/vl/ |
D | vl_idct.c | 681 struct pipe_resource tex_templ, *matrix; in vl_idct_upload_matrix() local 697 memset(&tex_templ, 0, sizeof(tex_templ)); in vl_idct_upload_matrix() 698 tex_templ.target = PIPE_TEXTURE_2D; in vl_idct_upload_matrix() 699 tex_templ.format = PIPE_FORMAT_R32G32B32A32_FLOAT; in vl_idct_upload_matrix() 700 tex_templ.last_level = 0; in vl_idct_upload_matrix() 701 tex_templ.width0 = 2; in vl_idct_upload_matrix() 702 tex_templ.height0 = 8; in vl_idct_upload_matrix() 703 tex_templ.depth0 = 1; in vl_idct_upload_matrix() 704 tex_templ.array_size = 1; in vl_idct_upload_matrix() 705 tex_templ.usage = PIPE_USAGE_IMMUTABLE; in vl_idct_upload_matrix() [all …]
|