feat: add rasterization pipeline

This commit is contained in:
2026-03-04 20:01:06 +05:30
parent faa3f941d0
commit d57b2e2114
9 changed files with 163 additions and 72 deletions

View File

@@ -4,22 +4,26 @@
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
outputs = {
self,
nixpkgs,
} : let system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
self,
nixpkgs,
}: let
system = "x86_64-linux";
pkgs = import nixpkgs {inherit system;};
in {
devShells.${system}.default = pkgs.mkShell {
nativeBuildInputs = with pkgs;
[gcc clang -
tools lldb
nativeBuildInputs = with pkgs; [
gcc
clang-tools
lldb
meson ninja pkg -
config
meson
ninja
pkg-config
gtk4
gtk4
gdb];
gdb
];
shellHook = "";
};