summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2015-08-06OpenGL: Fix state tracking in situations with reused object handlesYuri Kunde Schlesner
If an OpenGL object is created, bound to a binding using the state tracker, and then destroyed, a newly created object can be assigned the same numeric handle by OpenGL. However, even though it is a new object, and thus needs to be bound to the binding again, the state tracker compared the current and previous handles and concluded that no change needed to be made, leading to failure to bind objects in certain cases. This manifested as broken text in VVVVVV, which this commit fixes along with similar texturing problems in other games.
2015-08-05OpenGL: Remove redundant texture.enable_2d field from OpenGLStateYuri Kunde Schlesner
All uses of this field where it's false can just set the texture id to 0 instead.
2015-08-05Merge pull request #1018 from bbarenblat/masterbunnei
Handle invalid `Log::Level::Count`
2015-08-04Videocore: Implement simple vertex cachingYuri Kunde Schlesner
This gives a ~2/3 reduction in the amount of vertices that need to be processed through the vertex loaders and the vertex shader, yielding a good speedup.
2015-08-02Use UNREACHABLE macro for impossible cases in previous commitBenjamin Barenblat
Use the UNREACHABLE macro instead of `ASSERT(false, ...);`.
2015-08-02Common: Work around bug in MSVC2015 standard libraryYuri Kunde Schlesner
The char16_t/char32_t implementations aren't present in the library and cause linker errors. This is a known issue that wasn't fixed in VS2015 RTM.
2015-08-02Handle invalid `Log::Level::Count`Benjamin Barenblat
Add a case of `Log::Level::Count` to all switch statements that dispatch on `Log::Level`. The case simply asserts `false` and notes the invalid log level.
2015-07-31Save the path leading where the last file have been loadedLittleWhite
I use two variables to save the path for the ROMs and the symbols. Use of QSettings to avoid new member variable to the class. Global settings of QSettings is done in main.
2015-07-30Merge pull request #1008 from lioncash/pcbunnei
dyncom: Handle the case where PC is the source register for STR/VSTM/VLDM
2015-07-30Merge pull request #1006 from yuriks/fb-commit-profilebunnei
OpenGL: Add a profiler category measuring framebuffer readback
2015-07-29Merge pull request #1014 from lioncash/unused-warnbunnei
core: Eliminate some unused variable warnings
2015-07-29Merge pull request #1011 from lioncash/initializerbunnei
citra-qt: Adjust initializer list order
2015-07-29Merge pull request #963 from yuriks/gpu-fixesbunnei
Misc. GPU vertex loading fixes
2015-07-29Merge pull request #1013 from lioncash/unusedYuri Kunde Schlesner
dyncom: Remove an unused variable
2015-07-29core: Eliminate some unused variable warningsLioncash
2015-07-29dyncom: Remove an unused variableLioncash
This was used prior to InterpreterTranslate existing.
2015-07-29Merge pull request #1012 from lioncash/prototypebunnei
core: Fix missing prototype warnings
2015-07-29core: Fix missing prototype warningsLioncash
2015-07-29citra-qt: Adjust initializer list orderLioncash
Silences a warning.
2015-07-29citra-qt: Pass string by const referenceLioncash
2015-07-29Merge pull request #1009 from lioncash/tableYuri Kunde Schlesner
am_net: Update function table data
2015-07-29am_net: Add missing function to the function tableLioncash
2015-07-29am_net: Add correct function name to the function tableLioncash
2015-07-29Merge pull request #982 from Subv/homebunnei
Service/APT: Return proper parameters in GetLockHandle.
2015-07-29dyncom: Handle the case where PC is the source register for STR/VSTM/VLDMLioncash
2015-07-28dyncom: Handle left-operand PC correctly for data-processing opsLioncash
This is considered deprecated in the ARM manual (using PC as an operand), however, this is still able to be executed on the MPCore (which I'm quite sure would be rare to begin with).
2015-07-28Merge pull request #899 from zawata/Winsock-Deprecationbunnei
SOC:U : Fix WinSock function deprecation
2015-07-28OpenGL: Add a profiler category measuring framebuffer readbackYuri Kunde Schlesner
2015-07-28Update Start menu text to match with the real state of the emulator.LittleWhite
Move start menu text update in ShutdownGame as adviced by neobrain
2015-07-28Settings: Fix saving wrong values for input configurationTrung Do
2015-07-28Merge pull request #1003 from lioncash/armcruftbunnei
dyncom: Minor cleanups.
2015-07-28Merge pull request #873 from jroweboy/input_arrayTony Wasserka
Move input values into an array.
2015-07-28dyncom: Remove an unnecessary typedefLioncash
2015-07-28dyncom: Use enum class for instruction decoding resultsLioncash
2015-07-27Move input values into an arrayJames Rowe
2015-07-27dyncom: Remove code duplication regarding thumb instructionsLioncash
2015-07-27dyncom: Migrate exclusive memory access control into armstateLioncash
2015-07-27dyncom: Remove duplicated typedef and externLioncash
These are already present in arm_dyncom_dec.h.
2015-07-27Merge pull request #1001 from lioncash/armbunnei
dyncom: Centralize state-related functions.
2015-07-26Merge pull request #991 from yuriks/globjectsbunnei
OpenGL: Make OpenGL object resource wrappers fully inline
2015-07-26dyncom: Use std::array for register arraysLioncash
2015-07-26dyncom: Use ARMul_State as an objectLioncash
Gets rid of C-like parameter passing.
2015-07-26Merge pull request #992 from yuriks/hot-path-debugbunnei
VideoCore: #ifdef out some debugging routines
2015-07-26OpenGL: Make OpenGL object resource wrappers fully inlineYuri Kunde Schlesner
The functions are so simple that having them separate only bloats the code and hinders optimization.
2015-07-26Merge pull request #987 from yuriks/regnamesTony Wasserka
Videocore: Don't reinitialize register name map on every query.
2015-07-26Videocore: Don't reinitialize register name map on every queryYuri Kunde Schlesner
This greatly speeds up the command list debug widget.
2015-07-26Merge pull request #995 from linkmauve/remove-dead-optionYuri Kunde Schlesner
Remove dead gpu_refresh_rate option from the default ini file
2015-07-26Citra: Remove dead gpu_refresh_rate option from the default ini file.Emmanuel Gil Peyrot
2015-07-26Merge pull request #986 from Lectem/better_widgetsTony Wasserka
citra-qt: Improve pica command list widget.
2015-07-26Videocore: Simplify variables in vertex shader interpreterYuri Kunde Schlesner
Simplifies the code and gives a tiny speed-up.