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
9e0baa55
Commit
9e0baa55
authored
Oct 17, 2011
by
Stefan Dösinger
Committed by
Alexandre Julliard
Nov 15, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ddraw: Set correct HEL and HAL color models.
parent
c3d60615
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
0 deletions
+19
-0
ddraw.c
dlls/ddraw/ddraw.c
+7
-0
d3d.c
dlls/ddraw/tests/d3d.c
+12
-0
No files found.
dlls/ddraw/ddraw.c
View file @
9e0baa55
...
...
@@ -3968,6 +3968,9 @@ static HRESULT WINAPI d3d3_EnumDevices(IDirect3D3 *iface, LPD3DENUMDEVICESCALLBA
|
D3DPTEXTURECAPS_NONPOW2CONDITIONAL
|
D3DPTEXTURECAPS_PERSPECTIVE
);
hal_desc
.
dpcTriCaps
.
dwTextureCaps
&=
~
(
D3DPTEXTURECAPS_POW2
|
D3DPTEXTURECAPS_NONPOW2CONDITIONAL
|
D3DPTEXTURECAPS_PERSPECTIVE
);
/* RGB, RAMP and MMX devices have a HAL dcmColorModel of 0 */
hal_desc
.
dcmColorModel
=
0
;
hr
=
callback
((
GUID
*
)
&
IID_IDirect3DRGBDevice
,
reference_description
,
device_name
,
&
hal_desc
,
&
hel_desc
,
context
);
if
(
hr
!=
D3DENUMRET_OK
)
...
...
@@ -3983,11 +3986,15 @@ static HRESULT WINAPI d3d3_EnumDevices(IDirect3D3 *iface, LPD3DENUMDEVICESCALLBA
TRACE
(
"Enumerating HAL Direct3D device.
\n
"
);
hal_desc
=
device_desc1
;
hel_desc
=
device_desc1
;
/* The hal device does not have the pow2 flag set in hel, but in hal. */
hel_desc
.
dpcLineCaps
.
dwTextureCaps
&=
~
(
D3DPTEXTURECAPS_POW2
|
D3DPTEXTURECAPS_NONPOW2CONDITIONAL
|
D3DPTEXTURECAPS_PERSPECTIVE
);
hel_desc
.
dpcTriCaps
.
dwTextureCaps
&=
~
(
D3DPTEXTURECAPS_POW2
|
D3DPTEXTURECAPS_NONPOW2CONDITIONAL
|
D3DPTEXTURECAPS_PERSPECTIVE
);
/* HAL devices have a HEL dcmColorModel of 0 */
hel_desc
.
dcmColorModel
=
0
;
hr
=
callback
((
GUID
*
)
&
IID_IDirect3DHALDevice
,
wined3d_description
,
device_name
,
&
hal_desc
,
&
hel_desc
,
context
);
if
(
hr
!=
D3DENUMRET_OK
)
...
...
dlls/ddraw/tests/d3d.c
View file @
9e0baa55
...
...
@@ -804,10 +804,15 @@ static HRESULT WINAPI enumDevicesCallback(GUID *Guid,LPSTR DeviceDescription,LPS
"RGB Device %d hel tri caps does not have D3DPTEXTURECAPS_PERSPECTIVE set
\n
"
,
ver
);
ok
(
hel
->
dpcTriCaps
.
dwTextureCaps
&
D3DPTEXTURECAPS_PERSPECTIVE
,
"RGB Device %d hel tri caps does not have D3DPTEXTURECAPS_PERSPECTIVE set
\n
"
,
ver
);
ok
(
hal
->
dcmColorModel
==
0
,
"RGB Device %u hal caps has colormodel %u
\n
"
,
ver
,
hal
->
dcmColorModel
);
ok
(
hel
->
dcmColorModel
==
D3DCOLOR_RGB
,
"RGB Device %u hel caps has colormodel %u
\n
"
,
ver
,
hel
->
dcmColorModel
);
}
else
if
(
IsEqualGUID
(
&
IID_IDirect3DHALDevice
,
Guid
))
{
trace
(
"HAL Device %d
\n
"
,
ver
);
ok
(
hal
->
dcmColorModel
==
D3DCOLOR_RGB
,
"HAL Device %u hal caps has colormodel %u
\n
"
,
ver
,
hel
->
dcmColorModel
);
ok
(
hel
->
dcmColorModel
==
0
,
"HAL Device %u hel caps has colormodel %u
\n
"
,
ver
,
hel
->
dcmColorModel
);
}
else
if
(
IsEqualGUID
(
&
IID_IDirect3DRefDevice
,
Guid
))
{
...
...
@@ -848,6 +853,10 @@ static HRESULT WINAPI enumDevicesCallback(GUID *Guid,LPSTR DeviceDescription,LPS
"Ramp Device %d hel tri caps does not have D3DPTEXTURECAPS_PERSPECTIVE set
\n
"
,
ver
);
ok
(
hel
->
dpcTriCaps
.
dwTextureCaps
&
D3DPTEXTURECAPS_PERSPECTIVE
,
"Ramp Device %d hel tri caps does not have D3DPTEXTURECAPS_PERSPECTIVE set
\n
"
,
ver
);
ok
(
hal
->
dcmColorModel
==
0
,
"Ramp Device %u hal caps has colormodel %u
\n
"
,
ver
,
hal
->
dcmColorModel
);
ok
(
hel
->
dcmColorModel
==
D3DCOLOR_MONO
,
"Ramp Device %u hel caps has colormodel %u
\n
"
,
ver
,
hel
->
dcmColorModel
);
}
else
if
(
IsEqualGUID
(
&
IID_IDirect3DMMXDevice
,
Guid
))
{
...
...
@@ -868,6 +877,9 @@ static HRESULT WINAPI enumDevicesCallback(GUID *Guid,LPSTR DeviceDescription,LPS
"MMX Device %d hel tri caps does not have D3DPTEXTURECAPS_PERSPECTIVE set
\n
"
,
ver
);
ok
(
hel
->
dpcTriCaps
.
dwTextureCaps
&
D3DPTEXTURECAPS_PERSPECTIVE
,
"MMX Device %d hel tri caps does not have D3DPTEXTURECAPS_PERSPECTIVE set
\n
"
,
ver
);
ok
(
hal
->
dcmColorModel
==
0
,
"MMX Device %u hal caps has colormodel %u
\n
"
,
ver
,
hal
->
dcmColorModel
);
ok
(
hel
->
dcmColorModel
==
D3DCOLOR_RGB
,
"MMX Device %u hel caps has colormodel %u
\n
"
,
ver
,
hel
->
dcmColorModel
);
}
else
{
...
...
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