aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
Commit message (Collapse)AuthorAge
* CMake cleanupGravatar Yuri Kunde Schlesner2014-09-01
| | | | | | | | Several cleanups to the buildsystem: - Do better factoring of common libs between platforms. - Add support to building on Windows. - Remove Qt4 support. - Re-sort file lists and add missing headers.
* Replace GLEW with a glLoadGen loader.Gravatar Yuri Kunde Schlesner2014-09-01
| | | | | | | | | This should fix the GL loading errors that occur in some drivers due to the use of deprecated functions by GLEW. Side benefits are more accurate auto-completion (deprecated function and symbols don't exist) and faster pointer loading (less entrypoints to load). In addition it removes an external library depency, simplifying the build system a bit and eliminating one set of binary libraries for Windows.
* Merge pull request #84 from bunnei/fix-hw-synchronizationGravatar bunnei2014-08-31
|\ | | | | Fix GPU/HW synchronization
* \ Merge pull request #82 from yuriks/addr-typesGravatar bunnei2014-08-30
|\ \ | | | | | | Introduce VAddr and PAddr typedefs for ARM addresses.
| | * GPU: Improve frame synchronization, increases compatibility with both ↵Gravatar bunnei2014-08-30
| | | | | | | | | | | | homebrew and retail applications.
| | * Core: Refactor core to use only one function for execution.Gravatar bunnei2014-08-30
| | | | | | | | | | | | | | | | | | Core: Cleaned up comment to be more readable. Citra: Changed loop to be more readable.
| | * Loader: Added support for loading raw BIN executables.Gravatar bunnei2014-08-30
| | | | | | | | | | | | | | | | | | - Useful for debugging homebrew Qt: Updated GUI to support loading .bin files.
| | * Threading: Fix thread starting to execute first instruction correctly.Gravatar bunnei2014-08-30
| | |
| | * srv::Initialize: Return "success" status code.Gravatar bunnei2014-08-30
| | |
| * | Introduce VAddr and PAddr typedefs for ARM addresses.Gravatar Yuri Kunde Schlesner2014-08-31
| |/
* | Merge pull request #80 from bunnei/fix-latest-libctruGravatar bunnei2014-08-28
|\ \ | |/ |/| | | Fixes Citra for the latest changes made to the "refactor" branch of libctru. - For reference, see: https://github.com/smealum/ctrulib/tree/refactor/libctru
| * Loader: Added support for loading raw BIN executables.Gravatar bunnei2014-08-28
| | | | | | | | | | | | - Useful for debugging homebrew Qt: Updated GUI to support loading .bin files.
| * Threading: Fix thread starting to execute first instruction correctly.Gravatar bunnei2014-08-28
| |
| * srv::Initialize: Return "success" status code.Gravatar bunnei2014-08-28
| |
* | Downgrade GLSL version to 1.50 (compatible with GL 3.2)Gravatar Yuri Kunde Schlesner2014-08-28
|/
* VideoCore: Fixes rendering issues on Qt and corrects framebuffer output size.Gravatar bunnei2014-08-26
|
* Rewrite of OpenGL renderer, including OS X supportGravatar Kevin Hartman2014-08-25
| | | | | | 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.
* Pica/Rasterizer: Clarify a TODO.Gravatar Tony Wasserka2014-08-25
|
* Pica/VertexShader: Fix a bug in the call stack handling.Gravatar Tony Wasserka2014-08-25
|
* Math: Warning fixes.Gravatar Tony Wasserka2014-08-25
|
* GPU: Fix a compiler warning about redundant semicolons.Gravatar Tony Wasserka2014-08-25
|
* Pica: Consolidate the primitive assembly code in PrimitiveAssembly and ↵Gravatar Tony Wasserka2014-08-25
| | | | GeometryDumper.
* Pica/Rasterizer: Add texturing support.Gravatar Tony Wasserka2014-08-25
|
* Pica/DebugUtils: Add convenient tev setup printer.Gravatar Tony Wasserka2014-08-25
|
* Pica/Rasterizer: Add initial implementation of texture combiners.Gravatar Tony Wasserka2014-08-25
|
* Pica: Add support for dumping textures.Gravatar Tony Wasserka2014-08-25
|
* Pica/Math: Improved the design of the Vec2/Vec3/Vec4 classes and simplified ↵Gravatar Tony Wasserka2014-08-25
| | | | | | | | 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>).
* Pica/VertexShader: Fix a bug in the bitfield definitions and add the ↵Gravatar Tony Wasserka2014-08-25
| | | | "negate" field for swizzlers.
* Pica/citra-qt: Replace command list view and command list debugging code ↵Gravatar Tony Wasserka2014-08-25
| | | | with something more sophisticated.
* Pica/CommandProcessor: Implement parameter masking.Gravatar Tony Wasserka2014-08-25
|
* Pica: Add debug utilities for dumping shaders.Gravatar Tony Wasserka2014-08-25
|
* Pica: Add debug utility functions for dumping geometry data.Gravatar Tony Wasserka2014-08-25
|
* GSP: Update framebuffer information when necessary.Gravatar Tony Wasserka2014-08-25
|
* GSP: Implement SetBufferSwap.Gravatar Tony Wasserka2014-08-25
|
* GSP: Add a helper function for convenience.Gravatar Tony Wasserka2014-08-25
|
* Pass format to the QGLWidget and use atomic instead of mutex.Gravatar Sacha2014-08-25
|
* Fix EmuThread loop by ensuring it exits properly.Gravatar Sacha2014-08-25
| | | | | 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.
* Fix the threading for GL Context in Qt5.Gravatar Sacha2014-08-25
| | | | Connect the emu_thread start/finish to a moveContext slot.
* Merge pull request #68 from archshift/readfileGravatar bunnei2014-08-22
|\ | | | | Added FS functions to Archive and Archive_RomFS
| * Added FS functions to Archive and Archive_RomFSGravatar archshift2014-08-22
| |
* | Merge pull request #46 from archshift/citrahGravatar bunnei2014-08-21
|\ \ | | | | | | Removed unused citra.h
* \ \ Merge pull request #58 from lioncash/clampGravatar bunnei2014-08-21
|\ \ \ | | | | | | | | Common: Add a clamp function to math_utils.h
* | | | ARM: Remove a forgotten const in vfp.Gravatar Emmanuel Gil Peyrot2014-08-20
| |_|/ |/| |
* | | Revert "Removed redundant loop in EmuThread::run()"Gravatar archshift2014-08-20
| | |
| | * Removed unused citra.hGravatar archshift2014-08-19
| | |
* | | Merge pull request #60 from xsacha/qt5Gravatar bunnei2014-08-19
|\ \ \ | | | | | | | | Use Qt5 by default for citra-qt project.
* \ \ \ Merge pull request #61 from lioncash/kernel-stuffGravatar bunnei2014-08-19
|\ \ \ \ | | | | | | | | | | Core: Use std::array for managing kernel object space
* \ \ \ \ Merge pull request #59 from lioncash/fwddeclGravatar bunnei2014-08-19
|\ \ \ \ \ | | | | | | | | | | | | Common: Get rid of an unnecessary forward declaration in symbols.h
| | | * | | Add Qt5 option. Use Qt5 by default.Gravatar Sacha2014-08-19
| |_|/ / / |/| | | |
| | | * | Common: Add a clamp function to math_utils.hGravatar Lioncash2014-08-19
| | | | |