diff options
author | Brian <[email protected]> | 2008-04-01 16:07:09 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2008-04-01 16:07:09 -0600 |
commit | 792d524aed23f1b15c3e0e16e23ea2b815f79087 (patch) | |
tree | 937232ff9729708319aa5ac99bdc0f8083925df3 /progs/tests/Makefile | |
parent | bccd3f138ccc717fad9073110d15e3321b590476 (diff) |
mesa: measure fill rate for drawing a large quad with basic shading/texture modes
Diffstat (limited to 'progs/tests/Makefile')
-rw-r--r-- | progs/tests/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/progs/tests/Makefile b/progs/tests/Makefile index ea34a708553..27e2eafdfcb 100644 --- a/progs/tests/Makefile +++ b/progs/tests/Makefile @@ -40,6 +40,7 @@ SOURCES = \ fbotest1.c \ fbotest2.c \ fbotexture.c \ + fillrate.c \ fog.c \ fogcoord.c \ fptest1.c \ @@ -166,6 +167,13 @@ mipmap_view.o: mipmap_view.c readtex.h $(CC) -c $(INCLUDES) $(CFLAGS) $(DEFINES) $< -o $@ +fillrate: fillrate.o readtex.o + $(CC) $(CFLAGS) fillrate.o readtex.o $(LIBS) -o $@ + +fillrate.o: fillrate.c readtex.h + $(CC) -c $(INCLUDES) $(CFLAGS) $(DEFINES) $< -o $@ + + readtex.o: readtex.c $(CC) -c $(INCLUDES) $(CFLAGS) $(DEFINES) $< -o $@ |