Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
b6a7a3fe
Commit
b6a7a3fe
authored
Jun 26, 2012
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
opengl32: Generate an entry point for glDebugEntry.
parent
370a8c10
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
2 deletions
+12
-2
make_opengl
dlls/opengl32/make_opengl
+3
-1
opengl32.spec
dlls/opengl32/opengl32.spec
+1
-1
wgl.c
dlls/opengl32/wgl.c
+8
-0
No files found.
dlls/opengl32/make_opengl
View file @
b6a7a3fe
...
@@ -235,6 +235,7 @@ sub GenerateThunk($$$$$)
...
@@ -235,6 +235,7 @@ sub GenerateThunk($$$$$)
my
$trace_call_arg
=
""
;
my
$trace_call_arg
=
""
;
my
$trace_arg
=
""
;
my
$trace_arg
=
""
;
return
""
if
$func_ref
->
[
0
]
eq
"glDebugEntry"
;
return
""
if
$func_ref
->
[
0
]
eq
"glGetString"
;
return
""
if
$func_ref
->
[
0
]
eq
"glGetString"
;
return
""
if
$func_ref
->
[
0
]
eq
"glGetIntegerv"
;
return
""
if
$func_ref
->
[
0
]
eq
"glGetIntegerv"
;
return
""
if
$func_ref
->
[
0
]
eq
"glFinish"
;
return
""
if
$func_ref
->
[
0
]
eq
"glFinish"
;
...
@@ -409,7 +410,8 @@ $pseudo_to_opengl{"UInt64EXT"} = "UINT64";
...
@@ -409,7 +410,8 @@ $pseudo_to_opengl{"UInt64EXT"} = "UINT64";
# [ "GLfloat", "ymove" ],
# [ "GLfloat", "ymove" ],
# [ "GLubyte *", "bitmap"] ] ];
# [ "GLubyte *", "bitmap"] ] ];
#
#
my
%
norm_functions
=
();
my
%
norm_functions
=
(
"glDebugEntry"
=>
[
"glDebugEntry"
,
"GLint"
,
[[
"GLint"
,
"unknown1"
],
[
"GLint"
,
"unknown2"
]]
]
);
#
#
# This stores various extensions NOT part of the GL extension registry but still
# This stores various extensions NOT part of the GL extension registry but still
...
...
dlls/opengl32/opengl32.spec
View file @
b6a7a3fe
...
@@ -56,7 +56,7 @@
...
@@ -56,7 +56,7 @@
@ stdcall glCopyTexSubImage1D( long long long long long long ) wine_glCopyTexSubImage1D
@ stdcall glCopyTexSubImage1D( long long long long long long ) wine_glCopyTexSubImage1D
@ stdcall glCopyTexSubImage2D( long long long long long long long long ) wine_glCopyTexSubImage2D
@ stdcall glCopyTexSubImage2D( long long long long long long long long ) wine_glCopyTexSubImage2D
@ stdcall glCullFace( long ) wine_glCullFace
@ stdcall glCullFace( long ) wine_glCullFace
@ st
ub
glDebugEntry
@ st
dcall glDebugEntry( long long ) wine_
glDebugEntry
@ stdcall glDeleteLists( long long ) wine_glDeleteLists
@ stdcall glDeleteLists( long long ) wine_glDeleteLists
@ stdcall glDeleteTextures( long ptr ) wine_glDeleteTextures
@ stdcall glDeleteTextures( long ptr ) wine_glDeleteTextures
@ stdcall glDepthFunc( long ) wine_glDepthFunc
@ stdcall glDepthFunc( long ) wine_glDepthFunc
...
...
dlls/opengl32/wgl.c
View file @
b6a7a3fe
...
@@ -980,6 +980,14 @@ BOOL WINAPI wglUseFontOutlinesW(HDC hdc,
...
@@ -980,6 +980,14 @@ BOOL WINAPI wglUseFontOutlinesW(HDC hdc,
}
}
/***********************************************************************
/***********************************************************************
* glDebugEntry (OPENGL32.@)
*/
GLint
WINAPI
wine_glDebugEntry
(
GLint
unknown1
,
GLint
unknown2
)
{
return
0
;
}
/***********************************************************************
* glFinish (OPENGL32.@)
* glFinish (OPENGL32.@)
*/
*/
void
WINAPI
wine_glFinish
(
void
)
void
WINAPI
wine_glFinish
(
void
)
...
...
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