mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-12-22 04:37:00 +00:00
Add all the files
This commit is contained in:
parent
e3db07a16a
commit
d60742f52b
1445 changed files with 430238 additions and 0 deletions
15
src/Cafe/OS/libs/gx2/GX2_Blit.h
Normal file
15
src/Cafe/OS/libs/gx2/GX2_Blit.h
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
#pragma once
|
||||
|
||||
namespace GX2
|
||||
{
|
||||
enum class GX2ClearFlags : uint32
|
||||
{
|
||||
CLEAR_DEPTH = 0x01, // clear depth to given clear value
|
||||
CLEAR_STENCIL = 0x02, // clear stencil to given stencil clear value
|
||||
SET_DEPTH_REG = 0x04, //
|
||||
SET_STENCIL_REG = 0x08,
|
||||
};
|
||||
|
||||
void GX2BlitInit();
|
||||
}
|
||||
ENABLE_BITMASK_OPERATORS(GX2::GX2ClearFlags);
|
||||
Loading…
Add table
Add a link
Reference in a new issue