summaryrefslogtreecommitdiff
path: root/src/video_core/engines
diff options
context:
space:
mode:
authorGravatar FernandoS272018-10-15 21:04:20 -0400
committerGravatar FernandoS272018-10-17 18:52:08 -0400
commitfd9e2d0073be84deff02a122d5db8d2917309a61 (patch)
tree1308b6b6f1c99169d22bb3ca963ce8a6104c557b /src/video_core/engines
parentMerge pull request #1497 from bunnei/flush-framebuffers (diff)
downloadyuzu-fd9e2d0073be84deff02a122d5db8d2917309a61.tar.gz
yuzu-fd9e2d0073be84deff02a122d5db8d2917309a61.tar.xz
yuzu-fd9e2d0073be84deff02a122d5db8d2917309a61.zip
Implement 3D Textures
Diffstat (limited to 'src/video_core/engines')
-rw-r--r--src/video_core/engines/maxwell_3d.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h
index c8d1b6478..c8af1c6b6 100644
--- a/src/video_core/engines/maxwell_3d.h
+++ b/src/video_core/engines/maxwell_3d.h
@@ -448,7 +448,10 @@ public:
448 BitField<8, 3, u32> block_depth; 448 BitField<8, 3, u32> block_depth;
449 BitField<12, 1, InvMemoryLayout> type; 449 BitField<12, 1, InvMemoryLayout> type;
450 } memory_layout; 450 } memory_layout;
451 u32 array_mode; 451 union {
452 BitField<0, 16, u32> array_mode;
453 BitField<16, 1, u32> volume;
454 };
452 u32 layer_stride; 455 u32 layer_stride;
453 u32 base_layer; 456 u32 base_layer;
454 INSERT_PADDING_WORDS(7); 457 INSERT_PADDING_WORDS(7);