mii_emu/ui_gl/mii_mui_gl.h
Michel Pollet 2e12a37bce
Floppy bitstream view, also major refactor of UI code
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>
2024-02-18 10:32:33 +00:00

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);