/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
D | Sampler.cpp | 77 GLenum Sampler::getWrapS() const in getWrapS() function in gl::Sampler 79 return mState.getWrapS(); in getWrapS()
|
D | Sampler.h | 45 GLenum getWrapS() const;
|
D | Texture.cpp | 364 if ((samplerState.getWrapS() != GL_CLAMP_TO_EDGE && in computeSamplerCompleteness() 365 samplerState.getWrapS() != GL_CLAMP_TO_BORDER && !isPow2(baseImageDesc.size.width)) || in computeSamplerCompleteness() 410 if (samplerState.getWrapS() != GL_CLAMP_TO_EDGE || in computeSamplerCompleteness() 880 GLenum Texture::getWrapS() const in getWrapS() function in gl::Texture 882 return mState.mSamplerState.getWrapS(); in getWrapS()
|
D | Texture.h | 290 GLenum getWrapS() const;
|
D | angletypes.h | 338 GLenum getWrapS() const { return mWrapS; } in getWrapS() function
|
D | queryutils.cpp | 270 *params = CastFromGLintStateValue<ParamType>(pname, texture->getWrapS()); in QueryTexParameterBase() 506 *params = CastFromGLintStateValue<ParamType>(pname, sampler->getWrapS()); in QuerySamplerParameterBase()
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/ |
D | Sampler.h | 60 GLenum getWrapS() const { return mWrapModeS; } in getWrapS() function
|
D | Texture.h | 127 GLenum getWrapS() const { return mWrapS; } in getWrapS() function
|
D | Context.cpp | 1817 case GL_TEXTURE_WRAP_S: return static_cast<GLint>(samplerObject->getWrapS()); in getSamplerParameteri() 1840 case GL_TEXTURE_WRAP_S: return static_cast<GLfloat>(samplerObject->getWrapS()); in getSamplerParameterf() 3169 wrapS = samplerObject->getWrapS(); in applyTextures() 3182 wrapS = texture->getWrapS(); in applyTextures()
|
D | libGLESv2.cpp | 3308 *params = (GLfloat)texture->getWrapS(); in GetTexParameterfv() 3388 *params = texture->getWrapS(); in GetTexParameteriv()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/ |
D | SamplerGL.cpp | 95 …ID, mState, mAppliedSamplerState, GL_TEXTURE_WRAP_S, &gl::SamplerState::getWrapS, &gl::SamplerStat… in syncState()
|
D | TextureGL.cpp | 1469 mAppliedSampler.setWrapS(mState.getSamplerState().getWrapS()); in syncState() 1472 GL_TEXTURE_WRAP_S, mAppliedSampler.getWrapS())); in syncState()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/ |
D | RenderStateCache.cpp | 283 samplerDesc.AddressU = gl_d3d11::ConvertTextureWrap(samplerState.getWrapS()); in getSamplerState()
|
D | StateManager11.cpp | 422 GLenum wrapS = samplerState.getWrapS(); in updateSamplerMetadata()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/ |
D | FrameCapture.cpp | 2744 if (textureSamplerState.getWrapS() != defaultSamplerState.getWrapS()) in CaptureShareGroupMidExecutionSetup() 2746 capTexParam(GL_TEXTURE_WRAP_S, textureSamplerState.getWrapS()); in CaptureShareGroupMidExecutionSetup() 3097 if (sampler->getWrapS() != defaultSamplerState.getWrapS()) in CaptureShareGroupMidExecutionSetup() 3100 sampler->getWrapS())); in CaptureShareGroupMidExecutionSetup()
|
D | frame_capture_utils.cpp | 736 json->addScalar("WrapS", samplerState.getWrapS()); in SerializeSamplerState()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/metal/ |
D | mtl_state_cache.mm | 456 sAddressMode = GetSamplerAddressMode(glState.getWrapS());
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/ |
D | Renderer9.cpp | 1006 gl_d3d9::ConvertTextureWrap(samplerState.getWrapS())); in setSamplerState()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
D | vk_cache_utils.cpp | 3312 SetBitField(mAddressModeU, gl_vk::GetSamplerAddressMode(samplerState.getWrapS())); in update()
|