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
GNOME
GIMP
Commits
c9eb6985
Commit
c9eb6985
authored
Jul 27, 1998
by
scott
Browse files
Fixed a bug with the xcf loader being a little too overzealous in
sharing tiles. --sg
parent
c30442d2
Changes
3
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
c9eb6985
...
...
@@ -2,6 +2,11 @@ Mon Jul 27 12:27:47 PDT 1998 Manish Singh <yosh@gimp.org>
* plug-ins/fp/fp.c: make PDB entry for filter pack saner
Mon Jul 27 14:29:39 1998 Scott Goehring <scott@poverty.bloomington.in.us>
* app/xcf.c (xcf_load_level): Made xcf loader a little less
zealous in trying to copy-on-write duplicated tiles.
Sun Jul 26 23:47:33 MEST 1998 Sven Neumann <sven@gimp.org>
* app/blend.c
...
...
app/xcf.c
View file @
c9eb6985
...
...
@@ -1944,7 +1944,9 @@ xcf_load_level (XcfInfo *info,
if
(
previous
!=
NULL
)
{
tile_lock
(
previous
);
if
(
tile_size
(
tile
)
==
tile_size
(
previous
)
&&
if
(
tile
->
ewidth
==
previous
->
ewidth
&&
tile
->
eheight
==
previous
->
eheight
&&
tile
->
bpp
==
previous
->
bpp
&&
memcmp
(
tile
->
data
,
previous
->
data
,
tile_size
(
tile
))
==
0
)
{
...
...
app/xcf/xcf.c
View file @
c9eb6985
...
...
@@ -1944,7 +1944,9 @@ xcf_load_level (XcfInfo *info,
if
(
previous
!=
NULL
)
{
tile_lock
(
previous
);
if
(
tile_size
(
tile
)
==
tile_size
(
previous
)
&&
if
(
tile
->
ewidth
==
previous
->
ewidth
&&
tile
->
eheight
==
previous
->
eheight
&&
tile
->
bpp
==
previous
->
bpp
&&
memcmp
(
tile
->
data
,
previous
->
data
,
tile_size
(
tile
))
==
0
)
{
...
...
Write
Preview
Supports
Markdown
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