Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
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
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
71db272f
Commit
71db272f
authored
Jan 02, 2010
by
Stefan Dösinger
Committed by
Alexandre Julliard
Jan 04, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Add GLintptr and GLsizeiptr.
parent
716520b4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
wined3d_gl.h
dlls/wined3d/wined3d_gl.h
+5
-3
No files found.
dlls/wined3d/wined3d_gl.h
View file @
71db272f
...
...
@@ -73,6 +73,8 @@ typedef float GLclampf;
typedef
double
GLdouble
;
typedef
double
GLclampd
;
typedef
void
GLvoid
;
typedef
ptrdiff_t
GLintptr
;
typedef
ptrdiff_t
GLsizeiptr
;
/* Booleans */
#define GL_FALSE 0x0
...
...
@@ -2500,9 +2502,9 @@ typedef void (WINE_GLAPI * PGLFNBINDBUFFERARBPROC) (GLenum target, GLuint buffer
typedef
void
(
WINE_GLAPI
*
PGLFNDELETEBUFFERSARBPROC
)
(
GLsizei
n
,
const
GLuint
*
buffers
);
typedef
void
(
WINE_GLAPI
*
PGLFNGENBUFFERSARBPROC
)
(
GLsizei
n
,
GLuint
*
buffers
);
typedef
GLboolean
(
WINE_GLAPI
*
PGLFNISBUFFERARBPROC
)
(
GLuint
buffer
);
typedef
void
(
WINE_GLAPI
*
PGLFNBUFFERDATAARBPROC
)
(
GLenum
target
,
ptrdiff_t
size
,
const
GLvoid
*
data
,
GLenum
usage
);
typedef
void
(
WINE_GLAPI
*
PGLFNBUFFERSUBDATAARBPROC
)
(
GLenum
target
,
ptrdiff_t
offset
,
ptrdiff_t
size
,
const
GLvoid
*
data
);
typedef
void
(
WINE_GLAPI
*
PGLFNGETBUFFERSUBDATAARBPROC
)
(
GLenum
target
,
ptrdiff_t
offset
,
ptrdiff_t
size
,
GLvoid
*
data
);
typedef
void
(
WINE_GLAPI
*
PGLFNBUFFERDATAARBPROC
)
(
GLenum
target
,
GLsizeiptr
size
,
const
GLvoid
*
data
,
GLenum
usage
);
typedef
void
(
WINE_GLAPI
*
PGLFNBUFFERSUBDATAARBPROC
)
(
GLenum
target
,
GLintptr
offset
,
GLsizeiptr
size
,
const
GLvoid
*
data
);
typedef
void
(
WINE_GLAPI
*
PGLFNGETBUFFERSUBDATAARBPROC
)
(
GLenum
target
,
GLintptr
offset
,
GLsizeiptr
size
,
GLvoid
*
data
);
typedef
GLvoid
*
(
WINE_GLAPI
*
PGLFNMAPBUFFERARBPROC
)
(
GLenum
target
,
GLenum
access
);
typedef
GLboolean
(
WINE_GLAPI
*
PGLFNUNMAPBUFFERARBPROC
)
(
GLenum
target
);
typedef
void
(
WINE_GLAPI
*
PGLFNGETBUFFERPARAMETERIVARBPROC
)
(
GLenum
target
,
GLenum
pname
,
GLint
*
params
);
...
...
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