OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tex_templ
(Results
1 - 2
of
2
) sorted by null
/external/mesa3d/src/gallium/state_trackers/xvmc/
subpicture.c
200
struct pipe_resource
tex_templ
, *tex;
local
229
memset(&
tex_templ
, 0, sizeof(
tex_templ
));
230
tex_templ
.target = PIPE_TEXTURE_2D;
231
tex_templ
.format = XvIDToPipe(xvimage_id);
232
tex_templ
.last_level = 0;
236
tex_templ
.width0 = width;
237
tex_templ
.height0 = height;
240
tex_templ
.width0 = util_next_power_of_two(width);
241
tex_templ
.height0 = util_next_power_of_two(height)
[
all
...]
/external/mesa3d/src/gallium/auxiliary/vl/
vl_idct.c
684
struct pipe_resource
tex_templ
, *matrix;
local
700
memset(&
tex_templ
, 0, sizeof(
tex_templ
));
701
tex_templ
.target = PIPE_TEXTURE_2D;
702
tex_templ
.format = PIPE_FORMAT_R32G32B32A32_FLOAT;
703
tex_templ
.last_level = 0;
704
tex_templ
.width0 = 2;
705
tex_templ
.height0 = 8;
706
tex_templ
.depth0 = 1;
707
tex_templ
.array_size = 1
[
all
...]
Completed in 173 milliseconds