aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/gui/EmulationOutputWindow.kt
blob: 489edbe5a04ee410ad6659a3a80df0ffe33db9d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package gui

import glm_.vec2.Vec2
import imgui.Cond
import imgui.ImGui

fun paintEmulationOutputWindow() {
  with(ImGui) {
    setNextWindowSize(Vec2(640, 576), Cond.FirstUseEver)
    setNextWindowPos(Vec2(400, 50), Cond.FirstUseEver)
    begin("Emulation output - 4x scale")
    text("TODO - actually render something...")
    end()
  }
}