Searched refs:getMaxLod (Results 1 – 15 of 15) sorted by relevance
/external/angle/src/libANGLE/ |
D | Sampler.cpp | 132 GLfloat Sampler::getMaxLod() const in getMaxLod() function in gl::Sampler 134 return mState.getMaxLod(); in getMaxLod()
|
D | Sampler.h | 60 GLfloat getMaxLod() const;
|
D | Texture.h | 299 GLfloat getMaxLod() const;
|
D | angletypes.h | 324 GLfloat getMaxLod() const { return mMaxLod; } in getMaxLod() function
|
D | Texture.cpp | 940 GLfloat Texture::getMaxLod() const in getMaxLod() function in gl::Texture 942 return mState.mSamplerState.getMaxLod(); in getMaxLod()
|
D | queryutils.cpp | 313 *params = CastFromSpecialValue<isGLfixed, ParamType>(pname, texture->getMaxLod()); in QueryTexParameterBase() 515 *params = CastFromStateValue<ParamType>(pname, sampler->getMaxLod()); in QuerySamplerParameterBase()
|
/external/swiftshader/src/OpenGL/libGLESv2/ |
D | Sampler.h | 64 GLfloat getMaxLod() const { return mMaxLod; } in getMaxLod() function
|
D | Context.cpp | 1821 case GL_TEXTURE_MAX_LOD: return static_cast<GLint>(roundf(samplerObject->getMaxLod())); in getSamplerParameteri() 1844 case GL_TEXTURE_MAX_LOD: return samplerObject->getMaxLod(); in getSamplerParameterf() 3175 maxLOD = samplerObject->getMaxLod(); in applyTextures()
|
/external/angle/src/libANGLE/renderer/d3d/d3d11/ |
D | RenderStateCache.cpp | 300 samplerDesc.MaxLOD = samplerState.getMaxLod(); in getSamplerState() 307 ASSERT(samplerState.getMaxLod() >= 999.9f); in getSamplerState()
|
/external/angle/src/libANGLE/renderer/gl/ |
D | SamplerGL.cpp | 100 …D, mState, mAppliedSamplerState, GL_TEXTURE_MAX_LOD, &gl::SamplerState::getMaxLod, &gl::SamplerSta… in syncState()
|
D | TextureGL.cpp | 1496 mAppliedSampler.setMaxLod(mState.getSamplerState().getMaxLod()); in syncState() 1499 GL_TEXTURE_MAX_LOD, mAppliedSampler.getMaxLod())); in syncState()
|
/external/angle/src/libANGLE/capture/ |
D | FrameCapture.cpp | 2484 if (textureSamplerState.getMaxLod() != defaultSamplerState.getMaxLod()) in CaptureSharedContextMidExecutionSetup() 2486 capTexParamf(GL_TEXTURE_MAX_LOD, textureSamplerState.getMaxLod()); in CaptureSharedContextMidExecutionSetup() 2852 if (sampler->getMaxLod() != defaultSamplerState.getMaxLod()) in CaptureSharedContextMidExecutionSetup() 2855 sampler->getMaxLod())); in CaptureSharedContextMidExecutionSetup()
|
D | frame_capture_utils.cpp | 846 json->addScalar("MaxLod", samplerState.getMaxLod()); in SerializeSamplerState()
|
/external/angle/src/libANGLE/renderer/metal/ |
D | TextureMtl.mm | 1381 maxLodClamp = mState.getSamplerState().getMaxLod(); 1388 maxLodClamp = sampler->getSamplerState().getMaxLod();
|
/external/angle/src/libANGLE/renderer/vulkan/ |
D | vk_cache_utils.cpp | 3156 mMaxLod = samplerState.getMaxLod(); in update()
|