Commit Graph

25 Commits (d151d797b1c281d5813ca705722f43b4be20ca6d)

Author SHA1 Message Date
Yuri Kunde Schlesner d151d797b1 Vertex Shader: Zero OutputVertex to avoid denormals
Unused OutputVertex attributes were being left un-initialized. The
leftover garbage sometimes decoded as floating-point denormalized
values, causing fallbacks to microcode and massive slowdowns in the rest
of the rasterization pipeline even though the results were unused. By
zeroing the structure we ensure these attributes only contain harmless
zeros.
bunnei 01c675685e Merge pull request from Apology11/master
Fix visual studio ambiguous symbol error
bunnei 0de6a08d75 Merge pull request from purpasmart96/license
License change
Apology11 8d81e23d6e Fix visual studio ambiguous symbol error
purpasmart96 ebfd831ccb License change
Tony Wasserka 08f42c2b8c Pica/VertexShader: Promote a log message to critical status.
Tony Wasserka 17f31de364 Pica/VertexShader: Small optimization.
Tony Wasserka a664574ecb Pica/VertexShader: Be robust against invalid inputs.
More specifically, this also fixes crashes by Citra trying to load a src2 register even if the current instruction does not use that.
Tony Wasserka ad5db467d7 Pica/VertexShader: Clarify a comment.
Tony Wasserka 6bd41de276 Pica/VertexShader: Cleanup flow control logic and implement CMP/IFU instructions.
Tony Wasserka 22afb9d830 Pica/VertexShader: Run instruction handlers according to the effective opcode.
This allows for proper emulation of the different CMP/LRP/MAD instructions.
Tony Wasserka cd163fb59a Pica/VertexShader: Implement MAX instructions.
Tony Wasserka aff808b2fd Pica: Add support for boolean uniforms.
Tony Wasserka 67618a2c55 Pica/VertexShader: Add support for MOVA, CMP and IFC.
Tony Wasserka cb1804e0ab Pica/VertexShader: Move code around a bit.
Tony Wasserka b85524c760 Pica/VertexShader: Some cleanups using std::array.
Tony Wasserka ce36ad454e Pica/VertexShader: Support negating src2.
Tony Wasserka 8ce1d32460 Pica/VertexShader: Remove (now) duplicated shader bytecode definitions in favor of nihstro's ones.
Yuri Kunde Schlesner 0600e2d8b5 Convert old logging calls to new logging macros
Tony Wasserka 4d4572c697 Integrate Boost into build system and perform a trivial cleanup in vertex_shader.cpp.
Lioncash eb5054e6eb Fix warnings in video_core
Tony Wasserka 697b50c3ff Pica/VertexShader: Fix a bug in the call stack handling.
Tony Wasserka 62c36a4ef0 Pica/VertexShader: Fix a bug in the bitfield definitions and add the "negate" field for swizzlers.
Tony Wasserka f37e39deb9 Pica: Add debug utilities for dumping shaders.
Tony Wasserka c526512619 Pica: Add vertex shader implementation.