1 // Copyright © 2008-2021 Pioneer Developers. See AUTHORS.txt for details
2 // Licensed under the terms of the GPL v3. See licenses/GPL-3.txt
3 
4 #ifndef _DUMMY_RENDERSTATE_H
5 #define _DUMMY_RENDERSTATE_H
6 
7 #include "graphics/RenderState.h"
8 
9 namespace Graphics {
10 	namespace Dummy {
11 
12 		class RenderState : public Graphics::RenderState {
13 		public:
RenderState(const RenderStateDesc & d)14 			RenderState(const RenderStateDesc &d) :
15 				Graphics::RenderState(d) {}
Apply()16 			void Apply() {}
17 		};
18 
19 	} // namespace Dummy
20 } // namespace Graphics
21 #endif
22