/third_party/skia/third_party/externals/angle2/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 | 366 (samplerState.getWrapT() != GL_CLAMP_TO_EDGE && in computeSamplerCompleteness() 367 samplerState.getWrapT() != GL_CLAMP_TO_BORDER && !isPow2(baseImageDesc.size.height))) in computeSamplerCompleteness() 411 samplerState.getWrapT() != GL_CLAMP_TO_EDGE) in computeSamplerCompleteness() 887 if (mState.mSamplerState.getWrapT() == wrapT) in setWrapT() 895 GLenum Texture::getWrapT() const in getWrapT() function in gl::Texture 897 return mState.mSamplerState.getWrapT(); in getWrapT()
|
D | Texture.h | 293 GLenum getWrapT() const;
|
D | angletypes.h | 342 GLenum getWrapT() const { return mWrapT; } in getWrapT() function
|
D | queryutils.cpp | 273 *params = CastFromGLintStateValue<ParamType>(pname, texture->getWrapT()); in QueryTexParameterBase() 509 *params = CastFromGLintStateValue<ParamType>(pname, sampler->getWrapT()); in QuerySamplerParameterBase()
|
/third_party/skia/third_party/externals/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()
|
/third_party/skia/third_party/externals/angle2/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 | 1475 mAppliedSampler.setWrapT(mState.getSamplerState().getWrapT()); in syncState() 1478 GL_TEXTURE_WRAP_T, mAppliedSampler.getWrapT())); in syncState()
|
/third_party/skia/third_party/externals/angle2/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()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/ |
D | FrameCapture.cpp | 2749 if (textureSamplerState.getWrapT() != defaultSamplerState.getWrapT()) in CaptureShareGroupMidExecutionSetup() 2751 capTexParam(GL_TEXTURE_WRAP_T, textureSamplerState.getWrapT()); in CaptureShareGroupMidExecutionSetup() 3107 if (sampler->getWrapT() != defaultSamplerState.getWrapT()) in CaptureShareGroupMidExecutionSetup() 3110 sampler->getWrapT())); in CaptureShareGroupMidExecutionSetup()
|
D | frame_capture_utils.cpp | 737 json->addScalar("WrapT", samplerState.getWrapT()); in SerializeSamplerState()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/metal/ |
D | mtl_state_cache.mm | 457 tAddressMode = GetSamplerAddressMode(glState.getWrapT());
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/ |
D | Renderer9.cpp | 1008 gl_d3d9::ConvertTextureWrap(samplerState.getWrapT())); in setSamplerState()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
D | vk_cache_utils.cpp | 3313 SetBitField(mAddressModeV, gl_vk::GetSamplerAddressMode(samplerState.getWrapT())); in update()
|