// Copyright (c) 2023 Dominic Masters // // This software is released under the MIT License. // https://opensource.org/licenses/MIT #pragma once #include "component/display/material/Material.hpp" #include "display/Texture.hpp" namespace Dawn { struct SimpleTexturedMaterialShaderData { int32_t t; struct Color color; glm::mat4 model; glm::mat4 projection; glm::mat4 view; bool hasTexture; }; class SimpleTexturedMaterial : public Material { private: struct SimpleTexturedMaterialShaderData data; std::shared_ptr texture; protected: public: void load(std::shared_ptr ctx) override; /** * Returns the color of this material. */ struct Color getColor(); /** * Returns the texture of this material. * * @return The texture of this material. */ std::shared_ptr getTexture(); /** * Sets the texture of this material. * * @param texture The texture to set. */ void setTexture(const std::shared_ptr texture); /** * Sets the color of this material. * * @param color The color to set. */ void setColor(const struct Color color); std::vector> getPasses( struct RenderPassContext &ctx ) override; }; }