| 45 | } |
| 46 | |
| 47 | ref<Texture> RenderData::getTexture(const std::string_view name) const |
| 48 | { |
| 49 | auto pResource = getResource(name); |
| 50 | return pResource ? pResource->asTexture() : nullptr; |
| 51 | } |
| 52 | |
| 53 | ref<RenderPass> RenderPass::create(std::string_view type, ref<Device> pDevice, const Properties& props, PluginManager& pm) |
| 54 | { |
no test coverage detected