From 844f944ce47d3d2eeef84944d2c73e0681df0e49 Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Mon, 17 Feb 2025 23:41:53 +0100 Subject: Upgrade asl --- hk21/game/BUILD.bazel | 8 ++++++-- hk21/game/gpu.cpp | 8 ++++---- hk21/game/gpu.hpp | 4 ++-- hk21/game/main.cpp | 2 +- 4 files changed, 13 insertions(+), 9 deletions(-) (limited to 'hk21/game') diff --git a/hk21/game/BUILD.bazel b/hk21/game/BUILD.bazel index b2cca09..786ed6a 100644 --- a/hk21/game/BUILD.bazel +++ b/hk21/game/BUILD.bazel @@ -6,8 +6,12 @@ cc_binary( "gpu.hpp", ], deps = [ - "@asl//asl", - "@asl//asl/log", + "@asl//asl/base", + "@asl//asl/logging", + "@asl//asl/types:status", + "@asl//asl/types:box", + "@asl//asl/types:option", + "@asl//asl/containers:buffer", "@sdl3_windows//:sdl3", "//hk21/vulkan_loader", ], diff --git a/hk21/game/gpu.cpp b/hk21/game/gpu.cpp index 3fe0a8b..b481ee7 100644 --- a/hk21/game/gpu.cpp +++ b/hk21/game/gpu.cpp @@ -1,9 +1,9 @@ #include "hk21/game/gpu.hpp" -#include -#include -#include -#include +#include +#include +#include +#include #include diff --git a/hk21/game/gpu.hpp b/hk21/game/gpu.hpp index fb74e20..d8d9d18 100644 --- a/hk21/game/gpu.hpp +++ b/hk21/game/gpu.hpp @@ -1,7 +1,7 @@ #pragma once -#include -#include +#include +#include struct SDL_Window; diff --git a/hk21/game/main.cpp b/hk21/game/main.cpp index ed4c738..21b17f3 100644 --- a/hk21/game/main.cpp +++ b/hk21/game/main.cpp @@ -1,4 +1,4 @@ -#include +#include #include #include -- cgit