Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Masamichi Hosoda
poppler
Commits
c142773a
Commit
c142773a
authored
May 04, 2005
by
Kristian Høgsberg
Browse files
2005-05-04 Kristian Høgsberg <krh@redhat.com>
* poppler/CairoOutputDev.cc: Fix matrix convention confusion.
parent
28760927
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
c142773a
2005-05-04 Kristian Høgsberg <krh@redhat.com>
* poppler/CairoOutputDev.cc: Fix matrix convention confusion.
2005-05-04 Kristian Høgsberg <krh@redhat.com>
Patches from Albert Astals Cid:
...
...
poppler/CairoOutputDev.cc
View file @
c142773a
...
...
@@ -223,8 +223,8 @@ void CairoOutputDev::updateFont(GfxState *state) {
cairo_set_font_face
(
cairo
,
font_face
);
matrix
.
xx
=
m11
;
matrix
.
y
x
=
m12
;
matrix
.
x
y
=
m21
;
matrix
.
x
y
=
m12
;
matrix
.
y
x
=
m21
;
matrix
.
yy
=
m22
;
matrix
.
x0
=
0
;
matrix
.
y0
=
0
;
...
...
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