2989c163a8
* editorconfig: Add default charset * Change file encoding from UTF-8-BOM to UTF-8
18 lines
343 B
C#
18 lines
343 B
C#
using System;
|
|
|
|
namespace Ryujinx.Graphics.Shader
|
|
{
|
|
/// <summary>
|
|
/// Flags that indicate how a buffer will be used in a shader.
|
|
/// </summary>
|
|
[Flags]
|
|
public enum BufferUsageFlags : byte
|
|
{
|
|
None = 0,
|
|
|
|
/// <summary>
|
|
/// Buffer is written to.
|
|
/// </summary>
|
|
Write = 1 << 0,
|
|
}
|
|
}
|