Merge pull request #366 from guzba/master

rm pixie/demo
This commit is contained in:
treeform 2022-01-20 14:54:09 -08:00 committed by GitHub
commit 2caed5f5ae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 0 additions and 41 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 89 KiB

After

Width:  |  Height:  |  Size: 88 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.6 KiB

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 40 KiB

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.9 KiB

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.2 KiB

After

Width:  |  Height:  |  Size: 9.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 918 B

After

Width:  |  Height:  |  Size: 914 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 42 KiB

After

Width:  |  Height:  |  Size: 42 KiB

View file

@ -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()