summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Tony Wasserka2015-08-15 19:55:26 +0200
committerGravatar Tony Wasserka2015-08-16 14:12:11 +0200
commit493c432d1e33a66c234485ea09c167888a6f9567 (patch)
treecb12c1ac323d270b72bb8672b214f7c6e1711ef1 /src
parentIntroduce a shader tracer to allow inspection of input/output values for each... (diff)
downloadyuzu-493c432d1e33a66c234485ea09c167888a6f9567.tar.gz
yuzu-493c432d1e33a66c234485ea09c167888a6f9567.tar.xz
yuzu-493c432d1e33a66c234485ea09c167888a6f9567.zip
citra-qt: Fix comment style.
Diffstat (limited to 'src')
-rw-r--r--src/citra_qt/debugger/graphics_vertex_shader.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/citra_qt/debugger/graphics_vertex_shader.h b/src/citra_qt/debugger/graphics_vertex_shader.h
index 1b46aa0d9..6e99f3674 100644
--- a/src/citra_qt/debugger/graphics_vertex_shader.h
+++ b/src/citra_qt/debugger/graphics_vertex_shader.h
@@ -55,10 +55,11 @@ private slots:
55 55
56 void DumpShader(); 56 void DumpShader();
57 57
58 /** Reload widget based on the current PICA200 state 58 /**
59 * @param replace_vertex_data If true, invalidate all current vertex data 59 * Reload widget based on the current PICA200 state
60 * @param vertex_data New vertex data to use, as passed to OnBreakPointHit. May be nullptr to specify that no valid vertex data can be retrieved currently. Only used if replace_vertex_data is true. 60 * @param replace_vertex_data If true, invalidate all current vertex data
61 */ 61 * @param vertex_data New vertex data to use, as passed to OnBreakPointHit. May be nullptr to specify that no valid vertex data can be retrieved currently. Only used if replace_vertex_data is true.
62 */
62 void Reload(bool replace_vertex_data = false, void* vertex_data = nullptr); 63 void Reload(bool replace_vertex_data = false, void* vertex_data = nullptr);
63 64
64 65
@@ -71,7 +72,7 @@ private:
71 QTreeView* binary_list; 72 QTreeView* binary_list;
72 GraphicsVertexShaderModel* model; 73 GraphicsVertexShaderModel* model;
73 74
74 // TODO: Move these into a single struct 75 /// TODO: Move these into a single struct
75 std::array<QLineEdit*, 4*16> input_data; // A text box for each of the 4 components of up to 16 vertex attributes 76 std::array<QLineEdit*, 4*16> input_data; // A text box for each of the 4 components of up to 16 vertex attributes
76 std::array<QWidget*, 16> input_data_container; // QWidget containing the QLayout containing each vertex attribute 77 std::array<QWidget*, 16> input_data_container; // QWidget containing the QLayout containing each vertex attribute
77 std::array<QLabel*, 16> input_data_mapping; // A QLabel denoting the shader input attribute which the vertex attribute maps to 78 std::array<QLabel*, 16> input_data_mapping; // A QLabel denoting the shader input attribute which the vertex attribute maps to