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
8af7dd5d
Commit
8af7dd5d
authored
May 14, 2006
by
Stefan Dösinger
Committed by
Alexandre Julliard
May 15, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Nonpow2 repacking support for GetDC.
parent
daa6a3d7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
surface.c
dlls/wined3d/surface.c
+10
-2
No files found.
dlls/wined3d/surface.c
View file @
8af7dd5d
...
...
@@ -985,8 +985,16 @@ HRESULT WINAPI IWineD3DSurfaceImpl_GetDC(IWineD3DSurface *iface, HDC *pHDC) {
}
b_info
->
bmiHeader
.
biSize
=
sizeof
(
BITMAPINFOHEADER
);
b_info
->
bmiHeader
.
biWidth
=
This
->
pow2Width
;
b_info
->
bmiHeader
.
biHeight
=
-
This
->
pow2Height
;
if
(
(
NP2_REPACK
==
wined3d_settings
.
nonpower2_mode
||
This
->
resource
.
usage
&
WINED3DUSAGE_RENDERTARGET
))
{
b_info
->
bmiHeader
.
biWidth
=
This
->
currentDesc
.
Width
;
b_info
->
bmiHeader
.
biHeight
=
-
This
->
currentDesc
.
Height
;
/* Use the full pow2 image size(assigned below) because LockRect
* will need it for a full glGetTexImage call
*/
}
else
{
b_info
->
bmiHeader
.
biWidth
=
This
->
pow2Width
;
b_info
->
bmiHeader
.
biHeight
=
-
This
->
pow2Height
;
}
b_info
->
bmiHeader
.
biPlanes
=
1
;
b_info
->
bmiHeader
.
biBitCount
=
This
->
bytesPerPixel
*
8
;
...
...
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