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
9d49bb2b
Commit
9d49bb2b
authored
Oct 11, 2012
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Oct 11, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Use IFD_SHORT type for the TIFF compression tag to avoid test failures…
gdiplus: Use IFD_SHORT type for the TIFF compression tag to avoid test failures under some XP versions.
parent
488693e4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
image.c
dlls/gdiplus/tests/image.c
+2
-2
No files found.
dlls/gdiplus/tests/image.c
View file @
9d49bb2b
...
...
@@ -3006,7 +3006,7 @@ static const struct tiff_data
{
0x100
,
IFD_LONG
,
1
,
1
},
/* IMAGEWIDTH */
{
0x101
,
IFD_LONG
,
1
,
1
},
/* IMAGELENGTH */
{
0x102
,
IFD_SHORT
,
1
,
1
},
/* BITSPERSAMPLE */
{
0x103
,
IFD_
LONG
,
1
,
1
},
/* COMPRESSION
*/
{
0x103
,
IFD_
SHORT
,
1
,
1
},
/* COMPRESSION: XP doesn't accept IFD_LONG here
*/
{
0x106
,
IFD_SHORT
,
1
,
1
},
/* PHOTOMETRIC */
{
0x111
,
IFD_LONG
,
1
,
FIELD_OFFSET
(
struct
tiff_data
,
pixel_data
)
},
/* STRIPOFFSETS */
{
0x115
,
IFD_SHORT
,
1
,
1
},
/* SAMPLESPERPIXEL */
...
...
@@ -3065,7 +3065,7 @@ static void test_tiff_properties(void)
{
PropertyTagTypeLong
,
0x100
,
4
,
{
1
}
},
{
PropertyTagTypeLong
,
0x101
,
4
,
{
1
}
},
{
PropertyTagTypeShort
,
0x102
,
2
,
{
1
}
},
{
PropertyTagType
Long
,
0x103
,
4
,
{
1
}
},
{
PropertyTagType
Short
,
0x103
,
2
,
{
1
}
},
{
PropertyTagTypeShort
,
0x106
,
2
,
{
1
}
},
{
PropertyTagTypeLong
,
0x111
,
4
,
{
0x44
,
0x02
}
},
{
PropertyTagTypeShort
,
0x115
,
2
,
{
1
}
},
...
...
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