]> git.tdb.fi Git - libs/gl.git/blobdiff - source/pipelinepass.h
Move PipelinePass inside Pipeline and make the data members private
[libs/gl.git] / source / pipelinepass.h
diff --git a/source/pipelinepass.h b/source/pipelinepass.h
deleted file mode 100644 (file)
index e996de0..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-#ifndef MSP_GL_PIPELINEPASS_H_
-#define MSP_GL_PIPELINEPASS_H_
-
-namespace Msp {
-namespace GL {
-
-class Blend;
-class DepthTest;
-class Lighting;
-
-struct PipelinePass
-{
-       const Lighting *lighting;
-       const DepthTest *depth_test;
-       const Blend *blend;
-
-       PipelinePass();
-};
-
-} // namespace GL
-} // namespace Msp
-
-#endif