dolphin/Source/Core/VideoBackends/Vulkan/ShaderCompiler.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
916 B
C
Raw Normal View History

2016-08-13 14:57:50 +02:00
// Copyright 2016 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#pragma once
#include <cstddef>
#include <optional>
#include <string_view>
2016-08-13 14:57:50 +02:00
#include <vector>
#include "Common/CommonTypes.h"
2016-08-13 14:57:50 +02:00
namespace Vulkan::ShaderCompiler
2016-08-13 14:57:50 +02:00
{
// SPIR-V compiled code type
using SPIRVCodeType = u32;
using SPIRVCodeVector = std::vector<SPIRVCodeType>;
// Compile a vertex shader to SPIR-V.
std::optional<SPIRVCodeVector> CompileVertexShader(std::string_view source_code);
2016-08-13 14:57:50 +02:00
// Compile a geometry shader to SPIR-V.
std::optional<SPIRVCodeVector> CompileGeometryShader(std::string_view source_code);
2016-08-13 14:57:50 +02:00
// Compile a fragment shader to SPIR-V.
std::optional<SPIRVCodeVector> CompileFragmentShader(std::string_view source_code);
2016-08-13 14:57:50 +02:00
2016-12-09 13:23:04 +01:00
// Compile a compute shader to SPIR-V.
std::optional<SPIRVCodeVector> CompileComputeShader(std::string_view source_code);
} // namespace Vulkan::ShaderCompiler