mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-04-10 12:07:50 +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
234 B
C#
11 lines
234 B
C#
using Ryujinx.Graphics.Shader.IntermediateRepresentation;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Ryujinx.Graphics.Shader.Translation
|
|
{
|
|
enum HelperFunctionName
|
|
{
|
|
TexelFetchScale,
|
|
TextureSizeUnscale
|
|
}
|
|
} |