[nostalgia/core] Remove renderer funcions from Context friends

This commit is contained in:
2022-02-03 20:48:58 -06:00
parent 8174d04b06
commit c7cd54ae52
6 changed files with 22 additions and 24 deletions
+3 -3
View File
@@ -10,10 +10,10 @@
namespace nostalgia::core::renderer {
ox::Error init(Context *ctx) noexcept;
ox::Error init(Context *ctx, void **rendererData) noexcept;
ox::Error shutdown(Context *ctx) noexcept;
ox::Error shutdown(Context *ctx, void *rendererData) noexcept;
ox::Error loadBgTexture(Context *ctx, int section, void *bytes, int w, int h) noexcept;
ox::Error loadBgTexture(void *rendererData, int section, void *pixels, int w, int h) noexcept;
}