mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-25 16:50:17 +00:00
* Generate scaling helper functions on IR * Delete unused code * Split RewriteTextureSample and move gather bias add to an earlier pass * Remove using * Shader cache version bump
11 lines
No EOL
234 B
C#
11 lines
No EOL
234 B
C#
using Ryujinx.Graphics.Shader.IntermediateRepresentation;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Ryujinx.Graphics.Shader.Translation
|
|
{
|
|
enum HelperFunctionName
|
|
{
|
|
TexelFetchScale,
|
|
TextureSizeUnscale
|
|
}
|
|
} |