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
416240b7
Commit
416240b7
authored
May 03, 2012
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winex11: Remove obsolete escapes.
parent
54170fe8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
28 deletions
+0
-28
init.c
dlls/winex11.drv/init.c
+0
-21
x11drv.h
dlls/winex11.drv/x11drv.h
+0
-7
No files found.
dlls/winex11.drv/init.c
View file @
416240b7
...
...
@@ -343,20 +343,6 @@ static INT X11DRV_ExtEscape( PHYSDEV dev, INT escape, INT in_count, LPCVOID in_d
{
switch
(
*
(
const
enum
x11drv_escape_codes
*
)
in_data
)
{
case
X11DRV_GET_DISPLAY
:
if
(
out_count
>=
sizeof
(
Display
*
))
{
*
(
Display
**
)
out_data
=
gdi_display
;
return
TRUE
;
}
break
;
case
X11DRV_GET_DRAWABLE
:
if
(
out_count
>=
sizeof
(
Drawable
))
{
*
(
Drawable
*
)
out_data
=
physDev
->
drawable
;
return
TRUE
;
}
break
;
case
X11DRV_SET_DRAWABLE
:
if
(
in_count
>=
sizeof
(
struct
x11drv_escape_set_drawable
))
{
...
...
@@ -437,13 +423,6 @@ static INT X11DRV_ExtEscape( PHYSDEV dev, INT escape, INT in_count, LPCVOID in_d
return
TRUE
;
}
break
;
case
X11DRV_GET_FONT
:
case
X11DRV_GET_DCE
:
case
X11DRV_SET_DCE
:
case
X11DRV_GET_GLX_DRAWABLE
:
case
X11DRV_SYNC_PIXMAP
:
FIXME
(
"%x escape no longer supported
\n
"
,
*
(
const
enum
x11drv_escape_codes
*
)
in_data
);
break
;
case
X11DRV_FLUSH_GL_DRAWABLE
:
flush_gl_drawable
(
physDev
);
return
TRUE
;
...
...
dlls/winex11.drv/x11drv.h
View file @
416240b7
...
...
@@ -329,16 +329,9 @@ extern void X11DRV_PALETTE_ComputeColorShifts(ColorShifts *shifts, unsigned long
#define X11DRV_ESCAPE 6789
enum
x11drv_escape_codes
{
X11DRV_GET_DISPLAY
,
/* get X11 display for a DC */
X11DRV_GET_DRAWABLE
,
/* get current drawable for a DC */
X11DRV_GET_FONT
,
/* get current X font for a DC */
X11DRV_SET_DRAWABLE
,
/* set current drawable for a DC */
X11DRV_START_EXPOSURES
,
/* start graphics exposures */
X11DRV_END_EXPOSURES
,
/* end graphics exposures */
X11DRV_GET_DCE
,
/* no longer used */
X11DRV_SET_DCE
,
/* no longer used */
X11DRV_GET_GLX_DRAWABLE
,
/* get current glx drawable for a DC */
X11DRV_SYNC_PIXMAP
,
/* sync the dibsection to its pixmap */
X11DRV_FLUSH_GL_DRAWABLE
/* flush changes made to the gl drawable */
};
...
...
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