mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 15:58:35 +00:00
efb135b74c
* Clear CPU side data on GPU buffer clears * Implement tracked fill operation that can signal other resource types except buffer * Fix tests, add missing XML doc * PR feedback
14 lines
205 B
C#
14 lines
205 B
C#
namespace Ryujinx.Graphics.Gpu.Memory
|
|
{
|
|
/// <summary>
|
|
/// Kind of a GPU resource.
|
|
/// </summary>
|
|
enum ResourceKind
|
|
{
|
|
None,
|
|
Buffer,
|
|
Texture,
|
|
Pool
|
|
}
|
|
}
|