mirror of
https://github.com/wiiu-env/WiiUPluginLoaderBackend.git
synced 2024-11-08 14:05:08 +01:00
20 lines
306 B
C++
20 lines
306 B
C++
#pragma once
|
|
|
|
#include <gx2/enum.h>
|
|
|
|
struct StoredBuffer {
|
|
void *buffer;
|
|
uint32_t buffer_size;
|
|
uint32_t mode;
|
|
GX2SurfaceFormat surface_format;
|
|
GX2BufferingMode buffering_mode;
|
|
};
|
|
|
|
class ConfigUtils {
|
|
public:
|
|
static void openConfigMenu();
|
|
|
|
private:
|
|
static void displayMenu();
|
|
};
|