summaryrefslogtreecommitdiffstats
path: root/src/graphics/core/texture.h
diff options
context:
space:
mode:
authorPiotr Dziwinski <piotrdz@gmail.com>2012-07-29 15:09:53 +0200
committerPiotr Dziwinski <piotrdz@gmail.com>2012-07-29 15:09:53 +0200
commit7c5a3514dd6e907866bddcbb09b4d9cbd958dd8e (patch)
tree00aaece75d43bd35a3997bf4eacdfd103d29d5c7 /src/graphics/core/texture.h
parent72c0188ec37c3783133baf6960d72cb3c9d12a6c (diff)
downloadcolobot-7c5a3514dd6e907866bddcbb09b4d9cbd958dd8e.tar.gz
colobot-7c5a3514dd6e907866bddcbb09b4d9cbd958dd8e.tar.bz2
colobot-7c5a3514dd6e907866bddcbb09b4d9cbd958dd8e.zip
Video mode changing
- added video mode querying & changing - added joystick querying & changing - cleaned up CApplication interface
Diffstat (limited to 'src/graphics/core/texture.h')
-rw-r--r--src/graphics/core/texture.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/graphics/core/texture.h b/src/graphics/core/texture.h
index 787c2bf..8d6b082 100644
--- a/src/graphics/core/texture.h
+++ b/src/graphics/core/texture.h
@@ -18,6 +18,9 @@
#pragma once
+#include "math/intsize.h"
+
+
namespace Gfx {
/**
@@ -190,10 +193,8 @@ struct Texture
bool valid;
//! ID of the texture in graphics engine
unsigned int id;
- //! Width of texture
- int width;
- //! Height of texture
- int height;
+ //! Size of texture
+ Math::IntSize size;
//! Whether the texture has alpha channel
bool alpha;
@@ -201,7 +202,6 @@ struct Texture
{
valid = false;
id = 0;
- width = height = 0;
alpha = false;
}