Implement scaled vertex format emulation (#5564)

* Implement scaled vertex format emulation

* Auto-format (whitespace)

* Delete ToVec4Type
This commit is contained in:
gdkchan
2023-08-16 08:30:33 -03:00
committed by GitHub
parent 492a046335
commit effd546331
12 changed files with 164 additions and 8 deletions

View File

@@ -266,6 +266,15 @@ namespace Ryujinx.Graphics.Shader
return true;
}
/// <summary>
/// Queries host support scaled vertex formats, where a integer value is converted to floating-point.
/// </summary>
/// <returns>True if the host support scaled vertex formats, false otherwise</returns>
bool QueryHostSupportsScaledVertexFormats()
{
return true;
}
/// <summary>
/// Queries host GPU shader ballot support.
/// </summary>