diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/common.hpp | 2 | ||||
-rw-r--r-- | include/entities.hpp | 2 | ||||
-rw-r--r-- | include/ui.hpp | 1 |
3 files changed, 3 insertions, 2 deletions
diff --git a/include/common.hpp b/include/common.hpp index 153c46e..d080652 100644 --- a/include/common.hpp +++ b/include/common.hpp @@ -197,7 +197,7 @@ void useShader(GLuint *sh, GLint *tu, GLint *ca, GLint *ta); * A function to draw a colored box for opengl * To use it, the lower left hand and upper right hand coords are passed along */ -void drawRect(vec2 ll, vec2 ur); +void drawRect(vec2 ll, vec2 ur, float z); // gets the length of `n` HLINEs template<typename T> diff --git a/include/entities.hpp b/include/entities.hpp index 83b47b9..93c1caa 100644 --- a/include/entities.hpp +++ b/include/entities.hpp @@ -150,7 +150,7 @@ public: ~Particles(void){} // draws the particle - void draw(std::vector<GLfloat> &p) const; + void draw(GLfloat*& p) const; // updates a particle void update(float _gravity, float ground_y); diff --git a/include/ui.hpp b/include/ui.hpp index b950b4b..7d9b9f5 100644 --- a/include/ui.hpp +++ b/include/ui.hpp @@ -81,6 +81,7 @@ namespace ui { void setFontFace(const char *ttf); void setFontSize(unsigned int size); void setFontColor(unsigned char r,unsigned char g,unsigned char b, unsigned char a); + void setFontZ(float z); /* * Draw a centered string. |