mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2024-11-23 10:35:10 +00:00
b9aa3966c0
interpreter, and a rewrite of the GPU code.
11 lines
No EOL
213 B
C#
11 lines
No EOL
213 B
C#
using System;
|
|
|
|
namespace Ryujinx.Graphics.Gal
|
|
{
|
|
class ShaderException : Exception
|
|
{
|
|
public ShaderException() : base() { }
|
|
|
|
public ShaderException(string Message) : base(Message) { }
|
|
}
|
|
} |