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
715d8100
Commit
715d8100
authored
Jul 13, 2011
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi32: Sort the OpenGL driver functions alphabetically.
parent
4c2f8bc3
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
9 deletions
+9
-9
dc.c
dlls/gdi32/dibdrv/dc.c
+2
-2
driver.c
dlls/gdi32/driver.c
+2
-2
init.c
dlls/winex11.drv/init.c
+2
-2
gdi_driver.h
include/wine/gdi_driver.h
+3
-3
No files found.
dlls/gdi32/dibdrv/dc.c
View file @
715d8100
...
...
@@ -551,10 +551,10 @@ const DC_FUNCTIONS dib_driver =
NULL
,
/* pwglCreateContext */
NULL
,
/* pwglCreateContextAttribsARB */
NULL
,
/* pwglDeleteContext */
NULL
,
/* pwglGetProcAddress */
NULL
,
/* pwglGetPbufferDCARB */
NULL
,
/* pwgl
MakeCurrent
*/
NULL
,
/* pwgl
GetProcAddress
*/
NULL
,
/* pwglMakeContextCurrentARB */
NULL
,
/* pwglMakeCurrent */
NULL
,
/* pwglSetPixelFormatWINE */
NULL
,
/* pwglShareLists */
NULL
,
/* pwglUseFontBitmapsA */
...
...
dlls/gdi32/driver.c
View file @
715d8100
...
...
@@ -788,10 +788,10 @@ const DC_FUNCTIONS null_driver =
nulldrv_wglCreateContext
,
/* pwglCreateContext */
nulldrv_wglCreateContextAttribsARB
,
/* pwglCreateContextAttribsARB */
nulldrv_wglDeleteContext
,
/* pwglDeleteContext */
nulldrv_wglGetProcAddress
,
/* pwglGetProcAddress */
nulldrv_wglGetPbufferDCARB
,
/* pwglGetPbufferDCARB */
nulldrv_wgl
MakeCurrent
,
/* pwglMakeCurrent
*/
nulldrv_wgl
GetProcAddress
,
/* pwglGetProcAddress
*/
nulldrv_wglMakeContextCurrentARB
,
/* pwglMakeContextCurrentARB */
nulldrv_wglMakeCurrent
,
/* pwglMakeCurrent */
nulldrv_wglSetPixelFormatWINE
,
/* pwglSetPixelFormatWINE */
nulldrv_wglShareLists
,
/* pwglShareLists */
nulldrv_wglUseFontBitmapsA
,
/* pwglUseFontBitmapsA */
...
...
dlls/winex11.drv/init.c
View file @
715d8100
...
...
@@ -568,10 +568,10 @@ static const struct gdi_dc_funcs x11drv_funcs =
X11DRV_wglCreateContext
,
/* pwglCreateContext */
X11DRV_wglCreateContextAttribsARB
,
/* pwglCreateContextAttribsARB */
X11DRV_wglDeleteContext
,
/* pwglDeleteContext */
X11DRV_wglGetProcAddress
,
/* pwglGetProcAddress */
X11DRV_wglGetPbufferDCARB
,
/* pwglGetPbufferDCARB */
X11DRV_wgl
MakeCurrent
,
/* pwglMakeCurrent
*/
X11DRV_wgl
GetProcAddress
,
/* pwglGetProcAddress
*/
X11DRV_wglMakeContextCurrentARB
,
/* pwglMakeContextCurrentARB */
X11DRV_wglMakeCurrent
,
/* pwglMakeCurrent */
X11DRV_wglSetPixelFormatWINE
,
/* pwglSetPixelFormatWINE */
X11DRV_wglShareLists
,
/* pwglShareLists */
X11DRV_wglUseFontBitmapsA
,
/* pwglUseFontBitmapsA */
...
...
include/wine/gdi_driver.h
View file @
715d8100
...
...
@@ -171,10 +171,10 @@ struct gdi_dc_funcs
HGLRC
(
CDECL
*
pwglCreateContext
)(
PHYSDEV
);
HGLRC
(
CDECL
*
pwglCreateContextAttribsARB
)(
PHYSDEV
,
HGLRC
,
const
int
*
);
BOOL
(
CDECL
*
pwglDeleteContext
)(
HGLRC
);
PROC
(
CDECL
*
pwglGetProcAddress
)(
LPCSTR
);
HDC
(
CDECL
*
pwglGetPbufferDCARB
)(
PHYSDEV
,
void
*
);
BOOL
(
CDECL
*
pwglMakeCurrent
)(
PHYSDEV
,
HGLRC
);
PROC
(
CDECL
*
pwglGetProcAddress
)(
LPCSTR
);
BOOL
(
CDECL
*
pwglMakeContextCurrentARB
)(
PHYSDEV
,
PHYSDEV
,
HGLRC
);
BOOL
(
CDECL
*
pwglMakeCurrent
)(
PHYSDEV
,
HGLRC
);
BOOL
(
CDECL
*
pwglSetPixelFormatWINE
)(
PHYSDEV
,
INT
,
const
PIXELFORMATDESCRIPTOR
*
);
BOOL
(
CDECL
*
pwglShareLists
)(
HGLRC
,
HGLRC
);
BOOL
(
CDECL
*
pwglUseFontBitmapsA
)(
PHYSDEV
,
DWORD
,
DWORD
,
DWORD
);
...
...
@@ -182,7 +182,7 @@ struct gdi_dc_funcs
};
/* increment this when you change the DC function table */
#define WINE_GDI_DRIVER_VERSION
1
#define WINE_GDI_DRIVER_VERSION
2
static
inline
PHYSDEV
get_physdev_entry_point
(
PHYSDEV
dev
,
size_t
offset
)
{
...
...
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