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
991c7652
Commit
991c7652
authored
Oct 18, 2008
by
Detlef Riekenberg
Committed by
Alexandre Julliard
Oct 21, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mscms: Quiet a noisy fixme.
parent
7aef1c71
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
transform.c
dlls/mscms/transform.c
+6
-1
No files found.
dlls/mscms/transform.c
View file @
991c7652
...
...
@@ -58,6 +58,7 @@ static DWORD from_profile( HPROFILE profile )
static
DWORD
from_bmformat
(
BMFORMAT
format
)
{
static
int
quietfixme
=
0
;
TRACE
(
"bitmap format: 0x%08x
\n
"
,
format
);
switch
(
format
)
...
...
@@ -66,7 +67,11 @@ static DWORD from_bmformat( BMFORMAT format )
case
BM_BGRTRIPLETS
:
return
TYPE_BGR_8
;
case
BM_GRAY
:
return
TYPE_GRAY_8
;
default:
FIXME
(
"unhandled bitmap format
\n
"
);
if
(
quietfixme
==
0
)
{
FIXME
(
"unhandled bitmap format 0x%x
\n
"
,
format
);
quietfixme
=
1
;
}
return
TYPE_RGB_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