diff options
author | Mat M <mathew1800@gmail.com> | 2017-02-27 02:58:51 +0100 |
---|---|---|
committer | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2017-02-27 02:58:51 +0100 |
commit | 0cb52ee74a8255eb0320c882bc9e70700317d16a (patch) | |
tree | 800920c60df4d183d20d94465e0886e5655216a0 /src/video_core/shader | |
parent | Merge pull request #2587 from yuriks/status-bar (diff) | |
download | yuzu-0cb52ee74a8255eb0320c882bc9e70700317d16a.tar yuzu-0cb52ee74a8255eb0320c882bc9e70700317d16a.tar.gz yuzu-0cb52ee74a8255eb0320c882bc9e70700317d16a.tar.bz2 yuzu-0cb52ee74a8255eb0320c882bc9e70700317d16a.tar.lz yuzu-0cb52ee74a8255eb0320c882bc9e70700317d16a.tar.xz yuzu-0cb52ee74a8255eb0320c882bc9e70700317d16a.tar.zst yuzu-0cb52ee74a8255eb0320c882bc9e70700317d16a.zip |
Diffstat (limited to 'src/video_core/shader')
-rw-r--r-- | src/video_core/shader/shader_interpreter.h | 3 | ||||
-rw-r--r-- | src/video_core/shader/shader_jit_x64_compiler.h | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/video_core/shader/shader_interpreter.h b/src/video_core/shader/shader_interpreter.h index 5682b3a39..50fd7c69d 100644 --- a/src/video_core/shader/shader_interpreter.h +++ b/src/video_core/shader/shader_interpreter.h @@ -18,7 +18,8 @@ public: /** * Produce debug information based on the given shader and input vertex - * @param input Input vertex into the shader + * @param setup Shader engine state + * @param input Input vertex into the shader * @param config Configuration object for the shader pipeline * @return Debug information for this shader with regards to the given vertex */ diff --git a/src/video_core/shader/shader_jit_x64_compiler.h b/src/video_core/shader/shader_jit_x64_compiler.h index 599e43ffd..f27675560 100644 --- a/src/video_core/shader/shader_jit_x64_compiler.h +++ b/src/video_core/shader/shader_jit_x64_compiler.h @@ -93,7 +93,8 @@ private: /** * Assertion evaluated at compile-time, but only triggered if executed at runtime. - * @param msg Message to be logged if the assertion fails. + * @param condition Condition to be evaluated. + * @param msg Message to be logged if the assertion fails. */ void Compile_Assert(bool condition, const char* msg); |