mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-11 18:50:30 +00:00
Merge pull request #475 from kayru/d3d_state_cache
D3D: Implemented cache for dynamic render states
This commit is contained in:
commit
a5674bbe84
12 changed files with 563 additions and 393 deletions
|
@ -413,6 +413,13 @@ union RAS1_IREF
|
|||
|
||||
union TexMode0
|
||||
{
|
||||
enum TextureFilter : u32
|
||||
{
|
||||
TEXF_NONE = 0,
|
||||
TEXF_POINT = 1,
|
||||
TEXF_LINEAR = 2
|
||||
};
|
||||
|
||||
struct
|
||||
{
|
||||
u32 wrap_s : 2;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue