aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* Merge pull request #652 from neobrain/shader_output_fixGravatar bunnei2015-03-16
|\ | | | | Pica/VertexShader: Fix a bug caused due to incorrect assumptions of consecutive output register tables.
* \ Merge pull request #662 from linkmauve/video_core-warningsGravatar bunnei2015-03-16
|\ \ | | | | | | Add static_cast around expressions where the compiler doesn’t deduce the right type
* \ \ Merge pull request #663 from lioncash/ticksGravatar bunnei2015-03-16
|\ \ \ | | | | | | | | arm_interface: Get rid of GetTicks.
| * | | arm_interface: Get rid of GetTicks.Gravatar Lioncash2015-03-16
|/ / / | | | | | | | | | Removes a TODO.
| * / VideoCore: Add static_cast around expressions where the compiler doesn’t ↵Gravatar Emmanuel Gil Peyrot2015-03-16
|/ / | | | | | | deduce the right type.
* | Merge pull request #657 from Subv/flipGravatar bunnei2015-03-14
|\ \ | | | | | | GPU: Implemented the flip_data (bit 0) bit in display transfers.
| * | GPU: Implemented the flip_data (bit 0) bit in display transfers.Gravatar Subv2015-03-14
| | |
* | | Merge pull request #658 from Subv/ref_temporaryGravatar Tony Wasserka2015-03-14
|\ \ \ | |/ / |/| | EmuWindow: Fixed a reference to a temporary variable
| * | EmuWindow: Fixed a reference to a temporary variableGravatar Subv2015-03-14
|/ / | | | | | | in GetTouchState()
| * Pica/VertexShader: Fix a bug caused due to incorrect assumptions of ↵Gravatar Tony Wasserka2015-03-12
|/ | | | | | consecutive output register tables. We now write create a temporary buffer for output registers and copy all of them to the actual output vertex structure after the shader has run. This is technically not necessary, but it's easier to vectorize in the future.
* Merge pull request #642 from bunnei/touchpadGravatar bunnei2015-03-11
|\ | | | | Touchpad support
| * hid_user: Removed unnecessary includes.Gravatar bunnei2015-03-11
| |
| * HID: Removed unnecessary global variables.Gravatar bunnei2015-03-11
| |
| * HID: Added additional variable comments and some code cleanups.Gravatar bunnei2015-03-10
| |
| * HID: Complete refactor of pad/touch input to fix threading issues.Gravatar bunnei2015-03-10
| |
* | Merge pull request #629 from archshift/lcdfbGravatar bunnei2015-03-10
|\ \ | | | | | | Implement SetLcdForceBlack and add implementation for color filling in the GPU code
| | * EmuWindow: Made pad/touch functions non-static.Gravatar bunnei2015-03-10
| | |
| | * HID: Cleanup how `next_touch_index` is calculated for Pad and touch.Gravatar bunnei2015-03-10
| | |
| | * HID: Changed TouchDataEntry `valid` to a BitField and added some doc strings.Gravatar bunnei2015-03-10
| | |
| | * HID: Added static asserts to check register position in shared memory.Gravatar bunnei2015-03-10
| | |
| | * Qt: Implemented EmuWindow touchpad support.Gravatar bunnei2015-03-10
| | |
| | * GLFW: Implemented EmuWindow touchpad support.Gravatar bunnei2015-03-10
| | |
| | * EmuWindow: Added infrastructure code to enable touchpad support.Gravatar bunnei2015-03-10
| | |
| | * HID: Added functions to emulate the touchpad.Gravatar bunnei2015-03-10
| | |
| | * HID: Moved some docstrings to the header.Gravatar bunnei2015-03-10
| | |
| | * HID: Refactored shared memory decoding for touchpad support.Gravatar bunnei2015-03-10
| |/ |/|
* | Merge pull request #649 from lioncash/cleanGravatar bunnei2015-03-10
|\ \ | | | | | | dyncom: Minor cleanup
| * | dyncom: Minor cleanupGravatar Lioncash2015-03-10
|/ / | | | | | | Assemblers will exit with an error when trying to assemble instructions with disallowed registers.
* | Merge pull request #643 from Subv/dem_feelsGravatar bunnei2015-03-09
|\ \ | | | | | | GPU: Implemented more depth buffer formats.
| * | GPU: Added the stencil test structure to the Pica Regs struct.Gravatar Subv2015-03-09
| | |
| * | Frontend/Qt: Allow the framebuffer widget to inspect the depth bufferGravatar Subv2015-03-09
| | |
| * | GPU: Implemented more depth buffer formats.Gravatar Subv2015-03-09
| | | | | | | | | | | | This fixes the horizontal lines in Picross E, Cubic Ninja, Cave Story 3D and possibly others
* | | Merge pull request #647 from neobrain/rip_culling_hackGravatar bunnei2015-03-09
|\ \ \ | | | | | | | | Pica/PrimitiveAssembly: Fix triangle strips and fans being generated with incorrect winding order.
| | | * Added LCD registers, and implementation for color filling in OGL code.Gravatar archshift2015-03-09
| | | |
* | | | Merge pull request #648 from Subv/fill_bitGravatar Tony Wasserka2015-03-09
|\ \ \ \ | | | | | | | | | | GPU: Use the correct position for the finished bit in memory fills
| * | | | GPU: Use the correct position for the finished bit in memory fillsGravatar Subv2015-03-09
| | | | |
* | | | | Merge pull request #646 from Subv/24bit_fillsGravatar Tony Wasserka2015-03-09
|\ \ \ \ \ | | | | | | | | | | | | GPU: Corrected the 24 bit memory fills component order
| | | * | | Pica/PrimitiveAssembly: Fix triangle strips and fans being generated with ↵Gravatar Tony Wasserka2015-03-09
| |_|/ / / |/| | | | | | | | | | | | | | incorrect winding order.
* | | | | Merge pull request #589 from kevinhartman/config-errorsGravatar bunnei2015-03-09
|\ \ \ \ \ | | | | | | | | | | | | Fix errorcodes for bad config block request
* \ \ \ \ \ Merge pull request #634 from linkmauve/logging-performancesGravatar bunnei2015-03-09
|\ \ \ \ \ \ | | | | | | | | | | | | | | Apply the logging filter before sending the message to the queue
* \ \ \ \ \ \ Merge pull request #645 from lioncash/ldmGravatar bunnei2015-03-09
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Minor bugfixes to LDM/STM.
| | | | * | | | GPU: Corrected the 24 bit memory fills component orderGravatar Subv2015-03-09
| | | | |/ / /
* | | | | | | Update README.mdGravatar bunnei2015-03-08
| | | | | | |
* | | | | | | Merge pull request #644 from archshift/nihstroGravatar bunnei2015-03-08
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Update nihstro submodule to the initial release version.
* \ \ \ \ \ \ \ Merge pull request #584 from yuriks/outline-assertsGravatar bunnei2015-03-08
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Asserts: Use lambdas to keep assertion code away from the main code path
| | | * | | | | | dyncom: Fix an indexing bug in STMGravatar Lioncash2015-03-08
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously it would write the contents of register 13 for the case where the link register (r14) is supposed to be written.
| | | * | | | | | dyncom: General cleanup of STMGravatar Lioncash2015-03-08
| | | | | | | | |
| | | * | | | | | dyncom: Increment addr when accessing LR in LDMGravatar Lioncash2015-03-08
| |_|/ / / / / / |/| | | | | | |
| | * | | | | | Update nihstro submodule to the initial release version.Gravatar archshift2015-03-08
| |/ / / / / / |/| | | | | | | | | | | | | | | | | | | | Includes more opcodes to implement in the future.
* | | | | | | Merge pull request #639 from archshift/appbundleGravatar archshift2015-03-07
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Build app bundles on OS X. Fixes the issue where the menubar would not appear.