1
Fork 0

odin(sdl-opengl-rendering): implement JFA

This commit is contained in:
prescientmoon 2025-06-05 04:27:32 +02:00
parent 25be983558
commit b661791c73
Signed by: prescientmoon
SSH key fingerprint: SHA256:WFp/cO76nbarETAoQcQXuV+0h7XJsEsOCI0UsyPIy6U
12 changed files with 509 additions and 169 deletions
odin/sdl-opengl-rendering

View file

@ -11,6 +11,9 @@
ols.inputs.nixpkgs.follows = "nixpkgs";
ols.inputs.flake-utils.follows = "flake-utils";
ols.inputs.odin.follows = "odin";
glsl_analyzer.url = "github:starlitcanopy/glsl_analyzer";
glsl_analyzer.flake = false;
};
outputs =
@ -26,6 +29,14 @@
];
};
glsl_analyzer = pkgs.glsl_analyzer.overrideAttrs (_: {
src = inputs.glsl_analyzer;
nativeBuildInputs = [
pkgs.zig_0_14.hook
];
});
inherit (pkgs) lib;
in
{
@ -42,6 +53,7 @@
pkgs.seer # Debugger GUI
pkgs.valgrind # Detect memory leaks
pkgs.renderdoc # Graphics debugger
glsl_analyzer # GLSL language server
];
buildInputs = [