diff options
author | bunnei <bunneidev@gmail.com> | 2018-03-19 22:10:16 +0100 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2018-03-20 04:14:01 +0100 |
commit | a1cf5020e6a0b5c3b815b9dfa430ef03915495ed (patch) | |
tree | 92b4dff01edcbe688b9906913b9440bbd57a1519 /externals/glad/include/KHR/khrplatform.h | |
parent | gl_state: Sync latest version with Citra. (diff) | |
download | yuzu-a1cf5020e6a0b5c3b815b9dfa430ef03915495ed.tar yuzu-a1cf5020e6a0b5c3b815b9dfa430ef03915495ed.tar.gz yuzu-a1cf5020e6a0b5c3b815b9dfa430ef03915495ed.tar.bz2 yuzu-a1cf5020e6a0b5c3b815b9dfa430ef03915495ed.tar.lz yuzu-a1cf5020e6a0b5c3b815b9dfa430ef03915495ed.tar.xz yuzu-a1cf5020e6a0b5c3b815b9dfa430ef03915495ed.tar.zst yuzu-a1cf5020e6a0b5c3b815b9dfa430ef03915495ed.zip |
Diffstat (limited to 'externals/glad/include/KHR/khrplatform.h')
-rw-r--r-- | externals/glad/include/KHR/khrplatform.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/externals/glad/include/KHR/khrplatform.h b/externals/glad/include/KHR/khrplatform.h index c9e6f17d3..1ad3554a7 100644 --- a/externals/glad/include/KHR/khrplatform.h +++ b/externals/glad/include/KHR/khrplatform.h @@ -26,7 +26,7 @@ /* Khronos platform-specific types and definitions. * - * $Revision: 23298 $ on $Date: 2013-09-30 17:07:13 -0700 (Mon, 30 Sep 2013) $ + * $Revision: 32517 $ on $Date: 2016-03-11 02:41:19 -0800 (Fri, 11 Mar 2016) $ * * Adopters may modify this file to suit their platform. Adopters are * encouraged to submit platform specific modifications to the Khronos @@ -101,6 +101,8 @@ # define KHRONOS_APICALL __declspec(dllimport) #elif defined (__SYMBIAN32__) # define KHRONOS_APICALL IMPORT_C +#elif defined(__ANDROID__) +# define KHRONOS_APICALL __attribute__((visibility("default"))) #else # define KHRONOS_APICALL #endif @@ -223,7 +225,7 @@ typedef signed short int khronos_int16_t; typedef unsigned short int khronos_uint16_t; /* - * Types that differ between LLP64 and LP64 architectures - in LLP64, + * Types that differ between LLP64 and LP64 architectures - in LLP64, * pointers are 64 bits, but 'long' is still 32 bits. Win64 appears * to be the only LLP64 architecture in current use. */ |