summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-04-23assert: Add _MSG variations for UNREACHABLE and UNIMPLEMENTEDSam Spilsbury
2016-04-23pica: Handle default lighting caseSam Spilsbury
2016-04-23ncch: Use correct format specifier (for long long uint)Sam Spilsbury
2016-04-23fs: Fix what appears to be a typo (filename_size / file_size)Sam Spilsbury
2016-04-23gdbstub: Don't check if unsigned int is > 0Sam Spilsbury
2016-04-23debugger: Warn if we reach an unreachable formatSam Spilsbury
2016-04-23microprofileui: Use correct printf specifierSam Spilsbury
2016-04-23microprofile: Use std::absSam Spilsbury
Using the global-namespace C function will cause the wrong overload to get picked
2016-04-23CMakeLists: Use CMAKE_THREAD_LIBS_INITSam Spilsbury
2016-04-22Merge pull request #1697 from tfarley/hw-lighting-syncbunnei
HWRasterizer: Lighting Sync + Cleanup
2016-04-22HWRasterizer: reorder declarations to match defstfarley
2016-04-22HWRasterizer: sync specular uniform for new shaderstfarley
2016-04-22Merge pull request #1436 from tfarley/hw-tex-forwardingbunnei
Hardware Renderer Texture Forwarding
2016-04-21HWRasterizer: Texture forwardingtfarley
2016-04-21Config: Add scaled resolution optiontfarley
2016-04-21Update to ext-boost with interval_maptfarley
2016-04-21Merge pull request #1655 from JayFoxRox/hw-dot3bunnei
OpenGL: Implement color combiner Operation::Dot3_RGB
2016-04-20Merge pull request #1691 from linkmauve/improve-sdl-optionsbunnei
SDL2 Frontend: Use argv[0], add a --version, and reorder options
2016-04-20SDL2 Frontend: Use argv[0], add a --version, and reorder options.Emmanuel Gil Peyrot
2016-04-19Merge pull request #1672 from wwylele/win-driver-fixbunnei
Fix driver root identification on Windows
2016-04-18Merge pull request #1612 from ObsidianX/get-set-sockoptbunnei
SOC:U GetSockOpt/SetSockOpt
2016-04-17Merge pull request #1625 from JayFoxRox/sw-blend-funcbunnei
Rasterizer: Allow all blend factors for alpha blend-func
2016-04-17Rasterizer: Allow all blend factors for alpha blend-funcJannik Vogel
2016-04-16Merge pull request #1685 from lioncash/hdrbunnei
core: Clean out some unnecessary header includes
2016-04-16core: Clean out some unnecessary header includesLioncash
2016-04-15Merge pull request #1667 from wwylele/ncch-loader-fixbunnei
loader: only decompress code section
2016-04-15Merge pull request #1673 from MerryMage/config-minimumSizebunnei
Configure Dialog: Remove minimumSize property
2016-04-15fix driver root identification on Windowswwylele
2016-04-15Merge pull request #1671 from lioncash/memMathew Maidment
debug_utils: use std::make_unique for initializing PicaTrace
2016-04-15Configure Dialog: Remove minimumSize propertyMerryMage
2016-04-14Y2R: num_tiles should be allowed when its value is 128 (#1669)JamePeng
2016-04-14debug_utils: use std::make_unique for initializing PicaTraceLioncash
2016-04-14Merge pull request #1666 from MerryMage/barrierbunnei
Thread: Correct Common::Barrier implementation
2016-04-14Merge pull request #1665 from lioncash/filebunnei
IOFile: Minor API changes
2016-04-14ncch:only decompress .code sectionwwylele
2016-04-14Thread: Make Barrier reusableMerryMage
2016-04-14common/thread: Correct code styleMerryMage
2016-04-13Merge pull request #1546 from bunnei/refactor-shader-jitbunnei
Shader JIT Part 2
2016-04-13shader_jit_x64: Rename RuntimeAssert to Compile_Assert.bunnei
2016-04-13shader_jit_x64.cpp: Rename JitCompiler to JitShader.bunnei
2016-04-13shader_jit_x64: Free memory that's no longer needed after compilation.bunnei
2016-04-13shader_jit_x64: Use a sorted vector instead of a set for keeping track of ↵bunnei
return addresses.
2016-04-13shader_jit_x64: Use CALL/RET instead of JMP for subroutines.bunnei
2016-04-13emitter: Add CALL that can be fixed up.bunnei
2016-04-13shader_jit_x64: Separate initialization and code generation for readability.bunnei
2016-04-13shader_jit_x64: Get rid of unnecessary last_program_counter variable.bunnei
2016-04-13shader_jit_x64: Execute certain asserts at runtime.bunnei
- This is because we compile the full shader code space, and therefore its common to compile malformed instructions.
2016-04-13shader: Remove unused 'state' argument from 'Setup' function.bunnei
2016-04-13shader_jit_x64: Specify shader main offset at runtime.bunnei
2016-04-13shader_jit_x64: Allocate each program independently and persist for emu session.bunnei