aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/gui/EmulationOutputWindow.kt
blob: 14fe246a97bf79c6d1af7ee49fcca90e4c4d25ac (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(620, 10), Cond.FirstUseEver)
    begin("Emulation output - 4x scale")
    text("TODO - actually render something...")
    end()
  }
}