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
6e0703d1
Commit
6e0703d1
authored
May 13, 2003
by
Christian Costa
Committed by
Alexandre Julliard
May 13, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mark some surface formats as not supported.
parent
29c7e32f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
+13
-0
directx.c
dlls/d3d8/directx.c
+13
-0
No files found.
dlls/d3d8/directx.c
View file @
6e0703d1
...
...
@@ -272,6 +272,19 @@ HRESULT WINAPI IDirect3D8Impl_CheckDeviceFormat (LPDIRECT3D8 iface,
ICOM_THIS
(
IDirect3D8Impl
,
iface
);
FIXME
(
"(%p)->(Adptr:%d, DevType: %x, AdptFmt: %d, Use: %ld, ResTyp: %x, CheckFmt: %d)
\n
"
,
This
,
Adapter
,
DeviceType
,
AdapterFormat
,
Usage
,
RType
,
CheckFormat
);
switch
(
CheckFormat
)
{
case
D3DFMT_UYVY
:
case
D3DFMT_YUY2
:
case
D3DFMT_DXT1
:
case
D3DFMT_DXT2
:
case
D3DFMT_DXT3
:
case
D3DFMT_DXT4
:
case
D3DFMT_DXT5
:
/* Since we do not support these formats right now, don't pretend to. */
return
D3DERR_NOTAVAILABLE
;
default:
break
;
}
return
D3D_OK
;
}
...
...
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