diff options
Diffstat (limited to 'src/video_core/vertex_loader.cpp')
| -rw-r--r-- | src/video_core/vertex_loader.cpp | 140 |
1 files changed, 140 insertions, 0 deletions
diff --git a/src/video_core/vertex_loader.cpp b/src/video_core/vertex_loader.cpp new file mode 100644 index 000000000..8a3d91896 --- /dev/null +++ b/src/video_core/vertex_loader.cpp | |||
| @@ -0,0 +1,140 @@ | |||
| 1 | #include <cmath> | ||
| 2 | #include <string> | ||
| 3 | |||
| 4 | #include "boost/range/algorithm/fill.hpp" | ||
| 5 | |||
| 6 | #include "common/assert.h" | ||
| 7 | #include "common/alignment.h" | ||
| 8 | #include "common/bit_field.h" | ||
| 9 | #include "common/common_funcs.h" | ||
| 10 | #include "common/common_types.h" | ||
| 11 | #include "common/logging/log.h" | ||
| 12 | |||
| 13 | #include "core/memory.h" | ||
| 14 | |||
| 15 | #include "video_core/debug_utils/debug_utils.h" | ||
| 16 | #include "video_core/pica.h" | ||
| 17 | #include "video_core/pica_state.h" | ||
| 18 | #include "video_core/pica_types.h" | ||
| 19 | #include "video_core/vertex_loader.h" | ||
| 20 | |||
| 21 | namespace Pica { | ||
| 22 | |||
| 23 | void VertexLoader::Setup(const Pica::Regs& regs) { | ||
| 24 | const auto& attribute_config = regs.vertex_attributes; | ||
| 25 | num_total_attributes = attribute_config.GetNumTotalAttributes(); | ||
| 26 | |||
| 27 | boost::fill(vertex_attribute_sources, 0xdeadbeef); | ||
| 28 | |||
| 29 | for (int i = 0; i < 16; i++) { | ||
| 30 | vertex_attribute_is_default[i] = attribute_config.IsDefaultAttribute(i); | ||
| 31 | } | ||
| 32 | |||
| 33 | // Setup attribute data from loaders | ||
| 34 | for (int loader = 0; loader < 12; ++loader) { | ||
| 35 | const auto& loader_config = attribute_config.attribute_loaders[loader]; | ||
| 36 | |||
| 37 | u32 offset = 0; | ||
| 38 | |||
| 39 | // TODO: What happens if a loader overwrites a previous one's data? | ||
| 40 | for (unsigned component = 0; component < loader_config.component_count; ++component) { | ||
| 41 | if (component >= 12) { | ||
| 42 | LOG_ERROR(HW_GPU, "Overflow in the vertex attribute loader %u trying to load component %u", loader, component); | ||
| 43 | continue; | ||
| 44 | } | ||
| 45 | |||
| 46 | u32 attribute_index = loader_config.GetComponent(component); | ||
| 47 | if (attribute_index < 12) { | ||
| 48 | offset = Common::AlignUp(offset, attribute_config.GetElementSizeInBytes(attribute_index)); | ||
| 49 | vertex_attribute_sources[attribute_index] = loader_config.data_offset + offset; | ||
| 50 | vertex_attribute_strides[attribute_index] = static_cast<u32>(loader_config.byte_count); | ||
| 51 | vertex_attribute_formats[attribute_index] = attribute_config.GetFormat(attribute_index); | ||
| 52 | vertex_attribute_elements[attribute_index] = attribute_config.GetNumElements(attribute_index); | ||
| 53 | offset += attribute_config.GetStride(attribute_index); | ||
| 54 | } else if (attribute_index < 16) { | ||
| 55 | // Attribute ids 12, 13, 14 and 15 signify 4, 8, 12 and 16-byte paddings, respectively | ||
| 56 | offset = Common::AlignUp(offset, 4); | ||
| 57 | offset += (attribute_index - 11) * 4; | ||
| 58 | } else { | ||
| 59 | UNREACHABLE(); // This is truly unreachable due to the number of bits for each component | ||
| 60 | } | ||
| 61 | } | ||
| 62 | } | ||
| 63 | } | ||
| 64 | |||
| 65 | void VertexLoader::LoadVertex(u32 base_address, int index, int vertex, Shader::InputVertex& input, DebugUtils::MemoryAccessTracker& memory_accesses) { | ||
| 66 | for (int i = 0; i < num_total_attributes; ++i) { | ||
| 67 | if (vertex_attribute_elements[i] != 0) { | ||
| 68 | // Load per-vertex data from the loader arrays | ||
| 69 | u32 source_addr = base_address + vertex_attribute_sources[i] + vertex_attribute_strides[i] * vertex; | ||
| 70 | |||
| 71 | if (g_debug_context && Pica::g_debug_context->recorder) { | ||
| 72 | memory_accesses.AddAccess(source_addr, vertex_attribute_elements[i] * ( | ||
| 73 | (vertex_attribute_formats[i] == Regs::VertexAttributeFormat::FLOAT) ? 4 | ||
| 74 | : (vertex_attribute_formats[i] == Regs::VertexAttributeFormat::SHORT) ? 2 : 1)); | ||
| 75 | } | ||
| 76 | |||
| 77 | switch (vertex_attribute_formats[i]) { | ||
| 78 | case Regs::VertexAttributeFormat::BYTE: | ||
| 79 | { | ||
| 80 | const s8* srcdata = reinterpret_cast<const s8*>(Memory::GetPhysicalPointer(source_addr)); | ||
| 81 | for (unsigned int comp = 0; comp < vertex_attribute_elements[i]; ++comp) { | ||
| 82 | input.attr[i][comp] = float24::FromFloat32(srcdata[comp]); | ||
| 83 | } | ||
| 84 | break; | ||
| 85 | } | ||
| 86 | case Regs::VertexAttributeFormat::UBYTE: | ||
| 87 | { | ||
| 88 | const u8* srcdata = reinterpret_cast<const u8*>(Memory::GetPhysicalPointer(source_addr)); | ||
| 89 | for (unsigned int comp = 0; comp < vertex_attribute_elements[i]; ++comp) { | ||
| 90 | input.attr[i][comp] = float24::FromFloat32(srcdata[comp]); | ||
| 91 | } | ||
| 92 | break; | ||
| 93 | } | ||
| 94 | case Regs::VertexAttributeFormat::SHORT: | ||
| 95 | { | ||
| 96 | const s16* srcdata = reinterpret_cast<const s16*>(Memory::GetPhysicalPointer(source_addr)); | ||
| 97 | for (unsigned int comp = 0; comp < vertex_attribute_elements[i]; ++comp) { | ||
| 98 | input.attr[i][comp] = float24::FromFloat32(srcdata[comp]); | ||
| 99 | } | ||
| 100 | break; | ||
| 101 | } | ||
| 102 | case Regs::VertexAttributeFormat::FLOAT: | ||
| 103 | { | ||
| 104 | const float* srcdata = reinterpret_cast<const float*>(Memory::GetPhysicalPointer(source_addr)); | ||
| 105 | for (unsigned int comp = 0; comp < vertex_attribute_elements[i]; ++comp) { | ||
| 106 | input.attr[i][comp] = float24::FromFloat32(srcdata[comp]); | ||
| 107 | } | ||
| 108 | break; | ||
| 109 | } | ||
| 110 | } | ||
| 111 | |||
| 112 | // Default attribute values set if array elements have < 4 components. This | ||
| 113 | // is *not* carried over from the default attribute settings even if they're | ||
| 114 | // enabled for this attribute. | ||
| 115 | for (unsigned int comp = vertex_attribute_elements[i]; comp < 4; ++comp) { | ||
| 116 | input.attr[i][comp] = comp == 3 ? float24::FromFloat32(1.0f) : float24::FromFloat32(0.0f); | ||
| 117 | } | ||
| 118 | |||
| 119 | LOG_TRACE(HW_GPU, "Loaded %d components of attribute %x for vertex %x (index %x) from 0x%08x + 0x%08x + 0x%04x: %f %f %f %f", | ||
| 120 | vertex_attribute_elements[i], i, vertex, index, | ||
| 121 | base_address, | ||
| 122 | vertex_attribute_sources[i], | ||
| 123 | vertex_attribute_strides[i] * vertex, | ||
| 124 | input.attr[i][0].ToFloat32(), input.attr[i][1].ToFloat32(), input.attr[i][2].ToFloat32(), input.attr[i][3].ToFloat32()); | ||
| 125 | } else if (vertex_attribute_is_default[i]) { | ||
| 126 | // Load the default attribute if we're configured to do so | ||
| 127 | input.attr[i] = g_state.vs.default_attributes[i]; | ||
| 128 | LOG_TRACE(HW_GPU, "Loaded default attribute %x for vertex %x (index %x): (%f, %f, %f, %f)", | ||
| 129 | i, vertex, index, | ||
| 130 | input.attr[i][0].ToFloat32(), input.attr[i][1].ToFloat32(), | ||
| 131 | input.attr[i][2].ToFloat32(), input.attr[i][3].ToFloat32()); | ||
| 132 | } else { | ||
| 133 | // TODO(yuriks): In this case, no data gets loaded and the vertex | ||
| 134 | // remains with the last value it had. This isn't currently maintained | ||
| 135 | // as global state, however, and so won't work in Citra yet. | ||
| 136 | } | ||
| 137 | } | ||
| 138 | } | ||
| 139 | |||
| 140 | } // namespace Pica \ No newline at end of file | ||