/external/angle/src/libANGLE/ |
D | Sampler.cpp | 88 GLenum Sampler::getWrapT() const in getWrapT() function in gl::Sampler 90 return mState.getWrapT(); in getWrapT()
|
D | Sampler.h | 48 GLenum getWrapT() const;
|
D | Texture.cpp | 364 (samplerState.getWrapT() != GL_CLAMP_TO_EDGE && in computeSamplerCompleteness() 365 samplerState.getWrapT() != GL_CLAMP_TO_BORDER && !isPow2(baseImageDesc.size.height))) in computeSamplerCompleteness() 409 samplerState.getWrapT() != GL_CLAMP_TO_EDGE) in computeSamplerCompleteness() 880 if (mState.mSamplerState.getWrapT() == wrapT) in setWrapT() 888 GLenum Texture::getWrapT() const in getWrapT() function in gl::Texture 890 return mState.mSamplerState.getWrapT(); in getWrapT()
|
D | Texture.h | 287 GLenum getWrapT() const;
|
D | angletypes.h | 308 GLenum getWrapT() const { return mWrapT; } in getWrapT() function
|
D | queryutils.cpp | 273 *params = CastFromGLintStateValue<ParamType>(pname, texture->getWrapT()); in QueryTexParameterBase() 503 *params = CastFromGLintStateValue<ParamType>(pname, sampler->getWrapT()); in QuerySamplerParameterBase()
|
/external/swiftshader/src/OpenGL/libGLESv2/ |
D | Sampler.h | 61 GLenum getWrapT() const { return mWrapModeT; } in getWrapT() function
|
D | Texture.h | 128 GLenum getWrapT() const { return mWrapT; } in getWrapT() function
|
D | Context.cpp | 1818 case GL_TEXTURE_WRAP_T: return static_cast<GLint>(samplerObject->getWrapT()); in getSamplerParameteri() 1841 case GL_TEXTURE_WRAP_T: return static_cast<GLfloat>(samplerObject->getWrapT()); in getSamplerParameterf() 3170 wrapT = samplerObject->getWrapT(); in applyTextures() 3183 wrapT = texture->getWrapT(); in applyTextures()
|
D | libGLESv2.cpp | 3311 *params = (GLfloat)texture->getWrapT(); in GetTexParameterfv() 3391 *params = texture->getWrapT(); in GetTexParameteriv()
|
/external/angle/src/libANGLE/renderer/gl/ |
D | SamplerGL.cpp | 96 …ID, mState, mAppliedSamplerState, GL_TEXTURE_WRAP_T, &gl::SamplerState::getWrapT, &gl::SamplerStat… in syncState()
|
D | TextureGL.cpp | 1471 mAppliedSampler.setWrapT(mState.getSamplerState().getWrapT()); in syncState() 1474 GL_TEXTURE_WRAP_T, mAppliedSampler.getWrapT())); in syncState()
|
/external/swiftshader/src/OpenGL/libGLES_CM/ |
D | Texture.h | 69 GLenum getWrapT() const;
|
D | Texture.cpp | 183 GLenum Texture::getWrapT() const in getWrapT() function in es1::Texture
|
D | libGLES_CM.cpp | 2331 *params = (GLfloat)texture->getWrapT(); in GetTexParameterfv() 2382 *params = texture->getWrapT(); in GetTexParameteriv()
|
D | Context.cpp | 2097 GLenum wrapT = texture->getWrapT(); in applyTextures()
|
/external/angle/src/libANGLE/renderer/d3d/d3d11/ |
D | RenderStateCache.cpp | 284 samplerDesc.AddressV = gl_d3d11::ConvertTextureWrap(samplerState.getWrapT()); in getSamplerState()
|
D | StateManager11.cpp | 423 GLenum wrapT = samplerState.getWrapT(); in updateSamplerMetadata()
|
/external/angle/src/libANGLE/capture/ |
D | FrameCapture.cpp | 2474 if (textureSamplerState.getWrapT() != defaultSamplerState.getWrapT()) in CaptureSharedContextMidExecutionSetup() 2476 capTexParam(GL_TEXTURE_WRAP_T, textureSamplerState.getWrapT()); in CaptureSharedContextMidExecutionSetup() 2842 if (sampler->getWrapT() != defaultSamplerState.getWrapT()) in CaptureSharedContextMidExecutionSetup() 2845 sampler->getWrapT())); in CaptureSharedContextMidExecutionSetup()
|
D | frame_capture_utils.cpp | 842 json->addScalar("WrapT", samplerState.getWrapT()); in SerializeSamplerState()
|
/external/angle/src/libANGLE/renderer/metal/ |
D | mtl_state_cache.mm | 457 tAddressMode = GetSamplerAddressMode(glState.getWrapT());
|
/external/angle/src/libANGLE/renderer/d3d/d3d9/ |
D | Renderer9.cpp | 1008 gl_d3d9::ConvertTextureWrap(samplerState.getWrapT())); in setSamplerState()
|
/external/angle/src/libANGLE/renderer/vulkan/ |
D | vk_cache_utils.cpp | 3194 SetBitField(mAddressModeV, gl_vk::GetSamplerAddressMode(samplerState.getWrapT())); in update()
|