Home
last modified time | relevance | path

Searched refs:getMaxLod (Results 1 – 15 of 15) sorted by relevance

/external/angle/src/libANGLE/
DSampler.cpp132 GLfloat Sampler::getMaxLod() const in getMaxLod() function in gl::Sampler
134 return mState.getMaxLod(); in getMaxLod()
DSampler.h60 GLfloat getMaxLod() const;
DTexture.h299 GLfloat getMaxLod() const;
Dangletypes.h324 GLfloat getMaxLod() const { return mMaxLod; } in getMaxLod() function
DTexture.cpp940 GLfloat Texture::getMaxLod() const in getMaxLod() function in gl::Texture
942 return mState.mSamplerState.getMaxLod(); in getMaxLod()
Dqueryutils.cpp313 *params = CastFromSpecialValue<isGLfixed, ParamType>(pname, texture->getMaxLod()); in QueryTexParameterBase()
515 *params = CastFromStateValue<ParamType>(pname, sampler->getMaxLod()); in QuerySamplerParameterBase()
/external/swiftshader/src/OpenGL/libGLESv2/
DSampler.h64 GLfloat getMaxLod() const { return mMaxLod; } in getMaxLod() function
DContext.cpp1821 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/
DRenderStateCache.cpp300 samplerDesc.MaxLOD = samplerState.getMaxLod(); in getSamplerState()
307 ASSERT(samplerState.getMaxLod() >= 999.9f); in getSamplerState()
/external/angle/src/libANGLE/renderer/gl/
DSamplerGL.cpp100 …D, mState, mAppliedSamplerState, GL_TEXTURE_MAX_LOD, &gl::SamplerState::getMaxLod, &gl::SamplerSta… in syncState()
DTextureGL.cpp1496 mAppliedSampler.setMaxLod(mState.getSamplerState().getMaxLod()); in syncState()
1499 GL_TEXTURE_MAX_LOD, mAppliedSampler.getMaxLod())); in syncState()
/external/angle/src/libANGLE/capture/
DFrameCapture.cpp2484 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()
Dframe_capture_utils.cpp846 json->addScalar("MaxLod", samplerState.getMaxLod()); in SerializeSamplerState()
/external/angle/src/libANGLE/renderer/metal/
DTextureMtl.mm1381 maxLodClamp = mState.getSamplerState().getMaxLod();
1388 maxLodClamp = sampler->getSamplerState().getMaxLod();
/external/angle/src/libANGLE/renderer/vulkan/
Dvk_cache_utils.cpp3156 mMaxLod = samplerState.getMaxLod(); in update()