examples: add image-blur example

Signed-off-by: Lucas Romanó <9062026+lucasromanosantos@users.noreply.github.com>
This commit is contained in:
Lucas Romanó 2022-07-13 18:14:30 -03:00 committed by Stephen Gutekanst
parent 9ece370059
commit a787265af2
5 changed files with 413 additions and 0 deletions

View file

@ -45,6 +45,7 @@ pub fn build(b: *std.build.Builder) void {
.{ .name = "fractal-cube", .packages = &[_]Pkg{Packages.zmath} },
.{ .name = "textured-cube", .packages = &[_]Pkg{ Packages.zmath, Packages.zigimg } },
.{ .name = "ecs-app", .packages = &[_]Pkg{} },
.{ .name = "image-blur", .packages = &[_]Pkg{Packages.zigimg} },
// NOTE: examples with std_platform_only should be placed at last
.{ .name = "gkurve", .packages = &[_]Pkg{ Packages.zmath, Packages.zigimg, freetype.pkg }, .std_platform_only = true },
}) |example| {