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
2c54f8c1
Commit
2c54f8c1
authored
Aug 23, 2012
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
opengl32: Generate null driver entry points for all extension functions.
parent
ce48e2c8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
5 deletions
+8
-5
make_opengl
dlls/opengl32/make_opengl
+8
-5
opengl_norm.c
dlls/opengl32/opengl_norm.c
+0
-0
No files found.
dlls/opengl32/make_opengl
View file @
2c54f8c1
...
...
@@ -899,14 +899,17 @@ foreach (sort keys %wgl_functions) {
foreach
(
sort
keys
%
norm_functions
)
{
print
NORM
generate_null_func
(
$_
,
$norm_functions
{
$_
});
}
foreach
(
sort
keys
%
ext_functions
)
{
print
NORM
generate_null_func
(
$_
,
$ext_functions
{
$_
});
}
print
NORM
"\nstruct opengl_funcs null_opengl_funcs =\n{\n {\n"
;
foreach
(
sort
keys
%
wgl_functions
)
{
print
NORM
" null_$_,\n"
;
}
print
NORM
" },\n"
;
print
NORM
"#define USE_GL_FUNC(name) null_##name,\n"
;
print
NORM
"
{ ALL_WGL_FUNCS }
\n"
;
print
NORM
"#undef USE_GL_FUNC\n"
;
print
NORM
"};\n"
;
print
NORM
" },\n
{\n
"
;
foreach
(
sort
keys
%
norm_functions
)
{
print
NORM
" null_$_,\n"
unless
$_
eq
"glDebugEntry"
;
}
print
NORM
"
},\n {
\n"
;
foreach
(
sort
keys
%
ext_functions
)
{
print
NORM
" null_$_,\n"
;
}
print
NORM
"
}\n
};\n"
;
close
(
NORM
);
...
...
dlls/opengl32/opengl_norm.c
View file @
2c54f8c1
This source diff could not be displayed because it is too large. You can
view the blob
instead.
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