Home
last modified time | relevance | path

Searched refs:tex_templ (Results 1 – 3 of 3) sorted by relevance

/external/mesa3d/src/gallium/state_trackers/xvmc/
Dsubpicture.c196 struct pipe_resource tex_templ, *tex; in XvMCCreateSubpicture() local
225 memset(&tex_templ, 0, sizeof(tex_templ)); in XvMCCreateSubpicture()
226 tex_templ.target = PIPE_TEXTURE_2D; in XvMCCreateSubpicture()
227 tex_templ.format = XvIDToPipe(xvimage_id); in XvMCCreateSubpicture()
228 tex_templ.last_level = 0; in XvMCCreateSubpicture()
233 tex_templ.width0 = width; in XvMCCreateSubpicture()
234 tex_templ.height0 = height; in XvMCCreateSubpicture()
237 tex_templ.width0 = util_next_power_of_two(width); in XvMCCreateSubpicture()
238 tex_templ.height0 = util_next_power_of_two(height); in XvMCCreateSubpicture()
240 tex_templ.depth0 = 1; in XvMCCreateSubpicture()
[all …]
/external/mesa3d/src/gallium/auxiliary/hud/
Dfont.c385 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/
Dvl_idct.c679 struct pipe_resource tex_templ, *matrix; in vl_idct_upload_matrix() local
695 memset(&tex_templ, 0, sizeof(tex_templ)); in vl_idct_upload_matrix()
696 tex_templ.target = PIPE_TEXTURE_2D; in vl_idct_upload_matrix()
697 tex_templ.format = PIPE_FORMAT_R32G32B32A32_FLOAT; in vl_idct_upload_matrix()
698 tex_templ.last_level = 0; in vl_idct_upload_matrix()
699 tex_templ.width0 = 2; in vl_idct_upload_matrix()
700 tex_templ.height0 = 8; in vl_idct_upload_matrix()
701 tex_templ.depth0 = 1; in vl_idct_upload_matrix()
702 tex_templ.array_size = 1; in vl_idct_upload_matrix()
703 tex_templ.usage = PIPE_USAGE_IMMUTABLE; in vl_idct_upload_matrix()
[all …]