summaryrefslogtreecommitdiff
path: root/vcl/opengl
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-01-03 14:48:55 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-01-04 07:17:57 +0100
commit97b008d0e3a76d5b21ca6cc06fd84a90ed4593de (patch)
treeae20a591ca69ec0e0784ec62b4063ef383222ede /vcl/opengl
parent31b5c9b9bce461c2a9a9de99bbae2480788c19ca (diff)
drop ChecksumType typedef
adds no value Change-Id: I14c168d16eb98eb8c065c4c9a8f2a486c59feebb Reviewed-on: https://gerrit.libreoffice.org/47341 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/opengl')
-rw-r--r--vcl/opengl/salbmp.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/opengl/salbmp.cxx b/vcl/opengl/salbmp.cxx
index b3f8f54c960f..93fcf0e670c2 100644
--- a/vcl/opengl/salbmp.cxx
+++ b/vcl/opengl/salbmp.cxx
@@ -642,7 +642,7 @@ sal_uInt16 OpenGLSalBitmap::GetBitCount() const
return mnBits;
}
-bool OpenGLSalBitmap::calcChecksumGL(OpenGLTexture& rInputTexture, ChecksumType& rChecksum) const
+bool OpenGLSalBitmap::calcChecksumGL(OpenGLTexture& rInputTexture, BitmapChecksum& rChecksum) const
{
OUString FragShader("areaHashCRC64TFragmentShader");
@@ -714,7 +714,7 @@ bool OpenGLSalBitmap::calcChecksumGL(OpenGLTexture& rInputTexture, ChecksumType&
std::vector<sal_uInt8> aBuf( aFinalTexture.GetWidth() * aFinalTexture.GetHeight() * 4 );
aFinalTexture.Read(GL_RGBA, GL_UNSIGNED_BYTE, aBuf.data());
- ChecksumType nCrc = vcl_get_checksum(0, aBuf.data(), aBuf.size());
+ BitmapChecksum nCrc = vcl_get_checksum(0, aBuf.data(), aBuf.size());
rChecksum = nCrc;
return true;