mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-01-23 15:03:46 +00:00
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
|
||
|
}
|
||
|
}
|