aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.Shader/ILogger.cs
blob: c43067f50e60ed7a396d2519e737890a1482b5b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
namespace Ryujinx.Graphics.Shader.CodeGen
{
    /// <summary>
    /// Shader code generation logging interface.
    /// </summary>
    public interface ILogger
    {
        /// <summary>
        /// Prints a log message.
        /// </summary>
        /// <param name="message">Message to print</param>
        void Log(string message)
        {
            // No default log output.
        }
    }
}