summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2019-11-13 04:25:52 +0100
committerReinUsesLisp <reinuseslisp@airmail.cc>2019-11-23 01:28:48 +0100
commit287ae2b9e8ea38642a4c8e36f7863d881d4c0e87 (patch)
treefeb26b3520031dfff59e7cf8e85018ab888cc2fa /src/video_core/engines
parentgl_shader_cache: Specialize shared memory size (diff)
downloadyuzu-287ae2b9e8ea38642a4c8e36f7863d881d4c0e87.tar
yuzu-287ae2b9e8ea38642a4c8e36f7863d881d4c0e87.tar.gz
yuzu-287ae2b9e8ea38642a4c8e36f7863d881d4c0e87.tar.bz2
yuzu-287ae2b9e8ea38642a4c8e36f7863d881d4c0e87.tar.lz
yuzu-287ae2b9e8ea38642a4c8e36f7863d881d4c0e87.tar.xz
yuzu-287ae2b9e8ea38642a4c8e36f7863d881d4c0e87.tar.zst
yuzu-287ae2b9e8ea38642a4c8e36f7863d881d4c0e87.zip
Diffstat (limited to 'src/video_core/engines')
-rw-r--r--src/video_core/engines/kepler_compute.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/video_core/engines/kepler_compute.h b/src/video_core/engines/kepler_compute.h
index bd49c6627..c526287b7 100644
--- a/src/video_core/engines/kepler_compute.h
+++ b/src/video_core/engines/kepler_compute.h
@@ -178,7 +178,12 @@ public:
BitField<24, 5, u32> gpr_alloc;
};
- INSERT_PADDING_WORDS(0x11);
+ union {
+ BitField<0, 20, u32> local_crs_alloc;
+ BitField<24, 5, u32> sass_version;
+ };
+
+ INSERT_PADDING_WORDS(0x10);
} launch_description{};
struct {