mirror of
https://github.com/buserror/mii_emu.git
synced 2024-11-12 13:06:07 +00:00
2e12a37bce
Split the UI into separate bits. + Bits that are X11/GLX only + Bits that are 'pure' opengl + Bits that are UI related but not renderer related Hopefully with help porting to other platformsI Signed-off-by: Michel Pollet <buserror@gmail.com>
24 lines
327 B
C
24 lines
327 B
C
/*
|
|
* mii_mui_gl.h
|
|
*
|
|
* Copyright (C) 2023 Michel Pollet <buserror@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
#pragma once
|
|
|
|
#include "mii_mui.h"
|
|
|
|
void
|
|
mii_mui_gl_init(
|
|
mii_mui_t *ui);
|
|
void
|
|
mii_mui_gl_prepare_textures(
|
|
mii_mui_t *ui);
|
|
void
|
|
mii_mui_gl_render(
|
|
mii_mui_t *ui);
|
|
bool
|
|
mii_mui_gl_run(
|
|
mii_mui_t *ui);
|