-rw-r--r-- | src/Makefile.am | 2 | ||||
-rw-r--r-- | src/model/exp004state.h | 2 | ||||
-rw-r--r-- | src/model/map_geometry.c | 2 | ||||
-rw-r--r-- | src/util/ati_meminfo.c | 39 | ||||
-rw-r--r-- | src/util/ati_meminfo.h | 11 |
5 files changed, 54 insertions, 2 deletions
diff --git a/src/util/ati_meminfo.h b/src/util/ati_meminfo.h new file mode 100644 index 0000000..4c551eb --- a/dev/null +++ b/src/util/ati_meminfo.h | |||
@@ -0,0 +1,11 @@ | |||
1 | #ifndef ATI_MEMINFO_H | ||
2 | #define ATI_MEMINFO_H | ||
3 | |||
4 | /* | ||
5 | * Report the memory usage from the graphics card. Code based on | ||
6 | * documentation at | ||
7 | * http://www.opengl.org/registry/specs/ATI/meminfo.txt. | ||
8 | */ | ||
9 | void ati_meminfo (void); | ||
10 | |||
11 | #endif // ATI_MEMINFO_H | ||