From ddd26ed83d3ac0335562f762ced273a1d62bd959 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Sat, 23 Dec 2017 01:37:09 +0000 Subject: [Style] Updated style in files. --- yage/core/glslprogram.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'yage/core/glslprogram.h') diff --git a/yage/core/glslprogram.h b/yage/core/glslprogram.h index 9e49d329..0617bc1e 100644 --- a/yage/core/glslprogram.h +++ b/yage/core/glslprogram.h @@ -19,9 +19,9 @@ namespace yage class GlslProgram { public: - GlslProgram() = default; + GlslProgram() = default; GlslProgram(const GlslProgram &) = delete; - GlslProgram(GlslProgram &&) = delete; + GlslProgram(GlslProgram &&) = delete; ~GlslProgram(); GlslProgram &operator=(const GlslProgram &) = delete; @@ -42,10 +42,10 @@ public: private: /// compiled shader program id - GLuint program_id_ = 0; - GLuint vertex_shader_id_ = 0; + GLuint program_id_ = 0; + GLuint vertex_shader_id_ = 0; GLuint fragment_shader_id_ = 0; - int attribute_index_ = 0; + int attribute_index_ = 0; /// compiles one shader void compileShader(GLuint shader, const std::string &shaderContent); -- cgit