HomeSort by relevance Sort by last modified time
    Searched refs:templ (Results 151 - 175 of 321) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/mesa3d/src/gallium/drivers/r300/
r300_texture.h 74 const struct pipe_resource* templ);
  /external/mesa3d/src/gallium/drivers/r600/
evergreen_compute.h 42 struct pipe_resource *r600_compute_global_buffer_create(struct pipe_screen *screen, const struct pipe_resource *templ);
r600_blit.c 414 struct pipe_resource *tmp, templ; local
432 templ.target = PIPE_TEXTURE_2D;
433 templ.format = info->src.res->format;
434 templ.width0 = info->src.res->width0;
435 templ.height0 = info->src.res->height0;
436 templ.depth0 = 1;
437 templ.array_size = 1;
438 templ.last_level = 0;
439 templ.nr_samples = 0;
440 templ.usage = PIPE_USAGE_STATIC
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/
svga_state_fs.c 181 key->light_twoside = svga->curr.rast->templ.light_twoside;
182 key->front_ccw = svga->curr.rast->templ.front_ccw;
238 svga->curr.rast->templ.sprite_coord_enable & (1 << i);
241 key->sprite_origin_lower_left = (svga->curr.rast->templ.sprite_coord_mode
svga_pipe_draw.c 237 svga->curr.rast->templ.flatshade,
238 svga->curr.rast->templ.flatshade_first );
288 svga->curr.rast->templ.flatshade,
289 svga->curr.rast->templ.flatshade_first );
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
r600_blit.c 414 struct pipe_resource *tmp, templ; local
432 templ.target = PIPE_TEXTURE_2D;
433 templ.format = info->src.res->format;
434 templ.width0 = info->src.res->width0;
435 templ.height0 = info->src.res->height0;
436 templ.depth0 = 1;
437 templ.array_size = 1;
438 templ.last_level = 0;
439 templ.nr_samples = 0;
440 templ.usage = PIPE_USAGE_STATIC
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/
r600_texture.c 522 const struct pipe_resource *templ)
530 if (!(templ->flags & R600_RESOURCE_FLAG_TRANSFER) &&
531 !(templ->bind & PIPE_BIND_SCANOUT)) {
532 if (permit_hardware_blit(screen, templ)) {
538 r = r600_init_surface(&surface, templ, array_mode);
546 return (struct pipe_resource *)r600_texture_create_object(screen, templ, array_mode,
586 const struct pipe_resource *templ,
598 if ((templ->target != PIPE_TEXTURE_2D && templ->target != PIPE_TEXTURE_RECT) ||
599 templ->depth0 != 1 || templ->last_level != 0
    [all...]
  /external/mesa3d/src/gallium/drivers/radeonsi/
r600_texture.c 522 const struct pipe_resource *templ)
530 if (!(templ->flags & R600_RESOURCE_FLAG_TRANSFER) &&
531 !(templ->bind & PIPE_BIND_SCANOUT)) {
532 if (permit_hardware_blit(screen, templ)) {
538 r = r600_init_surface(&surface, templ, array_mode);
546 return (struct pipe_resource *)r600_texture_create_object(screen, templ, array_mode,
586 const struct pipe_resource *templ,
598 if ((templ->target != PIPE_TEXTURE_2D && templ->target != PIPE_TEXTURE_RECT) ||
599 templ->depth0 != 1 || templ->last_level != 0
    [all...]
  /external/chromium_org/v8/test/cctest/
test-accessors.cc 92 v8::Handle<v8::FunctionTemplate> templ = v8::FunctionTemplate::New(); local
93 templ->InstanceTemplate()->SetAccessor(v8_str("foo"),
97 templ->InstanceTemplate()->SetAccessor(v8_str("bar"),
101 templ->InstanceTemplate()->SetAccessor(v8_str("baz"),
105 LocalContext env(0, templ->InstanceTemplate());
175 Local<ObjectTemplate> templ = ObjectTemplate::New(); local
176 templ->SetAccessor(v8_str("x"),
182 Local<v8::Object> instance = templ->NewInstance();
  /external/v8/test/cctest/
test-accessors.cc 92 v8::Handle<v8::FunctionTemplate> templ = v8::FunctionTemplate::New(); local
93 templ->InstanceTemplate()->SetAccessor(v8_str("foo"),
97 templ->InstanceTemplate()->SetAccessor(v8_str("bar"),
101 templ->InstanceTemplate()->SetAccessor(v8_str("baz"),
105 LocalContext env(0, templ->InstanceTemplate());
170 Local<ObjectTemplate> templ = ObjectTemplate::New(); local
171 templ->SetAccessor(v8_str("x"),
177 Local<v8::Object> instance = templ->NewInstance();
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/
nvc0_miptree.c 272 const struct pipe_resource *templ)
285 *pt = *templ;
353 const struct pipe_surface *templ)
355 struct nv50_surface *ns = nv50_surface_from_miptree(nv50_miptree(pt), templ);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_pipe_draw.c 237 svga->curr.rast->templ.flatshade,
238 svga->curr.rast->templ.flatshade_first );
288 svga->curr.rast->templ.flatshade,
289 svga->curr.rast->templ.flatshade_first );
  /external/mesa3d/src/gallium/drivers/nvc0/
nvc0_miptree.c 272 const struct pipe_resource *templ)
285 *pt = *templ;
353 const struct pipe_surface *templ)
355 struct nv50_surface *ns = nv50_surface_from_miptree(nv50_miptree(pt), templ);
  /external/chromium_org/third_party/WebKit/Source/bindings/templates/
interface.cpp 118 v8::Handle<v8::FunctionTemplate> templ = local
120 data->templateMap(currentWorldType).add(&info, UnsafePersistent<v8::FunctionTemplate>(isolate, templ));
121 return handleScope.Close(templ);
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
V8TestCustomAccessors.cpp 176 v8::Handle<v8::FunctionTemplate> templ = local
178 data->templateMap(currentWorldType).add(&info, UnsafePersistent<v8::FunctionTemplate>(isolate, templ));
179 return handleScope.Close(templ);
V8TestEventConstructor.cpp 170 v8::Handle<v8::FunctionTemplate> templ = local
172 data->templateMap(currentWorldType).add(&info, UnsafePersistent<v8::FunctionTemplate>(isolate, templ));
173 return handleScope.Close(templ);
V8TestException.cpp 108 v8::Handle<v8::FunctionTemplate> templ = local
110 data->templateMap(currentWorldType).add(&info, UnsafePersistent<v8::FunctionTemplate>(isolate, templ));
111 return handleScope.Close(templ);
V8TestMediaQueryListListener.cpp 119 v8::Handle<v8::FunctionTemplate> templ = local
121 data->templateMap(currentWorldType).add(&info, UnsafePersistent<v8::FunctionTemplate>(isolate, templ));
122 return handleScope.Close(templ);
V8TestNamedConstructor.cpp 152 v8::Handle<v8::FunctionTemplate> templ = local
154 data->templateMap(currentWorldType).add(&info, UnsafePersistent<v8::FunctionTemplate>(isolate, templ));
155 return handleScope.Close(templ);
V8TestNode.cpp 119 v8::Handle<v8::FunctionTemplate> templ = local
121 data->templateMap(currentWorldType).add(&info, UnsafePersistent<v8::FunctionTemplate>(isolate, templ));
122 return handleScope.Close(templ);
  /external/chromium_org/third_party/libxslt/libxslt/
xsltutils.h 287 xsltTemplatePtr templ, xsltTransformContextPtr ctxt);
288 typedef int (*xsltAddCallCallback) (xsltTemplatePtr templ, xmlNodePtr source);
298 xslAddCall (xsltTemplatePtr templ,
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/x11/
native_dri2.c 119 struct pipe_resource templ; local
135 memset(&templ, 0, sizeof(templ));
136 templ.target = PIPE_TEXTURE_2D;
137 templ.last_level = 0;
138 templ.width0 = dri2surf->width;
139 templ.height0 = dri2surf->height;
140 templ.depth0 = 1;
141 templ.array_size = 1;
142 templ.format = dri2surf->color_format
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
api_filters.c 66 struct pipe_resource templ; local
68 memset(&templ, 0, sizeof(templ));
69 templ.target = PIPE_TEXTURE_1D;
70 templ.format = PIPE_FORMAT_B8G8R8A8_UNORM;
71 templ.last_level = 0;
72 templ.width0 = color_data_len;
73 templ.height0 = 1;
74 templ.depth0 = 1;
75 templ.array_size = 1
    [all...]
paint.c 148 struct pipe_resource templ; local
150 memset(&templ, 0, sizeof(templ));
151 templ.target = PIPE_TEXTURE_1D;
152 templ.format = PIPE_FORMAT_B8G8R8A8_UNORM;
153 templ.last_level = 0;
154 templ.width0 = 1024;
155 templ.height0 = 1;
156 templ.depth0 = 1;
157 templ.array_size = 1
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xorg/
xorg_xv.c 165 struct pipe_resource templ; local
167 memset(&templ, 0, sizeof(templ));
168 templ.target = PIPE_TEXTURE_2D;
169 templ.format = PIPE_FORMAT_L8_UNORM;
170 templ.last_level = 0;
171 templ.width0 = width;
172 templ.height0 = height;
173 templ.depth0 = 1;
174 templ.array_size = 1
    [all...]

Completed in 809 milliseconds

1 2 3 4 5 67 8 91011>>