incomplete screen

This commit is contained in:
2025-06-02 21:00:45 +02:00
parent 65ebf5d4f3
commit 4fe33cefc4
4 changed files with 162 additions and 2 deletions

View File

@@ -550,10 +550,10 @@ void nn_unlockScreen(nn_screen *screen);
void nn_getResolution(nn_screen *screen, int *width, int *height);
void nn_maxResolution(nn_screen *screen, int *width, int *height);
bool nn_setResolution(nn_screen *screen, int width, int height);
void nn_setResolution(nn_screen *screen, int width, int height);
void nn_getViewport(nn_screen *screen, int *width, int *height);
bool nn_setViewport(nn_screen *screen, int width, int height);
void nn_setViewport(nn_screen *screen, int width, int height);
void nn_getAspectRatio(nn_screen *screen, int *width, int *height);
void nn_setAspectRatio(nn_screen *screen, int width, int height);
@@ -591,6 +591,8 @@ typedef struct nn_gpuControl {
int maxWidth;
int maxHeight;
int maxDepth;
// other stuff
} nn_gpuControl;
// the control is COPIED.