mirror of
https://github.com/aharabada/glitchy-engine-beef.git
synced 2026-09-05 21:01:52 +00:00
17 lines
305 B
Beef
17 lines
305 B
Beef
namespace GlitchyEngine.Renderer
|
|
{
|
|
/**
|
|
* Defines how the CPU can access a resource.
|
|
*/
|
|
public enum CPUAccessFlags
|
|
{
|
|
/// The CPU has no access to the resource.
|
|
None = 0,
|
|
/// The CPU has read access to the resource.
|
|
Read = 1,
|
|
/// The CPU has write access to the resource.
|
|
Write = 2
|
|
}
|
|
|
|
}
|