summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines/maxwell_3d.h
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2019-04-23 14:44:52 +0200
committerFernando Sahmkow <fsahmkow27@gmail.com>2019-04-23 14:44:52 +0200
commite140e2ebc65a7ad0a25ba979141e80e9376f5eff (patch)
tree4196afa732560efe6dd81faa5114a7710b5c59ef /src/video_core/engines/maxwell_3d.h
parentCorrections and styling (diff)
downloadyuzu-e140e2ebc65a7ad0a25ba979141e80e9376f5eff.tar
yuzu-e140e2ebc65a7ad0a25ba979141e80e9376f5eff.tar.gz
yuzu-e140e2ebc65a7ad0a25ba979141e80e9376f5eff.tar.bz2
yuzu-e140e2ebc65a7ad0a25ba979141e80e9376f5eff.tar.lz
yuzu-e140e2ebc65a7ad0a25ba979141e80e9376f5eff.tar.xz
yuzu-e140e2ebc65a7ad0a25ba979141e80e9376f5eff.tar.zst
yuzu-e140e2ebc65a7ad0a25ba979141e80e9376f5eff.zip
Diffstat (limited to 'src/video_core/engines/maxwell_3d.h')
-rw-r--r--src/video_core/engines/maxwell_3d.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h
index 47fe1f137..eae427412 100644
--- a/src/video_core/engines/maxwell_3d.h
+++ b/src/video_core/engines/maxwell_3d.h
@@ -33,6 +33,12 @@ class RasterizerInterface;
namespace Tegra::Engines {
+/**
+ * This Engine is known as GF100_3D. Documentation can be found in:
+ * https://github.com/envytools/envytools/blob/master/rnndb/graph/gf100_3d.xml
+ * https://cgit.freedesktop.org/mesa/mesa/tree/src/gallium/drivers/nouveau/nvc0/nvc0_3d.xml.h
+ */
+
#define MAXWELL3D_REG_INDEX(field_name) \
(offsetof(Tegra::Engines::Maxwell3D::Regs, field_name) / sizeof(u32))