#include <array>
#include <string>
#include "app/gfx/bitmap.h"
#include "app/rom.h"
#include "imgui/imgui.h"
Go to the source code of this file.
|
namespace | yaze |
| Main namespace for the application.
|
|
namespace | yaze::gui |
| Graphical User Interface (GUI) components for the application.
|
|
|
#define | IM_MIN(A, B) (((A) < (B)) ? (A) : (B)) |
|
#define | IM_MAX(A, B) (((A) >= (B)) ? (A) : (B)) |
|
#define | IM_CLAMP(V, MN, MX) ((V) < (MN) ? (MN) : (V) > (MX) ? (MX) : (V)) |
|
◆ IM_MIN
#define IM_MIN |
( |
|
A, |
|
|
|
B |
|
) |
| (((A) < (B)) ? (A) : (B)) |
◆ IM_MAX
#define IM_MAX |
( |
|
A, |
|
|
|
B |
|
) |
| (((A) >= (B)) ? (A) : (B)) |
◆ IM_CLAMP
#define IM_CLAMP |
( |
|
V, |
|
|
|
MN, |
|
|
|
MX |
|
) |
| ((V) < (MN) ? (MN) : (V) > (MX) ? (MX) : (V)) |