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) { }
|
|
}
|
|
} |