1
0
Fork 0
forked from eden-emu/eden

Compare commits

...

3 commits

Author SHA1 Message Date
Ribbit
7bbeafc0ca more changes might have overlooked something 2025-10-08 20:31:00 +02:00
Ribbit
cb6da0409b [SPIR-V] Auto apply flat interpolation to integer fragment inputs 2025-10-08 20:31:00 +02:00
954c17c18a
[frontend] change order of filters to match append rules (#2696)
otherwise, FSR would change to Gaussian etc.

in general, sans resolution, new enum values should always be appended

Signed-off-by: crueter <crueter@eden-emu.dev>

Reviewed-on: eden-emu/eden#2696
Reviewed-by: CamilleLaVey <camillelavey99@gmail.com>
Reviewed-by: Lizzie <lizzie@eden-emu.dev>
2025-10-08 06:39:58 +02:00
5 changed files with 222 additions and 30 deletions

View file

@ -253,16 +253,16 @@
<item>@string/scaling_filter_nearest_neighbor</item>
<item>@string/scaling_filter_bilinear</item>
<item>@string/scaling_filter_bicubic</item>
<item>@string/scaling_filter_zero_tangent</item>
<item>@string/scaling_filter_bspline</item>
<item>@string/scaling_filter_mitchell</item>
<item>@string/scaling_filter_spline1</item>
<item>@string/scaling_filter_gaussian</item>
<item>@string/scaling_filter_lanczos</item>
<item>@string/scaling_filter_scale_force</item>
<item>@string/scaling_filter_fsr</item>
<item>@string/scaling_filter_area</item>
<item>@string/scaling_filter_mmpx</item>
<item>@string/scaling_filter_zero_tangent</item>
<item>@string/scaling_filter_bspline</item>
<item>@string/scaling_filter_mitchell</item>
<item>@string/scaling_filter_spline1</item>
</string-array>
<integer-array name="rendererScalingFilterValues">

View file

@ -143,7 +143,7 @@ ENUM(ConfirmStop, Ask_Always, Ask_Based_On_Game, Ask_Never);
ENUM(FullscreenMode, Borderless, Exclusive);
ENUM(NvdecEmulation, Off, Cpu, Gpu);
ENUM(ResolutionSetup, Res1_4X, Res1_2X, Res3_4X, Res1X, Res5_4X, Res3_2X, Res2X, Res3X, Res4X, Res5X, Res6X, Res7X, Res8X);
ENUM(ScalingFilter, NearestNeighbor, Bilinear, Bicubic, ZeroTangent, BSpline, Mitchell, Spline1, Gaussian, Lanczos, ScaleForce, Fsr, Area, Mmpx, MaxEnum);
ENUM(ScalingFilter, NearestNeighbor, Bilinear, Bicubic, Gaussian, Lanczos, ScaleForce, Fsr, Area, ZeroTangent, BSpline, Mitchell, Spline1, Mmpx, MaxEnum);
ENUM(AntiAliasing, None, Fxaa, Smaa, MaxEnum);
ENUM(AspectRatio, R16_9, R4_3, R21_9, R16_10, Stretch);
ENUM(ConsoleMode, Handheld, Docked);

View file

@ -549,16 +549,16 @@ std::unique_ptr<ComboboxTranslationMap> ComboboxEnumeration(QObject* parent)
PAIR(ScalingFilter, NearestNeighbor, tr("Nearest Neighbor")),
PAIR(ScalingFilter, Bilinear, tr("Bilinear")),
PAIR(ScalingFilter, Bicubic, tr("Bicubic")),
PAIR(ScalingFilter, ZeroTangent, tr("Zero-Tangent")),
PAIR(ScalingFilter, BSpline, tr("B-Spline")),
PAIR(ScalingFilter, Mitchell, tr("Mitchell")),
PAIR(ScalingFilter, Spline1, tr("Spline-1")),
PAIR(ScalingFilter, Gaussian, tr("Gaussian")),
PAIR(ScalingFilter, Lanczos, tr("Lanczos")),
PAIR(ScalingFilter, ScaleForce, tr("ScaleForce")),
PAIR(ScalingFilter, Fsr, tr("AMD FidelityFX™ Super Resolution")),
PAIR(ScalingFilter, Area, tr("Area")),
PAIR(ScalingFilter, Mmpx, tr("MMPX")),
PAIR(ScalingFilter, ZeroTangent, tr("Zero-Tangent")),
PAIR(ScalingFilter, BSpline, tr("B-Spline")),
PAIR(ScalingFilter, Mitchell, tr("Mitchell")),
PAIR(ScalingFilter, Spline1, tr("Spline-1")),
}});
translations->insert({Settings::EnumMetadata<Settings::AntiAliasing>::Index(),
{

View file

@ -98,12 +98,46 @@ Id ImageType(EmitContext& ctx, const ImageDescriptor& desc, Id sampled_type) {
throw InvalidArgument("Invalid texture type {}", desc.type);
}
bool IsFragmentStage(const EmitContext& ctx) {
return ctx.stage == Stage::Fragment;
}
bool IsUserVaryingInput(bool is_builtin, bool has_location) {
return !is_builtin && has_location;
}
bool IsIntegerOrBoolType(EmitContext& ctx, Id type) {
return ctx.IsIntegerOrBoolType(type);
}
bool RequiresFlatDecoration(EmitContext& ctx, Id type, spv::StorageClass storage_class,
bool is_builtin, bool has_location) {
if (!IsFragmentStage(ctx)) {
return false;
}
if (storage_class != spv::StorageClass::Input) {
return false;
}
if (!IsUserVaryingInput(is_builtin, has_location)) {
return false;
}
return IsIntegerOrBoolType(ctx, type);
}
Id DefineVariable(EmitContext& ctx, Id type, std::optional<spv::BuiltIn> builtin,
spv::StorageClass storage_class, std::optional<Id> initializer = std::nullopt) {
spv::StorageClass storage_class, std::optional<Id> initializer = std::nullopt,
bool has_location = false) {
const Id pointer_type{ctx.TypePointer(storage_class, type)};
const Id id{ctx.AddGlobalVariable(pointer_type, storage_class, initializer)};
if (builtin) {
ctx.Decorate(id, spv::Decoration::BuiltIn, *builtin);
const bool is_builtin{builtin.has_value()};
if (is_builtin) {
ctx.DecorateUnique(id, spv::Decoration::BuiltIn, static_cast<u32>(*builtin));
}
// Flat only for integer/bool user varyings in fragment input; never for BuiltIns; dedupe avoids
// multiple identical decorations.
if (RequiresFlatDecoration(ctx, type, storage_class, is_builtin, has_location)) {
ctx.DecorateUnique(id, spv::Decoration::Flat);
}
ctx.interfaces.push_back(id);
return id;
@ -126,7 +160,8 @@ u32 NumVertices(InputTopology input_topology) {
}
Id DefineInput(EmitContext& ctx, Id type, bool per_invocation,
std::optional<spv::BuiltIn> builtin = std::nullopt) {
std::optional<spv::BuiltIn> builtin = std::nullopt,
bool has_location = false) {
switch (ctx.stage) {
case Stage::TessellationControl:
case Stage::TessellationEval:
@ -143,7 +178,7 @@ Id DefineInput(EmitContext& ctx, Id type, bool per_invocation,
default:
break;
}
return DefineVariable(ctx, type, builtin, spv::StorageClass::Input);
return DefineVariable(ctx, type, builtin, spv::StorageClass::Input, std::nullopt, has_location);
}
Id DefineOutput(EmitContext& ctx, Id type, std::optional<u32> invocations,
@ -170,7 +205,7 @@ void DefineGenericOutput(EmitContext& ctx, size_t index, std::optional<u32> invo
const u32 num_components{xfb_varying ? xfb_varying->components : remainder};
const Id id{DefineOutput(ctx, ctx.F32[num_components], invocations)};
ctx.Decorate(id, spv::Decoration::Location, static_cast<u32>(index));
ctx.DecorateUnique(id, spv::Decoration::Location, static_cast<u32>(index));
if (element > 0) {
ctx.Decorate(id, spv::Decoration::Component, element);
}
@ -445,6 +480,94 @@ Id DescType(EmitContext& ctx, Id sampled_type, Id pointer_type, u32 count) {
}
} // Anonymous namespace
Id EmitContext::TypeArray(Id element_type, Id length) {
const Id array_type{Sirit::Module::TypeArray(element_type, length)};
array_element_types[array_type] = element_type;
type_integer_or_bool_cache[array_type] = IsIntegerOrBoolType(element_type);
return array_type;
}
Id EmitContext::TypeStruct(Id member) {
const std::array<Id, 1> members{member};
return TypeStruct(std::span<const Id>(members));
}
Id EmitContext::TypeStruct(std::span<const Id> members) {
const Id struct_type{Sirit::Module::TypeStruct(members)};
struct_member_types[struct_type] = std::vector<Id>(members.begin(), members.end());
const bool has_integer_member{
std::any_of(members.begin(), members.end(),
[this](Id member_type) { return IsIntegerOrBoolType(member_type); })};
type_integer_or_bool_cache[struct_type] = has_integer_member;
return struct_type;
}
Id EmitContext::TypeVector(Id element_type, u32 components) {
const Id vector_type{
Sirit::Module::TypeVector(element_type, static_cast<int>(components))};
type_integer_or_bool_cache[vector_type] = IsIntegerOrBoolType(element_type);
return vector_type;
}
bool EmitContext::HasDecoration(Id id, spv::Decoration decoration,
std::optional<u32> literal) const {
const auto list_it{decorations.find(id)};
if (list_it == decorations.end()) {
return false;
}
const auto& records{list_it->second};
return std::any_of(records.begin(), records.end(), [&](const DecorationRecord& record) {
if (record.decoration != decoration) {
return false;
}
if (!literal.has_value()) {
return true;
}
return record.literal.has_value() && record.literal.value() == literal.value();
});
}
void EmitContext::DecorateUnique(Id id, spv::Decoration decoration,
std::optional<u32> literal) {
if (decoration == spv::Decoration::Flat || decoration == spv::Decoration::NoPerspective) {
// SPIR-V only allows non-default interpolation decorations on user-defined inputs.
ASSERT_MSG(!HasDecoration(id, spv::Decoration::BuiltIn),
"Interpolation decoration applied to a BuiltIn");
}
if (HasDecoration(id, decoration, literal)) {
return;
}
decorations[id].emplace_back(DecorationRecord{decoration, literal});
if (literal.has_value()) {
Sirit::Module::Decorate(id, decoration, literal.value());
} else {
Sirit::Module::Decorate(id, decoration);
}
}
bool EmitContext::IsIntegerOrBoolType(Id type) {
if (const auto it = type_integer_or_bool_cache.find(type);
it != type_integer_or_bool_cache.end()) {
return it->second;
}
if (const auto array_it = array_element_types.find(type); array_it != array_element_types.end()) {
const bool result{IsIntegerOrBoolType(array_it->second)};
type_integer_or_bool_cache[type] = result;
return result;
}
if (const auto struct_it = struct_member_types.find(type);
struct_it != struct_member_types.end()) {
const bool result{std::any_of(struct_it->second.begin(), struct_it->second.end(),
[this](Id member_type) {
return IsIntegerOrBoolType(member_type);
})};
type_integer_or_bool_cache[type] = result;
return result;
}
type_integer_or_bool_cache[type] = false;
return false;
}
void VectorTypes::Define(Sirit::Module& sirit_ctx, Id base_type, std::string_view name) {
defs[0] = sirit_ctx.Name(base_type, name);
@ -532,11 +655,24 @@ Id EmitContext::BitOffset16(const IR::Value& offset) {
void EmitContext::DefineCommonTypes(const Info& info) {
void_id = TypeVoid();
const auto mark_vector_type = [this](VectorTypes& vectors, bool is_integer_or_bool) {
for (size_t components = 1; components <= 4; ++components) {
const Id type{vectors[components]};
if (type.value != 0) {
type_integer_or_bool_cache[type] = is_integer_or_bool;
}
}
};
U1 = Name(TypeBool(), "u1");
type_integer_or_bool_cache[U1] = true;
F32.Define(*this, TypeFloat(32), "f32");
mark_vector_type(F32, false);
U32.Define(*this, TypeInt(32, false), "u32");
mark_vector_type(U32, true);
S32.Define(*this, TypeInt(32, true), "s32");
mark_vector_type(S32, true);
private_u32 = Name(TypePointer(spv::StorageClass::Private, U32[1]), "private_u32");
@ -551,23 +687,30 @@ void EmitContext::DefineCommonTypes(const Info& info) {
AddCapability(spv::Capability::Int8);
U8 = Name(TypeInt(8, false), "u8");
S8 = Name(TypeInt(8, true), "s8");
type_integer_or_bool_cache[U8] = true;
type_integer_or_bool_cache[S8] = true;
}
if (info.uses_int16 && profile.support_int16) {
AddCapability(spv::Capability::Int16);
U16 = Name(TypeInt(16, false), "u16");
S16 = Name(TypeInt(16, true), "s16");
type_integer_or_bool_cache[U16] = true;
type_integer_or_bool_cache[S16] = true;
}
if (info.uses_int64 && profile.support_int64) {
AddCapability(spv::Capability::Int64);
U64 = Name(TypeInt(64, false), "u64");
type_integer_or_bool_cache[U64] = true;
}
if (info.uses_fp16) {
AddCapability(spv::Capability::Float16);
F16.Define(*this, TypeFloat(16), "f16");
mark_vector_type(F16, false);
}
if (info.uses_fp64) {
AddCapability(spv::Capability::Float64);
F64.Define(*this, TypeFloat(64), "f64");
mark_vector_type(F64, false);
}
}
@ -1072,7 +1215,7 @@ void EmitContext::DefineRescalingInputUniformConstant() {
const Id pointer_type{TypePointer(spv::StorageClass::UniformConstant, F32[4])};
rescaling_uniform_constant =
AddGlobalVariable(pointer_type, spv::StorageClass::UniformConstant);
Decorate(rescaling_uniform_constant, spv::Decoration::Location, 0u);
DecorateUnique(rescaling_uniform_constant, spv::Decoration::Location, 0u);
if (profile.supported_spirv >= 0x00010400) {
interfaces.push_back(rescaling_uniform_constant);
@ -1449,7 +1592,6 @@ void EmitContext::DefineInputs(const IR::Program& program) {
AddCapability(spv::Capability::GroupNonUniform);
subgroup_local_invocation_id =
DefineInput(*this, U32[1], false, spv::BuiltIn::SubgroupLocalInvocationId);
Decorate(subgroup_local_invocation_id, spv::Decoration::Flat);
}
if (info.uses_fswzadd) {
const Id f32_one{Const(1.0f)};
@ -1465,7 +1607,6 @@ void EmitContext::DefineInputs(const IR::Program& program) {
if (loads[IR::Attribute::Layer]) {
AddCapability(spv::Capability::Geometry);
layer = DefineInput(*this, U32[1], false, spv::BuiltIn::Layer);
Decorate(layer, spv::Decoration::Flat);
}
if (loads.AnyComponent(IR::Attribute::PositionX)) {
const bool is_fragment{stage == Stage::Fragment};
@ -1541,8 +1682,8 @@ void EmitContext::DefineInputs(const IR::Program& program) {
continue;
}
const Id type{GetAttributeType(*this, input_type)};
const Id id{DefineInput(*this, type, true)};
Decorate(id, spv::Decoration::Location, static_cast<u32>(index));
const Id id{DefineInput(*this, type, true, std::nullopt, true)};
DecorateUnique(id, spv::Decoration::Location, static_cast<u32>(index));
Name(id, fmt::format("in_attr{}", index));
input_generics[index] = GetAttributeInfo(*this, input_type, id);
@ -1552,16 +1693,20 @@ void EmitContext::DefineInputs(const IR::Program& program) {
if (stage != Stage::Fragment) {
continue;
}
if (RequiresFlatDecoration(*this, type, spv::StorageClass::Input, false, true)) {
ASSERT_MSG(HasDecoration(id, spv::Decoration::Flat),
"Flat decoration missing on integer/bool user varying input");
continue;
}
switch (info.interpolation[index]) {
case Interpolation::Smooth:
// Default
// Decorate(id, spv::Decoration::Smooth);
// Default interpolation per SPIR-V spec; no decoration emitted.
break;
case Interpolation::NoPerspective:
Decorate(id, spv::Decoration::NoPerspective);
DecorateUnique(id, spv::Decoration::NoPerspective);
break;
case Interpolation::Flat:
Decorate(id, spv::Decoration::Flat);
DecorateUnique(id, spv::Decoration::Flat);
break;
}
}
@ -1570,9 +1715,9 @@ void EmitContext::DefineInputs(const IR::Program& program) {
if (!info.uses_patches[index]) {
continue;
}
const Id id{DefineInput(*this, F32[4], false)};
const Id id{DefineInput(*this, F32[4], false, std::nullopt, true)};
Decorate(id, spv::Decoration::Patch);
Decorate(id, spv::Decoration::Location, static_cast<u32>(index));
DecorateUnique(id, spv::Decoration::Location, static_cast<u32>(index));
patches[index] = id;
}
}
@ -1649,7 +1794,7 @@ void EmitContext::DefineOutputs(const IR::Program& program) {
}
const Id id{DefineOutput(*this, F32[4], std::nullopt)};
Decorate(id, spv::Decoration::Patch);
Decorate(id, spv::Decoration::Location, static_cast<u32>(index));
DecorateUnique(id, spv::Decoration::Location, static_cast<u32>(index));
patches[index] = id;
}
break;
@ -1659,17 +1804,19 @@ void EmitContext::DefineOutputs(const IR::Program& program) {
continue;
}
frag_color[index] = DefineOutput(*this, F32[4], std::nullopt);
Decorate(frag_color[index], spv::Decoration::Location, index);
DecorateUnique(frag_color[index], spv::Decoration::Location, index);
Name(frag_color[index], fmt::format("frag_color{}", index));
}
if (info.stores_frag_depth) {
frag_depth = DefineOutput(*this, F32[1], std::nullopt);
Decorate(frag_depth, spv::Decoration::BuiltIn, spv::BuiltIn::FragDepth);
DecorateUnique(frag_depth, spv::Decoration::BuiltIn,
static_cast<u32>(spv::BuiltIn::FragDepth));
}
if (info.stores_sample_mask) {
const Id array_type{TypeArray(U32[1], Const(1U))};
sample_mask = DefineOutput(*this, array_type, std::nullopt);
Decorate(sample_mask, spv::Decoration::BuiltIn, spv::BuiltIn::SampleMask);
DecorateUnique(sample_mask, spv::Decoration::BuiltIn,
static_cast<u32>(spv::BuiltIn::SampleMask));
}
break;
default:
@ -1678,3 +1825,4 @@ void EmitContext::DefineOutputs(const IR::Program& program) {
}
} // namespace Shader::Backend::SPIRV

View file

@ -4,6 +4,11 @@
#pragma once
#include <array>
#include <bitset>
#include <optional>
#include <span>
#include <unordered_map>
#include <vector>
#include <sirit/sirit.h>
@ -19,6 +24,23 @@ static std::bitset<8> clip_distance_written;
using Sirit::Id;
struct DecorationRecord {
spv::Decoration decoration;
std::optional<u32> literal;
};
struct IdHash {
std::size_t operator()(const Id& id) const noexcept {
return std::hash<u32>{}(id.value);
}
};
struct IdEqual {
bool operator()(const Id& lhs, const Id& rhs) const noexcept {
return lhs.value == rhs.value;
}
};
class VectorTypes {
public:
void Define(Sirit::Module& sirit_ctx, Id base_type, std::string_view name);
@ -204,6 +226,23 @@ public:
return Constant(F32[1], value);
}
Id TypeArray(Id element_type, Id length);
Id TypeStruct(Id member);
Id TypeStruct(std::span<const Id> members);
Id TypeVector(Id element_type, u32 components);
template <typename... Members>
Id TypeStruct(Id first, Members... rest) {
const std::array<Id, sizeof...(rest) + 1> members{first, rest...};
return TypeStruct(std::span<const Id>(members));
}
[[nodiscard]] bool HasDecoration(Id id, spv::Decoration decoration,
std::optional<u32> literal = std::nullopt) const;
void DecorateUnique(Id id, spv::Decoration decoration,
std::optional<u32> literal = std::nullopt);
bool IsIntegerOrBoolType(Id type);
const Profile& profile;
const RuntimeInfo& runtime_info;
Stage stage{};
@ -361,6 +400,11 @@ public:
Id load_const_func_u32x2{};
Id load_const_func_u32x4{};
std::unordered_map<Id, std::vector<DecorationRecord>, IdHash, IdEqual> decorations;
std::unordered_map<Id, bool, IdHash, IdEqual> type_integer_or_bool_cache;
std::unordered_map<Id, Id, IdHash, IdEqual> array_element_types;
std::unordered_map<Id, std::vector<Id>, IdHash, IdEqual> struct_member_types;
private:
void DefineCommonTypes(const Info& info);
void DefineCommonConstants();