Skip to content

Commit

Permalink
Merge pull request dolphin-emu#9765 from Techjar/bbox-pixel-quads-2-e…
Browse files Browse the repository at this point in the history
…lectric-boogaloo

VideoCommon: Move bounding box pixel quads rounding to shader
  • Loading branch information
stenzek authored May 29, 2021
2 parents 7b2b05c + a24e78b commit b31d440
Show file tree
Hide file tree
Showing 15 changed files with 52 additions and 69 deletions.
6 changes: 3 additions & 3 deletions Source/Core/VideoBackends/D3D/D3DRender.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -264,17 +264,17 @@ void Renderer::UnbindTexture(const AbstractTexture* texture)
D3D::stateman->ApplyTextures();
}

u16 Renderer::BBoxReadImpl(int index)
u16 Renderer::BBoxRead(int index)
{
return static_cast<u16>(BBox::Get(index));
}

void Renderer::BBoxWriteImpl(int index, u16 value)
void Renderer::BBoxWrite(int index, u16 value)
{
BBox::Set(index, value);
}

void Renderer::BBoxFlushImpl()
void Renderer::BBoxFlush()
{
BBox::Flush();
}
Expand Down
6 changes: 3 additions & 3 deletions Source/Core/VideoBackends/D3D/D3DRender.h
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ class Renderer : public ::Renderer
void SetFullscreen(bool enable_fullscreen) override;
bool IsFullscreen() const override;

u16 BBoxReadImpl(int index) override;
void BBoxWriteImpl(int index, u16 value) override;
void BBoxFlushImpl() override;
u16 BBoxRead(int index) override;
void BBoxWrite(int index, u16 value) override;
void BBoxFlush() override;

void Flush() override;
void WaitForGPUIdle() override;
Expand Down
6 changes: 3 additions & 3 deletions Source/Core/VideoBackends/D3D12/D3D12Renderer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -106,17 +106,17 @@ std::unique_ptr<AbstractPipeline> Renderer::CreatePipeline(const AbstractPipelin
return DXPipeline::Create(config, cache_data, cache_data_length);
}

u16 Renderer::BBoxReadImpl(int index)
u16 Renderer::BBoxRead(int index)
{
return static_cast<u16>(m_bounding_box->Get(index));
}

void Renderer::BBoxWriteImpl(int index, u16 value)
void Renderer::BBoxWrite(int index, u16 value)
{
m_bounding_box->Set(index, value);
}

void Renderer::BBoxFlushImpl()
void Renderer::BBoxFlush()
{
m_bounding_box->Flush();
m_bounding_box->Invalidate();
Expand Down
6 changes: 3 additions & 3 deletions Source/Core/VideoBackends/D3D12/D3D12Renderer.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ class Renderer final : public ::Renderer
const void* cache_data = nullptr,
size_t cache_data_length = 0) override;

u16 BBoxReadImpl(int index) override;
void BBoxWriteImpl(int index, u16 value) override;
void BBoxFlushImpl() override;
u16 BBoxRead(int index) override;
void BBoxWrite(int index, u16 value) override;
void BBoxFlush() override;

void Flush() override;
void WaitForGPUIdle() override;
Expand Down
4 changes: 2 additions & 2 deletions Source/Core/VideoBackends/Null/NullRender.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ class Renderer final : public ::Renderer

u32 AccessEFB(EFBAccessType type, u32 x, u32 y, u32 poke_data) override { return 0; }
void PokeEFB(EFBAccessType type, const EfbPokeData* points, size_t num_points) override {}
u16 BBoxReadImpl(int index) override { return 0; }
void BBoxWriteImpl(int index, u16 value) override {}
u16 BBoxRead(int index) override { return 0; }
void BBoxWrite(int index, u16 value) override {}

void ClearScreen(const MathUtil::Rectangle<int>& rc, bool colorEnable, bool alphaEnable,
bool zEnable, u32 color, u32 z) override
Expand Down
6 changes: 3 additions & 3 deletions Source/Core/VideoBackends/OGL/OGLRender.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -854,7 +854,7 @@ void Renderer::SetScissorRect(const MathUtil::Rectangle<int>& rc)
glScissor(rc.left, rc.top, rc.GetWidth(), rc.GetHeight());
}

u16 Renderer::BBoxReadImpl(int index)
u16 Renderer::BBoxRead(int index)
{
// swap 2 and 3 for top/bottom
if (index >= 2)
Expand All @@ -870,7 +870,7 @@ u16 Renderer::BBoxReadImpl(int index)
return static_cast<u16>(value);
}

void Renderer::BBoxWriteImpl(int index, u16 value)
void Renderer::BBoxWrite(int index, u16 value)
{
s32 swapped_value = value;
if (index >= 2)
Expand All @@ -882,7 +882,7 @@ void Renderer::BBoxWriteImpl(int index, u16 value)
BoundingBox::Set(index, swapped_value);
}

void Renderer::BBoxFlushImpl()
void Renderer::BBoxFlush()
{
BoundingBox::Flush();
}
Expand Down
6 changes: 3 additions & 3 deletions Source/Core/VideoBackends/OGL/OGLRender.h
Original file line number Diff line number Diff line change
Expand Up @@ -126,9 +126,9 @@ class Renderer : public ::Renderer
void BindBackbuffer(const ClearColor& clear_color = {}) override;
void PresentBackbuffer() override;

u16 BBoxReadImpl(int index) override;
void BBoxWriteImpl(int index, u16 value) override;
void BBoxFlushImpl() override;
u16 BBoxRead(int index) override;
void BBoxWrite(int index, u16 value) override;
void BBoxFlush() override;

void BeginUtilityDrawing() override;
void EndUtilityDrawing() override;
Expand Down
4 changes: 2 additions & 2 deletions Source/Core/VideoBackends/Software/SWRenderer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -126,12 +126,12 @@ u32 SWRenderer::AccessEFB(EFBAccessType type, u32 x, u32 y, u32 InputData)
return value;
}

u16 SWRenderer::BBoxReadImpl(int index)
u16 SWRenderer::BBoxRead(int index)
{
return BoundingBox::GetCoordinate(static_cast<BoundingBox::Coordinate>(index));
}

void SWRenderer::BBoxWriteImpl(int index, u16 value)
void SWRenderer::BBoxWrite(int index, u16 value)
{
BoundingBox::SetCoordinate(static_cast<BoundingBox::Coordinate>(index), value);
}
Expand Down
4 changes: 2 additions & 2 deletions Source/Core/VideoBackends/Software/SWRenderer.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ class SWRenderer final : public Renderer

u32 AccessEFB(EFBAccessType type, u32 x, u32 y, u32 poke_data) override;
void PokeEFB(EFBAccessType type, const EfbPokeData* points, size_t num_points) override {}
u16 BBoxReadImpl(int index) override;
void BBoxWriteImpl(int index, u16 value) override;
u16 BBoxRead(int index) override;
void BBoxWrite(int index, u16 value) override;

void RenderXFBToScreen(const MathUtil::Rectangle<int>& target_rc,
const AbstractTexture* source_texture,
Expand Down
6 changes: 4 additions & 2 deletions Source/Core/VideoBackends/Software/Tev.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -838,8 +838,10 @@ void Tev::Draw()
EfbInterface::IncPerfCounterQuadCount(PQ_ZCOMP_OUTPUT);
}

BoundingBox::Update(static_cast<u16>(Position[0]), static_cast<u16>(Position[0]),
static_cast<u16>(Position[1]), static_cast<u16>(Position[1]));
// The GC/Wii GPU rasterizes in 2x2 pixel groups, so bounding box values will be rounded to the
// extents of these groups, rather than the exact pixel.
BoundingBox::Update(static_cast<u16>(Position[0] & ~1), static_cast<u16>(Position[0] | 1),
static_cast<u16>(Position[1] & ~1), static_cast<u16>(Position[1] | 1));

#if ALLOW_TEV_DUMPS
if (g_ActiveConfig.bDumpTevStages)
Expand Down
6 changes: 3 additions & 3 deletions Source/Core/VideoBackends/Vulkan/VKRenderer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -131,17 +131,17 @@ void Renderer::SetPipeline(const AbstractPipeline* pipeline)
StateTracker::GetInstance()->SetPipeline(static_cast<const VKPipeline*>(pipeline));
}

u16 Renderer::BBoxReadImpl(int index)
u16 Renderer::BBoxRead(int index)
{
return static_cast<u16>(m_bounding_box->Get(index));
}

void Renderer::BBoxWriteImpl(int index, u16 value)
void Renderer::BBoxWrite(int index, u16 value)
{
m_bounding_box->Set(index, value);
}

void Renderer::BBoxFlushImpl()
void Renderer::BBoxFlush()
{
m_bounding_box->Flush();
m_bounding_box->Invalidate();
Expand Down
6 changes: 3 additions & 3 deletions Source/Core/VideoBackends/Vulkan/VKRenderer.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ class Renderer : public ::Renderer

SwapChain* GetSwapChain() const { return m_swap_chain.get(); }
BoundingBox* GetBoundingBox() const { return m_bounding_box.get(); }
u16 BBoxReadImpl(int index) override;
void BBoxWriteImpl(int index, u16 value) override;
void BBoxFlushImpl() override;
u16 BBoxRead(int index) override;
void BBoxWrite(int index, u16 value) override;
void BBoxFlush() override;

void Flush() override;
void WaitForGPUIdle() override;
Expand Down
19 changes: 15 additions & 4 deletions Source/Core/VideoCommon/PixelShaderGen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -492,19 +492,30 @@ void UpdateBoundingBox(float2 rawpos) {{
// such that width = right - left + 1. This has been verified on hardware.
int2 pos = iround(rawpos * cefbscale + offset);
// The GC/Wii GPU rasterizes in 2x2 pixel groups, so bounding box values will be rounded to the
// extents of these groups, rather than the exact pixel.
#ifdef API_OPENGL
// Need to flip the operands for Y on OpenGL because of lower-left origin.
int2 pos_tl = int2(pos.x & ~1, pos.y | 1);
int2 pos_br = int2(pos.x | 1, pos.y & ~1);
#else
int2 pos_tl = pos & ~1;
int2 pos_br = pos | 1;
#endif
#ifdef SUPPORTS_SUBGROUP_REDUCTION
if (CAN_USE_SUBGROUP_REDUCTION) {{
int2 min_pos = IS_HELPER_INVOCATION ? int2(2147483647, 2147483647) : pos;
int2 max_pos = IS_HELPER_INVOCATION ? int2(-2147483648, -2147483648) : pos;
int2 min_pos = IS_HELPER_INVOCATION ? int2(2147483647, 2147483647) : pos_tl;
int2 max_pos = IS_HELPER_INVOCATION ? int2(-2147483648, -2147483648) : pos_br;
SUBGROUP_MIN(min_pos);
SUBGROUP_MAX(max_pos);
if (IS_FIRST_ACTIVE_INVOCATION)
UpdateBoundingBoxBuffer(min_pos, max_pos);
}} else {{
UpdateBoundingBoxBuffer(pos, pos);
UpdateBoundingBoxBuffer(pos_tl, pos_br);
}}
#else
UpdateBoundingBoxBuffer(pos, pos);
UpdateBoundingBoxBuffer(pos_tl, pos_br);
#endif
}}
Expand Down
26 changes: 0 additions & 26 deletions Source/Core/VideoCommon/RenderBase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -185,32 +185,6 @@ void Renderer::ReinterpretPixelData(EFBReinterpretType convtype)
g_framebuffer_manager->ReinterpretPixelData(convtype);
}

u16 Renderer::BBoxRead(int index)
{
u16 value = BBoxReadImpl(index);

// The GC/Wii GPU rasterizes in 2x2 pixel groups, so bounding box values will be rounded to the
// extents of these groups, rather than the exact pixel.
// This would have been handled in the pixel shader, but all attempts to do so did not work on
// OpenGL/NVIDIA, due to presumably mystical driver behavior with atomics.
if (index == 0 || index == 2)
value &= ~1;
else
value |= 1;

return value;
}

void Renderer::BBoxWrite(int index, u16 value)
{
BBoxWriteImpl(index, value);
}

void Renderer::BBoxFlush()
{
BBoxFlushImpl();
}

u32 Renderer::AccessEFB(EFBAccessType type, u32 x, u32 y, u32 poke_data)
{
if (type == EFBAccessType::PeekColor)
Expand Down
10 changes: 3 additions & 7 deletions Source/Core/VideoCommon/RenderBase.h
Original file line number Diff line number Diff line change
Expand Up @@ -211,9 +211,9 @@ class Renderer
virtual u32 AccessEFB(EFBAccessType type, u32 x, u32 y, u32 poke_data);
virtual void PokeEFB(EFBAccessType type, const EfbPokeData* points, size_t num_points);

u16 BBoxRead(int index);
void BBoxWrite(int index, u16 value);
void BBoxFlush();
virtual u16 BBoxRead(int index) = 0;
virtual void BBoxWrite(int index, u16 value) = 0;
virtual void BBoxFlush() {}

virtual void Flush() {}
virtual void WaitForGPUIdle() {}
Expand Down Expand Up @@ -301,10 +301,6 @@ class Renderer
// Should be called with the ImGui lock held.
void DrawImGui();

virtual u16 BBoxReadImpl(int index) = 0;
virtual void BBoxWriteImpl(int index, u16 value) = 0;
virtual void BBoxFlushImpl() {}

AbstractFramebuffer* m_current_framebuffer = nullptr;
const AbstractPipeline* m_current_pipeline = nullptr;

Expand Down

0 comments on commit b31d440

Please sign in to comment.