diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2009-07-24 20:45:56 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2009-08-29 08:08:29 +0100 |
commit | 55bd590561880136c54da0db1f7f095a426d96a9 (patch) | |
tree | d25638c2446bc9a4155e0bdd5ce6a9a09a3e06e3 /src/Makefile.am | |
parent | ebfcc2ce8fb6fcaf28d1c59cf7a5b13168cbeb70 (diff) |
[tessellator] Use a priority queue for the events
The skip list was suffering from severe overhead, so though the search was
quick, the extra copies during insertion and deletion were slow.
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index e461fbde..dce2a08e 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -84,12 +84,9 @@ TESTS += check-link$(EXEEXT) endif EXTRA_DIST += $(TESTS_SH) check-has-hidden-symbols.c -check_PROGRAMS += check-link check-skiplist +check_PROGRAMS += check-link check_link_LDADD = libcairo.la -check_skiplist_SOURCES = cairo-skiplist.c -check_skiplist_CPPFLAGS = -DMAIN $(AM_CPPFLAGS) - check: headers-standalone PREPROCESS_ARGS = $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) |