From: "Mike Gorchak" Subject: New test for overlays While writting QNX Photon Overlay code I've found that the existent overlay test application is not enough, it performs too artificial tests - it always moves/resizes the overlay's viewport, but in the real life that happens very rare. So I decided to write new test (commonly base on testoverlay.c code) and called it testoverlay2 :) moose.dat - raw 8 bit paletted data of the small movie. (It was a moose.gif, also included in the attachment as reference, but not needed for this test, it is just for information). I cannot find, who created this .gif, so no credits this time :) But over inet I saw this gif zillion times, so I think we do not infringing somebody rights :) --HG-- extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40673
16 lines
561 B
Makefile
16 lines
561 B
Makefile
AUTOMAKE_OPTIONS = no-dependencies
|
|
|
|
noinst_PROGRAMS = \
|
|
testver testtypes testhread testlock testerror testsem testtimer \
|
|
loopwave testcdrom testkeys testvidinfo checkkeys testwin graywin \
|
|
testsprite testbitmap testalpha testgamma testpalette testwm \
|
|
threadwin testoverlay testoverlay2 testgl testjoystick
|
|
|
|
testalpha_SOURCES = testalpha.c
|
|
testalpha_LDADD = @MATHLIB@
|
|
testgamma_SOURCES = testgamma.c
|
|
testgamma_LDADD = @MATHLIB@
|
|
testpalette_SOURCES = testpalette.c
|
|
testpalette_LDADD = @MATHLIB@
|
|
testgl_SOURCES = testgl.c
|
|
testgl_LDADD = @GL_LIBS@ @MATHLIB@
|