prog
This commit is contained in:
30
src/display/screen.c
Normal file
30
src/display/screen.c
Normal file
@@ -0,0 +1,30 @@
|
||||
/**
|
||||
* Copyright (c) 2025 Dominic Masters
|
||||
*
|
||||
* This software is released under the MIT License.
|
||||
* https://opensource.org/licenses/MIT
|
||||
*/
|
||||
|
||||
#include "screen.h"
|
||||
#include "assert/assert.h"
|
||||
#include "util/memory.h"
|
||||
|
||||
void screenInit() {
|
||||
memoryZero(&SCREEN, sizeof(screen_t));
|
||||
}
|
||||
|
||||
void screenBind() {
|
||||
// Assume framebuffer is already unbound
|
||||
}
|
||||
|
||||
void screenUnbind() {
|
||||
|
||||
}
|
||||
|
||||
void screenRender() {
|
||||
|
||||
}
|
||||
|
||||
void screenDispose() {
|
||||
|
||||
}
|
Reference in New Issue
Block a user