diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-04-03 23:34:34 +0200 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-04-03 23:34:34 +0200 |
commit | ffc5770c1f9740a694298e97711bccd8e5410dc9 (patch) | |
tree | ef12d1fbf07fc0f1479a933326ebafe9ba7d4710 | |
parent | 66cab5910166470f2479a03c3a95d5591c6a3a9d (diff) |
Upgrade asl to 0.3.0
-rw-r--r-- | MODULE.bazel | 2 | ||||
-rw-r--r-- | MODULE.bazel.lock | 6 | ||||
-rw-r--r-- | hk21/game/gpu.cpp | 1 |
3 files changed, 5 insertions, 4 deletions
diff --git a/MODULE.bazel b/MODULE.bazel index 2d05b12..aeb2813 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -16,4 +16,4 @@ git_override( )
bazel_dep(name = "sdl3_windows", version = "3.2.6")
-bazel_dep(name = "asl", version = "0.2.0")
+bazel_dep(name = "asl", version = "0.3.0")
diff --git a/MODULE.bazel.lock b/MODULE.bazel.lock index c232347..511d47d 100644 --- a/MODULE.bazel.lock +++ b/MODULE.bazel.lock @@ -10,7 +10,7 @@ "https://bcr.bazel.build/modules/abseil-cpp/20230802.1/MODULE.bazel": "fa92e2eb41a04df73cdabeec37107316f7e5272650f81d6cc096418fe647b915", "https://bcr.bazel.build/modules/abseil-cpp/20240116.1/MODULE.bazel": "37bcdb4440fbb61df6a1c296ae01b327f19e9bb521f9b8e26ec854b6f97309ed", "https://bcr.bazel.build/modules/abseil-cpp/20240116.1/source.json": "9be551b8d4e3ef76875c0d744b5d6a504a27e3ae67bc6b28f46415fd2d2957da", - "https://bcr.bazel.build/modules/asl/0.2.0/MODULE.bazel": "not found", + "https://bcr.bazel.build/modules/asl/0.3.0/MODULE.bazel": "not found", "https://bcr.bazel.build/modules/bazel_features/1.1.1/MODULE.bazel": "27b8c79ef57efe08efccbd9dd6ef70d61b4798320b8d3c134fd571f78963dbcd", "https://bcr.bazel.build/modules/bazel_features/1.11.0/MODULE.bazel": "f9382337dd5a474c3b7d334c2f83e50b6eaedc284253334cf823044a26de03e8", "https://bcr.bazel.build/modules/bazel_features/1.15.0/MODULE.bazel": "d38ff6e517149dc509406aca0db3ad1efdd890a85e049585b7234d04238e2a4d", @@ -140,8 +140,8 @@ "https://bcr.bazel.build/modules/zlib/1.3.1.bcr.3/source.json": "2be409ac3c7601245958cd4fcdff4288be79ed23bd690b4b951f500d54ee6e7d", "https://bcr.bazel.build/modules/zlib/1.3.1/MODULE.bazel": "751c9940dcfe869f5f7274e1295422a34623555916eb98c174c1e945594bf198", "https://git.stevenlr.com/460nm/bazel-registry.git/plain/bazel_registry.json": "8a28e4aff06ee60aed2a8c281907fb8bcbf3b753c91fb5a5c57da3215d5b3497", - "https://git.stevenlr.com/460nm/bazel-registry.git/plain/modules/asl/0.2.0/MODULE.bazel": "775e336e3d816c5391274b261a7679237627fa120b32b46baea2914350a7b8a2", - "https://git.stevenlr.com/460nm/bazel-registry.git/plain/modules/asl/0.2.0/source.json": "a8909690e489179b929fc0b2d13c2f419e6ebdf1f7bbb27111fe7a1e16eb23b6", + "https://git.stevenlr.com/460nm/bazel-registry.git/plain/modules/asl/0.3.0/MODULE.bazel": "8960caf858f64438a29a505584b19ede9dab4b5c6270b6c9e8abe28eab3d6abe", + "https://git.stevenlr.com/460nm/bazel-registry.git/plain/modules/asl/0.3.0/source.json": "e315934f0b2831e71a91efe6af3b6ccc67faea086a006e1fff29d56e25b55db7", "https://git.stevenlr.com/460nm/bazel-registry.git/plain/modules/sdl3_windows/3.2.6/MODULE.bazel": "857507d99ce37f1a4cb331a7888cec8511f38b0bfd46adb55d1b70a9cbe4e86f", "https://git.stevenlr.com/460nm/bazel-registry.git/plain/modules/sdl3_windows/3.2.6/source.json": "5196961bbdfc230463ce7ea9049f7bab62b5ea7bccbfd376b85d07b2f909f98b" }, diff --git a/hk21/game/gpu.cpp b/hk21/game/gpu.cpp index 14b9f96..c036cf2 100644 --- a/hk21/game/gpu.cpp +++ b/hk21/game/gpu.cpp @@ -4,6 +4,7 @@ #include "hk21/game/gpu.hpp"
+#include <asl/base/numeric.hpp>
#include <asl/containers/buffer.hpp>
#include <asl/containers/intrusive_list.hpp>
#include <asl/formatting/format.hpp>
|