Namespace refactoring to avoid prefixing everything with Vulkan
This commit is contained in:
@@ -6,7 +6,7 @@ namespace Seele
|
||||
class RenderPath
|
||||
{
|
||||
public:
|
||||
RenderPath(PGraphics graphics);
|
||||
RenderPath(Gfx::PGraphics graphics);
|
||||
virtual ~RenderPath();
|
||||
virtual void applyArea(Rect area) = 0;
|
||||
virtual void init() = 0;
|
||||
@@ -14,7 +14,7 @@ namespace Seele
|
||||
virtual void render() = 0;
|
||||
virtual void endFrame() = 0;
|
||||
protected:
|
||||
PGraphics graphics;
|
||||
Gfx::PGraphics graphics;
|
||||
Rect area;
|
||||
};
|
||||
DEFINE_REF(RenderPath);
|
||||
|
||||
Reference in New Issue
Block a user