|
|
@ -126,6 +126,9 @@ void Maxwell3D::InitializeRegisterDefaults() { |
|
|
draw_command[MAXWELL3D_REG_INDEX(index_buffer32_first)] = true; |
|
|
draw_command[MAXWELL3D_REG_INDEX(index_buffer32_first)] = true; |
|
|
draw_command[MAXWELL3D_REG_INDEX(index_buffer16_first)] = true; |
|
|
draw_command[MAXWELL3D_REG_INDEX(index_buffer16_first)] = true; |
|
|
draw_command[MAXWELL3D_REG_INDEX(index_buffer8_first)] = true; |
|
|
draw_command[MAXWELL3D_REG_INDEX(index_buffer8_first)] = true; |
|
|
|
|
|
draw_command[MAXWELL3D_REG_INDEX(draw_inline_index)] = true; |
|
|
|
|
|
draw_command[MAXWELL3D_REG_INDEX(inline_index_2x16.even)] = true; |
|
|
|
|
|
draw_command[MAXWELL3D_REG_INDEX(inline_index_4x8.index0)] = true; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
void Maxwell3D::ProcessMacro(u32 method, const u32* base_start, u32 amount, bool is_last_call) { |
|
|
void Maxwell3D::ProcessMacro(u32 method, const u32* base_start, u32 amount, bool is_last_call) { |
|
|
@ -271,6 +274,23 @@ void Maxwell3D::CallMethod(u32 method, u32 method_argument, bool is_last_call) { |
|
|
if (draw_command[method]) { |
|
|
if (draw_command[method]) { |
|
|
regs.reg_array[method] = method_argument; |
|
|
regs.reg_array[method] = method_argument; |
|
|
deferred_draw_method.push_back(method); |
|
|
deferred_draw_method.push_back(method); |
|
|
|
|
|
auto u32_to_u8 = [&](const u32 argument) { |
|
|
|
|
|
inline_index_draw_indexes.push_back(static_cast<u8>(argument & 0x000000ff)); |
|
|
|
|
|
inline_index_draw_indexes.push_back(static_cast<u8>((argument & 0x0000ff00) >> 8)); |
|
|
|
|
|
inline_index_draw_indexes.push_back(static_cast<u8>((argument & 0x00ff0000) >> 16)); |
|
|
|
|
|
inline_index_draw_indexes.push_back(static_cast<u8>((argument & 0xff000000) >> 24)); |
|
|
|
|
|
}; |
|
|
|
|
|
if (MAXWELL3D_REG_INDEX(draw_inline_index) == method) { |
|
|
|
|
|
u32_to_u8(method_argument); |
|
|
|
|
|
} else if (MAXWELL3D_REG_INDEX(inline_index_2x16.even) == method) { |
|
|
|
|
|
u32_to_u8(regs.inline_index_2x16.even); |
|
|
|
|
|
u32_to_u8(regs.inline_index_2x16.odd); |
|
|
|
|
|
} else if (MAXWELL3D_REG_INDEX(inline_index_4x8.index0) == method) { |
|
|
|
|
|
u32_to_u8(regs.inline_index_4x8.index0); |
|
|
|
|
|
u32_to_u8(regs.inline_index_4x8.index1); |
|
|
|
|
|
u32_to_u8(regs.inline_index_4x8.index2); |
|
|
|
|
|
u32_to_u8(regs.inline_index_4x8.index3); |
|
|
|
|
|
} |
|
|
} else { |
|
|
} else { |
|
|
ProcessDeferredDraw(); |
|
|
ProcessDeferredDraw(); |
|
|
|
|
|
|
|
|
@ -567,8 +587,10 @@ void Maxwell3D::ProcessClearBuffers() { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
void Maxwell3D::ProcessDeferredDraw() { |
|
|
void Maxwell3D::ProcessDeferredDraw() { |
|
|
auto method_count = deferred_draw_method.size(); |
|
|
|
|
|
if (method_count) { |
|
|
|
|
|
|
|
|
if (deferred_draw_method.empty()) { |
|
|
|
|
|
return; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
enum class DrawMode { |
|
|
enum class DrawMode { |
|
|
Undefined, |
|
|
Undefined, |
|
|
General, |
|
|
General, |
|
|
@ -581,11 +603,10 @@ void Maxwell3D::ProcessDeferredDraw() { |
|
|
if (MAXWELL3D_REG_INDEX(draw.begin) == first_method) { |
|
|
if (MAXWELL3D_REG_INDEX(draw.begin) == first_method) { |
|
|
// The minimum number of methods for drawing must be greater than or equal to
|
|
|
// The minimum number of methods for drawing must be greater than or equal to
|
|
|
// 3[draw.begin->vertex(index)count->draw.end] to avoid errors in index mode drawing
|
|
|
// 3[draw.begin->vertex(index)count->draw.end] to avoid errors in index mode drawing
|
|
|
if (method_count < 3) { |
|
|
|
|
|
|
|
|
if (deferred_draw_method.size() < 3) { |
|
|
return; |
|
|
return; |
|
|
} |
|
|
} |
|
|
draw_mode = |
|
|
|
|
|
(regs.draw.instance_id == Maxwell3D::Regs::Draw::InstanceId::Subsequent) || |
|
|
|
|
|
|
|
|
draw_mode = (regs.draw.instance_id == Maxwell3D::Regs::Draw::InstanceId::Subsequent) || |
|
|
(regs.draw.instance_id == Maxwell3D::Regs::Draw::InstanceId::Unchanged) |
|
|
(regs.draw.instance_id == Maxwell3D::Regs::Draw::InstanceId::Unchanged) |
|
|
? DrawMode::Instance |
|
|
? DrawMode::Instance |
|
|
: DrawMode::General; |
|
|
: DrawMode::General; |
|
|
@ -618,14 +639,21 @@ void Maxwell3D::ProcessDeferredDraw() { |
|
|
regs.index_buffer.count = regs.index_buffer8_first.count; |
|
|
regs.index_buffer.count = regs.index_buffer8_first.count; |
|
|
regs.index_buffer.first = regs.index_buffer8_first.first; |
|
|
regs.index_buffer.first = regs.index_buffer8_first.first; |
|
|
dirty.flags[VideoCommon::Dirty::IndexBuffer] = true; |
|
|
dirty.flags[VideoCommon::Dirty::IndexBuffer] = true; |
|
|
|
|
|
} else { |
|
|
|
|
|
auto second_method = deferred_draw_method[1]; |
|
|
|
|
|
if (MAXWELL3D_REG_INDEX(draw_inline_index) == second_method || |
|
|
|
|
|
MAXWELL3D_REG_INDEX(inline_index_2x16.even) == second_method || |
|
|
|
|
|
MAXWELL3D_REG_INDEX(inline_index_4x8.index0) == second_method) { |
|
|
|
|
|
regs.index_buffer.count = static_cast<u32>(inline_index_draw_indexes.size() / 4); |
|
|
|
|
|
regs.index_buffer.format = Regs::IndexFormat::UnsignedInt; |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
LOG_TRACE(HW_GPU, "called, topology={}, count={}", regs.draw.topology.Value(), |
|
|
LOG_TRACE(HW_GPU, "called, topology={}, count={}", regs.draw.topology.Value(), |
|
|
regs.vertex_buffer.count); |
|
|
regs.vertex_buffer.count); |
|
|
|
|
|
|
|
|
ASSERT_MSG(!(regs.index_buffer.count && regs.vertex_buffer.count), |
|
|
|
|
|
"Both indexed and direct?"); |
|
|
|
|
|
|
|
|
ASSERT_MSG(!(regs.index_buffer.count && regs.vertex_buffer.count), "Both indexed and direct?"); |
|
|
|
|
|
|
|
|
// Both instance configuration registers can not be set at the same time.
|
|
|
// Both instance configuration registers can not be set at the same time.
|
|
|
ASSERT_MSG(regs.draw.instance_id == Maxwell3D::Regs::Draw::InstanceId::First || |
|
|
ASSERT_MSG(regs.draw.instance_id == Maxwell3D::Regs::Draw::InstanceId::First || |
|
|
@ -646,7 +674,7 @@ void Maxwell3D::ProcessDeferredDraw() { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
deferred_draw_method.clear(); |
|
|
deferred_draw_method.clear(); |
|
|
} |
|
|
|
|
|
|
|
|
inline_index_draw_indexes.clear(); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
} // namespace Tegra::Engines
|
|
|
} // namespace Tegra::Engines
|