Before Width: | Height: | Size: 89 KiB After Width: | Height: | Size: 88 KiB |
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 4.6 KiB After Width: | Height: | Size: 4.6 KiB |
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 40 KiB |
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 5.9 KiB After Width: | Height: | Size: 5.9 KiB |
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 9.2 KiB After Width: | Height: | Size: 9.2 KiB |
Before Width: | Height: | Size: 918 B After Width: | Height: | Size: 914 B |
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 42 KiB After Width: | Height: | Size: 42 KiB |
|
@ -1,41 +0,0 @@
|
||||||
import boxy, opengl, pixie, windy
|
|
||||||
|
|
||||||
export pixie, windy
|
|
||||||
|
|
||||||
var
|
|
||||||
window*: Window
|
|
||||||
screen*: Image
|
|
||||||
ctx*: Context
|
|
||||||
bxy: Boxy
|
|
||||||
|
|
||||||
proc tick*() =
|
|
||||||
## Called this every frame in a while loop.
|
|
||||||
|
|
||||||
bxy.addImage("screen", screen, genMipmaps = false)
|
|
||||||
|
|
||||||
bxy.beginFrame(window.framebufferSize)
|
|
||||||
bxy.drawRect(rect(vec2(0, 0), window.framebufferSize.vec2), color(1, 1, 1, 1))
|
|
||||||
bxy.drawImage("screen", vec2(0, 0))
|
|
||||||
bxy.endFrame()
|
|
||||||
|
|
||||||
swapBuffers(window)
|
|
||||||
|
|
||||||
pollEvents()
|
|
||||||
|
|
||||||
if window.closeRequested:
|
|
||||||
quit()
|
|
||||||
|
|
||||||
ctx.setTransform(scale(vec2(window.contentScale, window.contentScale)))
|
|
||||||
|
|
||||||
proc start*(title = "Demo", windowSize = ivec2(800, 600)) =
|
|
||||||
## Start the demo.
|
|
||||||
window = newWindow(title, windowSize)
|
|
||||||
window.style = Decorated
|
|
||||||
|
|
||||||
makeContextCurrent(window)
|
|
||||||
loadExtensions()
|
|
||||||
|
|
||||||
let pixelSize = windowSize.vec2 * window.contentScale
|
|
||||||
screen = newImage(pixelSize.x.int, pixelSize.y.int)
|
|
||||||
ctx = newContext(screen)
|
|
||||||
bxy = newBoxy()
|
|