mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 20:28:56 +00:00
Software: Use new scissor logic
Unlike the hardware backends, the software renderer can use multiple scissor rectangles (though this will result in extra rasterization).
This commit is contained in:
parent
076392a0f6
commit
925ceab82f
5 changed files with 66 additions and 48 deletions
|
@ -10,9 +10,10 @@ struct OutputVertexData;
|
|||
namespace Rasterizer
|
||||
{
|
||||
void Init();
|
||||
void ScissorChanged();
|
||||
|
||||
void UpdateZSlope(const OutputVertexData* v0, const OutputVertexData* v1,
|
||||
const OutputVertexData* v2);
|
||||
const OutputVertexData* v2, s32 x_off, s32 y_off);
|
||||
void DrawTriangleFrontFace(const OutputVertexData* v0, const OutputVertexData* v1,
|
||||
const OutputVertexData* v2);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue