diff options
author | Brian Paul <[email protected]> | 2009-09-16 19:33:01 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-09-16 19:33:01 -0600 |
commit | 9abbedad09c2501285d2edb00cba7e8e6549c5ba (patch) | |
tree | 113ca0f873db469d6ec47aae9e4eba9081b52f01 /progs/perf/Makefile | |
parent | 4df2f7af5e9b2c00ead92fe0ae49ed8491aef1d0 (diff) |
progs/perf: initial set of simple performance test programs
Initial tests include:
drawoverhead - measure overhead of state changes w.r.t drawing commands
teximage - measure glTexImage2D() and glTexSubImage2D() speed
vbo - measure glBufferData() and glBufferSubData() speed
vertexrate - measure vertex rate for immediate mode, glDrawArrays, VBOs, etc.
Diffstat (limited to 'progs/perf/Makefile')
-rw-r--r-- | progs/perf/Makefile | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/progs/perf/Makefile b/progs/perf/Makefile new file mode 100644 index 00000000000..219667439fd --- /dev/null +++ b/progs/perf/Makefile @@ -0,0 +1,49 @@ +# progs/demos/Makefile + +TOP = ../.. +include $(TOP)/configs/current + +INCDIR = $(TOP)/include + +LIBS = -L$(TOP)/$(LIB_DIR) -l$(GLUT_LIB) -l$(GLEW_LIB) \ + -l$(GLU_LIB) -l$(GL_LIB) $(APP_LIB_DEPS) + +# using : to avoid APP_CC pointing to CC loop +CC := $(APP_CC) +CFLAGS += -I$(INCDIR) +LDLIBS = $(LIBS) + +PROG_SOURCES = \ + drawoverhead.c \ + teximage.c \ + vbo.c \ + vertexrate.c \ + +PROG_OBJS = $(PROG_SOURCES:.c=.o) + +PROGS = $(PROG_SOURCES:%.c=%) + + +UTIL_SOURCES = \ + common.c \ + glmain.c + +UTIL_HEADERS = \ + common.h \ + glmain.h + +UTIL_OBJS = $(UTIL_SOURCES:.c=.o) + + + +default: $(PROGS) + +$(PROG_OBJS): $(UTIL_HEADERS) + +$(PROGS): $(UTIL_OBJS) + + + +clean: + -rm -f $(PROGS) + -rm -f *.o *~ |