// Copyright (c) 2023 Dominic Masters // // This software is released under the MIT License. // https://opensource.org/licenses/MIT #include "SimpleTexturedMaterial.hpp" using namespace Dawn; struct Color SimpleTexturedMaterial::getColor() { return this->data.color; } std::shared_ptr SimpleTexturedMaterial::getTexture() { return this->texture; } void SimpleTexturedMaterial::setTexture(std::shared_ptr texture) { this->texture = texture; } void SimpleTexturedMaterial::setColor(const struct Color color) { this->data.color = color; } std::vector> SimpleTexturedMaterial::getPasses( struct RenderPassContext &ctx ) { this->data.model = this->getItem()->getWorldTransform(); this->data.projection = ctx.camera->getProjection(); this->data.view = ctx.camera->getItem()->getWorldTransform(); auto textures = std::unordered_map< shadertexturebinding_t, std::shared_ptr >(); if(this->texture) { this->data.hasTexture = true; this->data.texture = 0; textures[this->data.texture] = this->texture; } else { this->data.hasTexture = false; } return { createRenderPass( *this, data, textures ) }; }