Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
angle
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
angle
Commits
d34a0d1b
Commit
d34a0d1b
authored
Oct 02, 2013
by
Shannon Woods
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update to most recent khrplatform.h
BUG=480 Signed-off-by: geofflang@chromium.org
parent
a0bd8ef0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
1 deletion
+14
-1
khrplatform.h
include/KHR/khrplatform.h
+14
-1
No files found.
include/KHR/khrplatform.h
100644 → 100755
View file @
d34a0d1b
...
@@ -26,7 +26,7 @@
...
@@ -26,7 +26,7 @@
/* Khronos platform-specific types and definitions.
/* Khronos platform-specific types and definitions.
*
*
* $Revision:
9356 $ on $Date: 2009-10-21 02:52:25 -0700 (Wed, 21 Oct 2009
) $
* $Revision:
23298 $ on $Date: 2013-09-30 17:07:13 -0700 (Mon, 30 Sep 2013
) $
*
*
* Adopters may modify this file to suit their platform. Adopters are
* Adopters may modify this file to suit their platform. Adopters are
* encouraged to submit platform specific modifications to the Khronos
* encouraged to submit platform specific modifications to the Khronos
...
@@ -221,10 +221,23 @@ typedef signed char khronos_int8_t;
...
@@ -221,10 +221,23 @@ typedef signed char khronos_int8_t;
typedef
unsigned
char
khronos_uint8_t
;
typedef
unsigned
char
khronos_uint8_t
;
typedef
signed
short
int
khronos_int16_t
;
typedef
signed
short
int
khronos_int16_t
;
typedef
unsigned
short
int
khronos_uint16_t
;
typedef
unsigned
short
int
khronos_uint16_t
;
/*
* 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.
*/
#ifdef _WIN64
typedef
signed
long
long
int
khronos_intptr_t
;
typedef
unsigned
long
long
int
khronos_uintptr_t
;
typedef
signed
long
long
int
khronos_ssize_t
;
typedef
unsigned
long
long
int
khronos_usize_t
;
#else
typedef
signed
long
int
khronos_intptr_t
;
typedef
signed
long
int
khronos_intptr_t
;
typedef
unsigned
long
int
khronos_uintptr_t
;
typedef
unsigned
long
int
khronos_uintptr_t
;
typedef
signed
long
int
khronos_ssize_t
;
typedef
signed
long
int
khronos_ssize_t
;
typedef
unsigned
long
int
khronos_usize_t
;
typedef
unsigned
long
int
khronos_usize_t
;
#endif
#if KHRONOS_SUPPORT_FLOAT
#if KHRONOS_SUPPORT_FLOAT
/*
/*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment