summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/citra_qt/main.cpp2
-rw-r--r--src/citra_qt/main.h2
-rw-r--r--src/core/arm/dyncom/arm_dyncom_interpreter.cpp3
-rw-r--r--src/core/hle/service/am/am.cpp1
-rw-r--r--src/core/hw/y2r.cpp1
-rw-r--r--src/video_core/command_processor.cpp80
-rw-r--r--src/video_core/vertex_shader.cpp6
7 files changed, 48 insertions, 47 deletions
diff --git a/src/citra_qt/main.cpp b/src/citra_qt/main.cpp
index 34831f2ec..e93e8ebb8 100644
--- a/src/citra_qt/main.cpp
+++ b/src/citra_qt/main.cpp
@@ -207,7 +207,7 @@ void GMainWindow::OnDisplayTitleBars(bool show)
207 } 207 }
208} 208}
209 209
210void GMainWindow::BootGame(std::string filename) { 210void GMainWindow::BootGame(const std::string& filename) {
211 LOG_INFO(Frontend, "Citra starting...\n"); 211 LOG_INFO(Frontend, "Citra starting...\n");
212 212
213 // Initialize the core emulation 213 // Initialize the core emulation
diff --git a/src/citra_qt/main.h b/src/citra_qt/main.h
index 242b08c39..9fe9e0c9c 100644
--- a/src/citra_qt/main.h
+++ b/src/citra_qt/main.h
@@ -55,7 +55,7 @@ signals:
55 void EmulationStopping(); 55 void EmulationStopping();
56 56
57private: 57private:
58 void BootGame(std::string filename); 58 void BootGame(const std::string& filename);
59 void ShutdownGame(); 59 void ShutdownGame();
60 60
61 void closeEvent(QCloseEvent* event) override; 61 void closeEvent(QCloseEvent* event) override;
diff --git a/src/core/arm/dyncom/arm_dyncom_interpreter.cpp b/src/core/arm/dyncom/arm_dyncom_interpreter.cpp
index 0c20c2bc3..bb0cbb4dc 100644
--- a/src/core/arm/dyncom/arm_dyncom_interpreter.cpp
+++ b/src/core/arm/dyncom/arm_dyncom_interpreter.cpp
@@ -3886,7 +3886,6 @@ unsigned InterpreterMainLoop(ARMul_State* cpu) {
3886#endif 3886#endif
3887 arm_inst* inst_base; 3887 arm_inst* inst_base;
3888 unsigned int addr; 3888 unsigned int addr;
3889 unsigned int phys_addr;
3890 unsigned int num_instrs = 0; 3889 unsigned int num_instrs = 0;
3891 3890
3892 int ptr; 3891 int ptr;
@@ -3905,8 +3904,6 @@ unsigned InterpreterMainLoop(ARMul_State* cpu) {
3905 else 3904 else
3906 cpu->Reg[15] &= 0xfffffffc; 3905 cpu->Reg[15] &= 0xfffffffc;
3907 3906
3908 phys_addr = cpu->Reg[15];
3909
3910 // Find the cached instruction cream, otherwise translate it... 3907 // Find the cached instruction cream, otherwise translate it...
3911 auto itr = cpu->instruction_cache.find(cpu->Reg[15]); 3908 auto itr = cpu->instruction_cache.find(cpu->Reg[15]);
3912 if (itr != cpu->instruction_cache.end()) { 3909 if (itr != cpu->instruction_cache.end()) {
diff --git a/src/core/hle/service/am/am.cpp b/src/core/hle/service/am/am.cpp
index 7332478fb..64f3bc7e9 100644
--- a/src/core/hle/service/am/am.cpp
+++ b/src/core/hle/service/am/am.cpp
@@ -5,6 +5,7 @@
5#include "common/logging/log.h" 5#include "common/logging/log.h"
6 6
7#include "core/hle/service/service.h" 7#include "core/hle/service/service.h"
8#include "core/hle/service/am/am.h"
8#include "core/hle/service/am/am_app.h" 9#include "core/hle/service/am/am_app.h"
9#include "core/hle/service/am/am_net.h" 10#include "core/hle/service/am/am_net.h"
10#include "core/hle/service/am/am_sys.h" 11#include "core/hle/service/am/am_sys.h"
diff --git a/src/core/hw/y2r.cpp b/src/core/hw/y2r.cpp
index f80e26ecd..082a4db82 100644
--- a/src/core/hw/y2r.cpp
+++ b/src/core/hw/y2r.cpp
@@ -14,6 +14,7 @@
14#include "common/vector_math.h" 14#include "common/vector_math.h"
15 15
16#include "core/hle/service/y2r_u.h" 16#include "core/hle/service/y2r_u.h"
17#include "core/hw/y2r.h"
17#include "core/memory.h" 18#include "core/memory.h"
18 19
19namespace HW { 20namespace HW {
diff --git a/src/video_core/command_processor.cpp b/src/video_core/command_processor.cpp
index ef9584abd..36c3b9947 100644
--- a/src/video_core/command_processor.cpp
+++ b/src/video_core/command_processor.cpp
@@ -221,57 +221,53 @@ static inline void WritePicaReg(u32 id, u32 value, u32 mask) {
221 // Initialize data for the current vertex 221 // Initialize data for the current vertex
222 VertexShader::InputVertex input; 222 VertexShader::InputVertex input;
223 223
224 // Load a debugging token to check whether this gets loaded by the running
225 // application or not.
226 static const float24 debug_token = float24::FromRawFloat24(0x00abcdef);
227 input.attr[0].w = debug_token;
228
229 for (int i = 0; i < attribute_config.GetNumTotalAttributes(); ++i) { 224 for (int i = 0; i < attribute_config.GetNumTotalAttributes(); ++i) {
230 // Load the default attribute if we're configured to do so, this data will be overwritten by the loader data if it's set 225 if (vertex_attribute_elements[i] != 0) {
231 if (attribute_config.IsDefaultAttribute(i)) { 226 // Default attribute values set if array elements have < 4 components. This
227 // is *not* carried over from the default attribute settings even if they're
228 // enabled for this attribute.
229 static const float24 zero = float24::FromFloat32(0.0f);
230 static const float24 one = float24::FromFloat32(1.0f);
231 input.attr[i] = Math::Vec4<float24>(zero, zero, zero, one);
232
233 // Load per-vertex data from the loader arrays
234 for (unsigned int comp = 0; comp < vertex_attribute_elements[i]; ++comp) {
235 u32 source_addr = vertex_attribute_sources[i] + vertex_attribute_strides[i] * vertex + comp * vertex_attribute_element_size[i];
236 const u8* srcdata = Memory::GetPhysicalPointer(source_addr);
237
238 if (g_debug_context && Pica::g_debug_context->recorder) {
239 memory_accesses.AddAccess(source_addr,
240 (vertex_attribute_formats[i] == Regs::VertexAttributeFormat::FLOAT) ? 4
241 : (vertex_attribute_formats[i] == Regs::VertexAttributeFormat::SHORT) ? 2 : 1);
242 }
243
244 const float srcval = (vertex_attribute_formats[i] == Regs::VertexAttributeFormat::BYTE) ? *(s8*)srcdata :
245 (vertex_attribute_formats[i] == Regs::VertexAttributeFormat::UBYTE) ? *(u8*)srcdata :
246 (vertex_attribute_formats[i] == Regs::VertexAttributeFormat::SHORT) ? *(s16*)srcdata :
247 *(float*)srcdata;
248
249 input.attr[i][comp] = float24::FromFloat32(srcval);
250 LOG_TRACE(HW_GPU, "Loaded component %x of attribute %x for vertex %x (index %x) from 0x%08x + 0x%08lx + 0x%04lx: %f",
251 comp, i, vertex, index,
252 attribute_config.GetPhysicalBaseAddress(),
253 vertex_attribute_sources[i] - base_address,
254 vertex_attribute_strides[i] * vertex + comp * vertex_attribute_element_size[i],
255 input.attr[i][comp].ToFloat32());
256 }
257 } else if (attribute_config.IsDefaultAttribute(i)) {
258 // Load the default attribute if we're configured to do so
232 input.attr[i] = g_state.vs.default_attributes[i]; 259 input.attr[i] = g_state.vs.default_attributes[i];
233 LOG_TRACE(HW_GPU, "Loaded default attribute %x for vertex %x (index %x): (%f, %f, %f, %f)", 260 LOG_TRACE(HW_GPU, "Loaded default attribute %x for vertex %x (index %x): (%f, %f, %f, %f)",
234 i, vertex, index, 261 i, vertex, index,
235 input.attr[i][0].ToFloat32(), input.attr[i][1].ToFloat32(), 262 input.attr[i][0].ToFloat32(), input.attr[i][1].ToFloat32(),
236 input.attr[i][2].ToFloat32(), input.attr[i][3].ToFloat32()); 263 input.attr[i][2].ToFloat32(), input.attr[i][3].ToFloat32());
237 } 264 } else {
238 265 // TODO(yuriks): In this case, no data gets loaded and the vertex remains
239 // Load per-vertex data from the loader arrays 266 // with the last value it had. This isn't currently maintained
240 for (unsigned int comp = 0; comp < vertex_attribute_elements[i]; ++comp) { 267 // as global state, however, and so won't work in Cita yet.
241 u32 source_addr = vertex_attribute_sources[i] + vertex_attribute_strides[i] * vertex + comp * vertex_attribute_element_size[i];
242 const u8* srcdata = Memory::GetPhysicalPointer(source_addr);
243
244 if (g_debug_context && Pica::g_debug_context->recorder) {
245 memory_accesses.AddAccess(source_addr,
246 (vertex_attribute_formats[i] == Regs::VertexAttributeFormat::FLOAT) ? 4
247 : (vertex_attribute_formats[i] == Regs::VertexAttributeFormat::SHORT) ? 2 : 1);
248 }
249
250 const float srcval = (vertex_attribute_formats[i] == Regs::VertexAttributeFormat::BYTE) ? *(s8*)srcdata :
251 (vertex_attribute_formats[i] == Regs::VertexAttributeFormat::UBYTE) ? *(u8*)srcdata :
252 (vertex_attribute_formats[i] == Regs::VertexAttributeFormat::SHORT) ? *(s16*)srcdata :
253 *(float*)srcdata;
254
255 input.attr[i][comp] = float24::FromFloat32(srcval);
256 LOG_TRACE(HW_GPU, "Loaded component %x of attribute %x for vertex %x (index %x) from 0x%08x + 0x%08lx + 0x%04lx: %f",
257 comp, i, vertex, index,
258 attribute_config.GetPhysicalBaseAddress(),
259 vertex_attribute_sources[i] - base_address,
260 vertex_attribute_strides[i] * vertex + comp * vertex_attribute_element_size[i],
261 input.attr[i][comp].ToFloat32());
262 } 268 }
263 } 269 }
264 270
265 // HACK: Some games do not initialize the vertex position's w component. This leads
266 // to critical issues since it messes up perspective division. As a
267 // workaround, we force the fourth component to 1.0 if we find this to be the
268 // case.
269 // To do this, we additionally have to assume that the first input attribute
270 // is the vertex position, since there's no information about this other than
271 // the empiric observation that this is usually the case.
272 if (input.attr[0].w == debug_token)
273 input.attr[0].w = float24::FromFloat32(1.0);
274
275 if (g_debug_context) 271 if (g_debug_context)
276 g_debug_context->OnEvent(DebugContext::Event::VertexLoaded, (void*)&input); 272 g_debug_context->OnEvent(DebugContext::Event::VertexLoaded, (void*)&input);
277 273
diff --git a/src/video_core/vertex_shader.cpp b/src/video_core/vertex_shader.cpp
index 960ae5779..5f66f3455 100644
--- a/src/video_core/vertex_shader.cpp
+++ b/src/video_core/vertex_shader.cpp
@@ -609,6 +609,12 @@ OutputVertex RunShader(const InputVertex& input, int num_attributes, const Regs:
609 } 609 }
610 } 610 }
611 611
612 // The hardware takes the absolute and saturates vertex colors like this, *before* doing interpolation
613 for (int i = 0; i < 4; ++i) {
614 ret.color[i] = float24::FromFloat32(
615 std::fmin(std::fabs(ret.color[i].ToFloat32()), 1.0f));
616 }
617
612 LOG_TRACE(Render_Software, "Output vertex: pos (%.2f, %.2f, %.2f, %.2f), col(%.2f, %.2f, %.2f, %.2f), tc0(%.2f, %.2f)", 618 LOG_TRACE(Render_Software, "Output vertex: pos (%.2f, %.2f, %.2f, %.2f), col(%.2f, %.2f, %.2f, %.2f), tc0(%.2f, %.2f)",
613 ret.pos.x.ToFloat32(), ret.pos.y.ToFloat32(), ret.pos.z.ToFloat32(), ret.pos.w.ToFloat32(), 619 ret.pos.x.ToFloat32(), ret.pos.y.ToFloat32(), ret.pos.z.ToFloat32(), ret.pos.w.ToFloat32(),
614 ret.color.x.ToFloat32(), ret.color.y.ToFloat32(), ret.color.z.ToFloat32(), ret.color.w.ToFloat32(), 620 ret.color.x.ToFloat32(), ret.color.y.ToFloat32(), ret.color.z.ToFloat32(), ret.color.w.ToFloat32(),