HomeSort by relevance Sort by last modified time
    Searched refs:tex (Results 76 - 100 of 618) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/gpu/command_buffer/tests/
gl_unittest.cc 38 GLuint tex = 0; local
39 glGenTextures(1, &tex);
42 glBindTexture(GL_TEXTURE_2D, tex);
54 tex, 0);
62 glDeleteTextures(1, &tex);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_dirty_surfaces.h 80 if(ds->base.u.tex.level >= first && ds->base.u.tex.level <= last)
89 util_dirty_surfaces_use_levels_for_sampling(pipe, dss, (unsigned)pss->min_lod + psv->u.tex.first_level,
90 MIN2((unsigned)ceilf(pss->max_lod) + psv->u.tex.first_level, psv->u.tex.last_level), flush);
u_debug_describe.c 72 util_sprintf(buf, "pipe_surface<%s,%u,%u,%u>", res, ptr->u.tex.level, ptr->u.tex.first_layer, ptr->u.tex.last_layer);
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
texobj.h 70 struct gl_texture_object *tex);
74 struct gl_texture_object *tex)
76 if (*ptr != tex)
77 _mesa_reference_texobj_(ptr, tex);
124 _mesa_get_fallback_texture(struct gl_context *ctx, gl_texture_index tex);
  /external/mesa3d/src/gallium/auxiliary/util/
u_dirty_surfaces.h 80 if(ds->base.u.tex.level >= first && ds->base.u.tex.level <= last)
89 util_dirty_surfaces_use_levels_for_sampling(pipe, dss, (unsigned)pss->min_lod + psv->u.tex.first_level,
90 MIN2((unsigned)ceilf(pss->max_lod) + psv->u.tex.first_level, psv->u.tex.last_level), flush);
u_debug_describe.c 72 util_sprintf(buf, "pipe_surface<%s,%u,%u,%u>", res, ptr->u.tex.level, ptr->u.tex.first_layer, ptr->u.tex.last_layer);
  /external/mesa3d/src/mesa/main/
texobj.h 70 struct gl_texture_object *tex);
74 struct gl_texture_object *tex)
76 if (*ptr != tex)
77 _mesa_reference_texobj_(ptr, tex);
124 _mesa_get_fallback_texture(struct gl_context *ctx, gl_texture_index tex);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_state_sampler.c 268 struct pipe_resource *tex = view->texture; local
269 struct llvmpipe_resource *lp_tex = llvmpipe_resource(tex);
274 pipe_resource_reference(&lp->mapped_vs_tex[i], tex);
279 for (j = view->u.tex.first_level; j <= tex->last_level; j++) {
292 struct llvmpipe_screen *screen = llvmpipe_screen(tex->screen);
303 tex->width0, tex->height0, tex->depth0,
304 view->u.tex.first_level, tex->last_level
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_state_sampler.c 268 struct pipe_resource *tex = view->texture; local
269 struct llvmpipe_resource *lp_tex = llvmpipe_resource(tex);
274 pipe_resource_reference(&lp->mapped_vs_tex[i], tex);
279 for (j = view->u.tex.first_level; j <= tex->last_level; j++) {
292 struct llvmpipe_screen *screen = llvmpipe_screen(tex->screen);
303 tex->width0, tex->height0, tex->depth0,
304 view->u.tex.first_level, tex->last_level
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/host/interface/
abstract_mathjax.js 73 querySelectorAll(cvox.DomUtil.altMathQuerySelector('tex'));
74 for (var i = 0, tex; tex = allTexs[i]; i++) {
75 this.getTex(callback, tex);
88 for (var i = 0, tex; tex = allAsciiMaths[i]; i++) {
89 this.getAsciiMath(callback, tex);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_state_fs.c 212 key->tex[i].texture_target = svga->curr.sampler_views[i]->texture->target;
214 key->tex[i].width_height_idx = idx++;
215 key->tex[i].unnormalized = TRUE;
219 key->tex[i].swizzle_r = svga->curr.sampler_views[i]->swizzle_r;
220 key->tex[i].swizzle_g = svga->curr.sampler_views[i]->swizzle_g;
221 key->tex[i].swizzle_b = svga->curr.sampler_views[i]->swizzle_b;
222 key->tex[i].swizzle_a = svga->curr.sampler_views[i]->swizzle_a;
230 key->tex[i].compare_mode = svga->curr.sampler[i]->compare_mode;
231 key->tex[i].compare_func = svga->curr.sampler[i]->compare_func;
237 key->tex[i].sprite_texgen
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/
svga_state_fs.c 212 key->tex[i].texture_target = svga->curr.sampler_views[i]->texture->target;
214 key->tex[i].width_height_idx = idx++;
215 key->tex[i].unnormalized = TRUE;
219 key->tex[i].swizzle_r = svga->curr.sampler_views[i]->swizzle_r;
220 key->tex[i].swizzle_g = svga->curr.sampler_views[i]->swizzle_g;
221 key->tex[i].swizzle_b = svga->curr.sampler_views[i]->swizzle_b;
222 key->tex[i].swizzle_a = svga->curr.sampler_views[i]->swizzle_a;
230 key->tex[i].compare_mode = svga->curr.sampler[i]->compare_mode;
231 key->tex[i].compare_func = svga->curr.sampler[i]->compare_func;
237 key->tex[i].sprite_texgen
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_cb_blit.c 82 info->src.layer = srcRb->surface->u.tex.first_layer;
84 info->dst.level = dstRb->surface->u.tex.level;
85 info->dst.layer = dstRb->surface->u.tex.first_layer;
116 info->src.layer = srcRb->surface->u.tex.first_layer;
118 info->dst.level = dstRb->surface->u.tex.level;
119 info->dst.layer = dstRb->surface->u.tex.first_layer;
132 info->src.layer = srcRb->surface->u.tex.first_layer;
134 info->dst.level = dstRb->surface->u.tex.level;
135 info->dst.layer = dstRb->surface->u.tex.first_layer;
256 srcRb->texture, srcSurf->u.tex.level
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_cb_blit.c 82 info->src.layer = srcRb->surface->u.tex.first_layer;
84 info->dst.level = dstRb->surface->u.tex.level;
85 info->dst.layer = dstRb->surface->u.tex.first_layer;
116 info->src.layer = srcRb->surface->u.tex.first_layer;
118 info->dst.level = dstRb->surface->u.tex.level;
119 info->dst.layer = dstRb->surface->u.tex.first_layer;
132 info->src.layer = srcRb->surface->u.tex.first_layer;
134 info->dst.level = dstRb->surface->u.tex.level;
135 info->dst.layer = dstRb->surface->u.tex.first_layer;
256 srcRb->texture, srcSurf->u.tex.level
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/codegen/
nv50_ir_lowering_nvc0.cpp 137 TexUse(Instruction *use, const Instruction *tex)
138 : insn(use), tex(tex), level(-1) { }
140 const Instruction *tex; // or split / mov member in struct:nv50_ir::NVC0LegalizePostRA::TexUse
151 void findFirstUses(const Instruction *tex, const Instruction *def,
153 void findOverwritingDefs(const Instruction *tex, Instruction *insn,
211 /* Values not connected to the tex's definition through any of these should
271 // over all paths, between the TEX and the use in question)
272 // 3. for each barrier, if all paths from the source TEX to that barrier
298 // gather the first uses for each TEX
300 Instruction *tex = reinterpret_cast<Instruction *>(insns.get(i)); local
760 Instruction *tex; local
    [all...]
  /external/mesa3d/src/gallium/drivers/nvc0/codegen/
nv50_ir_lowering_nvc0.cpp 137 TexUse(Instruction *use, const Instruction *tex)
138 : insn(use), tex(tex), level(-1) { }
140 const Instruction *tex; // or split / mov member in struct:nv50_ir::NVC0LegalizePostRA::TexUse
151 void findFirstUses(const Instruction *tex, const Instruction *def,
153 void findOverwritingDefs(const Instruction *tex, Instruction *insn,
211 /* Values not connected to the tex's definition through any of these should
271 // over all paths, between the TEX and the use in question)
272 // 3. for each barrier, if all paths from the source TEX to that barrier
298 // gather the first uses for each TEX
300 Instruction *tex = reinterpret_cast<Instruction *>(insns.get(i)); local
760 Instruction *tex; local
    [all...]
  /external/chromium_org/third_party/skia/src/image/
SkSurface_Gpu.cpp 124 SkAutoTUnref<GrTexture> tex(ctx->createUncachedTexture(desc, NULL, 0));
125 if (NULL == tex) {
129 return SkNEW_ARGS(SkSurface_Gpu, (tex->asRenderTarget(), false, trm));
145 SkAutoTUnref<GrTexture> tex(ctx->lockAndRefScratchTexture(desc, GrContext::kExact_ScratchTexMatch));
147 if (NULL == tex) {
151 return SkNEW_ARGS(SkSurface_Gpu, (tex->asRenderTarget(), true, trm));
  /external/skia/src/image/
SkSurface_Gpu.cpp 124 SkAutoTUnref<GrTexture> tex(ctx->createUncachedTexture(desc, NULL, 0));
125 if (NULL == tex) {
129 return SkNEW_ARGS(SkSurface_Gpu, (tex->asRenderTarget(), false, trm));
145 SkAutoTUnref<GrTexture> tex(ctx->lockAndRefScratchTexture(desc, GrContext::kExact_ScratchTexMatch));
147 if (NULL == tex) {
151 return SkNEW_ARGS(SkSurface_Gpu, (tex->asRenderTarget(), true, trm));
  /ndk/sources/host-tools/sed-4.2.1/build-aux/
texi2dvi 38 Run each Texinfo or LaTeX FILE through TeX in turn until all
43 Makeinfo is used to perform Texinfo macro expansion before running TeX
58 TeX tuning:
68 TEX (or PDFTEX), and TEXINDEX environment variables are used to run
91 txiprereq=19990129 # minimum texinfo.tex version to have macro expansion
217 # iftex sections only. We want to remove non TeX sections, and
218 # comment (with `@c texi2dvi') TeX sections so that makeinfo does not
219 # try to parse them. Nevertheless, while commenting TeX sections,
225 /^@tex/,/^@end tex/{
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/common/
meta.c 273 struct temp_texture Tex; /**< separate texture from other meta ops */
348 static void cleanup_temp_texture(struct gl_context *ctx, struct temp_texture *tex);
1209 struct temp_texture *tex = &ctx->Meta->TempTex; local
1227 struct temp_texture *tex = &ctx->Meta->Bitmap.Tex; local
1400 struct temp_texture *tex = get_temp_texture(ctx); local
1580 struct temp_texture *tex = get_temp_texture(ctx); local
2106 struct temp_texture *tex = get_temp_texture(ctx); local
2292 struct temp_texture *tex = get_temp_texture(ctx); local
2326 struct temp_texture *tex = get_temp_texture(ctx); local
2358 struct temp_texture *tex = get_temp_texture(ctx); local
2626 struct temp_texture *tex = get_bitmap_temp_texture(ctx); local
3010 GLfloat x, y, tex[3]; member in struct:vertex
3087 GLfloat x, y, tex[3]; member in struct:vertex
3238 GLfloat x, y, tex[3]; member in struct:vertex
3611 GLfloat x, y, tex[3]; member in struct:vertex
    [all...]
  /external/mesa3d/src/mesa/drivers/common/
meta.c 273 struct temp_texture Tex; /**< separate texture from other meta ops */
348 static void cleanup_temp_texture(struct gl_context *ctx, struct temp_texture *tex);
1209 struct temp_texture *tex = &ctx->Meta->TempTex; local
1227 struct temp_texture *tex = &ctx->Meta->Bitmap.Tex; local
1400 struct temp_texture *tex = get_temp_texture(ctx); local
1580 struct temp_texture *tex = get_temp_texture(ctx); local
2106 struct temp_texture *tex = get_temp_texture(ctx); local
2292 struct temp_texture *tex = get_temp_texture(ctx); local
2326 struct temp_texture *tex = get_temp_texture(ctx); local
2358 struct temp_texture *tex = get_temp_texture(ctx); local
2626 struct temp_texture *tex = get_bitmap_temp_texture(ctx); local
3010 GLfloat x, y, tex[3]; member in struct:vertex
3087 GLfloat x, y, tex[3]; member in struct:vertex
3238 GLfloat x, y, tex[3]; member in struct:vertex
3611 GLfloat x, y, tex[3]; member in struct:vertex
    [all...]
  /external/chromium_org/third_party/mesa/src/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/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();

Completed in 581 milliseconds

1 2 34 5 6 7 8 91011>>