2022-04-23 10:59:50 +02:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2021-06-16 08:03:08 +02:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace Shader {
|
|
|
|
|
|
|
|
// Try to keep entries here to a minimum
|
|
|
|
// They can accidentally change the cached information in a shader
|
|
|
|
|
|
|
|
/// Misc information about the host
|
|
|
|
struct HostTranslateInfo {
|
2021-08-24 02:00:11 +02:00
|
|
|
bool support_float16{}; ///< True when the device supports 16-bit floats
|
|
|
|
bool support_int64{}; ///< True when the device supports 64-bit integers
|
|
|
|
bool needs_demote_reorder{}; ///< True when the device needs DemoteToHelperInvocation reordered
|
2022-11-30 23:16:00 +01:00
|
|
|
bool support_snorm_render_buffer{}; ///< True when the device supports SNORM render buffers
|
|
|
|
bool support_viewport_index_layer{}; ///< True when the device supports gl_Layer in VS
|
2023-01-05 23:10:21 +01:00
|
|
|
u32 min_ssbo_alignment{}; ///< Minimum alignment supported by the device for SSBOs
|
|
|
|
bool support_geometry_shader_passthrough{}; ///< True when the device supports geometry
|
|
|
|
///< passthrough shaders
|
2021-06-16 08:03:08 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Shader
|