pineapple/src/shader_recompiler/runtime_info.h

95 lines
1.9 KiB
C
Raw Normal View History

2022-11-05 13:58:44 +01:00
// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include <array>
#include <map>
#include <optional>
#include <vector>
#include "common/common_types.h"
#include "shader_recompiler/varying_state.h"
namespace Shader {
enum class AttributeType : u8 {
Float,
SignedInt,
UnsignedInt,
2023-05-31 22:58:29 +02:00
SignedScaled,
UnsignedScaled,
2022-11-05 13:58:44 +01:00
Disabled,
};
enum class InputTopology {
Points,
Lines,
LinesAdjacency,
Triangles,
TrianglesAdjacency,
};
enum class CompareFunction {
Never,
Less,
Equal,
LessThanEqual,
Greater,
NotEqual,
GreaterThanEqual,
Always,
};
enum class TessPrimitive {
Isolines,
Triangles,
Quads,
};
enum class TessSpacing {
Equal,
FractionalOdd,
FractionalEven,
};
struct TransformFeedbackVarying {
u32 buffer{};
u32 stride{};
u32 offset{};
u32 components{};
};
struct RuntimeInfo {
std::array<AttributeType, 32> generic_input_types{};
2023-12-04 03:26:49 +01:00
VaryingState previous_stage_stores{};
std::map<IR::Attribute, IR::Attribute> previous_stage_legacy_stores_mapping{};
2022-11-05 13:58:44 +01:00
bool convert_depth_mode{};
bool force_early_z{};
TessPrimitive tess_primitive{};
TessSpacing tess_spacing{};
bool tess_clockwise{};
InputTopology input_topology{};
2023-12-04 03:26:49 +01:00
std::optional<float> fixed_state_point_size{};
std::optional<CompareFunction> alpha_test_func{};
2022-11-05 13:58:44 +01:00
float alpha_test_reference{};
/// Static Y negate value
bool y_negate{};
/// Use storage buffers instead of global pointers on GLASM
bool glasm_use_storage_buffers{};
/// Transform feedback state for each varying
2023-06-13 01:03:27 +02:00
std::array<TransformFeedbackVarying, 256> xfb_varyings{};
u32 xfb_count{0};
2023-12-04 03:26:49 +01:00
/// Maximum number of UBO/CBUF bindings allowed by the host device
u32 max_num_cbufs{32};
2022-11-05 13:58:44 +01:00
};
} // namespace Shader