#ifndef Magnum_Shaders_Flat_h #define Magnum_Shaders_Flat_h /* This file is part of Magnum. Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019 Vladimír Vondruš Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /** @file * @brief Class @ref Magnum::Shaders::Flat, typedef @ref Magnum::Shaders::Flat2D, @ref Magnum::Shaders::Flat3D */ #include "Magnum/DimensionTraits.h" #include "Magnum/GL/AbstractShaderProgram.h" #include "Magnum/Shaders/Generic.h" #include "Magnum/Shaders/visibility.h" namespace Magnum { namespace Shaders { namespace Implementation { enum class FlatFlag: UnsignedByte { Textured = 1 << 0, AlphaMask = 1 << 1, VertexColor = 1 << 2, #ifndef MAGNUM_TARGET_GLES2 ObjectId = 1 << 3 #endif }; typedef Containers::EnumSet FlatFlags; } /** @brief Flat shader Draws the whole mesh with given color or texture. For a colored mesh you need to provide the @ref Position attribute in your triangle mesh. By default, the shader renders the mesh with a white color in an identity transformation. Use @ref setTransformationProjectionMatrix(), @ref setColor() and others to configure the shader. If you want to use a texture, you need to provide also the @ref TextureCoordinates attribute. Pass @ref Flag::Textured to the constructor and then at render time don't forget to bind also the texture via @ref bindTexture(). The texture is multipled by the color, which is by default set to @cpp 0xffffffff_rgbaf @ce. @image html shaders-flat.png width=256px For coloring the texture based on intensity you can use the @ref Vector shader. The 3D version of this shader is equivalent to @ref Phong with zero lights, however this implementation is much simpler and thus likely also faster. See @ref Shaders-Phong-zero-lights "its documentation" for more information. Conversely, enabling @ref Flag::VertexColor and using a default color with no texturing makes this shader equivalent to @ref VertexColor. @section Shaders-Flat-usage Example usage @subsection Shaders-Flat-usage-colored Colored mesh Common mesh setup: @snippet MagnumShaders.cpp Flat-usage-colored1 Common rendering setup: @snippet MagnumShaders.cpp Flat-usage-colored2 @subsection Shaders-Flat-usage-textured Textured mesh Common mesh setup: @snippet MagnumShaders.cpp Flat-usage-textured1 Common rendering setup: @snippet MagnumShaders.cpp Flat-usage-textured2 @subsection Shaders-Flat-usage-alpha Alpha blending and masking Enable @ref Flag::AlphaMask and tune @ref setAlphaMask() for simple binary alpha-masked drawing that doesn't require depth sorting or blending enabled. Note that this feature is implemented using the GLSL @glsl discard @ce operation which is known to have considerable performance impact on some platforms. With proper depth sorting and blending you'll usually get much better performance and output quality. @subsection Shaders-Flat-usage-object-id Object ID output The shader supports writing object ID to the framebuffer for object picking or other annotation purposes. Enable it using @ref Flag::ObjectId and set up an integer buffer attached to the @ref ObjectIdOutput attachment. Note that for portability you should use @ref GL::Framebuffer::clearColor() instead of @ref GL::Framebuffer::clear() as the former usually emits GL errors when called on framebuffers with integer attachments. @snippet MagnumShaders.cpp Flat-usage-object-id @requires_gles30 Object ID output requires integer buffer attachments, which are not available in OpenGL ES 2.0 or WebGL 1.0. @see @ref shaders, @ref Flat2D, @ref Flat3D */ template class MAGNUM_SHADERS_EXPORT Flat: public GL::AbstractShaderProgram { public: /** * @brief Vertex position * * @ref shaders-generic "Generic attribute", * @ref Magnum::Vector2 "Vector2" in 2D, @ref Magnum::Vector3 "Vector3" * in 3D. */ typedef typename Generic::Position Position; /** * @brief 2D texture coordinates * * @ref shaders-generic "Generic attribute", * @ref Magnum::Vector2 "Vector2". Used only if @ref Flag::Textured is * set. */ typedef typename Generic::TextureCoordinates TextureCoordinates; /** * @brief Three-component vertex color * * @ref shaders-generic "Generic attribute", @ref Magnum::Color3. Use * either this or the @ref Color4 attribute. Used only if * @ref Flag::VertexColor is set. */ typedef typename Generic::Color3 Color3; /** * @brief Four-component vertex color * * @ref shaders-generic "Generic attribute", @ref Magnum::Color4. Use * either this or the @ref Color3 attribute. Used only if * @ref Flag::VertexColor is set. */ typedef typename Generic::Color4 Color4; enum: UnsignedInt { /** * Color shader output. Present always, expects three- or * four-component floating-point or normalized buffer attachment. */ ColorOutput = Generic::ColorOutput, #ifndef MAGNUM_TARGET_GLES2 /** * Object ID shader output. @ref shaders-generic "Generic output", * present only if @ref Flag::ObjectId is set. Expects a * single-component unsigned integral attachment. Writes the value * set in @ref setObjectId() there, see * @ref Shaders-Phong-usage-object-id for more information. * @requires_gles30 Object ID output requires integer buffer * attachments, which are not available in OpenGL ES 2.0 or * WebGL 1.0. */ ObjectIdOutput = Generic::ObjectIdOutput #endif }; #ifdef DOXYGEN_GENERATING_OUTPUT /** * @brief Flag * * @see @ref Flags, @ref flags() */ enum class Flag: UnsignedByte { /** * Multiply color with a texture. * @see @ref setColor(), @ref setTexture() */ Textured = 1 << 0, /** * Enable alpha masking. If the combined fragment color has an * alpha less than the value specified with @ref setAlphaMask(), * given fragment is discarded. * * This uses the @glsl discard @ce operation which is known to have * considerable performance impact on some platforms. While useful * for cheap alpha masking that doesn't require depth sorting, * with proper depth sorting and blending you'll usually get much * better performance and output quality. */ AlphaMask = 1 << 1, /** * Multiply diffuse color with a vertex color. Requires either * the @ref Color3 or @ref Color4 attribute to be present. */ VertexColor = 1 << 2, #ifndef MAGNUM_TARGET_GLES2 /** * Enable object ID output. See @ref Shaders-Flat-usage-object-id * for more information. * @requires_gles30 Object ID output requires integer buffer * attachments, which are not available in OpenGL ES 2.0 or * WebGL 1.0. */ ObjectId = 1 << 3 #endif }; /** * @brief Flags * * @see @ref flags() */ typedef Containers::EnumSet Flags; #else /* Done this way to be prepared for possible future diversion of 2D and 3D flags (e.g. introducing 3D-specific features) */ typedef Implementation::FlatFlag Flag; typedef Implementation::FlatFlags Flags; #endif /** * @brief Constructor * @param flags Flags */ explicit Flat(Flags flags = {}); /** * @brief Construct without creating the underlying OpenGL object * * The constructed instance is equivalent to a moved-from state. Useful * in cases where you will overwrite the instance later anyway. Move * another object over it to make it useful. * * This function can be safely used for constructing (and later * destructing) objects even without any OpenGL context being active. * However note that this is a low-level and a potentially dangerous * API, see the documentation of @ref NoCreate for alternatives. */ explicit Flat(NoCreateT) noexcept: GL::AbstractShaderProgram{NoCreate} {} /** @brief Copying is not allowed */ Flat(const Flat&) = delete; /** @brief Move constructor */ Flat(Flat&&) noexcept = default; /** @brief Copying is not allowed */ Flat& operator=(const Flat&) = delete; /** @brief Move assignment */ Flat& operator=(Flat&&) noexcept = default; /** @brief Flags */ Flags flags() const { return _flags; } /** * @brief Set transformation and projection matrix * @return Reference to self (for method chaining) * * Initial value is an identity matrix. */ Flat& setTransformationProjectionMatrix(const MatrixTypeFor& matrix); /** * @brief Set color * @return Reference to self (for method chaining) * * If @ref Flag::Textured is set, initial value is * @cpp 0xffffffff_rgbaf @ce and the color will be multiplied with the * texture. * @see @ref bindTexture() */ Flat& setColor(const Magnum::Color4& color); /** * @brief Bind a color texture * @return Reference to self (for method chaining) * * Expects that the shader was created with @ref Flag::Textured * enabled. * @see @ref setColor() */ Flat& bindTexture(GL::Texture2D& texture); /** * @brief Set alpha mask value * @return Reference to self (for method chaining) * * Expects that the shader was created with @ref Flag::AlphaMask * enabled. Fragments with alpha values smaller than the mask value * will be discarded. Initial value is @cpp 0.5f @ce. See the flag * documentation for further information. */ Flat& setAlphaMask(Float mask); #ifndef MAGNUM_TARGET_GLES2 /** * @brief Set object ID * @return Reference to self (for method chaining) * * Expects that the shader was created with @ref Flag::ObjectId * enabled. Value set here is written to the @ref ObjectIdOutput, see * @ref Shaders-Flat-usage-object-id for more information. Default is * @cpp 0 @ce. * @requires_gles30 Object ID output requires integer buffer * attachments, which are not available in OpenGL ES 2.0 or WebGL * 1.0. */ Flat& setObjectId(UnsignedInt id); #endif #ifdef MAGNUM_BUILD_DEPRECATED /** @brief @copybrief bindTexture() * @deprecated Use @ref bindTexture() instead. */ CORRADE_DEPRECATED("use bindTexture() instead") Flat& setTexture(GL::Texture2D& texture) { return bindTexture(texture); } #endif private: Flags _flags; Int _transformationProjectionMatrixUniform{0}, _colorUniform{1}, _alphaMaskUniform{2}; #ifndef MAGNUM_TARGET_GLES2 Int _objectIdUniform{3}; #endif }; /** @brief 2D flat shader */ typedef Flat<2> Flat2D; /** @brief 3D flat shader */ typedef Flat<3> Flat3D; #ifdef DOXYGEN_GENERATING_OUTPUT /** @debugoperatorclassenum{Flat,Flat::Flag} */ template Debug& operator<<(Debug& debug, Flat::Flag value); /** @debugoperatorclassenum{Flat,Flat::Flags} */ template Debug& operator<<(Debug& debug, Flat::Flags value); #else namespace Implementation { MAGNUM_SHADERS_EXPORT Debug& operator<<(Debug& debug, FlatFlag value); MAGNUM_SHADERS_EXPORT Debug& operator<<(Debug& debug, FlatFlags value); CORRADE_ENUMSET_OPERATORS(FlatFlags) } #endif }} #endif