/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xa/ |
xa_context.c | 106 transfer = pipe_get_transfer(pipe, srf->tex, 0, 0, 117 util_copy_rect(map, srf->tex->format, transfer->stride, 120 util_copy_rect(data, srf->tex->format, pitch, 157 srf->transfer = pipe_get_transfer(pipe, srf->tex, 0, 0, 159 srf->tex->width0, srf->tex->height0); 192 if (!screen->is_format_supported(screen, dst->tex->format, 197 u_surface_default_template(&srf_templ, dst->tex, 199 ctx->srf = ctx->pipe->create_surface(ctx->pipe, dst->tex, &srf_templ); 219 if (src->tex->format != dst->tex->format) [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/tests/trivial/ |
Makefile | 21 quad-tex.c \
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11app/ |
d3d11x11main.cpp | 96 ID3D11Texture2D* tex; local 98 ensure(swap_chain->GetBuffer(0, IID_ID3D11Texture2D, (void**)&tex)); 99 ensure(dev->CreateRenderTargetView(tex, NULL, &rtv)); 106 tex->Release();
|
/external/mesa3d/src/gallium/state_trackers/xa/ |
xa_context.c | 106 transfer = pipe_get_transfer(pipe, srf->tex, 0, 0, 117 util_copy_rect(map, srf->tex->format, transfer->stride, 120 util_copy_rect(data, srf->tex->format, pitch, 157 srf->transfer = pipe_get_transfer(pipe, srf->tex, 0, 0, 159 srf->tex->width0, srf->tex->height0); 192 if (!screen->is_format_supported(screen, dst->tex->format, 197 u_surface_default_template(&srf_templ, dst->tex, 199 ctx->srf = ctx->pipe->create_surface(ctx->pipe, dst->tex, &srf_templ); 219 if (src->tex->format != dst->tex->format) [all...] |
/external/mesa3d/src/gallium/tests/trivial/ |
Makefile | 21 quad-tex.c \
|
/external/chromium_org/third_party/mesa/src/src/gallium/tests/graw/ |
graw_util.h | 91 surface_temp.u.tex.level = 0; 92 surface_temp.u.tex.first_layer = 0; 93 surface_temp.u.tex.last_layer = 0; 122 surface_temp.u.tex.level = 0; 123 surface_temp.u.tex.first_layer = 0; 124 surface_temp.u.tex.last_layer = 0; 226 struct pipe_resource temp, *tex; local 239 tex = info->screen->resource_create(info->screen, &temp); 240 if (!tex) { 248 tex, [all...] |
shader-leak.c | 32 static struct pipe_resource *tex = NULL; variable in typeref:struct:pipe_resource 160 screen->flush_frontbuffer(screen, tex, 0, 0, window); 206 tex = screen->resource_create(screen, &templat); 207 if (tex == NULL) { 214 surf_tmpl.u.tex.level = 0; 215 surf_tmpl.u.tex.first_layer = 0; 216 surf_tmpl.u.tex.last_layer = 0; 217 surf = ctx->create_surface(ctx, tex, &surf_tmpl); 219 fprintf(stderr, "Unable to create tex surface!\n");
|
tri-gs.c | 28 static struct pipe_resource *tex = NULL; variable in typeref:struct:pipe_resource 170 screen->flush_frontbuffer(screen, tex, 0, 0, window); 214 tex = screen->resource_create(screen, 216 if (tex == NULL) 221 surf_tmpl.u.tex.level = 0; 222 surf_tmpl.u.tex.first_layer = 0; 223 surf_tmpl.u.tex.last_layer = 0; 224 surf = ctx->create_surface(ctx, tex, &surf_tmpl);
|
tri-instanced.c | 31 static struct pipe_resource *tex = NULL; variable in typeref:struct:pipe_resource 221 screen->flush_frontbuffer(screen, tex, 0, 0, window); 265 tex = screen->resource_create(screen, 267 if (tex == NULL) 272 surf_tmpl.u.tex.level = 0; 273 surf_tmpl.u.tex.first_layer = 0; 274 surf_tmpl.u.tex.last_layer = 0; 275 surf = ctx->create_surface(ctx, tex, &surf_tmpl);
|
/external/mesa3d/src/gallium/tests/graw/ |
graw_util.h | 91 surface_temp.u.tex.level = 0; 92 surface_temp.u.tex.first_layer = 0; 93 surface_temp.u.tex.last_layer = 0; 122 surface_temp.u.tex.level = 0; 123 surface_temp.u.tex.first_layer = 0; 124 surface_temp.u.tex.last_layer = 0; 226 struct pipe_resource temp, *tex; local 239 tex = info->screen->resource_create(info->screen, &temp); 240 if (!tex) { 248 tex, [all...] |
shader-leak.c | 32 static struct pipe_resource *tex = NULL; variable in typeref:struct:pipe_resource 160 screen->flush_frontbuffer(screen, tex, 0, 0, window); 206 tex = screen->resource_create(screen, &templat); 207 if (tex == NULL) { 214 surf_tmpl.u.tex.level = 0; 215 surf_tmpl.u.tex.first_layer = 0; 216 surf_tmpl.u.tex.last_layer = 0; 217 surf = ctx->create_surface(ctx, tex, &surf_tmpl); 219 fprintf(stderr, "Unable to create tex surface!\n");
|
tri-gs.c | 28 static struct pipe_resource *tex = NULL; variable in typeref:struct:pipe_resource 170 screen->flush_frontbuffer(screen, tex, 0, 0, window); 214 tex = screen->resource_create(screen, 216 if (tex == NULL) 221 surf_tmpl.u.tex.level = 0; 222 surf_tmpl.u.tex.first_layer = 0; 223 surf_tmpl.u.tex.last_layer = 0; 224 surf = ctx->create_surface(ctx, tex, &surf_tmpl);
|
tri-instanced.c | 31 static struct pipe_resource *tex = NULL; variable in typeref:struct:pipe_resource 221 screen->flush_frontbuffer(screen, tex, 0, 0, window); 265 tex = screen->resource_create(screen, 267 if (tex == NULL) 272 surf_tmpl.u.tex.level = 0; 273 surf_tmpl.u.tex.first_layer = 0; 274 surf_tmpl.u.tex.last_layer = 0; 275 surf = ctx->create_surface(ctx, tex, &surf_tmpl);
|
/external/chromium_org/third_party/angle/tests/angle_tests/ |
MaxTextureSizeTest.cpp | 36 uniform sampler2D tex; 41 gl_FragColor = texture2D(tex, texcoord); 62 mTextureUniformLocation = glGetUniformLocation(mTextureProgram, "tex"); 91 GLuint tex; local 92 glGenTextures(1, &tex); 93 glBindTexture(GL_TEXTURE_2D, tex); 151 GLuint tex; local 152 glGenTextures(1, &tex); 153 glBindTexture(GL_TEXTURE_2D, tex);
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/ |
i915_state_sampler.c | 63 const struct i915_texture *tex, 85 const struct i915_texture *tex, 88 const struct pipe_resource *pt = &tex->b.b; 296 const struct i915_texture *tex, 301 const struct pipe_resource *pt = &tex->b.b; 307 assert(tex); 315 pitch = tex->stride; 325 | ms3_tiling_bits(tex->tiling));
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/ |
svga_tgsi.h | 73 } tex[PIPE_MAX_SAMPLERS]; member in struct:svga_fs_compile_key 143 return (const char *)&key->tex[key->num_textures] - (const char *)key;
|
/external/iproute2/doc/ |
Makefile | 3 # api-rtnl.tex api-pmtudisc.tex api-news.tex 37 %.dvi: %.tex 47 #%.pdf: %.tex 59 install -m 0644 $(shell echo *.tex) $(DESTDIR)$(DOCDIR)
|
/external/libvorbis/doc/ |
10-tables.tex | 1 % -*- mode: latex; TeX-master: "Vorbis_I_spec"; -*- 2 %!TEX root = Vorbis_I_spec.tex
|
a2-encapsulation-rtp.tex | 1 % -*- mode: latex; TeX-master: "Vorbis_I_spec"; -*- 2 %!TEX root = Vorbis_I_spec.tex
|
/external/mesa3d/src/gallium/drivers/i915/ |
i915_state_sampler.c | 63 const struct i915_texture *tex, 85 const struct i915_texture *tex, 88 const struct pipe_resource *pt = &tex->b.b; 296 const struct i915_texture *tex, 301 const struct pipe_resource *pt = &tex->b.b; 307 assert(tex); 315 pitch = tex->stride; 325 | ms3_tiling_bits(tex->tiling));
|
/external/mesa3d/src/gallium/drivers/svga/ |
svga_tgsi.h | 73 } tex[PIPE_MAX_SAMPLERS]; member in struct:svga_fs_compile_key 143 return (const char *)&key->tex[key->num_textures] - (const char *)key;
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/ |
lp_scene.c | 144 assert(cbuf->u.tex.first_layer == cbuf->u.tex.last_layer); 146 cbuf->u.tex.level); 149 cbuf->u.tex.level, 150 cbuf->u.tex.first_layer, 157 assert(zsbuf->u.tex.first_layer == zsbuf->u.tex.last_layer); 158 scene->zsbuf.stride = llvmpipe_resource_stride(zsbuf->texture, zsbuf->u.tex.level); 163 zsbuf->u.tex.level, 164 zsbuf->u.tex.first_layer [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/ |
nv50_miptree.c | 384 ps->u.tex.level = templ->u.tex.level; 385 ps->u.tex.first_layer = templ->u.tex.first_layer; 386 ps->u.tex.last_layer = templ->u.tex.last_layer; 388 ns->width = u_minify(mt->base.base.width0, ps->u.tex.level); 389 ns->height = u_minify(mt->base.base.height0, ps->u.tex.level); 390 ns->depth = ps->u.tex.last_layer - ps->u.tex.first_layer + 1 [all...] |
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
lp_scene.c | 144 assert(cbuf->u.tex.first_layer == cbuf->u.tex.last_layer); 146 cbuf->u.tex.level); 149 cbuf->u.tex.level, 150 cbuf->u.tex.first_layer, 157 assert(zsbuf->u.tex.first_layer == zsbuf->u.tex.last_layer); 158 scene->zsbuf.stride = llvmpipe_resource_stride(zsbuf->texture, zsbuf->u.tex.level); 163 zsbuf->u.tex.level, 164 zsbuf->u.tex.first_layer [all...] |
/external/mesa3d/src/gallium/drivers/nv50/ |
nv50_miptree.c | 384 ps->u.tex.level = templ->u.tex.level; 385 ps->u.tex.first_layer = templ->u.tex.first_layer; 386 ps->u.tex.last_layer = templ->u.tex.last_layer; 388 ns->width = u_minify(mt->base.base.width0, ps->u.tex.level); 389 ns->height = u_minify(mt->base.base.height0, ps->u.tex.level); 390 ns->depth = ps->u.tex.last_layer - ps->u.tex.first_layer + 1 [all...] |