[Bf-blender-cvs] [54b0065] blender2.8: Gawain: fix Windows compile error

Mike Erwin noreply at git.blender.org
Tue Sep 13 09:21:37 CEST 2016


Commit: 54b00657cada1cf25c2793c1842f6c8f408a3151
Author: Mike Erwin
Date:   Tue Sep 13 03:21:16 2016 -0400
Branches: blender2.8
https://developer.blender.org/rB54b00657cada1cf25c2793c1842f6c8f408a3151

Gawain: fix Windows compile error

MSVC was NOT happy about uint64_t, now it is.

===================================================================

M	source/blender/gpu/gawain/common.h

===================================================================

diff --git a/source/blender/gpu/gawain/common.h b/source/blender/gpu/gawain/common.h
index 77b953b..184c907 100644
--- a/source/blender/gpu/gawain/common.h
+++ b/source/blender/gpu/gawain/common.h
@@ -15,6 +15,7 @@
 
 #include <GL/glew.h>
 #include <stdbool.h>
+#include <stdint.h>
 
 #if TRUST_NO_ONE
   #include <assert.h>




More information about the Bf-blender-cvs mailing list