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
ebd1b86b
Commit
ebd1b86b
authored
Sep 18, 2014
by
Sebastian Lackner
Committed by
Alexandre Julliard
Nov 06, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
usp10: Silence repeated GSUB_apply_ChainContext[Subst|Pos] FIXMEs.
parent
9c7b9133
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
opentype.c
dlls/usp10/opentype.c
+8
-0
No files found.
dlls/usp10/opentype.c
View file @
ebd1b86b
...
...
@@ -937,11 +937,15 @@ static INT GSUB_apply_ChainContextSubst(const OT_LookupList* lookup, const OT_Lo
ccsf1
=
(
const
GSUB_ChainContextSubstFormat1
*
)((
const
BYTE
*
)
look
+
offset
);
if
(
GET_BE_WORD
(
ccsf1
->
SubstFormat
)
==
1
)
{
static
int
once
;
if
(
!
once
++
)
FIXME
(
" TODO: subtype 1 (Simple context glyph substitution)
\n
"
);
continue
;
}
else
if
(
GET_BE_WORD
(
ccsf1
->
SubstFormat
)
==
2
)
{
static
int
once
;
if
(
!
once
++
)
FIXME
(
" TODO: subtype 2 (Class-based Chaining Context Glyph Substitution)
\n
"
);
continue
;
}
...
...
@@ -1648,11 +1652,15 @@ static INT GPOS_apply_ChainContextPos(ScriptCache *psc, LPOUTLINETEXTMETRICW lpo
if
(
GET_BE_WORD
(
ccpf3
->
PosFormat
)
==
1
)
{
static
int
once
;
if
(
!
once
++
)
FIXME
(
" TODO: subtype 1 (Simple Chaining Context Glyph Positioning)
\n
"
);
continue
;
}
else
if
(
GET_BE_WORD
(
ccpf3
->
PosFormat
)
==
2
)
{
static
int
once
;
if
(
!
once
++
)
FIXME
(
" TODO: subtype 2 (Class-based Chaining Context Glyph Positioning)
\n
"
);
continue
;
}
...
...
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