Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Externals: Add soundtouch | MerryMage | 2016-04-28 | 1 | -0/+0 |
| | |||||
* | microprofileui: Use correct printf specifier | Sam Spilsbury | 2016-04-23 | 1 | -0/+5 |
| | |||||
* | microprofile: Use std::abs | Sam Spilsbury | 2016-04-23 | 1 | -1/+1 |
| | | | | | Using the global-namespace C function will cause the wrong overload to get picked | ||||
* | Update to ext-boost with interval_map | tfarley | 2016-04-21 | 1 | -0/+0 |
| | |||||
* | Merge pull request #1517 from Lectem/fixSDLcmake | bunnei | 2016-03-23 | 1 | -1/+7 |
|\ | | | | | fix SDL2 detection for Visual | ||||
| * | fix SDL2 detection for Visual | Lectem | 2016-03-14 | 1 | -1/+7 |
| | | |||||
* | | Update nihstro to latest master | Jannik Vogel | 2016-03-15 | 1 | -0/+0 |
|/ | |||||
* | externals: Remove unused GLFW library from the repo. | bunnei | 2016-03-04 | 15 | -3718/+0 |
| | |||||
* | Dependencies: Remove GLFW, Add SDL2 | MerryMage | 2016-03-02 | 2 | -0/+252 |
| | | | | | | | | | | | | | | citra: Remove GLFW, Add SDL2 FindSDL2: Do not CACHE SDL2_* variables if library is not found EmuWindow_SDL2: Set minimal client area at initialisation time EmuWindow_SDL2: Corrections EmuWindow_SDL2: Fix no decorations on startup on OS X cmake: windows_copy_files | ||||
* | Externals: Regenerate GLAD with GL_KHR_debug support. | Emmanuel Gil Peyrot | 2015-10-17 | 2 | -384/+591 |
| | |||||
* | CMake: Add missing library required by Linux for compiling glad | Yuri Kunde Schlesner | 2015-09-07 | 1 | -0/+3 |
| | |||||
* | Replace the previous OpenGL loader with a glad-generated 3.3 one | Yuri Kunde Schlesner | 2015-08-30 | 5 | -0/+3966 |
| | | | | | | The main advantage of switching to glad from glLoadGen is that, apart from being actively maintained, it supports a customizable entrypoint loader function, which makes it possible to also support OpenGL ES. | ||||
* | Integrate the MicroProfile profiling library | Yuri Kunde Schlesner | 2015-08-25 | 4 | -0/+10794 |
| | | | | | This brings goodies such as a configurable user interface and multi-threaded timeline view. | ||||
* | Update boost external to v1.59.0 | Yuri Kunde Schlesner | 2015-08-17 | 1 | -0/+0 |
| | |||||
* | Shader: Initial implementation of x86_x64 JIT compiler for Pica vertex shaders. | bunnei | 2015-08-16 | 1 | -0/+0 |
| | | | | | - Config: Add an option for selecting to use shader JIT or interpreter. - Qt: Add a menu option for enabling/disabling the shader JIT. | ||||
* | Update nihstro to latest master | Yuri Kunde Schlesner | 2015-07-26 | 1 | -0/+0 |
| | |||||
* | getopt: Fix macro redefinition warning | Yuri Kunde Schlesner | 2015-07-14 | 1 | -1/+0 |
| | | | | We already define _CRT_SECURE_NO_WARNINGS | ||||
* | getopt: Fix compilation settings | Yuri Kunde Schlesner | 2015-07-14 | 1 | -2/+2 |
| | | | | | | INTERFACE doesn't define the symbol when compiling the library itself. PUBLIC should be used when the definition is needed both by the library and by the users. | ||||
* | Implement new argument parsing using getopt and add the corresponding library to externals | Greg Wicks | 2015-07-12 | 3 | -0/+1110 |
| | |||||
* | Update bundled GLFW to 3.1.1 | Yuri Kunde Schlesner | 2015-05-25 | 32 | -673/+1877 |
| | | | | | It may be necessary to fix the CMake paths manually for an exsting CMake cache after this change. | ||||
* | vertex_shader: Implement MADI instruction. | bunnei | 2015-05-10 | 1 | -0/+0 |
| | | | | nihstro: Update submodule to latest upstream/master to support MADI instruction decoding. | ||||
* | Update nihstro submodule to the initial release version. | archshift | 2015-03-08 | 1 | -0/+0 |
| | | | | Includes more opcodes to implement in the future. | ||||
* | Update ext-boost commit again which got reverted by #500 | Yuri Kunde Schlesner | 2015-02-12 | 1 | -0/+0 |
| | |||||
* | Asserts: break/crash program, fit to style guide; log.h->assert.h | archshift | 2015-02-11 | 1 | -0/+0 |
| | | | | | | | Involves making asserts use printf instead of the log functions (log functions are asynchronous and, as such, the log won't be printed in time) As such, the log type argument was removed (printf obviously can't use it, and it's made obsolete by the file and line printing) Also removed some GEKKO cruft. | ||||
* | Update boost external | Yuri Kunde Schlesner | 2015-02-02 | 1 | -0/+0 |
| | |||||
* | Pica/VertexShader: Implement JMPC/JMPU/CALLC/CALLU. | Tony Wasserka | 2015-01-13 | 1 | -0/+0 |
| | |||||
* | Kernel: Start using boost::intrusive_ptr for lifetime management | Yuri Kunde Schlesner | 2015-01-09 | 1 | -0/+0 |
| | |||||
* | Clipper: Avoid dynamic allocations | Yuri Kunde Schlesner | 2014-12-29 | 1 | -0/+0 |
| | | | | | | The triangle clipper was allocating its temporary input, output and work buffers using a std::vector. Since this is a hot path, it's desirable to use stack allocation instead. | ||||
* | Add nihstro (a 3DS shader tools suite) as a submodule. | Tony Wasserka | 2014-12-20 | 1 | -0/+0 |
| | |||||
* | externals: Add boost submodule. | Tony Wasserka | 2014-12-07 | 1 | -0/+0 |
| | |||||
* | Added configuration file system. | archshift | 2014-10-08 | 2 | -0/+11 |
| | | | | Uses QSettings on citra-qt, and inih on citra-cli. | ||||
* | CMake cleanup | Yuri Kunde Schlesner | 2014-09-01 | 1 | -6/+9 |
| | | | | | | | | 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. | ||||
* | Update GLFW to 3.0.4 and include x64 lib for MSVC | Yuri Kunde Schlesner | 2014-09-01 | 28 | -61/+91 |
| | |||||
* | Replace GLEW with a glLoadGen loader. | Yuri Kunde Schlesner | 2014-09-01 | 23 | -21302/+0 |
| | | | | | | | | | 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. | ||||
* | Remove documentation for external modules. | Yuri Kunde Schlesner | 2014-08-23 | 245 | -29154/+0 |
| | | | | We don't need these and they clutter up the repository. | ||||
* | Add Qt5 option. Use Qt5 by default. | Sacha | 2014-08-19 | 3 | -5/+9 |
| | |||||
* | CMake Cleanup | Sacha | 2014-08-18 | 1 | -4/+6 |
| | |||||
* | Indent fixes | archshift | 2014-05-19 | 1 | -29/+29 |
| | |||||
* | Added FindGLEW to cmake-modules | archshift | 2014-05-17 | 1 | -0/+47 |
| | |||||
* | fixes to scm_rev generation to make it conistent with windows build | bunnei | 2014-04-24 | 1 | -0/+28 |
| | |||||
* | added scm rev generation on Linux/cmake | bunnei | 2014-04-24 | 2 | -0/+168 |
| | |||||
* | adding initial project layout | ShizZy | 2013-08-30 | 287 | -0/+55230 |