diff options
author | Keith Whitwell <[email protected]> | 2009-06-30 17:02:16 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2009-06-30 17:02:16 +0100 |
commit | 2e570be85211f603b820dd2c5e9aa2f29a51fc66 (patch) | |
tree | 01c7cbcafd36ade80d129761c45230f127b8a110 /progs/trivial/Makefile | |
parent | 1730eaa2a2454018b4907df2f2bda3c4455137ca (diff) |
progs/trivial: add dlist-recursive-call
When one display list calls another display list, it is possible
that the calling display list makes state-changes or other actions which
invalidate any attempt at caching or state-change elimination in the
calling list.
This test exercises one such case, where the called list consists of just
a single glShadeModel() call.
Diffstat (limited to 'progs/trivial/Makefile')
-rw-r--r-- | progs/trivial/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/progs/trivial/Makefile b/progs/trivial/Makefile index ec67d113647..0209c509503 100644 --- a/progs/trivial/Makefile +++ b/progs/trivial/Makefile @@ -20,6 +20,7 @@ SOURCES = \ clear.c \ dlist-dangling.c \ dlist-tri-flat-tri.c \ + dlist-recursive-call.c \ dlist-edgeflag-dangling.c \ dlist-edgeflag.c \ dlist-degenerate.c \ |