From: Mikko Rasa Date: Wed, 14 Apr 2021 11:45:15 +0000 (+0300) Subject: Add compatibility typedefs for the pipeline classes X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=commitdiff_plain;h=9b802e9749fc9d372ef105c6347346d0951ef27f Add compatibility typedefs for the pipeline classes Must be in a separate commit for git to pick up on the renames in the previous one. --- diff --git a/source/builders/pipelinebuilder.h b/source/builders/pipelinebuilder.h new file mode 100644 index 00000000..4a576c73 --- /dev/null +++ b/source/builders/pipelinebuilder.h @@ -0,0 +1,14 @@ +#ifndef MSP_GL_PIPELINEBUILDER_H_ +#define MSP_GL_PIPELINEBUILDER_H_ + +#include "sequencebuilder.h" + +namespace Msp { +namespace GL { + +DEPRECATED typedef SequenceBuilder PipelineBuilder; + +} // namespace GL +} // namespace Msp + +#endif diff --git a/source/builders/pipelinetemplate.h b/source/builders/pipelinetemplate.h new file mode 100644 index 00000000..607bb6b6 --- /dev/null +++ b/source/builders/pipelinetemplate.h @@ -0,0 +1,14 @@ +#ifndef MSP_GL_PIPELINETEMPLATE_H_ +#define MSP_GL_PIPELINETEMPLATE_H_ + +#include "sequencetemplate.h" + +namespace Msp { +namespace GL { + +DEPRECATED typedef SequenceTemplate PipelineTemplate; + +} // namespace GL +} // namespace Msp + +#endif diff --git a/source/render/pipeline.h b/source/render/pipeline.h new file mode 100644 index 00000000..c3d87b20 --- /dev/null +++ b/source/render/pipeline.h @@ -0,0 +1,14 @@ +#ifndef MSP_GL_PIPELINE_H_ +#define MSP_GL_PIPELINE_H_ + +#include "sequence.h" + +namespace Msp { +namespace GL { + +DEPRECATED typedef Sequence Pipeline; + +} // namespace GL +} // namespace Msp + +#endif