Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lorenzo Ferrillo
wine
Commits
416e79f3
Commit
416e79f3
authored
12 years ago
by
Alexandre Julliard
Browse files
Options
Downloads
Patches
Plain Diff
winex11: Always store the GL drawable in the device context.
parent
70f776d3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dlls/winex11.drv/bitmap.c
+1
-0
1 addition, 0 deletions
dlls/winex11.drv/bitmap.c
dlls/winex11.drv/opengl.c
+15
-38
15 additions, 38 deletions
dlls/winex11.drv/opengl.c
with
16 additions
and
38 deletions
dlls/winex11.drv/bitmap.c
+
1
−
0
View file @
416e79f3
...
...
@@ -100,6 +100,7 @@ HBITMAP X11DRV_SelectBitmap( PHYSDEV dev, HBITMAP hbitmap )
physDev
->
bitmap
=
physBitmap
;
physDev
->
drawable
=
physBitmap
->
pixmap
;
physDev
->
gl_drawable
=
physBitmap
->
glxpixmap
;
physDev
->
color_shifts
=
physBitmap
->
trueColor
?
&
physBitmap
->
color_shifts
:
NULL
;
SetRect
(
&
physDev
->
drawable_rect
,
0
,
0
,
bitmap
.
bmWidth
,
bitmap
.
bmHeight
);
physDev
->
dc_rect
=
physDev
->
drawable_rect
;
...
...
This diff is collapsed.
Click to expand it.
dlls/winex11.drv/opengl.c
+
15
−
38
View file @
416e79f3
...
...
@@ -641,24 +641,6 @@ static inline BOOL is_valid_context( Wine_GLContext *ctx )
return
(
ptr
!=
NULL
);
}
static
Drawable
get_glxdrawable
(
X11DRV_PDEVICE
*
physDev
)
{
Drawable
ret
;
if
(
physDev
->
bitmap
)
{
if
(
physDev
->
bitmap
->
hbitmap
==
BITMAP_stock_phys_bitmap
.
hbitmap
)
ret
=
physDev
->
drawable
;
/* PBuffer */
else
ret
=
physDev
->
bitmap
->
glxpixmap
;
}
else
if
(
physDev
->
gl_drawable
)
ret
=
physDev
->
gl_drawable
;
else
ret
=
physDev
->
drawable
;
return
ret
;
}
static
int
describeContext
(
Wine_GLContext
*
ctx
)
{
int
tmp
;
int
ctx_vis_id
;
...
...
@@ -681,7 +663,7 @@ static BOOL describeDrawable(X11DRV_PDEVICE *physDev) {
TRACE
(
" HDC %p has:
\n
"
,
physDev
->
dev
.
hdc
);
TRACE
(
" - iPixelFormat %d
\n
"
,
fmt
->
iPixelFormat
);
TRACE
(
" - Drawable %lx
\n
"
,
get_
gl
x
drawable
(
physDev
)
);
TRACE
(
" - Drawable %lx
\n
"
,
physDev
->
gl
_
drawable
);
TRACE
(
" - FBCONFIG_ID 0x%x
\n
"
,
fmt
->
fmt_id
);
pglXGetFBConfigAttrib
(
gdi_display
,
fmt
->
fbconfig
,
GLX_VISUAL_ID
,
&
tmp
);
...
...
@@ -1652,7 +1634,7 @@ static BOOL internal_SetPixelFormat(X11DRV_PDEVICE *physDev,
HWND
hwnd
;
/* SetPixelFormat is not allowed on the X root_window e.g. GetDC(0) */
if
(
get_glxdrawable
(
physDev
)
==
root_window
)
if
(
physDev
->
drawable
==
root_window
)
{
ERR
(
"Invalid operation on root_window
\n
"
);
return
FALSE
;
...
...
@@ -1940,7 +1922,6 @@ BOOL X11DRV_wglMakeCurrent(PHYSDEV dev, HGLRC hglrc)
}
else
{
Drawable
drawable
=
get_glxdrawable
(
physDev
);
Wine_GLContext
*
prev_ctx
=
NtCurrentTeb
()
->
glContext
;
/* The describe lines below are for debugging purposes only */
...
...
@@ -1949,8 +1930,8 @@ BOOL X11DRV_wglMakeCurrent(PHYSDEV dev, HGLRC hglrc)
describeContext
(
ctx
);
}
TRACE
(
" make current for drawable %lx, ctx %p
\n
"
,
drawable
,
ctx
->
ctx
);
ret
=
pglXMakeCurrent
(
gdi_display
,
drawable
,
ctx
->
ctx
);
TRACE
(
" make current for drawable %lx, ctx %p
\n
"
,
physDev
->
gl_
drawable
,
ctx
->
ctx
);
ret
=
pglXMakeCurrent
(
gdi_display
,
physDev
->
gl_
drawable
,
ctx
->
ctx
);
if
(
ret
)
{
...
...
@@ -1961,8 +1942,8 @@ BOOL X11DRV_wglMakeCurrent(PHYSDEV dev, HGLRC hglrc)
ctx
->
tid
=
GetCurrentThreadId
();
ctx
->
hdc
=
hdc
;
ctx
->
read_hdc
=
hdc
;
ctx
->
drawables
[
0
]
=
drawable
;
ctx
->
drawables
[
1
]
=
drawable
;
ctx
->
drawables
[
0
]
=
physDev
->
gl_
drawable
;
ctx
->
drawables
[
1
]
=
physDev
->
gl_
drawable
;
ctx
->
refresh_drawables
=
FALSE
;
if
(
type
==
OBJ_MEMDC
)
pglDrawBuffer
(
GL_FRONT_LEFT
);
...
...
@@ -2011,10 +1992,8 @@ BOOL X11DRV_wglMakeContextCurrentARB( PHYSDEV draw_dev, PHYSDEV read_dev, HGLRC
ret
=
FALSE
;
}
else
{
Wine_GLContext
*
ctx
=
(
Wine_GLContext
*
)
hglrc
;
Drawable
d_draw
=
get_glxdrawable
(
pDrawDev
);
Drawable
d_read
=
get_glxdrawable
(
pReadDev
);
ret
=
pglXMakeContextCurrent
(
gdi_display
,
d_draw
,
d_read
,
ctx
->
ctx
);
ret
=
pglXMakeContextCurrent
(
gdi_display
,
pDrawDev
->
gl_drawable
,
pReadDev
->
gl_drawable
,
ctx
->
ctx
);
if
(
ret
)
{
Wine_GLContext
*
prev_ctx
=
NtCurrentTeb
()
->
glContext
;
...
...
@@ -2024,8 +2003,8 @@ BOOL X11DRV_wglMakeContextCurrentARB( PHYSDEV draw_dev, PHYSDEV read_dev, HGLRC
ctx
->
tid
=
GetCurrentThreadId
();
ctx
->
hdc
=
draw_dev
->
hdc
;
ctx
->
read_hdc
=
read_dev
->
hdc
;
ctx
->
drawables
[
0
]
=
d
_draw
;
ctx
->
drawables
[
1
]
=
d_read
;
ctx
->
drawables
[
0
]
=
pDrawDev
->
gl
_draw
able
;
ctx
->
drawables
[
1
]
=
pReadDev
->
gl_drawable
;
ctx
->
refresh_drawables
=
FALSE
;
NtCurrentTeb
()
->
glContext
=
ctx
;
}
...
...
@@ -2276,7 +2255,7 @@ void flush_gl_drawable(X11DRV_PDEVICE *physDev)
int
w
,
h
;
RECT
rect
;
if
(
!
physDev
->
gl_copy
||
!
physDev
->
current_pf
)
if
(
!
physDev
->
gl_copy
||
!
physDev
->
gl_drawable
)
return
;
w
=
physDev
->
dc_rect
.
right
-
physDev
->
dc_rect
.
left
;
...
...
@@ -2694,6 +2673,7 @@ HDC X11DRV_wglGetPbufferDCARB(PHYSDEV dev, HPBUFFERARB hPbuffer)
* All formats in our pixelformat list are compatible with each other and the main drawable. */
physDev
->
current_pf
=
object
->
fmt
->
iPixelFormat
;
physDev
->
drawable
=
object
->
drawable
;
physDev
->
gl_drawable
=
object
->
drawable
;
SetRect
(
&
physDev
->
drawable_rect
,
0
,
0
,
object
->
width
,
object
->
height
);
physDev
->
dc_rect
=
physDev
->
drawable_rect
;
...
...
@@ -3806,7 +3786,6 @@ BOOL destroy_glxpixmap(Display *display, XID glxpixmap)
BOOL
X11DRV_SwapBuffers
(
PHYSDEV
dev
)
{
X11DRV_PDEVICE
*
physDev
=
get_x11drv_dev
(
dev
);
GLXDrawable
drawable
;
Wine_GLContext
*
ctx
=
NtCurrentTeb
()
->
glContext
;
if
(
!
has_opengl
())
return
FALSE
;
...
...
@@ -3820,15 +3799,13 @@ BOOL X11DRV_SwapBuffers(PHYSDEV dev)
return
FALSE
;
}
if
(
!
physDev
->
current_pf
)
if
(
!
physDev
->
gl_drawable
)
{
WARN
(
"Using an invalid drawable, skipping
\n
"
);
SetLastError
(
ERROR_INVALID_HANDLE
);
return
FALSE
;
}
drawable
=
get_glxdrawable
(
physDev
);
wine_tsx11_lock
();
sync_context
(
ctx
);
if
(
physDev
->
pixmap
)
{
...
...
@@ -3841,13 +3818,13 @@ BOOL X11DRV_SwapBuffers(PHYSDEV dev)
* copying */
pglFlush
();
if
(
w
>
0
&&
h
>
0
)
pglXCopySubBufferMESA
(
gdi_display
,
drawable
,
0
,
0
,
w
,
h
);
pglXCopySubBufferMESA
(
gdi_display
,
physDev
->
gl_
drawable
,
0
,
0
,
w
,
h
);
}
else
pglXSwapBuffers
(
gdi_display
,
drawable
);
pglXSwapBuffers
(
gdi_display
,
physDev
->
gl_
drawable
);
}
else
pglXSwapBuffers
(
gdi_display
,
drawable
);
pglXSwapBuffers
(
gdi_display
,
physDev
->
gl_
drawable
);
flush_gl_drawable
(
physDev
);
wine_tsx11_unlock
();
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment