summaryrefslogtreecommitdiffstats
path: root/src/graphics/core/device.h
diff options
context:
space:
mode:
authorPiotr Dziwinski <piotrdz@gmail.com>2012-09-30 10:56:35 +0200
committerPiotr Dziwinski <piotrdz@gmail.com>2012-09-30 10:56:35 +0200
commit8ea4736a46f1a468ee214528ba539e1f505b8273 (patch)
treedb47648ae56b1cc5314afe8ee96fb81e0e276351 /src/graphics/core/device.h
parentaf4ff31b4ebcd9d42eed9ae344d29f8d95c3b7c9 (diff)
downloadcolobot-8ea4736a46f1a468ee214528ba539e1f505b8273.tar.gz
colobot-8ea4736a46f1a468ee214528ba539e1f505b8273.tar.bz2
colobot-8ea4736a46f1a468ee214528ba539e1f505b8273.zip
Font coloring; fix for resize hack
- added font coloring and changed default color to black - fixed resize hack incorrectly changing video config, but font resizing will not work for now
Diffstat (limited to 'src/graphics/core/device.h')
-rw-r--r--src/graphics/core/device.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/graphics/core/device.h b/src/graphics/core/device.h
index bd56ea3..ba5af6e 100644
--- a/src/graphics/core/device.h
+++ b/src/graphics/core/device.h
@@ -308,11 +308,13 @@ public:
virtual void SetTextureStageWrap(int index, TexWrapMode wrapS, TexWrapMode wrapT) = 0;
//! Renders primitive composed of vertices with single texture
- virtual void DrawPrimitive(PrimitiveType type, const Vertex *vertices , int vertexCount) = 0;
- //! Renders primitive composed of vertices with color information and single texture
- virtual void DrawPrimitive(PrimitiveType type, const VertexCol *vertices , int vertexCount) = 0;
+ virtual void DrawPrimitive(PrimitiveType type, const Vertex *vertices , int vertexCount,
+ Color color = Color(1.0f, 1.0f, 1.0f, 1.0f)) = 0;
//! Renders primitive composed of vertices with multitexturing (2 textures)
- virtual void DrawPrimitive(PrimitiveType type, const VertexTex2 *vertices, int vertexCount) = 0;
+ virtual void DrawPrimitive(PrimitiveType type, const VertexTex2 *vertices, int vertexCount,
+ Color color = Color(1.0f, 1.0f, 1.0f, 1.0f)) = 0;
+ //! Renders primitive composed of vertices with color information
+ virtual void DrawPrimitive(PrimitiveType type, const VertexCol *vertices , int vertexCount) = 0;
//! Tests whether a sphere intersects the 6 clipping planes of projection volume
virtual int ComputeSphereVisibility(const Math::Vector &center, float radius) = 0;