I am working on a project involving transform feedback functions and notice that so far only three are implemented in OpenGLAda:
function Transform_Feedback_Buffer_Mode (Subject : Program) return Buffer_Mode;
function Transform_Feedback_Varyings (Subject : Program) return Size;
function Transform_Feedback_Varying_Max_Length (Subject : Program) return Size;
I'll implement other functions that I need in my project but I'm not sure if they'll be good enough to introduce into the OpenGLAda public code.
What enum name should I use for GL_Interleaved_Attribs and GL_Separate_Attribs.
Currently I'm using Transform_Buffer_Mode.
I am working on a project involving transform feedback functions and notice that so far only three are implemented in OpenGLAda:
I'll implement other functions that I need in my project but I'm not sure if they'll be good enough to introduce into the OpenGLAda public code.
What enum name should I use for
GL_Interleaved_AttribsandGL_Separate_Attribs.Currently I'm using
Transform_Buffer_Mode.