HomeSort by relevance Sort by last modified time
    Searched refs:res_tmpl (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vdpau/
bitmap.c 46 struct pipe_resource res_tmpl, *res; local
71 memset(&res_tmpl, 0, sizeof(res_tmpl));
72 res_tmpl.target = PIPE_TEXTURE_2D;
73 res_tmpl.format = FormatRGBAToPipe(rgba_format);
74 res_tmpl.width0 = width;
75 res_tmpl.height0 = height;
76 res_tmpl.depth0 = 1;
77 res_tmpl.array_size = 1;
78 res_tmpl.bind = PIPE_BIND_SAMPLER_VIEW | PIPE_BIND_RENDER_TARGET
    [all...]
output.c 50 struct pipe_resource res_tmpl, *res; local
73 memset(&res_tmpl, 0, sizeof(res_tmpl));
75 res_tmpl.target = PIPE_TEXTURE_2D;
76 res_tmpl.format = FormatRGBAToPipe(rgba_format);
77 res_tmpl.width0 = width;
78 res_tmpl.height0 = height;
79 res_tmpl.depth0 = 1;
80 res_tmpl.array_size = 1;
81 res_tmpl.bind = PIPE_BIND_SAMPLER_VIEW | PIPE_BIND_RENDER_TARGET
288 struct pipe_resource *res, res_tmpl; local
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vdpau/
bitmap.c 46 struct pipe_resource res_tmpl, *res; local
71 memset(&res_tmpl, 0, sizeof(res_tmpl));
72 res_tmpl.target = PIPE_TEXTURE_2D;
73 res_tmpl.format = FormatRGBAToPipe(rgba_format);
74 res_tmpl.width0 = width;
75 res_tmpl.height0 = height;
76 res_tmpl.depth0 = 1;
77 res_tmpl.array_size = 1;
78 res_tmpl.bind = PIPE_BIND_SAMPLER_VIEW | PIPE_BIND_RENDER_TARGET
    [all...]
output.c 50 struct pipe_resource res_tmpl, *res; local
73 memset(&res_tmpl, 0, sizeof(res_tmpl));
75 res_tmpl.target = PIPE_TEXTURE_2D;
76 res_tmpl.format = FormatRGBAToPipe(rgba_format);
77 res_tmpl.width0 = width;
78 res_tmpl.height0 = height;
79 res_tmpl.depth0 = 1;
80 res_tmpl.array_size = 1;
81 res_tmpl.bind = PIPE_BIND_SAMPLER_VIEW | PIPE_BIND_RENDER_TARGET
288 struct pipe_resource *res, res_tmpl; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
vl_zscan.c 351 struct pipe_resource res_tmpl, *res; local
370 memset(&res_tmpl, 0, sizeof(res_tmpl));
371 res_tmpl.target = PIPE_TEXTURE_2D;
372 res_tmpl.format = PIPE_FORMAT_R32_FLOAT;
373 res_tmpl.width0 = VL_BLOCK_WIDTH * blocks_per_line;
374 res_tmpl.height0 = VL_BLOCK_HEIGHT;
375 res_tmpl.depth0 = 1;
376 res_tmpl.array_size = 1;
377 res_tmpl.usage = PIPE_USAGE_IMMUTABLE
471 struct pipe_resource res_tmpl, *res; local
    [all...]
vl_video_buffer.c 439 struct pipe_resource res_tmpl; local
447 vl_vide_buffer_template(&res_tmpl, tmpl, resource_formats[0], depth, usage, 0);
448 resources[0] = pipe->screen->resource_create(pipe->screen, &res_tmpl);
457 vl_vide_buffer_template(&res_tmpl, tmpl, resource_formats[1], depth, usage, 1);
458 resources[1] = pipe->screen->resource_create(pipe->screen, &res_tmpl);
465 vl_vide_buffer_template(&res_tmpl, tmpl, resource_formats[2], depth, usage, 2);
466 resources[2] = pipe->screen->resource_create(pipe->screen, &res_tmpl);
vl_mpeg12_decoder.c 88 struct pipe_resource *res, res_tmpl; local
96 memset(&res_tmpl, 0, sizeof(res_tmpl));
97 res_tmpl.target = PIPE_TEXTURE_2D;
98 res_tmpl.format = dec->zscan_source_format;
99 res_tmpl.width0 = dec->blocks_per_line * VL_BLOCK_WIDTH * VL_BLOCK_HEIGHT;
100 res_tmpl.height0 = align(dec->num_blocks, dec->blocks_per_line) / dec->blocks_per_line;
101 res_tmpl.depth0 = 1;
102 res_tmpl.array_size = 1;
103 res_tmpl.usage = PIPE_USAGE_STREAM
    [all...]
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_zscan.c 351 struct pipe_resource res_tmpl, *res; local
370 memset(&res_tmpl, 0, sizeof(res_tmpl));
371 res_tmpl.target = PIPE_TEXTURE_2D;
372 res_tmpl.format = PIPE_FORMAT_R32_FLOAT;
373 res_tmpl.width0 = VL_BLOCK_WIDTH * blocks_per_line;
374 res_tmpl.height0 = VL_BLOCK_HEIGHT;
375 res_tmpl.depth0 = 1;
376 res_tmpl.array_size = 1;
377 res_tmpl.usage = PIPE_USAGE_IMMUTABLE
471 struct pipe_resource res_tmpl, *res; local
    [all...]
vl_video_buffer.c 439 struct pipe_resource res_tmpl; local
447 vl_vide_buffer_template(&res_tmpl, tmpl, resource_formats[0], depth, usage, 0);
448 resources[0] = pipe->screen->resource_create(pipe->screen, &res_tmpl);
457 vl_vide_buffer_template(&res_tmpl, tmpl, resource_formats[1], depth, usage, 1);
458 resources[1] = pipe->screen->resource_create(pipe->screen, &res_tmpl);
465 vl_vide_buffer_template(&res_tmpl, tmpl, resource_formats[2], depth, usage, 2);
466 resources[2] = pipe->screen->resource_create(pipe->screen, &res_tmpl);
vl_mpeg12_decoder.c 88 struct pipe_resource *res, res_tmpl; local
96 memset(&res_tmpl, 0, sizeof(res_tmpl));
97 res_tmpl.target = PIPE_TEXTURE_2D;
98 res_tmpl.format = dec->zscan_source_format;
99 res_tmpl.width0 = dec->blocks_per_line * VL_BLOCK_WIDTH * VL_BLOCK_HEIGHT;
100 res_tmpl.height0 = align(dec->num_blocks, dec->blocks_per_line) / dec->blocks_per_line;
101 res_tmpl.depth0 = 1;
102 res_tmpl.array_size = 1;
103 res_tmpl.usage = PIPE_USAGE_STREAM
    [all...]

Completed in 277 milliseconds