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
162bc8db
Commit
162bc8db
authored
Mar 04, 2014
by
Henri Verbeet
Committed by
Alexandre Julliard
Mar 04, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ddraw: User memory surfaces should be created with an explicit pitch.
parent
da2fafca
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
13 deletions
+15
-13
surface.c
dlls/ddraw/surface.c
+15
-13
No files found.
dlls/ddraw/surface.c
View file @
162bc8db
...
...
@@ -5812,11 +5812,21 @@ HRESULT ddraw_surface_create(struct ddraw *ddraw, const DDSURFACEDESC2 *surface_
* field. Frank Herbert's Dune specifies a NULL pointer for lpSurface. */
if
((
desc
->
ddsCaps
.
dwCaps
&
DDSCAPS_ALLOCONLOAD
)
||
!
desc
->
lpSurface
)
desc
->
dwFlags
&=
~
DDSD_LPSURFACE
;
if
(
(
desc
->
dwFlags
&
DDSD_LPSURFACE
)
&&
wined3d_desc
.
pool
!=
WINED3D_POOL_SYSTEM_MEM
)
if
(
desc
->
dwFlags
&
DDSD_LPSURFACE
)
{
WARN
(
"User memory surfaces should be in the system memory pool.
\n
"
);
HeapFree
(
GetProcessHeap
(),
0
,
texture
);
return
DDERR_INVALIDCAPS
;
if
(
wined3d_desc
.
pool
!=
WINED3D_POOL_SYSTEM_MEM
)
{
WARN
(
"User memory surfaces should be in the system memory pool.
\n
"
);
HeapFree
(
GetProcessHeap
(),
0
,
texture
);
return
DDERR_INVALIDCAPS
;
}
if
(
!
(
desc
->
dwFlags
&
DDSD_PITCH
))
{
WARN
(
"User memory surfaces should explicitly specify the pitch.
\n
"
);
HeapFree
(
GetProcessHeap
(),
0
,
texture
);
return
DDERR_INVALIDPARAMS
;
}
}
if
(
desc
->
ddsCaps
.
dwCaps
&
(
DDSCAPS_OVERLAY
))
...
...
@@ -6057,17 +6067,9 @@ HRESULT ddraw_surface_init(struct ddraw_surface *surface, struct ddraw *ddraw, s
if
(
desc
->
dwFlags
&
DDSD_LPSURFACE
)
{
UINT
pitch
=
0
;
if
(
desc
->
dwFlags
&
DDSD_PITCH
)
{
pitch
=
desc
->
u1
.
lPitch
;
surface
->
surface_desc
.
u1
.
lPitch
=
pitch
;
}
if
(
FAILED
(
hr
=
wined3d_surface_update_desc
(
wined3d_surface
,
wined3d_desc
.
width
,
wined3d_desc
.
height
,
wined3d_desc
.
format
,
WINED3D_MULTISAMPLE_NONE
,
0
,
desc
->
lpSurface
,
p
itch
)))
desc
->
lpSurface
,
desc
->
u1
.
lP
itch
)))
{
ERR
(
"Failed to set surface memory, hr %#x.
\n
"
,
hr
);
return
hr
;
...
...
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