From 47ae402f7e1c4568ccce55d12f4c3660a48e8d76 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Tue, 10 May 2016 19:11:48 -0400 Subject: [PATCH] Introduced a shorthand for setting up array attributes. --- Outputs/CRT/Internals/CRTOpenGL.cpp | 17 ++--------------- Outputs/CRT/Internals/Shaders/Shader.cpp | 8 ++++++++ Outputs/CRT/Internals/Shaders/Shader.hpp | 8 ++++++++ 3 files changed, 18 insertions(+), 15 deletions(-) diff --git a/Outputs/CRT/Internals/CRTOpenGL.cpp b/Outputs/CRT/Internals/CRTOpenGL.cpp index 29c9fd896..a7691a8ec 100644 --- a/Outputs/CRT/Internals/CRTOpenGL.cpp +++ b/Outputs/CRT/Internals/CRTOpenGL.cpp @@ -426,21 +426,8 @@ void OpenGLOutputBuilder::prepare_output_vertex_array() { glBindVertexArray(output_vertex_array); glBindBuffer(GL_ARRAY_BUFFER, output_array_buffer); - - const GLsizei vertexStride = OutputVertexSize; - size_t offset = 0; - - const char *attributes[] = {"horizontal", "vertical", nullptr}; - const char **attribute = attributes; - while(*attribute) - { - GLint attributeLocation = output_shader_program->get_attrib_location(*attribute); - glEnableVertexAttribArray((GLuint)attributeLocation); - glVertexAttribPointer((GLuint)attributeLocation, 2, GL_UNSIGNED_SHORT, GL_FALSE, vertexStride, (void *)offset); - glVertexAttribDivisor((GLuint)attributeLocation, 1); - offset += 4; - attribute++; - } + output_shader_program->enable_vertex_attribute_with_pointer("horizontal", 2, GL_UNSIGNED_SHORT, GL_FALSE, OutputVertexSize, (void *)OutputVertexOffsetOfHorizontal, 1); + output_shader_program->enable_vertex_attribute_with_pointer("vertical", 2, GL_UNSIGNED_SHORT, GL_FALSE, OutputVertexSize, (void *)OutputVertexOffsetOfVertical, 1); } } diff --git a/Outputs/CRT/Internals/Shaders/Shader.cpp b/Outputs/CRT/Internals/Shaders/Shader.cpp index cfb69a48d..78dd2fe8e 100644 --- a/Outputs/CRT/Internals/Shaders/Shader.cpp +++ b/Outputs/CRT/Internals/Shaders/Shader.cpp @@ -112,3 +112,11 @@ GLint Shader::get_uniform_location(const GLchar *name) { return glGetUniformLocation(_shader_program, name); } + +void Shader::enable_vertex_attribute_with_pointer(const char *name, GLint size, GLenum type, GLboolean normalised, GLsizei stride, const GLvoid *pointer, GLuint divisor) +{ + GLint location = get_attrib_location(name); + glEnableVertexAttribArray((GLuint)location); + glVertexAttribPointer((GLuint)location, size, type, normalised, stride, pointer); + glVertexAttribDivisor((GLuint)location, divisor); +} diff --git a/Outputs/CRT/Internals/Shaders/Shader.hpp b/Outputs/CRT/Internals/Shaders/Shader.hpp index 42ca1a099..94d24cb2f 100644 --- a/Outputs/CRT/Internals/Shaders/Shader.hpp +++ b/Outputs/CRT/Internals/Shaders/Shader.hpp @@ -66,6 +66,14 @@ public: */ GLint get_uniform_location(const GLchar *name); + /*! + Shorthand for an appropriate sequence of: + * @c get_attrib_location; + * @c glEnableVertexAttribArray; + * @c glVertexAttribPointer; + * @c glVertexAttribDivisor. + */ + void enable_vertex_attribute_with_pointer(const char *name, GLint size, GLenum type, GLboolean normalised, GLsizei stride, const GLvoid *pointer, GLuint divisor); private: GLuint compile_shader(const char *source, GLenum type);