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
10fc9480
Commit
10fc9480
authored
Apr 04, 2006
by
Jan Zerebecki
Committed by
Alexandre Julliard
Apr 04, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Add D3DFMT_L16.
parent
5812eb3a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
2 deletions
+5
-2
utils.c
dlls/wined3d/utils.c
+3
-2
d3d9types.h
include/d3d9types.h
+1
-0
wined3d_types.h
include/wine/wined3d_types.h
+1
-0
No files found.
dlls/wined3d/utils.c
View file @
10fc9480
...
...
@@ -35,7 +35,6 @@ const char* debug_d3dformat(WINED3DFORMAT fmt) {
FMT_TO_STR
(
WINED3DFMT_UNKNOWN
);
FMT_TO_STR
(
WINED3DFMT_R8G8B8
);
FMT_TO_STR
(
WINED3DFMT_A8R8G8B8
);
FMT_TO_STR
(
WINED3DFMT_A8B8G8R8
);
FMT_TO_STR
(
WINED3DFMT_X8R8G8B8
);
FMT_TO_STR
(
WINED3DFMT_R5G6B5
);
FMT_TO_STR
(
WINED3DFMT_X1R5G5B5
);
...
...
@@ -46,6 +45,7 @@ const char* debug_d3dformat(WINED3DFORMAT fmt) {
FMT_TO_STR
(
WINED3DFMT_A8R3G3B2
);
FMT_TO_STR
(
WINED3DFMT_X4R4G4B4
);
FMT_TO_STR
(
WINED3DFMT_A2B10G10R10
);
FMT_TO_STR
(
WINED3DFMT_A8B8G8R8
);
FMT_TO_STR
(
WINED3DFMT_X8B8G8R8
);
FMT_TO_STR
(
WINED3DFMT_G16R16
);
FMT_TO_STR
(
WINED3DFMT_A2R10G10B10
);
...
...
@@ -76,11 +76,12 @@ const char* debug_d3dformat(WINED3DFORMAT fmt) {
FMT_TO_STR
(
WINED3DFMT_D32
);
FMT_TO_STR
(
WINED3DFMT_D15S1
);
FMT_TO_STR
(
WINED3DFMT_D24S8
);
FMT_TO_STR
(
WINED3DFMT_D24FS8
);
FMT_TO_STR
(
WINED3DFMT_D24X8
);
FMT_TO_STR
(
WINED3DFMT_D24X4S4
);
FMT_TO_STR
(
WINED3DFMT_D16
);
FMT_TO_STR
(
WINED3DFMT_L16
);
FMT_TO_STR
(
WINED3DFMT_D32F_LOCKABLE
);
FMT_TO_STR
(
WINED3DFMT_D24FS8
);
FMT_TO_STR
(
WINED3DFMT_VERTEXDATA
);
FMT_TO_STR
(
WINED3DFMT_INDEX16
);
FMT_TO_STR
(
WINED3DFMT_INDEX32
);
...
...
include/d3d9types.h
View file @
10fc9480
...
...
@@ -816,6 +816,7 @@ typedef enum _D3DFORMAT {
D3DFMT_D24X8
=
77
,
D3DFMT_D24X4S4
=
79
,
D3DFMT_D16
=
80
,
D3DFMT_L16
=
81
,
D3DFMT_D32F_LOCKABLE
=
82
,
D3DFMT_D24FS8
=
83
,
...
...
include/wine/wined3d_types.h
View file @
10fc9480
...
...
@@ -184,6 +184,7 @@ typedef enum _WINED3DFORMAT {
WINED3DFMT_D24X8
=
77
,
WINED3DFMT_D24X4S4
=
79
,
WINED3DFMT_D16
=
80
,
WINED3DFMT_L16
=
81
,
WINED3DFMT_D32F_LOCKABLE
=
82
,
WINED3DFMT_D24FS8
=
83
,
...
...
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