removing "backend" from internal namespaces

This commit is contained in:
Noel Berry
2021-05-25 21:30:46 -07:00
parent d7cef352a5
commit 9eca790f9b
22 changed files with 1747 additions and 1772 deletions

View File

@ -1,6 +1,6 @@
#include <blah/graphics/renderpass.h>
#include <blah/common.h>
#include "../internal/graphics_backend.h"
#include "../internal/graphics.h"
using namespace Blah;
@ -86,5 +86,5 @@ void RenderPass::perform()
pass.scissor = pass.scissor.overlap_rect(Rect(0, 0, draw_size.x, draw_size.y));
// perform render
GraphicsBackend::render(pass);
Graphics::render(pass);
}