mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-23 14:03:26 +02:00
* editorconfig: Add default charset * Change file encoding from UTF-8-BOM to UTF-8
19 lines
343 B
C#
19 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,
|
|
}
|
|
}
|