Added example of using the software renderer and window surface API, contributed by Nitin Jain.

This commit is contained in:
Sam Lantinga 2013-07-27 03:48:23 -07:00
parent 0754901ca9
commit 17482012af
2 changed files with 109 additions and 0 deletions

View file

@ -13,6 +13,7 @@ TARGETS = \
testaudioinfo$(EXE) \
testautomation$(EXE) \
testdraw2$(EXE) \
testdrawchessboard$(EXE) \
testerror$(EXE) \
testfile$(EXE) \
testgamecontroller$(EXE) \
@ -103,6 +104,9 @@ testrelative$(EXE): $(srcdir)/testrelative.c
testdraw2$(EXE): $(srcdir)/testdraw2.c
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
testdrawchessboard$(EXE): $(srcdir)/testdrawchessboard.c
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
testerror$(EXE): $(srcdir)/testerror.c
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)