summaryrefslogtreecommitdiff
path: root/src/video_core/rasterizer_interface.h
diff options
context:
space:
mode:
authorGravatar bunnei2018-03-24 22:50:21 -0400
committerGravatar bunnei2018-03-26 21:17:00 -0400
commitd89bfec5f55854daa1ff717e4a5f721bfa08a541 (patch)
treeb8bdaa18edcf182d09194b1799b1c40387b1a76f /src/video_core/rasterizer_interface.h
parentgl_rasterizer: Use passthrough shader for SetupVertexShader. (diff)
downloadyuzu-d89bfec5f55854daa1ff717e4a5f721bfa08a541.tar.gz
yuzu-d89bfec5f55854daa1ff717e4a5f721bfa08a541.tar.xz
yuzu-d89bfec5f55854daa1ff717e4a5f721bfa08a541.zip
rasterizer: Rename DrawTriangles to DrawArrays.
Diffstat (limited to 'src/video_core/rasterizer_interface.h')
-rw-r--r--src/video_core/rasterizer_interface.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/rasterizer_interface.h b/src/video_core/rasterizer_interface.h
index a493e1d60..8239f9aad 100644
--- a/src/video_core/rasterizer_interface.h
+++ b/src/video_core/rasterizer_interface.h
@@ -15,8 +15,8 @@ class RasterizerInterface {
15public: 15public:
16 virtual ~RasterizerInterface() {} 16 virtual ~RasterizerInterface() {}
17 17
18 /// Draw the current batch of triangles 18 /// Draw the current batch of vertex arrays
19 virtual void DrawTriangles() = 0; 19 virtual void DrawArrays() = 0;
20 20
21 /// Notify rasterizer that the specified Maxwell register has been changed 21 /// Notify rasterizer that the specified Maxwell register has been changed
22 virtual void NotifyMaxwellRegisterChanged(u32 id) = 0; 22 virtual void NotifyMaxwellRegisterChanged(u32 id) = 0;