diff options
| author | Simon Robertshaw <simon@hardwired.org.uk> | 2012-08-11 19:24:48 (GMT) |
|---|---|---|
| committer | Simon Robertshaw <simon@hardwired.org.uk> | 2012-08-11 19:24:48 (GMT) |
| commit | 08b4e5553aa10df74c4fdb0ba519fb700fa8100b (patch) | |
| tree | 68cda233dcd82978c377978bb19b1fd61bbe0c70 /src/graphics/Graphics.h | |
| parent | ecbb1e910352aec1cda4e2d4c36cf3599bc43963 (diff) | |
| download | powder-08b4e5553aa10df74c4fdb0ba519fb700fa8100b.zip powder-08b4e5553aa10df74c4fdb0ba519fb700fa8100b.tar.gz | |
Implement some missing lua functions, PNG format creation (requires zlib)
Diffstat (limited to 'src/graphics/Graphics.h')
| -rw-r--r-- | src/graphics/Graphics.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/graphics/Graphics.h b/src/graphics/Graphics.h index e74239e..46d28b4 100644 --- a/src/graphics/Graphics.h +++ b/src/graphics/Graphics.h @@ -4,6 +4,7 @@ #include <string> #include <cstdlib> #include <cstring> +#include <vector> #if defined(OGLI) #include "OpenGLHeaders.h" #endif @@ -135,6 +136,8 @@ public: static int textwidth(const char *s); static void textsize(const char * s, int & width, int & height); + VideoBuffer DumpFrame(); + void Acquire(); void Release(); |
