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

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
r300_texture.c 801 struct r300_resource *tex,
808 struct pipe_resource *pt = &tex->b.b;
809 struct r300_texture_desc *desc = &tex->tex;
886 struct r300_resource *tex = r300_resource(surf->base.texture); local
887 unsigned level = surf->base.u.tex.level;
889 r300_stride_to_width(surf->base.format, tex->tex.stride_in_bytes[level]);
895 R300_DEPTHMACROTILE(tex->tex.macrotile[level])
915 struct r300_resource* tex = (struct r300_resource*)texture; local
926 struct r300_resource* tex = (struct r300_resource*)texture; local
958 struct r300_resource *tex = CALLOC_STRUCT(r300_resource); local
1078 struct r300_resource* tex = r300_resource(texture); local
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/
r300_texture.c 801 struct r300_resource *tex,
808 struct pipe_resource *pt = &tex->b.b;
809 struct r300_texture_desc *desc = &tex->tex;
886 struct r300_resource *tex = r300_resource(surf->base.texture); local
887 unsigned level = surf->base.u.tex.level;
889 r300_stride_to_width(surf->base.format, tex->tex.stride_in_bytes[level]);
895 R300_DEPTHMACROTILE(tex->tex.macrotile[level])
915 struct r300_resource* tex = (struct r300_resource*)texture; local
926 struct r300_resource* tex = (struct r300_resource*)texture; local
958 struct r300_resource *tex = CALLOC_STRUCT(r300_resource); local
1078 struct r300_resource* tex = r300_resource(texture); local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_resource_texture.c 220 struct svga_texture *tex = (struct svga_texture *)pt; local
224 svga_sampler_view_reference(&tex->cached_view, NULL);
227 DBG("%s deleting %p\n", __FUNCTION__, (void *) tex);
229 SVGA_DBG(DEBUG_DMA, "unref sid %p (texture)\n", tex->handle);
230 svga_screen_surface_destroy(ss, &tex->key, &tex->handle);
232 FREE(tex);
359 struct svga_texture *tex = svga_texture(transfer->resource); local
377 tex->view_age[transfer->level] = ++(tex->age)
409 struct svga_texture *tex = CALLOC_STRUCT(svga_texture); local
503 struct svga_texture *tex; local
    [all...]
svga_sampler_view.c 61 struct svga_texture *tex = svga_texture(pt); local
93 if (tex->cached_view &&
94 tex->cached_view->min_lod == min_lod &&
95 tex->cached_view->max_lod == max_lod) {
96 svga_sampler_view_reference(&sv, tex->cached_view);
128 sv->handle = tex->handle;
143 sv->age = tex->age;
144 sv->handle = svga_texture_view_surface(svga, tex, flags, format,
153 sv->handle = tex->handle;
160 svga_sampler_view_reference(&tex->cached_view, sv)
172 struct svga_texture *tex = svga_texture(v->texture); local
207 struct svga_texture *tex = svga_texture(v->texture); local
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/
svga_resource_texture.c 220 struct svga_texture *tex = (struct svga_texture *)pt; local
224 svga_sampler_view_reference(&tex->cached_view, NULL);
227 DBG("%s deleting %p\n", __FUNCTION__, (void *) tex);
229 SVGA_DBG(DEBUG_DMA, "unref sid %p (texture)\n", tex->handle);
230 svga_screen_surface_destroy(ss, &tex->key, &tex->handle);
232 FREE(tex);
359 struct svga_texture *tex = svga_texture(transfer->resource); local
377 tex->view_age[transfer->level] = ++(tex->age)
409 struct svga_texture *tex = CALLOC_STRUCT(svga_texture); local
503 struct svga_texture *tex; local
    [all...]
svga_sampler_view.c 61 struct svga_texture *tex = svga_texture(pt); local
93 if (tex->cached_view &&
94 tex->cached_view->min_lod == min_lod &&
95 tex->cached_view->max_lod == max_lod) {
96 svga_sampler_view_reference(&sv, tex->cached_view);
128 sv->handle = tex->handle;
143 sv->age = tex->age;
144 sv->handle = svga_texture_view_surface(svga, tex, flags, format,
153 sv->handle = tex->handle;
160 svga_sampler_view_reference(&tex->cached_view, sv)
172 struct svga_texture *tex = svga_texture(v->texture); local
207 struct svga_texture *tex = svga_texture(v->texture); local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
i915_state_static.c 104 struct i915_texture *tex = i915_texture(cbuf_surface->texture); local
105 assert(tex);
107 i915->current.cbuf_bo = tex->buffer;
109 BUF_3D_PITCH(tex->stride) | /* pitch in bytes */
110 buf_3d_tiling_bits(tex->tiling);
112 layer = cbuf_surface->u.tex.first_layer;
114 x = tex->image_offset[cbuf_surface->u.tex.level][layer].nblocksx;
115 y = tex->image_offset[cbuf_surface->u.tex.level][layer].nblocksy
125 struct i915_texture *tex = i915_texture(depth_surface->texture); local
214 struct i915_texture *tex = i915_texture(depth_surface->texture); local
    [all...]
  /external/mesa3d/src/gallium/drivers/i915/
i915_state_static.c 104 struct i915_texture *tex = i915_texture(cbuf_surface->texture); local
105 assert(tex);
107 i915->current.cbuf_bo = tex->buffer;
109 BUF_3D_PITCH(tex->stride) | /* pitch in bytes */
110 buf_3d_tiling_bits(tex->tiling);
112 layer = cbuf_surface->u.tex.first_layer;
114 x = tex->image_offset[cbuf_surface->u.tex.level][layer].nblocksx;
115 y = tex->image_offset[cbuf_surface->u.tex.level][layer].nblocksy
125 struct i915_texture *tex = i915_texture(depth_surface->texture); local
214 struct i915_texture *tex = i915_texture(depth_surface->texture); local
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/texture/
FrameBuffer.java 91 Texture tex; field in class:FrameBuffer.RenderBuffer
108 return tex;
137 if (tex != null){
148 if (tex != null){
235 private void checkSetTexture(Texture tex, boolean depth){
236 Image img = tex.getImage();
250 if (samples != tex.getImage().getMultiSamples())
311 * @param tex The color texture to set.
313 public void setColorTexture(Texture2D tex){
315 addColorTexture(tex);
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
TextureGeneratorMarble.java 49 // tex->stype
64 protected Texture generate(Structure tex, int width, int height, int depth, BlenderContext blenderContext) {
69 float[][] colorBand = this.computeColorband(tex, blenderContext);
72 BrightnessAndContrastData bacd = new BrightnessAndContrastData(tex);
73 MarbleData marbleData = new MarbleData(tex);
137 public MarbleData(Structure tex) {
138 noisesize = ((Number) tex.getFieldValue("noisesize")).floatValue();
139 noisebasis = ((Number) tex.getFieldValue("noisebasis")).intValue();
140 noisedepth = ((Number) tex.getFieldValue("noisedepth")).intValue();
141 stype = ((Number) tex.getFieldValue("stype")).intValue()
    [all...]
  /external/jmonkeyengine/engine/src/test/jme3test/model/shape/
TestCylinder.java 57 Texture tex = assetManager.loadTexture(key); local
58 tex.setMinFilter(Texture.MinFilter.Trilinear);
59 mat.setTexture("ColorMap", tex);
  /external/chromium_org/third_party/mesa/src/src/gallium/tests/graw/
clear.c 24 struct pipe_resource *tex; variable in typeref:struct:pipe_resource
36 screen->flush_frontbuffer(screen, tex, 0, 0, window);
79 tex = screen->resource_create(screen,
81 if (tex == NULL)
86 surf_tmpl.u.tex.level = 0;
87 surf_tmpl.u.tex.first_layer = 0;
88 surf_tmpl.u.tex.last_layer = 0;
89 surf = ctx->create_surface(ctx, tex, &surf_tmpl);
  /external/chromium_org/third_party/skia/src/gpu/effects/
GrSimpleTextureEffect.h 26 static GrEffectRef* Create(GrTexture* tex,
30 AutoEffectUnref effect(SkNEW_ARGS(GrSimpleTextureEffect, (tex, matrix, GrTextureParams::kNone_FilterMode, coordsType)));
35 static GrEffectRef* Create(GrTexture* tex,
41 SkNEW_ARGS(GrSimpleTextureEffect, (tex, matrix, filterMode, coordsType)));
45 static GrEffectRef* Create(GrTexture* tex,
50 AutoEffectUnref effect(SkNEW_ARGS(GrSimpleTextureEffect, (tex, matrix, p, coordsType)));
56 static GrEffectRef* CreateWithCustomCoords(GrTexture* tex, const GrTextureParams& p) {
57 AutoEffectUnref effect(SkNEW_ARGS(GrSimpleTextureEffect, (tex,
GrConvolutionEffect.h 25 static GrEffectRef* Create(GrTexture* tex,
31 AutoEffectUnref effect(SkNEW_ARGS(GrConvolutionEffect, (tex,
41 static GrEffectRef* CreateGaussian(GrTexture* tex,
47 AutoEffectUnref effect(SkNEW_ARGS(GrConvolutionEffect, (tex,
  /external/mesa3d/src/gallium/tests/graw/
clear.c 24 struct pipe_resource *tex; variable in typeref:struct:pipe_resource
36 screen->flush_frontbuffer(screen, tex, 0, 0, window);
79 tex = screen->resource_create(screen,
81 if (tex == NULL)
86 surf_tmpl.u.tex.level = 0;
87 surf_tmpl.u.tex.first_layer = 0;
88 surf_tmpl.u.tex.last_layer = 0;
89 surf = ctx->create_surface(ctx, tex, &surf_tmpl);
  /external/skia/src/gpu/effects/
GrSimpleTextureEffect.h 26 static GrEffectRef* Create(GrTexture* tex,
30 AutoEffectUnref effect(SkNEW_ARGS(GrSimpleTextureEffect, (tex, matrix, GrTextureParams::kNone_FilterMode, coordsType)));
35 static GrEffectRef* Create(GrTexture* tex,
41 SkNEW_ARGS(GrSimpleTextureEffect, (tex, matrix, filterMode, coordsType)));
45 static GrEffectRef* Create(GrTexture* tex,
50 AutoEffectUnref effect(SkNEW_ARGS(GrSimpleTextureEffect, (tex, matrix, p, coordsType)));
56 static GrEffectRef* CreateWithCustomCoords(GrTexture* tex, const GrTextureParams& p) {
57 AutoEffectUnref effect(SkNEW_ARGS(GrSimpleTextureEffect, (tex,
  /frameworks/native/services/surfaceflinger/
SurfaceFlingerConsumer.h 30 SurfaceFlingerConsumer(const sp<BufferQueue>& bq, uint32_t tex)
31 : GLConsumer(bq, tex, GLConsumer::TEXTURE_EXTERNAL, false)
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/
TraceCommandWriter.java 44 int tex = readTextureOnGlTexImage ? ( 1 << READ_TEXTURE_DATA_ON_GLTEXIMAGE_BIT) : 0; local
46 int cmd = eglSwap | glDraw | tex;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/
r600_blit.c 132 surf_tmpl.u.tex.level = level;
133 surf_tmpl.u.tex.first_layer = layer;
134 surf_tmpl.u.tex.last_layer = layer;
164 struct r600_resource_texture *tex; local
169 tex = (struct r600_resource_texture *)view->base.texture;
170 if (!tex->depth)
173 if (tex->is_flushing_texture)
176 si_blit_uncompress_depth(&rctx->context, tex);
181 struct r600_resource_texture *tex; local
182 tex = (struct r600_resource_texture *)rctx->framebuffer.cbufs[i]->texture
    [all...]
  /external/mesa3d/src/gallium/drivers/radeonsi/
r600_blit.c 132 surf_tmpl.u.tex.level = level;
133 surf_tmpl.u.tex.first_layer = layer;
134 surf_tmpl.u.tex.last_layer = layer;
164 struct r600_resource_texture *tex; local
169 tex = (struct r600_resource_texture *)view->base.texture;
170 if (!tex->depth)
173 if (tex->is_flushing_texture)
176 si_blit_uncompress_depth(&rctx->context, tex);
181 struct r600_resource_texture *tex; local
182 tex = (struct r600_resource_texture *)rctx->framebuffer.cbufs[i]->texture
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_pstipple.h 45 struct pipe_resource *tex);
u_sampler.c 49 view->u.tex.first_level = 0;
50 view->u.tex.last_level = texture->last_level;
51 view->u.tex.first_layer = 0;
52 view->u.tex.last_layer = texture->target == PIPE_TEXTURE_3D ?
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d11app/
d3d11blit.hlsl 27 Texture2D tex;
52 return tex.Sample(samp, input.texcoord);
  /external/jmonkeyengine/engine/src/test/jme3test/asset/
TestOnlineJar.java 67 Texture tex = assetManager.loadTexture(key); local
70 mat.setTexture("ColorMap", tex);
73 float aspect = tex.getImage().getWidth() / (float) tex.getImage().getHeight();
TestUrlLoading.java 67 Texture tex = assetManager.loadTexture(key); local
70 mat.setTexture("ColorMap", tex);
73 float aspect = tex.getImage().getWidth() / (float) tex.getImage().getHeight();

Completed in 473 milliseconds

12 3 4 5 6 7 8 91011>>