diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-04-26 21:56:58 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-04-26 21:56:58 +0300 |
commit | 129b19f69fbbdcd896150aa8faa7f20254169c0c (patch) | |
tree | dd15d89fa3d6422139a0ba41a22f6f4db3f8b5ee /src/graphics.h | |
parent | 5f5ea46910feefc212a98ea715b0d4b0d9d4bc23 (diff) | |
download | plus-129b19f69fbbdcd896150aa8faa7f20254169c0c.tar.gz plus-129b19f69fbbdcd896150aa8faa7f20254169c0c.tar.bz2 plus-129b19f69fbbdcd896150aa8faa7f20254169c0c.tar.xz plus-129b19f69fbbdcd896150aa8faa7f20254169c0c.zip |
Add to log draw backend name.
Add ability to get free video memory (fast openg with NVIDIA).
Add test with id 100 for long perfomance testing.
Diffstat (limited to 'src/graphics.h')
-rw-r--r-- | src/graphics.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/graphics.h b/src/graphics.h index 0955bf6d7..3ae2a7718 100644 --- a/src/graphics.h +++ b/src/graphics.h @@ -254,6 +254,9 @@ class Graphics : public gcn::SDLGraphics virtual void prepareScreenshot() { } + virtual int getMemoryUsage() + { return 0; } + virtual bool drawNet(int x1, int y1, int x2, int y2, int width, int height); |