HomeSort by relevance Sort by last modified time
    Searched refs:templat (Results 26 - 50 of 86) sorted by null

12 3 4

  /external/mesa3d/src/gallium/state_trackers/d3d1x/gd3d11/
d3d11_screen.h 795 struct pipe_resource templat; local
796 memset(&templat, 0, sizeof(templat));
797 templat.target = target;
798 templat.width0 = width;
799 templat.height0 = height;
800 templat.depth0 = depth;
801 templat.array_size = array_size;
803 templat.last_level = mip_levels - 1;
805 templat.last_level = MAX2(MAX2(util_logbase2(templat.width0), util_logbase2(templat.height0)), util_logbas (…)
1100 struct pipe_sampler_view templat; local
1222 struct pipe_surface templat; local
1312 struct pipe_surface templat; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/tests/graw/
shader-leak.c 170 struct pipe_resource templat; local
196 templat.target = PIPE_TEXTURE_2D;
197 templat.format = formats[i];
198 templat.width0 = WIDTH;
199 templat.height0 = HEIGHT;
200 templat.depth0 = 1;
201 templat.last_level = 0;
202 templat.nr_samples = 1;
203 templat.bind = (PIPE_BIND_RENDER_TARGET |
206 tex = screen->resource_create(screen, &templat);
    [all...]
  /external/mesa3d/src/gallium/tests/graw/
shader-leak.c 170 struct pipe_resource templat; local
196 templat.target = PIPE_TEXTURE_2D;
197 templat.format = formats[i];
198 templat.width0 = WIDTH;
199 templat.height0 = HEIGHT;
200 templat.depth0 = 1;
201 templat.last_level = 0;
202 templat.nr_samples = 1;
203 templat.bind = (PIPE_BIND_RENDER_TARGET |
206 tex = screen->resource_create(screen, &templat);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/include/pipe/
p_screen.h 144 const struct pipe_resource *templat);
152 const struct pipe_resource *templat,
  /external/mesa3d/src/gallium/include/pipe/
p_screen.h 144 const struct pipe_resource *templat);
152 const struct pipe_resource *templat,
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xorg/
xorg_crtc.c 219 struct pipe_resource templat; local
222 memset(&templat, 0, sizeof(templat));
223 templat.bind |= PIPE_BIND_RENDER_TARGET;
224 templat.bind |= PIPE_BIND_SCANOUT;
225 templat.bind |= PIPE_BIND_CURSOR;
226 templat.target = PIPE_TEXTURE_2D;
227 templat.last_level = 0;
228 templat.depth0 = 1;
229 templat.array_size = 1
    [all...]
  /external/mesa3d/src/gallium/state_trackers/xorg/
xorg_crtc.c 219 struct pipe_resource templat; local
222 memset(&templat, 0, sizeof(templat));
223 templat.bind |= PIPE_BIND_RENDER_TARGET;
224 templat.bind |= PIPE_BIND_SCANOUT;
225 templat.bind |= PIPE_BIND_CURSOR;
226 templat.target = PIPE_TEXTURE_2D;
227 templat.last_level = 0;
228 templat.depth0 = 1;
229 templat.array_size = 1
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/targets/graw-xlib/
graw_xlib.c 56 XVisualInfo templat, *visinfo = NULL; local
78 templat.screen = DefaultScreen(graw.display);
79 templat.depth = 32;
80 templat.class = TrueColor;
82 visinfo = XGetVisualInfo(graw.display, mask, &templat, &n);
  /external/mesa3d/src/gallium/targets/graw-xlib/
graw_xlib.c 56 XVisualInfo templat, *visinfo = NULL; local
78 templat.screen = DefaultScreen(graw.display);
79 templat.depth = 32;
80 templat.class = TrueColor;
82 visinfo = XGetVisualInfo(graw.display, mask, &templat, &n);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
sp_texture.c 120 const struct pipe_resource *templat)
126 assert(templat->format != PIPE_FORMAT_NONE);
128 spr->base = *templat;
132 spr->pot = (util_is_power_of_two(templat->width0) &&
133 util_is_power_of_two(templat->height0) &&
134 util_is_power_of_two(templat->depth0));
178 const struct pipe_resource *templat,
186 spr->base = *templat;
190 spr->pot = (util_is_power_of_two(templat->width0) &&
191 util_is_power_of_two(templat->height0) &
    [all...]
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_texture.c 120 const struct pipe_resource *templat)
126 assert(templat->format != PIPE_FORMAT_NONE);
128 spr->base = *templat;
132 spr->pot = (util_is_power_of_two(templat->width0) &&
133 util_is_power_of_two(templat->height0) &&
134 util_is_power_of_two(templat->depth0));
178 const struct pipe_resource *templat,
186 spr->base = *templat;
190 spr->pot = (util_is_power_of_two(templat->width0) &&
191 util_is_power_of_two(templat->height0) &
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/trace/
tr_dump_state.h 38 void trace_dump_resource_template(const struct pipe_resource *templat);
tr_dump_state.c 47 void trace_dump_resource_template(const struct pipe_resource *templat)
52 if(!templat) {
59 trace_dump_member(int, templat, target);
60 trace_dump_member(format, templat, format);
63 trace_dump_uint(templat->width0);
67 trace_dump_uint(templat->height0);
71 trace_dump_uint(templat->depth0);
75 trace_dump_uint(templat->array_size);
78 trace_dump_member(uint, templat, last_level);
79 trace_dump_member(uint, templat, usage)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/include/state_tracker/
sw_winsys.h 100 const struct pipe_resource *templat,
  /external/mesa3d/src/gallium/drivers/trace/
tr_dump_state.h 38 void trace_dump_resource_template(const struct pipe_resource *templat);
tr_dump_state.c 47 void trace_dump_resource_template(const struct pipe_resource *templat)
52 if(!templat) {
59 trace_dump_member(int, templat, target);
60 trace_dump_member(format, templat, format);
63 trace_dump_uint(templat->width0);
67 trace_dump_uint(templat->height0);
71 trace_dump_uint(templat->depth0);
75 trace_dump_uint(templat->array_size);
78 trace_dump_member(uint, templat, last_level);
79 trace_dump_member(uint, templat, usage)
    [all...]
  /external/mesa3d/src/gallium/include/state_tracker/
sw_winsys.h 100 const struct pipe_resource *templat,
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
vl_mpeg12_decoder.c 879 struct pipe_video_buffer templat; local
901 memset(&templat, 0, sizeof(templat));
902 templat.width = dec->base.width / 4;
903 templat.height = dec->base.height;
904 templat.chroma_format = dec->base.chroma_format;
907 dec->base.context, &templat,
915 memset(&templat, 0, sizeof(templat));
916 templat.width = dec->base.width / nr_of_idct_render_targets
963 struct pipe_video_buffer templat; local
    [all...]
vl_video_buffer.c 394 struct pipe_video_buffer templat, *result; local
411 templat = *tmpl;
412 templat.width = pot_buffers ? util_next_power_of_two(tmpl->width)
414 templat.height = pot_buffers ? util_next_power_of_two(tmpl->height)
418 templat.height /= 2;
422 pipe, &templat, resource_formats,
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_mpeg12_decoder.c 879 struct pipe_video_buffer templat; local
901 memset(&templat, 0, sizeof(templat));
902 templat.width = dec->base.width / 4;
903 templat.height = dec->base.height;
904 templat.chroma_format = dec->base.chroma_format;
907 dec->base.context, &templat,
915 memset(&templat, 0, sizeof(templat));
916 templat.width = dec->base.width / nr_of_idct_render_targets
963 struct pipe_video_buffer templat; local
    [all...]
vl_video_buffer.c 394 struct pipe_video_buffer templat, *result; local
411 templat = *tmpl;
412 templat.width = pot_buffers ? util_next_power_of_two(tmpl->width)
414 templat.height = pot_buffers ? util_next_power_of_two(tmpl->height)
418 templat.height /= 2;
422 pipe, &templat, resource_formats,
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/dxgi/src/
dxgi_native.cpp 1035 struct pipe_sampler_view templat; local
1036 memset(&templat, 0, sizeof(templat));
1037 templat.texture = gallium_buffer0;
1038 templat.swizzle_r = 0;
1039 templat.swizzle_g = 1;
1040 templat.swizzle_b = 2;
1041 templat.swizzle_a = 3;
1042 templat.format = gallium_buffer0->format;
1043 gallium_buffer0_view = pipe->create_sampler_view(pipe, gallium_buffer0, &templat);
1169 struct pipe_surface templat; local
    [all...]
  /external/mesa3d/src/gallium/state_trackers/d3d1x/dxgi/src/
dxgi_native.cpp 1035 struct pipe_sampler_view templat; local
1036 memset(&templat, 0, sizeof(templat));
1037 templat.texture = gallium_buffer0;
1038 templat.swizzle_r = 0;
1039 templat.swizzle_g = 1;
1040 templat.swizzle_b = 2;
1041 templat.swizzle_a = 3;
1042 templat.format = gallium_buffer0->format;
1043 gallium_buffer0_view = pipe->create_sampler_view(pipe, gallium_buffer0, &templat);
1169 struct pipe_surface templat; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_dump.h 95 const struct pipe_resource *templat);
  /external/mesa3d/src/gallium/auxiliary/util/
u_dump.h 95 const struct pipe_resource *templat);

Completed in 1035 milliseconds

12 3 4