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
6b30e61a
Commit
6b30e61a
authored
Apr 21, 2008
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winex11: Get rid of the unnecessary opengl debug channel.
parent
0bbadeb6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
13 deletions
+12
-13
opengl.c
dlls/winex11.drv/opengl.c
+12
-13
No files found.
dlls/winex11.drv/opengl.c
View file @
6b30e61a
...
@@ -35,7 +35,6 @@
...
@@ -35,7 +35,6 @@
#include "wine/debug.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
wgl
);
WINE_DEFAULT_DEBUG_CHANNEL
(
wgl
);
WINE_DECLARE_DEBUG_CHANNEL
(
opengl
);
#ifdef SONAME_LIBGL
#ifdef SONAME_LIBGL
...
@@ -3370,7 +3369,7 @@ BOOL X11DRV_SwapBuffers(X11DRV_PDEVICE *physDev)
...
@@ -3370,7 +3369,7 @@ BOOL X11DRV_SwapBuffers(X11DRV_PDEVICE *physDev)
return
0
;
return
0
;
}
}
TRACE
_
(
opengl
)
(
"(%p)
\n
"
,
physDev
);
TRACE
(
"(%p)
\n
"
,
physDev
);
drawable
=
get_glxdrawable
(
physDev
);
drawable
=
get_glxdrawable
(
physDev
);
...
@@ -3491,7 +3490,7 @@ BOOL X11DRV_SetPixelFormat(X11DRV_PDEVICE *physDev,
...
@@ -3491,7 +3490,7 @@ BOOL X11DRV_SetPixelFormat(X11DRV_PDEVICE *physDev,
* SwapBuffers (X11DRV.@)
* SwapBuffers (X11DRV.@)
*/
*/
BOOL
X11DRV_SwapBuffers
(
X11DRV_PDEVICE
*
physDev
)
{
BOOL
X11DRV_SwapBuffers
(
X11DRV_PDEVICE
*
physDev
)
{
ERR
_
(
opengl
)
(
"No OpenGL support compiled in.
\n
"
);
ERR
(
"No OpenGL support compiled in.
\n
"
);
return
FALSE
;
return
FALSE
;
}
}
...
@@ -3502,7 +3501,7 @@ BOOL X11DRV_SwapBuffers(X11DRV_PDEVICE *physDev) {
...
@@ -3502,7 +3501,7 @@ BOOL X11DRV_SwapBuffers(X11DRV_PDEVICE *physDev) {
* For OpenGL32 wglCopyContext.
* For OpenGL32 wglCopyContext.
*/
*/
BOOL
X11DRV_wglCopyContext
(
HGLRC
hglrcSrc
,
HGLRC
hglrcDst
,
UINT
mask
)
{
BOOL
X11DRV_wglCopyContext
(
HGLRC
hglrcSrc
,
HGLRC
hglrcDst
,
UINT
mask
)
{
ERR
_
(
opengl
)
(
"No OpenGL support compiled in.
\n
"
);
ERR
(
"No OpenGL support compiled in.
\n
"
);
return
FALSE
;
return
FALSE
;
}
}
...
@@ -3512,7 +3511,7 @@ BOOL X11DRV_wglCopyContext(HGLRC hglrcSrc, HGLRC hglrcDst, UINT mask) {
...
@@ -3512,7 +3511,7 @@ BOOL X11DRV_wglCopyContext(HGLRC hglrcSrc, HGLRC hglrcDst, UINT mask) {
* For OpenGL32 wglCreateContext.
* For OpenGL32 wglCreateContext.
*/
*/
HGLRC
X11DRV_wglCreateContext
(
X11DRV_PDEVICE
*
physDev
)
{
HGLRC
X11DRV_wglCreateContext
(
X11DRV_PDEVICE
*
physDev
)
{
ERR
_
(
opengl
)
(
"No OpenGL support compiled in.
\n
"
);
ERR
(
"No OpenGL support compiled in.
\n
"
);
return
NULL
;
return
NULL
;
}
}
...
@@ -3522,7 +3521,7 @@ HGLRC X11DRV_wglCreateContext(X11DRV_PDEVICE *physDev) {
...
@@ -3522,7 +3521,7 @@ HGLRC X11DRV_wglCreateContext(X11DRV_PDEVICE *physDev) {
* For OpenGL32 wglDeleteContext.
* For OpenGL32 wglDeleteContext.
*/
*/
BOOL
X11DRV_wglDeleteContext
(
HGLRC
hglrc
)
{
BOOL
X11DRV_wglDeleteContext
(
HGLRC
hglrc
)
{
ERR
_
(
opengl
)
(
"No OpenGL support compiled in.
\n
"
);
ERR
(
"No OpenGL support compiled in.
\n
"
);
return
FALSE
;
return
FALSE
;
}
}
...
@@ -3532,18 +3531,18 @@ BOOL X11DRV_wglDeleteContext(HGLRC hglrc) {
...
@@ -3532,18 +3531,18 @@ BOOL X11DRV_wglDeleteContext(HGLRC hglrc) {
* For OpenGL32 wglGetProcAddress.
* For OpenGL32 wglGetProcAddress.
*/
*/
PROC
X11DRV_wglGetProcAddress
(
LPCSTR
lpszProc
)
{
PROC
X11DRV_wglGetProcAddress
(
LPCSTR
lpszProc
)
{
ERR
_
(
opengl
)
(
"No OpenGL support compiled in.
\n
"
);
ERR
(
"No OpenGL support compiled in.
\n
"
);
return
NULL
;
return
NULL
;
}
}
HDC
X11DRV_wglGetPbufferDCARB
(
X11DRV_PDEVICE
*
hDevice
,
void
*
hPbuffer
)
HDC
X11DRV_wglGetPbufferDCARB
(
X11DRV_PDEVICE
*
hDevice
,
void
*
hPbuffer
)
{
{
ERR
_
(
opengl
)
(
"No OpenGL support compiled in.
\n
"
);
ERR
(
"No OpenGL support compiled in.
\n
"
);
return
NULL
;
return
NULL
;
}
}
BOOL
X11DRV_wglMakeContextCurrentARB
(
X11DRV_PDEVICE
*
hDrawDev
,
X11DRV_PDEVICE
*
hReadDev
,
HGLRC
hglrc
)
{
BOOL
X11DRV_wglMakeContextCurrentARB
(
X11DRV_PDEVICE
*
hDrawDev
,
X11DRV_PDEVICE
*
hReadDev
,
HGLRC
hglrc
)
{
ERR
_
(
opengl
)
(
"No OpenGL support compiled in.
\n
"
);
ERR
(
"No OpenGL support compiled in.
\n
"
);
return
FALSE
;
return
FALSE
;
}
}
...
@@ -3553,7 +3552,7 @@ BOOL X11DRV_wglMakeContextCurrentARB(X11DRV_PDEVICE* hDrawDev, X11DRV_PDEVICE* h
...
@@ -3553,7 +3552,7 @@ BOOL X11DRV_wglMakeContextCurrentARB(X11DRV_PDEVICE* hDrawDev, X11DRV_PDEVICE* h
* For OpenGL32 wglMakeCurrent.
* For OpenGL32 wglMakeCurrent.
*/
*/
BOOL
X11DRV_wglMakeCurrent
(
X11DRV_PDEVICE
*
physDev
,
HGLRC
hglrc
)
{
BOOL
X11DRV_wglMakeCurrent
(
X11DRV_PDEVICE
*
physDev
,
HGLRC
hglrc
)
{
ERR
_
(
opengl
)
(
"No OpenGL support compiled in.
\n
"
);
ERR
(
"No OpenGL support compiled in.
\n
"
);
return
FALSE
;
return
FALSE
;
}
}
...
@@ -3563,7 +3562,7 @@ BOOL X11DRV_wglMakeCurrent(X11DRV_PDEVICE *physDev, HGLRC hglrc) {
...
@@ -3563,7 +3562,7 @@ BOOL X11DRV_wglMakeCurrent(X11DRV_PDEVICE *physDev, HGLRC hglrc) {
* For OpenGL32 wglShaderLists.
* For OpenGL32 wglShaderLists.
*/
*/
BOOL
X11DRV_wglShareLists
(
HGLRC
hglrc1
,
HGLRC
hglrc2
)
{
BOOL
X11DRV_wglShareLists
(
HGLRC
hglrc1
,
HGLRC
hglrc2
)
{
ERR
_
(
opengl
)
(
"No OpenGL support compiled in.
\n
"
);
ERR
(
"No OpenGL support compiled in.
\n
"
);
return
FALSE
;
return
FALSE
;
}
}
...
@@ -3574,7 +3573,7 @@ BOOL X11DRV_wglShareLists(HGLRC hglrc1, HGLRC hglrc2) {
...
@@ -3574,7 +3573,7 @@ BOOL X11DRV_wglShareLists(HGLRC hglrc1, HGLRC hglrc2) {
*/
*/
BOOL
X11DRV_wglUseFontBitmapsA
(
X11DRV_PDEVICE
*
physDev
,
DWORD
first
,
DWORD
count
,
DWORD
listBase
)
BOOL
X11DRV_wglUseFontBitmapsA
(
X11DRV_PDEVICE
*
physDev
,
DWORD
first
,
DWORD
count
,
DWORD
listBase
)
{
{
ERR
_
(
opengl
)
(
"No OpenGL support compiled in.
\n
"
);
ERR
(
"No OpenGL support compiled in.
\n
"
);
return
FALSE
;
return
FALSE
;
}
}
...
@@ -3585,7 +3584,7 @@ BOOL X11DRV_wglUseFontBitmapsA(X11DRV_PDEVICE *physDev, DWORD first, DWORD count
...
@@ -3585,7 +3584,7 @@ BOOL X11DRV_wglUseFontBitmapsA(X11DRV_PDEVICE *physDev, DWORD first, DWORD count
*/
*/
BOOL
X11DRV_wglUseFontBitmapsW
(
X11DRV_PDEVICE
*
physDev
,
DWORD
first
,
DWORD
count
,
DWORD
listBase
)
BOOL
X11DRV_wglUseFontBitmapsW
(
X11DRV_PDEVICE
*
physDev
,
DWORD
first
,
DWORD
count
,
DWORD
listBase
)
{
{
ERR
_
(
opengl
)
(
"No OpenGL support compiled in.
\n
"
);
ERR
(
"No OpenGL support compiled in.
\n
"
);
return
FALSE
;
return
FALSE
;
}
}
...
...
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