summaryrefslogtreecommitdiffstats
path: root/gfx/angle/src/libANGLE/Sampler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'gfx/angle/src/libANGLE/Sampler.cpp')
-rwxr-xr-xgfx/angle/src/libANGLE/Sampler.cpp16
1 files changed, 5 insertions, 11 deletions
diff --git a/gfx/angle/src/libANGLE/Sampler.cpp b/gfx/angle/src/libANGLE/Sampler.cpp
index 369c3cbaa..dc1d7c94a 100755
--- a/gfx/angle/src/libANGLE/Sampler.cpp
+++ b/gfx/angle/src/libANGLE/Sampler.cpp
@@ -135,24 +135,18 @@ GLenum Sampler::getCompareFunc() const
return mSamplerState.compareFunc;
}
-void Sampler::setSRGBDecode(GLenum sRGBDecode)
-{
- mSamplerState.sRGBDecode = sRGBDecode;
-}
-
-GLenum Sampler::getSRGBDecode() const
-{
- return mSamplerState.sRGBDecode;
-}
-
const SamplerState &Sampler::getSamplerState() const
{
return mSamplerState;
}
-rx::SamplerImpl *Sampler::getImplementation() const
+const rx::SamplerImpl *Sampler::getImplementation() const
{
return mImpl;
}
+rx::SamplerImpl *Sampler::getImplementation()
+{
+ return mImpl;
+}
}