Commit Graph

9095 Commits (59044862a902913700c3e7062ac8cfa43811c420)
 

Author SHA1 Message Date
bunnei 038a51aac1 Merge pull request #82 from yuriks/addr-types
Introduce VAddr and PAddr typedefs for ARM addresses.
11 years ago
bunnei aabfcfe6ad GPU: Improve frame synchronization, increases compatibility with both homebrew and retail applications. 11 years ago
bunnei eb36d3fc90 Core: Refactor core to use only one function for execution.
Core: Cleaned up comment to be more readable.

Citra: Changed loop to be more readable.
11 years ago
bunnei 738b88293c Loader: Added support for loading raw BIN executables.
- Useful for debugging homebrew

Qt: Updated GUI to support loading .bin files.
11 years ago
bunnei 3ade84cb7b Threading: Fix thread starting to execute first instruction correctly. 11 years ago
bunnei ae93adddd1 srv::Initialize: Return "success" status code. 11 years ago
Yuri Kunde Schlesner 83c3d2bcd1 Introduce VAddr and PAddr typedefs for ARM addresses. 11 years ago
bunnei 06864c93fd Merge pull request #80 from bunnei/fix-latest-libctru
Fixes Citra for the latest changes made to the "refactor" branch of libctru.
- For reference, see: https://github.com/smealum/ctrulib/tree/refactor/libctru
11 years ago
bunnei 6966fdf025 Loader: Added support for loading raw BIN executables.
- Useful for debugging homebrew

Qt: Updated GUI to support loading .bin files.
11 years ago
bunnei 304999dfeb Threading: Fix thread starting to execute first instruction correctly. 11 years ago
bunnei fb908b9395 srv::Initialize: Return "success" status code. 11 years ago
bunnei 7122c46937 Merge pull request #81 from yuriks/downgrade-shader
Downgrade GLSL version to 1.50 (compatible with GL 3.2)
11 years ago
Yuri Kunde Schlesner 9d172ab550 Downgrade GLSL version to 1.50 (compatible with GL 3.2) 11 years ago
bunnei 1a7bbe2569 Merge pull request #79 from bunnei/framebuffer-render-fixes
VideoCore: Fixes rendering issues on Qt and corrects framebuffer output size.
11 years ago
bunnei 20d169e4a1 VideoCore: Fixes rendering issues on Qt and corrects framebuffer output size. 11 years ago
bunnei fef62d0e54 Merge pull request #74 from kevinhartman/master
Initial rewrite of opengl renderer.
11 years ago
Kevin Hartman cbfd6b6e52 Rewrite of OpenGL renderer, including OS X support
Screen contents are now displayed using textured quads. This can be updated to expose an FBO once an OpenGL backend for when Pica rendering is being worked on. That FBO's texture can then be applied to the quads.

Previously, FBO blitting was used in order to display screen contents, which did not work on OS X. The new textured quad approach is less of a compatibility risk.
11 years ago
bunnei aa7472057a Update README.md to correct OS X typo 11 years ago
bunnei 62b621788b Update README.md 11 years ago
bunnei 97fd8fc38d Merge pull request #50 from neobrain/pica
Further work on Pica emulation
11 years ago
Tony Wasserka a79644c9ba Pica/Rasterizer: Clarify a TODO. 11 years ago
Tony Wasserka 697b50c3ff Pica/VertexShader: Fix a bug in the call stack handling. 11 years ago
Tony Wasserka b5b3aeb576 Math: Warning fixes. 11 years ago
Tony Wasserka 941762a573 GPU: Fix a compiler warning about redundant semicolons. 11 years ago
Tony Wasserka 2f1c129f64 Pica: Consolidate the primitive assembly code in PrimitiveAssembly and GeometryDumper. 11 years ago
Tony Wasserka 9679d231df Pica/Rasterizer: Add texturing support. 11 years ago
Tony Wasserka 34fa0b6d9c Pica/DebugUtils: Add convenient tev setup printer. 11 years ago
Tony Wasserka 27cab6477e Pica/Rasterizer: Add initial implementation of texture combiners. 11 years ago
Tony Wasserka c4691b784b Pica: Add support for dumping textures. 11 years ago
Tony Wasserka 162d641a30 Pica/Math: Improved the design of the Vec2/Vec3/Vec4 classes and simplified rasterizer code accordingly.
- Swizzlers now return const objects so that things like "first_vec4.xyz() = some_vec3" now will fail to compile (ideally we should support some vector holding references to make this actually work).
- The methods "InsertBeforeX/Y/Z" and "Append" have been replaced by more versions of MakeVec, which now also supports building new vectors from vectors.
- Vector library now follows C++ type promotion rules (hence, the result of Vec2<u8> with another Vec2<u8> is now a Vec2<int>).
11 years ago
Tony Wasserka 62c36a4ef0 Pica/VertexShader: Fix a bug in the bitfield definitions and add the "negate" field for swizzlers. 11 years ago
Tony Wasserka 26ade98411 Pica/citra-qt: Replace command list view and command list debugging code with something more sophisticated. 11 years ago
Tony Wasserka 0465adf206 Pica/CommandProcessor: Implement parameter masking. 11 years ago
Tony Wasserka f37e39deb9 Pica: Add debug utilities for dumping shaders. 11 years ago
Tony Wasserka 6ea003c7b5 Pica: Add debug utility functions for dumping geometry data. 11 years ago
Tony Wasserka 14b24a75b3 GSP: Update framebuffer information when necessary. 11 years ago
Tony Wasserka 590c206ac8 GSP: Implement SetBufferSwap. 11 years ago
Tony Wasserka e832bbe554 GSP: Add a helper function for convenience. 11 years ago
bunnei 613b0a8df8 Merge pull request #75 from xsacha/qt5
Fix threading for Qt5.
11 years ago
Sacha 1b1205cf73 Pass format to the QGLWidget and use atomic instead of mutex. 11 years ago
Sacha b044510fa9 Fix EmuThread loop by ensuring it exits properly.
Note: There is a pre-existing issue with booting a new game in that it keeps the old EmuThread.
The GL code now supports this but the Core still doesn't.
11 years ago
Sacha a3a70e56ac Fix the threading for GL Context in Qt5.
Connect the emu_thread start/finish to a moveContext slot.
11 years ago
bunnei fab2f28ea5 Merge pull request #73 from yuriks/remove-docs
Remove documentation for external modules.
11 years ago
Yuri Kunde Schlesner 04d53629db Remove documentation for external modules.
We don't need these and they clutter up the repository.
11 years ago
bunnei 0ffc966e42 Merge pull request #68 from archshift/readfile
Added FS functions to Archive and Archive_RomFS
11 years ago
archshift 4c4a01bf41 Added FS functions to Archive and Archive_RomFS 11 years ago
bunnei c3c66ad34d Merge pull request #46 from archshift/citrah
Removed unused citra.h
11 years ago
bunnei 59d512484a Merge pull request #58 from lioncash/clamp
Common: Add a clamp function to math_utils.h
11 years ago
bunnei c9add2e4b2 Merge pull request #64 from linkmauve/master
ARM: Remove a forgotten const in vfp.
11 years ago
Emmanuel Gil Peyrot ef27770a53 ARM: Remove a forgotten const in vfp. 11 years ago