summaryrefslogtreecommitdiffstats
path: root/src/video_core/command_processor.cpp
diff options
context:
space:
mode:
authorTony Wasserka <NeoBrainX@gmail.com>2014-07-27 14:58:30 +0200
committerTony Wasserka <NeoBrainX@gmail.com>2014-08-12 13:48:56 +0200
commit9a76a2d0611fc0c35b665fb886d437e8f4d5b4df (patch)
tree3dc2277e820070ef0d13769c10892f1fd2460d13 /src/video_core/command_processor.cpp
parentPica: Add vertex shader implementation. (diff)
downloadyuzu-9a76a2d0611fc0c35b665fb886d437e8f4d5b4df.tar
yuzu-9a76a2d0611fc0c35b665fb886d437e8f4d5b4df.tar.gz
yuzu-9a76a2d0611fc0c35b665fb886d437e8f4d5b4df.tar.bz2
yuzu-9a76a2d0611fc0c35b665fb886d437e8f4d5b4df.tar.lz
yuzu-9a76a2d0611fc0c35b665fb886d437e8f4d5b4df.tar.xz
yuzu-9a76a2d0611fc0c35b665fb886d437e8f4d5b4df.tar.zst
yuzu-9a76a2d0611fc0c35b665fb886d437e8f4d5b4df.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/command_processor.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/video_core/command_processor.cpp b/src/video_core/command_processor.cpp
index 339fa7726..020a4da3f 100644
--- a/src/video_core/command_processor.cpp
+++ b/src/video_core/command_processor.cpp
@@ -5,6 +5,7 @@
#include "command_processor.h"
#include "math.h"
#include "pica.h"
+#include "primitive_assembly.h"
#include "vertex_shader.h"
@@ -100,7 +101,7 @@ static inline void WritePicaReg(u32 id, u32 value) {
// TODO: Add processed vertex to vertex cache!
}
- // TODO: Submit vertex to primitive assembly
+ PrimitiveAssembly::SubmitVertex(output);
}
break;
}