audio rework pt 1
[vg.git] / src / vg / vg_tex.h
index 33e074ef59b6736f8f45186028e8a4d78a8d6c56..71c79c0105a422ff0233d601e7c69d143f08f493 100644 (file)
@@ -1,4 +1,6 @@
 /* Copyright (C) 2021-2022 Harry Godden (hgn) - All Rights Reserved */
+#ifndef VG_TEX_H
+#define VG_TEX_H
 
 #define VG_TEXTURE_NO_MIP      0x1
 #define VG_TEXTURE_REPEAT      0x2
@@ -135,3 +137,5 @@ static void vg_tex2d_free( vg_tex2d *textures[], int num )
                glDeleteTextures( 1, &textures[i]->name );
        }
 }
+
+#endif /* VG_TEX_H */