mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-10 20:06:40 +00:00
11 lines
332 B
C#
11 lines
332 B
C#
|
using Ryujinx.Graphics.Shader.Instructions;
|
||
|
|
||
|
namespace Ryujinx.Graphics.Shader.Decoders
|
||
|
{
|
||
|
class OpCodeTlds : OpCodeTextureScalar
|
||
|
{
|
||
|
public TexelLoadScalarType Type => (TexelLoadScalarType)RawType;
|
||
|
|
||
|
public OpCodeTlds(InstEmitter emitter, ulong address, long opCode) : base(emitter, address, opCode) { }
|
||
|
}
|
||
|
}
|