summaryrefslogtreecommitdiff
path: root/src/safeopenglgraphics.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/safeopenglgraphics.cpp')
-rw-r--r--src/safeopenglgraphics.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/safeopenglgraphics.cpp b/src/safeopenglgraphics.cpp
index c258298db..78210b7f8 100644
--- a/src/safeopenglgraphics.cpp
+++ b/src/safeopenglgraphics.cpp
@@ -76,13 +76,13 @@ static inline void drawQuad(const Image *image,
{
// Find OpenGL normalized texture coordinates.
float texX1 = static_cast<float>(srcX)
- / static_cast<float>(image->getTextureWidth());
+ / static_cast<float>(image->mTexWidth);
float texY1 = static_cast<float>(srcY)
- / static_cast<float>(image->getTextureHeight());
+ / static_cast<float>(image->mTexHeight);
float texX2 = static_cast<float>(srcX + width) / static_cast<float>(
- image->getTextureWidth());
+ image->mTexWidth);
float texY2 = static_cast<float>(srcY + height) / static_cast<float>(
- image->getTextureHeight());
+ image->mTexHeight);
glTexCoord2f(texX1, texY1);
glVertex2i(dstX, dstY);
@@ -115,13 +115,13 @@ static inline void drawRescaledQuad(const Image *const image,
{
// Find OpenGL normalized texture coordinates.
float texX1 = static_cast<float>(srcX)
- / static_cast<float>(image->getTextureWidth());
+ / static_cast<float>(image->mTexWidth);
float texY1 = static_cast<float>(srcY)
- / static_cast<float>(image->getTextureHeight());
+ / static_cast<float>(image->mTexHeight);
float texX2 = static_cast<float>(srcX + width) / static_cast<float>(
- image->getTextureWidth());
+ image->mTexWidth);
float texY2 = static_cast<float>(srcY + height) / static_cast<float>(
- image->getTextureHeight());
+ image->mTexHeight);
glTexCoord2f(texX1, texY1);
glVertex2i(dstX, dstY);