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
5e8d015a
Commit
5e8d015a
authored
May 07, 2003
by
Michael Schlüter
Committed by
Alexandre Julliard
May 07, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added wglGetExtensionsStringARB.
parent
fb3080a2
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
2 deletions
+13
-2
make_opengl
dlls/opengl32/make_opengl
+1
-0
opengl32.spec
dlls/opengl32/opengl32.spec
+1
-0
wgl.c
dlls/opengl32/wgl.c
+10
-1
wgl.h
dlls/opengl32/wgl.h
+1
-1
No files found.
dlls/opengl32/make_opengl
View file @
5e8d015a
...
...
@@ -518,6 +518,7 @@ print SPEC "@ stdcall wglCreateContext(long)
@ stdcall wglGetCurrentContext()
@ stdcall wglGetCurrentDC()
@ stdcall wglGetExtensionsStringEXT()
@ stdcall wglGetExtensionsStringARB(long)
@ stdcall wglGetLayerPaletteEntries(long long long long ptr)
@ stdcall wglGetProcAddress(str)
@ stdcall wglMakeCurrent(long long)
...
...
dlls/opengl32/opengl32.spec
View file @
5e8d015a
...
...
@@ -6,6 +6,7 @@
@ stdcall wglGetCurrentContext()
@ stdcall wglGetCurrentDC()
@ stdcall wglGetExtensionsStringEXT()
@ stdcall wglGetExtensionsStringARB(long)
@ stdcall wglGetLayerPaletteEntries(long long long long ptr)
@ stdcall wglGetProcAddress(str)
@ stdcall wglMakeCurrent(long long)
...
...
dlls/opengl32/wgl.c
View file @
5e8d015a
...
...
@@ -653,7 +653,7 @@ static BOOL process_attach(void)
}
/* Some WGL extensions... */
static
const
char
*
WGL_extensions
=
""
;
static
const
char
*
WGL_extensions
=
"
WGL_ARB_extensions_string WGL_EXT_extensions_string
"
;
const
char
*
WINAPI
wglGetExtensionsStringEXT
(
void
)
{
TRACE
(
"() returning
\"
%s
\"\n
"
,
WGL_extensions
);
...
...
@@ -667,6 +667,15 @@ static void process_detach(void)
}
/***********************************************************************
* wglGetExtensionsStringARB(OPENGL32.@)
*/
const
char
*
WINAPI
wglGetExtensionsStringARB
(
HDC
hdc
)
{
return
wglGetExtensionsStringEXT
();
}
/***********************************************************************
* OpenGL initialisation routine
*/
BOOL
WINAPI
DllMain
(
HINSTANCE
hinst
,
DWORD
reason
,
LPVOID
reserved
)
...
...
dlls/opengl32/wgl.h
View file @
5e8d015a
...
...
@@ -112,6 +112,6 @@ BOOL WINAPI wglUseFontOutlines(HDC hdc,
FLOAT
extrusion
,
int
format
,
LPGLYPHMETRICSFLOAT
lpgmf
)
;
const
char
*
WINAPI
wglGetExtensionsStringARB
(
HDC
hdc
)
;
#endif
/* __DLLS_OPENGL32_WGL_H */
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