fluff
[vg.git] / vg_tex.h
index 125b43eb9eaa3369039897010647a32b502da141..ac5920a480c126f806eabe453dc9f4dfe86eee84 100644 (file)
--- a/vg_tex.h
+++ b/vg_tex.h
@@ -48,6 +48,7 @@
 #endif
 
 #define STBI_ONLY_JPEG
+#define STBI_NO_THREAD_LOCALS
 #define STB_IMAGE_IMPLEMENTATION
 #include "vg/submodules/stb/stb_image.h"
 
@@ -127,6 +128,10 @@ struct texture_load_info{
 
 VG_STATIC void async_vg_tex2d_upload( void *payload, u32 size )
 {
+   if( vg_thread_purpose() != k_thread_purpose_main ){
+      vg_fatal_error( "Catastrophic programming error.\n" );
+   }
+
    struct texture_load_info *info = payload;
 
        glGenTextures( 1, info->dest );