aboutsummaryrefslogtreecommitdiff
path: root/src/video_core
AgeCommit message (Collapse)Author
2018-11-27gl_shader_decompiler: Fixup clip distance indexReinUsesLisp
2018-11-27gl_rasterizer: Fixup for #1723.Markus Wick
On invalidating the streaming buffer, we need to reupload all vertex buffers. But we don't need to reconfigure the vertex format. This was a (silly) misstake in #1723. Thanks at Rodrigo for discovering the issue. Fun fact, as configuring the vertex format also invalidate the vertex buffer, this misstake had no affect on the behavior.
2018-11-26gpu: Rewrite GPU command list processing with DmaPusher class.bunnei
- More accurate impl., fixes Undertale (among other games).
2018-11-27remove viewport_transform_enabled as it seems to be inactive when valid ↵Rodolfo Bogado
transforms are used.
2018-11-26morton: Fixup compiler warningReinUsesLisp
2018-11-26Implement depth clampRodolfo Bogado
2018-11-26Add support for Clip Distance enabled registerRodolfo Bogado
2018-11-26Merge pull request #1794 from Tinob/masterbunnei
Add support for viewport_transfom_enable register
2018-11-26Merge pull request #1723 from degasus/dirty_flagsbunnei
gl_rasterizer: Skip VB upload if the state is clean.
2018-11-26GPU States: Implement Polygon Offset. This is used in SMO all the time. (#1784)Marcos
* GPU States: Implement Polygon Offset. This is used in SMO all the time. * Clang Format fixes. * Initialize polygon_offset in the constructor.
2018-11-26Merge pull request #1713 from FernandoS27/bra-ccbunnei
Implemented BRA CC conditional and FSET CC Setting
2018-11-26Merge pull request #1798 from ReinUsesLisp/y-directionbunnei
gl_shader_decompiler: Implement S2R's Y_DIRECTION
2018-11-26Implemented Tile Width SpacingFernandoS27
2018-11-25Merge pull request #1763 from ReinUsesLisp/bfibunnei
gl_shader_decompiler: Implement BFI_IMM_R
2018-11-25Merge pull request #1760 from ReinUsesLisp/r2pbunnei
gl_shader_decompiler: Implement R2P_IMM
2018-11-25Merge pull request #1782 from FernandoS27/dcbunnei
Fixed Coordinate Encodings in TEX and TEXS instructions
2018-11-25Merge pull request #1783 from ReinUsesLisp/clip-distancesbunnei
gl_shader_decompiler: Implement clip distances
2018-11-25Merge pull request #1796 from ReinUsesLisp/morton-movebunnei
video_core: Move morton functions out of gl_rasterizer_cache
2018-11-25Limit the amount of viewports tested for state changes only to the usable onesRodolfo Bogado
2018-11-25gl_shader_decompiler: Implement S2R's Y_DIRECTIONReinUsesLisp
2018-11-24Merge pull request #1787 from bunnei/fix-gpu-mmbunnei
memory_manager: Do not allow 0 to be a valid GPUVAddr.
2018-11-25morton: Style changesReinUsesLisp
2018-11-25video_core: Move morton functions to their own fileReinUsesLisp
2018-11-24Fix Texture OverlappingFernandoS27
2018-11-24Implemented BRA CC conditional and FSET CC SettingFernandoS27
2018-11-24Add support for viewport_transfom_enable registerRodolfo Bogado
2018-11-23Merge pull request #1725 from FernandoS27/gl43bunnei
Update OpenGL's backend version from 3.3 to 4.3
2018-11-23Merge pull request #1785 from Tinob/masterbunnei
Add support for clear_flags register
2018-11-23Merge pull request #1769 from ReinUsesLisp/ccbunnei
gl_shader_decompiler: Rename cc to condition code and name internal flags
2018-11-24Add support for clear_flags registerRodolfo Bogado
2018-11-23Fix TEXS Instruction encodingsFernandoS27
2018-11-23Fix one encoding in TEX InstructionFernandoS27
2018-11-23Corrected inputs indexing in TEX instructionFernandoS27
2018-11-23Merge pull request #1744 from degasus/shader_cachebunnei
shader_cache: Only lock covered instructions.
2018-11-23memory_manager: Do not allow 0 to be a valid GPUVAddr.bunnei
- Fixes a bug with Undertale using 0 for a render target.
2018-11-23Added predicate comparison LessEqualWithNan (#1736)Hexagon12
* Added predicate comparison LessEqualWithNan * oops * Clang fix
2018-11-23Merge pull request #1756 from ReinUsesLisp/fix-texturesbunnei
gl_shader_decompiler: Fix register overwriting on texture calls
2018-11-23Merge pull request #1766 from FernandoS27/fix-txqbunnei
Properly Implemented TXQ Instruction
2018-11-23gl_shader_decompiler: Implement clip distancesReinUsesLisp
2018-11-22gl_shader_decompiler: Add a message for unimplemented cc generationReinUsesLisp
2018-11-22Merge pull request #1775 from bunnei/blend-eqbunnei
maxwell_3d: Implement alternate blend equations.
2018-11-22Merge pull request #1764 from bunnei/macrointerpreterbunnei
macro_interpreter: Implement AddWithCarry and SubtractWithBorrow.
2018-11-22macro_interpreter: Implement AddWithCarry and SubtractWithBorrow.bunnei
- Used by Undertale.
2018-11-22maxwell_3d: Implement alternate blend equations.bunnei
- Used by Undertale.
2018-11-21Merge pull request #1737 from FernandoS27/layer-copybunnei
Implemented Fast Layered Copy
2018-11-21gl_shader_decompiler: Rename internal flag stringsReinUsesLisp
2018-11-21gl_shader_decompiler: Rename control codes to condition codesReinUsesLisp
2018-11-21gl_shader_decompiler: Fix register overwriting on texture callsReinUsesLisp
2018-11-21Merge pull request #1753 from FernandoS27/ufbtypebunnei
Use default values for unknown framebuffer pixel format
2018-11-21Merge pull request #1752 from ReinUsesLisp/unimpl-decompilerbunnei
gl_shader_decompiler: Use UNIMPLEMENTED when applicable