Renderer: Rename ShaderStageImpl to ShaderStage

This commit is contained in:
Jérôme Leclercq
2020-10-30 23:06:15 +01:00
parent 0d779077c1
commit 009e5a0466
12 changed files with 22 additions and 22 deletions

View File

@@ -68,7 +68,7 @@ namespace Nz
return std::make_shared<OpenGLRenderPipelineLayout>(std::move(pipelineLayoutInfo));
}
std::shared_ptr<ShaderStageImpl> OpenGLDevice::InstantiateShaderStage(ShaderStageType type, ShaderLanguage lang, const void* source, std::size_t sourceSize)
std::shared_ptr<ShaderStage> OpenGLDevice::InstantiateShaderStage(ShaderStageType type, ShaderLanguage lang, const void* source, std::size_t sourceSize)
{
return std::make_shared<OpenGLShaderStage>(*this, type, lang, source, sourceSize);
}