Upgrade asl
This commit is contained in:
@ -15,7 +15,7 @@ bazel_dep(name = "sdl3_windows", version = "3.2.0")
|
||||
bazel_dep(name = "asl")
|
||||
git_override(
|
||||
module_name = "asl",
|
||||
commit = "3d5a45b283d2a59211f9e24f100b95169375213d",
|
||||
commit = "a141c401f78467bc15f62882fca5d55a007cacbb",
|
||||
remote = "https://git.stevenlr.com/460nm/asl.git/",
|
||||
)
|
||||
|
||||
|
2
MODULE.bazel.lock
generated
2
MODULE.bazel.lock
generated
@ -1,5 +1,5 @@
|
||||
{
|
||||
"lockFileVersion": 16,
|
||||
"lockFileVersion": 18,
|
||||
"registryFileHashes": {
|
||||
"https://bcr.bazel.build/bazel_registry.json": "8a28e4aff06ee60aed2a8c281907fb8bcbf3b753c91fb5a5c57da3215d5b3497",
|
||||
"https://bcr.bazel.build/modules/abseil-cpp/20210324.2/MODULE.bazel": "7cd0312e064fde87c8d1cd79ba06c876bd23630c83466e9500321be55c96ace2",
|
||||
|
@ -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",
|
||||
],
|
||||
|
@ -1,9 +1,9 @@
|
||||
#include "hk21/game/gpu.hpp"
|
||||
|
||||
#include <asl/buffer.hpp>
|
||||
#include <asl/format.hpp>
|
||||
#include <asl/option.hpp>
|
||||
#include <asl/log/log.hpp>
|
||||
#include <asl/containerS/buffer.hpp>
|
||||
#include <asl/formatting/format.hpp>
|
||||
#include <asl/types/option.hpp>
|
||||
#include <asl/logging/logging.hpp>
|
||||
|
||||
#include <SDL3/SDL_vulkan.h>
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#pragma once
|
||||
|
||||
#include <asl/status_or.hpp>
|
||||
#include <asl/box.hpp>
|
||||
#include <asl/types/status_or.hpp>
|
||||
#include <asl/types/box.hpp>
|
||||
|
||||
struct SDL_Window;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include <asl/log/log.hpp>
|
||||
#include <asl/logging/logging.hpp>
|
||||
|
||||
#include <SDL3/SDL.h>
|
||||
#include <SDL3/SDL_main.h>
|
||||
|
@ -9,7 +9,8 @@ cc_library(
|
||||
],
|
||||
deps = [
|
||||
"//vendor/vulkan",
|
||||
"@asl//asl",
|
||||
"@asl//asl/base",
|
||||
"@asl//asl/types:status",
|
||||
],
|
||||
visibility = ["//:__subpackages__"],
|
||||
)
|
||||
|
@ -1,7 +1,7 @@
|
||||
#pragma once
|
||||
|
||||
#include <asl/integers.hpp>
|
||||
#include <asl/status.hpp>
|
||||
#include <asl/base/integers.hpp>
|
||||
#include <asl/types/status.hpp>
|
||||
|
||||
#define VK_NO_STDDEF_H
|
||||
#define VK_NO_STDINT_H
|
||||
|
Reference in New Issue
Block a user