Home
last modified time | relevance | path

Searched refs:getWrapT (Results 1 – 23 of 23) sorted by relevance

/external/angle/src/libANGLE/
DSampler.cpp88 GLenum Sampler::getWrapT() const in getWrapT() function in gl::Sampler
90 return mState.getWrapT(); in getWrapT()
DSampler.h48 GLenum getWrapT() const;
DTexture.cpp364 (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()
DTexture.h287 GLenum getWrapT() const;
Dangletypes.h308 GLenum getWrapT() const { return mWrapT; } in getWrapT() function
Dqueryutils.cpp273 *params = CastFromGLintStateValue<ParamType>(pname, texture->getWrapT()); in QueryTexParameterBase()
503 *params = CastFromGLintStateValue<ParamType>(pname, sampler->getWrapT()); in QuerySamplerParameterBase()
/external/swiftshader/src/OpenGL/libGLESv2/
DSampler.h61 GLenum getWrapT() const { return mWrapModeT; } in getWrapT() function
DTexture.h128 GLenum getWrapT() const { return mWrapT; } in getWrapT() function
DContext.cpp1818 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()
DlibGLESv2.cpp3311 *params = (GLfloat)texture->getWrapT(); in GetTexParameterfv()
3391 *params = texture->getWrapT(); in GetTexParameteriv()
/external/angle/src/libANGLE/renderer/gl/
DSamplerGL.cpp96 …ID, mState, mAppliedSamplerState, GL_TEXTURE_WRAP_T, &gl::SamplerState::getWrapT, &gl::SamplerStat… in syncState()
DTextureGL.cpp1471 mAppliedSampler.setWrapT(mState.getSamplerState().getWrapT()); in syncState()
1474 GL_TEXTURE_WRAP_T, mAppliedSampler.getWrapT())); in syncState()
/external/swiftshader/src/OpenGL/libGLES_CM/
DTexture.h69 GLenum getWrapT() const;
DTexture.cpp183 GLenum Texture::getWrapT() const in getWrapT() function in es1::Texture
DlibGLES_CM.cpp2331 *params = (GLfloat)texture->getWrapT(); in GetTexParameterfv()
2382 *params = texture->getWrapT(); in GetTexParameteriv()
DContext.cpp2097 GLenum wrapT = texture->getWrapT(); in applyTextures()
/external/angle/src/libANGLE/renderer/d3d/d3d11/
DRenderStateCache.cpp284 samplerDesc.AddressV = gl_d3d11::ConvertTextureWrap(samplerState.getWrapT()); in getSamplerState()
DStateManager11.cpp423 GLenum wrapT = samplerState.getWrapT(); in updateSamplerMetadata()
/external/angle/src/libANGLE/capture/
DFrameCapture.cpp2474 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()
Dframe_capture_utils.cpp842 json->addScalar("WrapT", samplerState.getWrapT()); in SerializeSamplerState()
/external/angle/src/libANGLE/renderer/metal/
Dmtl_state_cache.mm457 tAddressMode = GetSamplerAddressMode(glState.getWrapT());
/external/angle/src/libANGLE/renderer/d3d/d3d9/
DRenderer9.cpp1008 gl_d3d9::ConvertTextureWrap(samplerState.getWrapT())); in setSamplerState()
/external/angle/src/libANGLE/renderer/vulkan/
Dvk_cache_utils.cpp3194 SetBitField(mAddressModeV, gl_vk::GetSamplerAddressMode(samplerState.getWrapT())); in update()