HomeSort by relevance Sort by last modified time
    Searched refs:tmu (Results 1 - 11 of 11) sorted by null

  /system/core/libpixelflinger/codeflinger/
texturing.cpp 272 texture_unit_t& tmu = mTextureMachine.tmu[i]; local
274 // all components are replaced, skip this TMU.
275 tmu.format_idx = 0;
276 tmu.mask = 0;
277 tmu.replaced = replaced;
280 tmu.format_idx = GGL_READ_NEEDS(T_FORMAT, needs.t[i]);
281 tmu.format = c->formats[tmu.format_idx];
282 tmu.bits = tmu.format.size*8
343 const texture_unit_t& tmu = mTextureMachine.tmu[i]; local
416 const texture_unit_t& tmu = mTextureMachine.tmu[i]; local
441 const texture_unit_t& tmu = mTextureMachine.tmu[i]; local
663 const texture_unit_t& tmu = mTextureMachine.tmu[i]; local
1089 texture_unit_t& tmu = mTextureMachine.tmu[i]; local
    [all...]
GGLAssembler.h 321 texture_unit_t tmu[GGL_TEXTURE_UNIT_COUNT]; member in struct:android::GGLAssembler::texture_machine_t
368 const pixel_t& texel, int component, int tmu);
439 pixel_t& texel, const texture_unit_t& tmu,
444 pixel_t& texel, const texture_unit_t& tmu,
449 pixel_t& texel, const texture_unit_t& tmu,
454 pixel_t& texel, const texture_unit_t& tmu,
GGLAssembler.cpp 507 texture_unit_t& tmu = mTextureMachine.tmu[i]; local
508 if ((tmu.format_idx) &&
607 const texture_unit_t& tmu = mTextureMachine.tmu[i]; local
608 if ((tmu.mask & component_mask) &&
609 ((tmu.replaced & component_mask) == 0)) {
    [all...]
  /frameworks/native/opengl/libagl/
texture.cpp 33 ogles_context_t* c, int tmu, GLuint texture, const sp<EGLTextureObject>& tex);
68 if (c->textures.tmu[i].texture)
69 c->textures.tmu[i].texture->decStrong(c);
76 texture_unit_t& u(c->textures.tmu[i]);
111 void invalidate_texture(ogles_context_t* c, int tmu, uint8_t flags = 0xFF) {
112 c->textures.tmu[tmu].dirty = flags;
127 texture_unit_t& u(c->textures.tmu[i]);
155 texture_unit_t& u(c->textures.tmu[i]);
312 const GLuint name = c->textures.tmu[active].name
776 const int tmu = 0; local
934 const int tmu = target-GL_TEXTURE0; local
949 const int tmu = target-GL_TEXTURE0; local
    [all...]
primitives.cpp 492 int width = c->textures.tmu[i].texture->surface.width;
497 int height = c->textures.tmu[i].texture->surface.height;
704 const int w = c->textures.tmu[i].texture->surface.width;
705 const int h = c->textures.tmu[i].texture->surface.height;
721 const texture_t& tmu = c->rasterizer.state.texture[i]; local
722 if (!tmu.enable)
733 const GLenum min_filter = c->textures.tmu[i].texture->min_filter;
737 &c->textures.tmu[i].texture->mip(lod));
741 if (tmu.s_wrap == GGL_CLAMP) {
742 const int width = tmu.surface.width
778 const texture_t& tmu = c->rasterizer.state.texture[i]; local
    [all...]
array.cpp 146 memcpy(v, c->current.texture[c->arrays.tmu].v, sizeof(vec4_t));
432 const int tmu = c->arrays.activeTexture; local
437 case GL_TEXTURE_COORD_ARRAY: a = &c->arrays.texture[tmu]; break;
1315 const int tmu = c->arrays.activeTexture; local
    [all...]
context.h 202 uint8_t tmu; member in struct:android::gl::array_machine_t
355 texture_unit_t tmu[GGL_TEXTURE_UNIT_COUNT]; member in struct:android::gl::texture_state_t
356 int active; // active tmu
  /system/core/libpixelflinger/
raster.cpp 146 GGLint gglBitBlit(GGLContext* con, int tmu, GGLint crop[4], GGLint where[4])
155 // exclsively enable this tmu
157 c->procs.activeTexture(c, tmu);
160 uint32_t tmus = 1UL<<tmu;
208 c->procs.texCoordGradScale8xv(c, tmu, texcoords);
pixelflinger.cpp 102 static void ggl_bindTextureLod(void* con, GGLuint tmu,const GGLSurface* surface)
106 ggl_set_surface(c, &c->state.texture[tmu].surface, surface);
449 static void ggl_texCoordGradScale8xv(void* con, GGLint tmu, const int32_t* grad)
452 texture_t& u = c->state.texture[tmu];
499 static void ggl_activeTexture(void* con, GGLuint tmu)
502 if (tmu >= GGLuint(GGL_TEXTURE_UNIT_COUNT)) {
506 c->activeTMUIndex = tmu;
507 c->activeTMU = &(c->state.texture[tmu]);
714 const uint32_t tmu = c->activeTMUIndex; local
716 const uint32_t mask = 1UL << tmu;
    [all...]
scanline.cpp 438 // only one TMU enabled
1911 const texture_t& tmu = c->state.texture[i]; local
1941 texture_t& tmu = c->state.texture[i]; local
1995 texture_t& tmu = c->state.texture[i]; local
    [all...]
  /system/core/include/pixelflinger/
pixelflinger.h 217 void (*activeTexture)(void* c, GGLuint tmu);
222 void (*bindTextureLod)(void* c, GGLuint tmu, const GGLSurface* surface);
271 void (*texCoordGradScale8xv)(void* c, GGLint tmu, const int32_t* grad8);
320 int tmu,

Completed in 233 milliseconds