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
0dde222b
Commit
0dde222b
authored
Aug 20, 2007
by
Roderick Colenbrander
Committed by
Alexandre Julliard
Aug 20, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
opengl32: Don't use 64bit gl types.
parent
22eea683
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
make_opengl
dlls/opengl32/make_opengl
+2
-0
opengl_ext.c
dlls/opengl32/opengl_ext.c
+4
-4
No files found.
dlls/opengl32/make_opengl
View file @
0dde222b
...
...
@@ -328,6 +328,8 @@ while (my $line = <TYPES>) {
}
# This is to override the 'void' -> '*' bogus conversion
$pseudo_to_opengl
{
"void"
}
=
"void"
;
$pseudo_to_opengl
{
"Int64EXT"
}
=
"INT64"
;
$pseudo_to_opengl
{
"UInt64EXT"
}
=
"UINT64"
;
#
# Then, create the list of all OpenGL functions using the 'gl.spec'
...
...
dlls/opengl32/opengl_ext.c
View file @
0dde222b
...
...
@@ -3001,8 +3001,8 @@ static void WINAPI wine_glGetProgramivNV( GLuint id, GLenum pname, GLint* params
LEAVE_GL
();
}
static
void
WINAPI
wine_glGetQueryObjecti64vEXT
(
GLuint
id
,
GLenum
pname
,
GLint64EXT
*
params
)
{
void
(
*
func_glGetQueryObjecti64vEXT
)(
GLuint
,
GLenum
,
GLint64EXT
*
)
=
extension_funcs
[
368
];
static
void
WINAPI
wine_glGetQueryObjecti64vEXT
(
GLuint
id
,
GLenum
pname
,
INT64
*
params
)
{
void
(
*
func_glGetQueryObjecti64vEXT
)(
GLuint
,
GLenum
,
INT64
*
)
=
extension_funcs
[
368
];
TRACE
(
"(%d, %d, %p)
\n
"
,
id
,
pname
,
params
);
ENTER_GL
();
func_glGetQueryObjecti64vEXT
(
id
,
pname
,
params
);
...
...
@@ -3025,8 +3025,8 @@ static void WINAPI wine_glGetQueryObjectivARB( GLuint id, GLenum pname, GLint* p
LEAVE_GL
();
}
static
void
WINAPI
wine_glGetQueryObjectui64vEXT
(
GLuint
id
,
GLenum
pname
,
GLuint64EXT
*
params
)
{
void
(
*
func_glGetQueryObjectui64vEXT
)(
GLuint
,
GLenum
,
GLuint64EXT
*
)
=
extension_funcs
[
371
];
static
void
WINAPI
wine_glGetQueryObjectui64vEXT
(
GLuint
id
,
GLenum
pname
,
UINT64
*
params
)
{
void
(
*
func_glGetQueryObjectui64vEXT
)(
GLuint
,
GLenum
,
UINT64
*
)
=
extension_funcs
[
371
];
TRACE
(
"(%d, %d, %p)
\n
"
,
id
,
pname
,
params
);
ENTER_GL
();
func_glGetQueryObjectui64vEXT
(
id
,
pname
,
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