diff options
Diffstat (limited to 'tile-shader.hpp')
| -rw-r--r-- | tile-shader.hpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tile-shader.hpp b/tile-shader.hpp index 4be4fe4e..3a2b6d37 100644 --- a/tile-shader.hpp +++ b/tile-shader.hpp @@ -14,7 +14,6 @@ struct tile_shader : GL::AbstractShaderProgram explicit tile_shader(); - tile_shader& set_color(const Color3& color) { setUniform(_color_uniform, color); return *this; } tile_shader& set_projection(const Math::Matrix4<float>& mat, float y_scale); tile_shader& bindTexture(GL::Texture2D& texture); @@ -22,7 +21,7 @@ struct tile_shader : GL::AbstractShaderProgram private: enum: Int { TextureUnit = 0 }; - Int _color_uniform, _projection_uniform, _y_scale_uniform; + Int _projection_uniform, _y_scale_uniform; }; } // namespace Magnum::Examples |
