Searched refs:Texture (Results 151 - 175 of 355) sorted by relevance

1234567891011>>

/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_maos_arrays.c269 if ( (ctx->Texture.Unit[unit].TexGenEnabled & (R_BIT | Q_BIT)) )
272 ((ctx->Texture.Unit[unit]._ReallyEnabled & (TEXTURE_CUBE_BIT)) == 0)) {
H A Dradeon_texstate.c120 * Texture combine functions
260 * Texture unit state management
266 const struct gl_texture_unit *texUnit = &ctx->Texture.Unit[unit];
345 if (ctx->Texture.Unit[txunit]._Current->Image[0][0]->_BaseFormat == GL_ALPHA)
390 if (ctx->Texture.Unit[txunit]._Current->Image[0][0]->_BaseFormat == GL_LUMINANCE)
864 struct gl_texture_unit *texUnit = &ctx->Texture.Unit[unit];
1103 if (ctx->Texture.Unit[unit]._ReallyEnabled & TEXTURE_3D_BIT) {
1109 if (!ctx->Texture.Unit[unit]._ReallyEnabled) {
1116 if (!radeon_validate_texture(ctx, ctx->Texture.Unit[unit]._Current, unit)) {
1123 rmesa->state.texture.unit[unit].texobj = radeon_tex_obj(ctx->Texture
[all...]
/external/mesa3d/src/mesa/main/
H A Dfbobject.h79 return att->Texture->Image[att->CubeMapFace][att->TextureLevel];
88 return att->Texture->Image[att->CubeMapFace][att->TextureLevel];
H A Dtexenv.c401 if (ctx->Texture.CurrentUnit >= maxUnit) {
494 if (ctx->Point.CoordReplace[ctx->Texture.CurrentUnit] == state)
497 ctx->Point.CoordReplace[ctx->Texture.CurrentUnit] = state;
674 if (ctx->Texture.CurrentUnit >= maxUnit) {
714 *params = (GLfloat) ctx->Point.CoordReplace[ctx->Texture.CurrentUnit];
738 if (ctx->Texture.CurrentUnit >= maxUnit) {
776 *params = (GLint) ctx->Point.CoordReplace[ctx->Texture.CurrentUnit];
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DContext.cpp24 #include "libGLESv2/Texture.h"
451 Texture *Context::getTexture(GLuint handle) const
800 Texture *Context::getTargetTexture(GLenum target) const
837 Texture *Context::getSamplerTexture(unsigned int sampler, GLenum type) const
1403 Texture* texture = getSamplerTexture(textureUnit, textureType);
1432 Texture* texture = getSamplerTexture(textureUnit, textureType);
1450 // Texture is not sampler complete or it is in use by the framebuffer. Bind the incomplete texture.
1451 Texture *incompleteTexture = getIncompleteTexture(textureType);
1944 Texture *Context::getIncompleteTexture(GLenum type)
1951 Texture*
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/tnl/
H A Dt_vb_texgen.c342 const struct gl_texture_unit *texUnit = &ctx->Texture.Unit[unit];
490 if (!ctx->Texture._TexGenEnabled || ctx->VertexProgram._Current)
494 struct gl_texture_unit *texUnit = &ctx->Texture.Unit[i];
514 if (!ctx->Texture._TexGenEnabled || ctx->VertexProgram._Current)
518 struct gl_texture_unit *texUnit = &ctx->Texture.Unit[i];
H A Dt_vb_program.c202 ctx->Texture.Unit[unit]._Current,
282 _swrast_map_texture(ctx, ctx->Texture.Unit[u]._Current);
301 _swrast_unmap_texture(ctx, ctx->Texture.Unit[u]._Current);
/external/mesa3d/src/mesa/tnl/
H A Dt_vb_texgen.c342 const struct gl_texture_unit *texUnit = &ctx->Texture.Unit[unit];
490 if (!ctx->Texture._TexGenEnabled || ctx->VertexProgram._Current)
494 struct gl_texture_unit *texUnit = &ctx->Texture.Unit[i];
514 if (!ctx->Texture._TexGenEnabled || ctx->VertexProgram._Current)
518 struct gl_texture_unit *texUnit = &ctx->Texture.Unit[i];
H A Dt_vb_program.c202 ctx->Texture.Unit[unit]._Current,
282 _swrast_map_texture(ctx, ctx->Texture.Unit[u]._Current);
301 _swrast_unmap_texture(ctx, ctx->Texture.Unit[u]._Current);
/external/deqp/framework/opengl/simplereference/
H A DsglrReferenceContext.cpp133 static Framebuffer::TexTarget texLayeredTypeToTarget (Texture::Type type)
137 case Texture::TYPE_2D_ARRAY: return Framebuffer::TEXTARGET_2D_ARRAY;
138 case Texture::TYPE_3D: return Framebuffer::TEXTARGET_3D;
139 case Texture::TYPE_CUBE_MAP_ARRAY: return Framebuffer::TEXTARGET_CUBE_MAP_ARRAY;
459 vector<Texture*> textures;
461 for (vector<Texture*>::iterator i = textures.begin(); i != textures.end(); i++)
623 Texture* texObj = m_textures.find(texture);
628 Texture::Type expectedType = Texture::TYPE_LAST;
631 case GL_TEXTURE_1D: expectedType = Texture
[all...]
/external/deqp/modules/egl/
H A DteglGLES2SharingThreadedTests.cpp74 class Texture;
82 SharedPtr<Texture> popTexture (int index);
83 const SharedPtr<Texture> getTexture (int index) const { return m_textures[index]; }
84 void addTexture (SharedPtr<Texture> texture) { m_textures.push_back(texture); }
103 std::vector<SharedPtr<Texture> > m_textures;
109 SharedPtr<Texture> GLES2ResourceManager::popTexture (int index)
111 SharedPtr<Texture> texture = m_textures[index];
885 class Texture : public Object class in namespace:deqp::egl::GLES2ThreadTest
888 Texture (SharedPtr<tcu::ThreadUtil::Event> event, SharedPtr<FenceSync> sync);
899 Texture function in class:deqp::egl::GLES2ThreadTest::Texture
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dtexenv.c401 if (ctx->Texture.CurrentUnit >= maxUnit) {
494 if (ctx->Point.CoordReplace[ctx->Texture.CurrentUnit] == state)
497 ctx->Point.CoordReplace[ctx->Texture.CurrentUnit] = state;
674 if (ctx->Texture.CurrentUnit >= maxUnit) {
714 *params = (GLfloat) ctx->Point.CoordReplace[ctx->Texture.CurrentUnit];
738 if (ctx->Texture.CurrentUnit >= maxUnit) {
776 *params = (GLint) ctx->Point.CoordReplace[ctx->Texture.CurrentUnit];
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/
H A DRenderer.h40 class Texture;
112 virtual void generateSwizzle(gl::Texture *texture) = 0;
114 virtual void setTexture(gl::SamplerType type, int index, gl::Texture *texture) = 0;
220 // Texture creation
242 // Buffer-to-texture and Texture-to-buffer copies
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_pstipple.c376 newInst.Instruction.Texture = TRUE;
377 newInst.Texture.Texture = TGSI_TEXTURE_2D;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
H A Di915_fpc_optimize.c174 memcpy(&o->Texture, &i->Texture, sizeof(o->Texture));
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
H A Dradeon_setup_tgsi_llvm.c521 boolean shadowcube = (emit_data->inst->Texture.Texture == TGSI_TEXTURE_SHADOWCUBE);
610 if ((inst->Texture.Texture == TGSI_TEXTURE_CUBE ||
611 inst->Texture.Texture == TGSI_TEXTURE_SHADOWCUBE) &&
642 if ((inst->Texture.Texture == TGSI_TEXTURE_CUBE ||
643 inst->Texture.Texture
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_pstipple.c376 newInst.Instruction.Texture = TRUE;
377 newInst.Texture.Texture = TGSI_TEXTURE_2D;
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_fpc_optimize.c174 memcpy(&o->Texture, &i->Texture, sizeof(o->Texture));
/external/mesa3d/src/gallium/drivers/radeon/
H A Dradeon_setup_tgsi_llvm.c521 boolean shadowcube = (emit_data->inst->Texture.Texture == TGSI_TEXTURE_SHADOWCUBE);
610 if ((inst->Texture.Texture == TGSI_TEXTURE_CUBE ||
611 inst->Texture.Texture == TGSI_TEXTURE_SHADOWCUBE) &&
642 if ((inst->Texture.Texture == TGSI_TEXTURE_CUBE ||
643 inst->Texture.Texture
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
H A Dr600_shader.c511 /* Use the Texture Cache */
3763 /* Texture fetch instructions can only use gprs as source.
3775 if (inst->Texture.NumOffsets) {
3776 assert(inst->Texture.NumOffsets == 1);
3825 if (inst->Texture.Texture != TGSI_TEXTURE_RECT) {
3899 if ((inst->Texture.Texture == TGSI_TEXTURE_CUBE ||
3900 inst->Texture.Texture
[all...]
/external/mesa3d/src/gallium/drivers/r600/
H A Dr600_shader.c511 /* Use the Texture Cache */
3763 /* Texture fetch instructions can only use gprs as source.
3775 if (inst->Texture.NumOffsets) {
3776 assert(inst->Texture.NumOffsets == 1);
3825 if (inst->Texture.Texture != TGSI_TEXTURE_RECT) {
3899 if ((inst->Texture.Texture == TGSI_TEXTURE_CUBE ||
3900 inst->Texture.Texture
[all...]
/external/chromium_org/gpu/tools/compositor_model_bench/
H A Drender_model_utils.cc45 Texture* i = node->texture(n);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
H A Dtgsi_dump.c582 if (inst->Instruction.Texture) {
584 ENM( inst->Texture.Texture, tgsi_texture_names );
585 for (i = 0; i < inst->Texture.NumOffsets; i++) {
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
H A Dintel_pixel_copy.c67 ctx->Texture._EnabledUnits ||
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dintel_pixel_copy.c67 ctx->Texture._EnabledUnits ||

Completed in 624 milliseconds

1234567891011>>