mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-25 02:17:43 +02:00
11 lines
No EOL
326 B
C#
11 lines
No EOL
326 B
C#
using Ryujinx.Graphics.Shader.Instructions;
|
|
|
|
namespace Ryujinx.Graphics.Shader.Decoders
|
|
{
|
|
class OpCodeTlds : OpCodeTextureScalar
|
|
{
|
|
public TexelLoadTarget Target => (TexelLoadTarget)RawType;
|
|
|
|
public OpCodeTlds(InstEmitter emitter, ulong address, long opCode) : base(emitter, address, opCode) { }
|
|
}
|
|
} |