/external/swiftshader/src/OpenGL/libGLESv2/ |
D | Sampler.h | 56 void setMaxAnisotropy(GLfloat maxAnisotropy) { mMaxAnisotropy = maxAnisotropy; } in setMaxAnisotropy() function
|
D | Texture.h | 112 bool setMaxAnisotropy(GLfloat textureMaxAnisotropy);
|
D | Context.cpp | 1730 …case GL_TEXTURE_MAX_ANISOTROPY_EXT: samplerObject->setMaxAnisotropy(static_cast<GLfloat>(param)); … in samplerParameteri() 1753 …case GL_TEXTURE_MAX_ANISOTROPY_EXT: samplerObject->setMaxAnisotropy(param); … in samplerParameterf() 3150 device->setMaxAnisotropy(samplerType, samplerIndex, maxAnisotropy); in applyTextures()
|
D | Texture.cpp | 175 bool Texture::setMaxAnisotropy(float textureMaxAnisotropy) in setMaxAnisotropy() function in es2::Texture
|
D | libGLESv2.cpp | 4705 if(!texture->setMaxAnisotropy(param)) in TexParameterf() 4836 if(!texture->setMaxAnisotropy((GLfloat)param)) in TexParameteri()
|
/external/swiftshader/src/Device/ |
D | VertexProcessor.cpp | 264 void VertexProcessor::setMaxAnisotropy(unsigned int sampler, float maxAnisotropy) in setMaxAnisotropy() function in sw::VertexProcessor 268 context->sampler[TEXTURE_IMAGE_UNITS + sampler].setMaxAnisotropy(maxAnisotropy); in setMaxAnisotropy()
|
D | VertexProcessor.hpp | 152 void setMaxAnisotropy(unsigned int stage, float maxAnisotropy);
|
D | Sampler.hpp | 185 void setMaxAnisotropy(float maxAnisotropy);
|
D | PixelProcessor.hpp | 198 void setMaxAnisotropy(unsigned int sampler, float maxAnisotropy);
|
D | PixelProcessor.cpp | 227 void PixelProcessor::setMaxAnisotropy(unsigned int sampler, float maxAnisotropy) in setMaxAnisotropy() function in sw::PixelProcessor 231 context->sampler[sampler].setMaxAnisotropy(maxAnisotropy); in setMaxAnisotropy()
|
D | Renderer.hpp | 277 void setMaxAnisotropy(SamplerType type, int sampler, float maxAnisotropy);
|
D | Sampler.cpp | 307 void Sampler::setMaxAnisotropy(float maxAnisotropy) in setMaxAnisotropy() function in sw::Sampler
|
D | Renderer.cpp | 1982 void Renderer::setMaxAnisotropy(SamplerType type, int sampler, float maxAnisotropy) in setMaxAnisotropy() function in sw::Renderer 1986 PixelProcessor::setMaxAnisotropy(sampler, maxAnisotropy); in setMaxAnisotropy() 1990 VertexProcessor::setMaxAnisotropy(sampler, maxAnisotropy); in setMaxAnisotropy()
|
/external/swiftshader/src/Renderer/ |
D | Sampler.hpp | 185 void setMaxAnisotropy(float maxAnisotropy);
|
D | VertexProcessor.hpp | 260 void setMaxAnisotropy(unsigned int stage, float maxAnisotropy);
|
D | PixelProcessor.hpp | 235 void setMaxAnisotropy(unsigned int sampler, float maxAnisotropy);
|
D | Renderer.hpp | 305 void setMaxAnisotropy(SamplerType type, int sampler, float maxAnisotropy);
|
D | VertexProcessor.cpp | 596 void VertexProcessor::setMaxAnisotropy(unsigned int sampler, float maxAnisotropy) in setMaxAnisotropy() function in sw::VertexProcessor 600 context->sampler[TEXTURE_IMAGE_UNITS + sampler].setMaxAnisotropy(maxAnisotropy); in setMaxAnisotropy()
|
D | Sampler.cpp | 310 void Sampler::setMaxAnisotropy(float maxAnisotropy) in setMaxAnisotropy() function in sw::Sampler
|
D | PixelProcessor.cpp | 441 void PixelProcessor::setMaxAnisotropy(unsigned int sampler, float maxAnisotropy) in setMaxAnisotropy() function in sw::PixelProcessor 445 context->sampler[sampler].setMaxAnisotropy(maxAnisotropy); in setMaxAnisotropy()
|
D | Renderer.cpp | 2376 void Renderer::setMaxAnisotropy(SamplerType type, int sampler, float maxAnisotropy) in setMaxAnisotropy() function in sw::Renderer 2380 PixelProcessor::setMaxAnisotropy(sampler, maxAnisotropy); in setMaxAnisotropy() 2384 VertexProcessor::setMaxAnisotropy(sampler, maxAnisotropy); in setMaxAnisotropy()
|
/external/swiftshader/src/OpenGL/libGLES_CM/ |
D | Texture.h | 62 bool setMaxAnisotropy(GLfloat textureMaxAnisotropy);
|
D | Texture.cpp | 138 bool Texture::setMaxAnisotropy(float textureMaxAnisotropy) in setMaxAnisotropy() function in es1::Texture
|
D | libGLES_CM.cpp | 4351 if(!texture->setMaxAnisotropy(param)) in TexParameterf() 4421 if(!texture->setMaxAnisotropy((GLfloat)param)) in TexParameteri()
|
D | Context.cpp | 2107 device->setMaxAnisotropy(sw::SAMPLER_PIXEL, unit, maxAnisotropy); in applyTextures()
|