This commit is contained in:
ZY4N
2024-12-22 16:58:40 +01:00
parent 2704814de2
commit db8db8f9d7
161 changed files with 17102 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
#pragma once
#include <filesystem>
#include "asset_loader.hpp"
#include "instance.hpp"
namespace viewer::dynamic_shader_program_loading
{
void load_directory(
asset_loader& loader,
instance& z3d,
std::mutex& gl_resource_lock,
std::mutex& progress_lock,
std::string& progress_title,
float& progress_ratio,
const std::filesystem::path& path
);
std::size_t count_shader_files(
const std::filesystem::path& path
);
}