summaryrefslogtreecommitdiff
path: root/examples/window
diff options
context:
space:
mode:
authorjussi2023-10-29 18:36:23 +0200
committerjussi2023-10-29 18:36:23 +0200
commitfcd2d2d8b583f6a11a9ce32a75da8e18c8c88d32 (patch)
tree026920ed99483731ba7ea07b8c211754a059485d /examples/window
parent0df40e2ac080364bcebd4fe0445b814230545477 (diff)
downloadreilua-enhanced-fcd2d2d8b583f6a11a9ce32a75da8e18c8c88d32.tar.gz
reilua-enhanced-fcd2d2d8b583f6a11a9ce32a75da8e18c8c88d32.tar.bz2
reilua-enhanced-fcd2d2d8b583f6a11a9ce32a75da8e18c8c88d32.zip
LoadTextureFromData and LoadRenderTextureFromData. Documentation updates.
Diffstat (limited to 'examples/window')
-rw-r--r--examples/window/main.lua8
1 files changed, 0 insertions, 8 deletions
diff --git a/examples/window/main.lua b/examples/window/main.lua
index ed0227b..4be48f6 100644
--- a/examples/window/main.lua
+++ b/examples/window/main.lua
@@ -1,17 +1,10 @@
local textColor = RL.BLACK
local textPos = { 192, 200 }
local text = "Congrats! You created your first window!"
-local texture = nil
function RL.init()
RL.SetWindowTitle( "First window" )
RL.SetWindowState( RL.FLAG_VSYNC_HINT )
-
- local path = RL.GetBasePath().."../resources/images/cat.png"
- print( "path", path )
-
- texture = RL.LoadTexture( path )
- print( "texture", texture )
end
function RL.process( delta )
@@ -31,6 +24,5 @@ end
function RL.draw()
RL.ClearBackground( RL.RAYWHITE )
- RL.DrawTexture( texture, { 20, 20 }, RL.WHITE )
RL.DrawText( RL.defaultFont, text, textPos, 20, 2, textColor )
end