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
cd8f5c86
Commit
cd8f5c86
authored
Jun 11, 2009
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
opengl32: Make the script default to version 1.1. Remove the glGetLevelParameter stubs.
parent
ab20785b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
7 deletions
+3
-7
make_opengl
dlls/opengl32/make_opengl
+3
-5
opengl32.spec
dlls/opengl32/opengl32.spec
+0
-2
No files found.
dlls/opengl32/make_opengl
View file @
cd8f5c86
...
...
@@ -22,7 +22,7 @@ use strict;
# http://oss.sgi.com/cgi-bin/cvsweb.cgi/projects/ogl-sample/main/doc/registry/specs/
#
# - opengl_version is the OpenGL version emulated by the library
# (can be 1.0 to 1.5). The default is 1.
2
.
# (can be 1.0 to 1.5). The default is 1.
1
.
#
# This script generates the three following files :
#
...
...
@@ -314,7 +314,7 @@ if (@ARGV > 1) {
$name0
=~
s%^.*/%%
;
die
"Usage: $name0 [version]\n"
;
}
my
$version
=
$ARGV
[
0
]
||
"1.
2
"
;
my
$version
=
$ARGV
[
0
]
||
"1.
1
"
;
if
(
$version
eq
"1.0"
)
{
%
norm_categories
=
%
cat_1_0
;
}
elsif
(
$version
eq
"1.1"
)
{
...
...
@@ -644,9 +644,7 @@ foreach (sort keys %norm_functions) {
print
SPEC
") wine_$func_name\n"
;
}
print
SPEC
"@ stub glGetLevelParameterfv
@ stub glGetLevelParameteriv
@ stdcall wglChoosePixelFormat(long ptr) gdi32.ChoosePixelFormat
print
SPEC
"@ stdcall wglChoosePixelFormat(long ptr) gdi32.ChoosePixelFormat
@ stdcall wglCopyContext(long long long) gdi32.wglCopyContext
@ stdcall wglCreateContext(long) gdi32.wglCreateContext
@ stdcall wglCreateLayerContext(long long)
...
...
dlls/opengl32/opengl32.spec
View file @
cd8f5c86
...
...
@@ -334,8 +334,6 @@
@ stdcall glVertex4sv( ptr ) wine_glVertex4sv
@ stdcall glVertexPointer( long long long ptr ) wine_glVertexPointer
@ stdcall glViewport( long long long long ) wine_glViewport
@ stub glGetLevelParameterfv
@ stub glGetLevelParameteriv
@ stdcall wglChoosePixelFormat(long ptr) gdi32.ChoosePixelFormat
@ stdcall wglCopyContext(long long long) gdi32.wglCopyContext
@ stdcall wglCreateContext(long) gdi32.wglCreateContext
...
...
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