Some checks failed
CI / build-test-release (push) Failing after 5m36s
Canonical LGPL-3.0-only text, GPL-3.0 companion, SPDX headers on all first-party sources, MIT for examples/. Vendored lib/ untouched. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
37 lines
920 B
C++
37 lines
920 B
C++
//SPDX-License-Identifier: LGPL-3.0-only
|
|
//SPDX-FileCopyrightText: Copyright (C) 2026 Catcrafts®
|
|
|
|
module;
|
|
#include "Crafter.Build-Api.h"
|
|
export module Crafter.Build:Shader;
|
|
import std;
|
|
namespace fs = std::filesystem;
|
|
|
|
namespace Crafter {
|
|
export enum class ShaderType {
|
|
Vertex,
|
|
TessControl,
|
|
TessEvaluation,
|
|
Geometry,
|
|
Fragment,
|
|
Compute,
|
|
RayGen,
|
|
Intersect,
|
|
AnyHit,
|
|
ClosestHit,
|
|
Miss,
|
|
Callable,
|
|
Task,
|
|
Mesh,
|
|
};
|
|
|
|
export class Shader {
|
|
public:
|
|
fs::path path;
|
|
std::string entrypoint;
|
|
ShaderType type;
|
|
CRAFTER_API Shader(fs::path&& path, std::string&& entrypoint, ShaderType type);
|
|
CRAFTER_API bool Check(const fs::path& outputDir) const;
|
|
CRAFTER_API std::string Compile(const fs::path& outputDir, std::span<const fs::path> includeDirs) const;
|
|
};
|
|
}
|