From 9a298ca833d9b6a3425bb30c2e52cf04e34aeb7c Mon Sep 17 00:00:00 2001 From: James Cowgill Date: Fri, 23 Aug 2013 09:57:55 +0100 Subject: Imported Upstream version 2.1+dfsg --- src/SFML/Graphics/RenderStates.cpp | 98 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 98 insertions(+) create mode 100644 src/SFML/Graphics/RenderStates.cpp (limited to 'src/SFML/Graphics/RenderStates.cpp') diff --git a/src/SFML/Graphics/RenderStates.cpp b/src/SFML/Graphics/RenderStates.cpp new file mode 100644 index 0000000..95ca8c1 --- /dev/null +++ b/src/SFML/Graphics/RenderStates.cpp @@ -0,0 +1,98 @@ +//////////////////////////////////////////////////////////// +// +// SFML - Simple and Fast Multimedia Library +// Copyright (C) 2007-2013 Laurent Gomila (laurent.gom@gmail.com) +// +// This software is provided 'as-is', without any express or implied warranty. +// In no event will the authors be held liable for any damages arising from the use of this software. +// +// Permission is granted to anyone to use this software for any purpose, +// including commercial applications, and to alter it and redistribute it freely, +// subject to the following restrictions: +// +// 1. The origin of this software must not be misrepresented; +// you must not claim that you wrote the original software. +// If you use this software in a product, an acknowledgment +// in the product documentation would be appreciated but is not required. +// +// 2. Altered source versions must be plainly marked as such, +// and must not be misrepresented as being the original software. +// +// 3. This notice may not be removed or altered from any source distribution. +// +//////////////////////////////////////////////////////////// + +//////////////////////////////////////////////////////////// +// Headers +//////////////////////////////////////////////////////////// +#include +#include + + +namespace sf +{ +//////////////////////////////////////////////////////////// +const RenderStates RenderStates::Default; + + +//////////////////////////////////////////////////////////// +RenderStates::RenderStates() : +blendMode(BlendAlpha), +transform(), +texture (NULL), +shader (NULL) +{ +} + + +//////////////////////////////////////////////////////////// +RenderStates::RenderStates(const Transform& theTransform) : +blendMode(BlendAlpha), +transform(theTransform), +texture (NULL), +shader (NULL) +{ +} + + +//////////////////////////////////////////////////////////// +RenderStates::RenderStates(BlendMode theBlendMode) : +blendMode(theBlendMode), +transform(), +texture (NULL), +shader (NULL) +{ +} + + +//////////////////////////////////////////////////////////// +RenderStates::RenderStates(const Texture* theTexture) : +blendMode(BlendAlpha), +transform(), +texture (theTexture), +shader (NULL) +{ +} + + +//////////////////////////////////////////////////////////// +RenderStates::RenderStates(const Shader* theShader) : +blendMode(BlendAlpha), +transform(), +texture (NULL), +shader (theShader) +{ +} + + +//////////////////////////////////////////////////////////// +RenderStates::RenderStates(BlendMode theBlendMode, const Transform& theTransform, + const Texture* theTexture, const Shader* theShader) : +blendMode(theBlendMode), +transform(theTransform), +texture (theTexture), +shader (theShader) +{ +} + +} // namespace sf -- cgit v1.2.3