summaryrefslogtreecommitdiff
path: root/src/graphicsvertexes.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2011-04-22 23:16:10 +0300
committerAndrei Karas <akaras@inbox.ru>2011-04-22 23:16:10 +0300
commitf5536169ce6143ae39bcfd8b353e6495dac76a72 (patch)
tree650a42f303452291e4201728b5b33c1f4fb3339d /src/graphicsvertexes.h
parentfbcbf7e3f54443477aa6098bd41f825167dd1e76 (diff)
downloadplus-f5536169ce6143ae39bcfd8b353e6495dac76a72.tar.gz
plus-f5536169ce6143ae39bcfd8b353e6495dac76a72.tar.bz2
plus-f5536169ce6143ae39bcfd8b353e6495dac76a72.tar.xz
plus-f5536169ce6143ae39bcfd8b353e6495dac76a72.zip
Small optimisation in opengl gui drawing.
Diffstat (limited to 'src/graphicsvertexes.h')
-rw-r--r--src/graphicsvertexes.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/graphicsvertexes.h b/src/graphicsvertexes.h
index 2ab54197d..d3905ba56 100644
--- a/src/graphicsvertexes.h
+++ b/src/graphicsvertexes.h
@@ -73,19 +73,19 @@ class OpenGLGraphicsVertexes
GLint *switchIntTexArray();
- std::vector<GLfloat*> &getFloatTexPool()
- { return mFloatTexPool; }
+ std::vector<GLfloat*> *getFloatTexPool()
+ { return &mFloatTexPool; }
- std::vector<GLint*> &getIntVertPool()
- { return mIntVertPool; }
+ std::vector<GLint*> *getIntVertPool()
+ { return &mIntVertPool; }
- std::vector<GLint*> &getIntTexPool()
- { return mIntTexPool; }
+ std::vector<GLint*> *getIntTexPool()
+ { return &mIntTexPool; }
void switchVp(int n);
- std::vector<int> &getVp()
- { return mVp; }
+ std::vector<int> *getVp()
+ { return &mVp; }
void init();