Skip to content

Instantly share code, notes, and snippets.

@bananu7
Created March 21, 2013 09:49
Show Gist options
  • Save bananu7/5211875 to your computer and use it in GitHub Desktop.
Save bananu7/5211875 to your computer and use it in GitHub Desktop.
//Texture.h
class Texture {
#include <textypes_gl3.h>
void SetType(Type t);
};
// textypes_gl3.h
enum class Type {
Tex_1D,
Tex_2D
};
// textypes_gl4.h
enum class Type {
Tex_1D,
Tex_2D,
Tex_3D
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment