diff options
| author | Magnus Auvinen <magnus.auvinen@gmail.com> | 2011-12-31 09:40:11 +0100 |
|---|---|---|
| committer | Magnus Auvinen <magnus.auvinen@gmail.com> | 2011-12-31 09:40:11 +0100 |
| commit | 8a91bfa1ddff0c99d65375b8b5c57e710169543a (patch) | |
| tree | c3a5806cc3b5caf1da378f08533956f53f29b686 /src/engine/graphics.h | |
| parent | 50e75da3334e77d027d5b10d85d4022c5dca0821 (diff) | |
| download | zcatch-8a91bfa1ddff0c99d65375b8b5c57e710169543a.tar.gz zcatch-8a91bfa1ddff0c99d65375b8b5c57e710169543a.zip | |
fixed texture upload support. removed raw gl calls from the text render
Diffstat (limited to 'src/engine/graphics.h')
| -rw-r--r-- | src/engine/graphics.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/engine/graphics.h b/src/engine/graphics.h index e1652cbe..cbc6a331 100644 --- a/src/engine/graphics.h +++ b/src/engine/graphics.h @@ -80,6 +80,7 @@ public: virtual int UnloadTexture(int Index) = 0; virtual int LoadTextureRaw(int Width, int Height, int Format, const void *pData, int StoreFormat, int Flags) = 0; virtual int LoadTexture(const char *pFilename, int StorageType, int StoreFormat, int Flags) = 0; + virtual int LoadTextureRawSub(int TextureID, int x, int y, int Width, int Height, int Format, const void *pData) = 0; virtual void TextureSet(int TextureID) = 0; struct CLineItem |