1
Fork 0

Display a rect on screen

This commit is contained in:
prescientmoon 2025-03-30 04:50:15 +02:00
parent de69cd8691
commit 41fdea4be2
Signed by: prescientmoon
SSH key fingerprint: SHA256:UUF9JT2s8Xfyv76b8ZuVL7XrmimH4o49p4b+iexbVH4
2 changed files with 75 additions and 192 deletions
odin/sdl-opengl-rendering

View file

@ -55,6 +55,7 @@
# {{{ Shell
devShell = pkgs.mkShell rec {
nativeBuildInputs = [
pkgs.pkg-config
pkgs.entr # File change detection
pkgs.odin # Compiler
pkgs.mold # Linker
@ -76,7 +77,6 @@
pkgs.xorg.libXinerama
pkgs.xorg.libXcursor
pkgs.sdl3
raylib
];
LD_LIBRARY_PATH = with pkgs; lib.makeLibraryPath buildInputs;