mirror of
https://github.com/PancakeTAS/lsfg-vk.git
synced 2026-05-10 19:21:42 +00:00
14 lines
286 B
C++
14 lines
286 B
C++
/* SPDX-License-Identifier: GPL-3.0-or-later */
|
|
|
|
#pragma once
|
|
|
|
#include <filesystem>
|
|
|
|
namespace ls {
|
|
|
|
/// find the location of the lsfg-vk.dll
|
|
/// @returns the path to the DLL
|
|
/// @throws ls::error if the DLL could not be found
|
|
std::filesystem::path findShaderDll();
|
|
|
|
}
|