diff options
| author | bunnei <bunneidev@gmail.com> | 2020-06-09 21:52:15 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-09 21:52:15 -0400 |
| commit | 83e3b77ed7eaa12ec497fd7d978c2e889c5d14db (patch) | |
| tree | 2940fc6a036c7b1f5ecc13aca6248ba657ed48f4 /src/video_core/engines | |
| parent | 3626254f48b6f16dbee1ee0770f781ae7e27ef95 (diff) | |
| parent | bd43c0547085fcfb585ac3a90521eeb8414fd538 (diff) | |
Merge pull request #4027 from ReinUsesLisp/3d-slices
texture_cache: Implement rendering to 3D textures
Diffstat (limited to 'src/video_core/engines')
| -rw-r--r-- | src/video_core/engines/maxwell_3d.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h index b827b112f..79fc9bbea 100644 --- a/src/video_core/engines/maxwell_3d.h +++ b/src/video_core/engines/maxwell_3d.h @@ -598,6 +598,7 @@ public: BitField<4, 3, u32> block_height; BitField<8, 3, u32> block_depth; BitField<12, 1, InvMemoryLayout> type; + BitField<16, 1, u32> is_3d; } memory_layout; union { BitField<0, 16, u32> layers; |
