implement cpad stuff

This commit is contained in:
ManDude
2021-08-14 21:00:50 +01:00
parent af5a9f0951
commit af823cdb82
14 changed files with 576 additions and 52 deletions
+15 -9
View File
@@ -8,9 +8,11 @@
#include "common/log/log.h"
/* ****************************** */
/* Internal functions */
/* ****************************** */
/*
********************************
* Internal functions
********************************
*/
namespace {
@@ -28,9 +30,11 @@ void set_main_display(std::shared_ptr<GfxDisplay> display) {
} // namespace
/* ****************************** */
/* GfxDisplay */
/* ****************************** */
/*
********************************
* GfxDisplay
********************************
*/
GfxDisplay::GfxDisplay(GLFWwindow* a_window) {
set_renderer(GfxPipeline::OpenGL);
@@ -81,9 +85,11 @@ void GfxDisplay::render_graphics() {
m_renderer->render_display(this);
}
/* ****************************** */
/* DISPLAY */
/* ****************************** */
/*
********************************
* DISPLAY
********************************
*/
namespace Display {