summaryrefslogtreecommitdiff
path: root/src (follow)
Commit message (Expand)AuthorAgeFilesLines
* Fix null pointer deref.Gravatar Nicolae-Andrei Cociorba2019-10-181-10/+12
* Merge pull request #2994 from lioncash/fmtGravatar Rodrigo Locatti2019-10-182-40/+51
|\
| * video_core/shader/ast: Make ShowCurrentState() and SanityCheck() const member...Gravatar Lioncash2019-10-172-5/+5
| * video_core/shader/ast: Make ASTManager::Print a const member functionGravatar Lioncash2019-10-172-3/+3
| * video_core/shader/ast: Make ExprPrinter members privateGravatar Lioncash2019-10-171-1/+2
| * video_core/shader/ast: Make Indent() return a string_viewGravatar Lioncash2019-10-171-14/+24
| * video_core/shader/ast: Make Indent() privateGravatar Lioncash2019-10-171-9/+9
| * video_core/shader/ast: Rename Ident() to Indent()Gravatar Lioncash2019-10-171-13/+13
| * video_core/shader/ast: Make use of fmt where applicableGravatar Lioncash2019-10-171-14/+14
* | Merge pull request #2993 from lioncash/vulkan-exprGravatar Rodrigo Locatti2019-10-171-21/+23
|\ \
| * | vk_shader_decompiler: Mark operator() function parameters as const referencesGravatar Lioncash2019-10-171-21/+23
| |/
* | Merge pull request #2992 from lioncash/dmntGravatar bunnei2019-10-171-2/+2
|\ \
| * | dmnt_cheat_vm: Correct register Restore and ClearRegs behaviorGravatar Lioncash2019-10-171-2/+2
| |/
* | Merge pull request #2966 from FernandoS27/astc-formatsGravatar Rodrigo Locatti2019-10-174-79/+211
|\ \
| * | Surfaces: Implement R4G4B4A4U format.Gravatar Fernando Sahmkow2019-10-094-24/+41
| * | Surfaces: Implement ASTC 6x6 10x10 12x12 8x6 6x5Gravatar Fernando Sahmkow2019-10-094-70/+185
* | | Merge pull request #2979 from lioncash/macroGravatar Rodrigo Locatti2019-10-172-72/+79
|\ \ \
| * | | video_core/macro_interpreter: Make definitions of most private enums/unions h...Gravatar Lioncash2019-10-172-72/+79
* | | | Merge pull request #2989 from lioncash/apmGravatar Rodrigo Locatti2019-10-172-16/+36
|\ \ \ \
| * | | | apm/controller: Make SetPerformanceConfiguration() use an array of pairs over...Gravatar Lioncash2019-10-171-14/+34
| * | | | apm/controller: Make GetCurrentPerformanceMode() a const member functionGravatar Lioncash2019-10-172-2/+2
| | |_|/ | |/| |
* | | | core/core: Resolve -Wreorder warningsGravatar Lioncash2019-10-171-2/+2
* | | | core/memory/cheat_engine: Resolve -Wreorder warningsGravatar Lioncash2019-10-171-4/+3
|/ / /
* | | Merge pull request #2980 from lioncash/warnGravatar bunnei2019-10-173-5/+6
|\ \ \
| * | | control_flow: Silence truncation warningsGravatar Lioncash2019-10-152-4/+4
| * | | maxwell_3d: Silence truncation warningsGravatar Lioncash2019-10-151-1/+2
| |/ /
* | | Merge pull request #2978 from lioncash/doxygenGravatar Rodrigo Locatti2019-10-161-57/+78
|\ \ \
| * | | video_core/texture_cache: Amend Doxygen referencesGravatar Lioncash2019-10-151-57/+78
* | | | Merge pull request #2982 from lioncash/surfaceGravatar Rodrigo Locatti2019-10-161-2/+2
|\ \ \ \
| * | | | texture_cache: Avoid unnecessary surface copies within PickStrategy() and Try...Gravatar Lioncash2019-10-151-2/+2
| | |/ / | |/| |
* | | | Merge pull request #2912 from FernandoS27/async-fixesGravatar bunnei2019-10-1616-52/+67
|\ \ \ \
| * | | | AsyncGpu: Address FeedbackGravatar Fernando Sahmkow2019-10-112-2/+2
| * | | | GL_Renderer: Remove lefting snippet.Gravatar Fernando Sahmkow2019-10-041-2/+0
| * | | | NvFlinger: Remove leftover from corrections and clang format.Gravatar Fernando Sahmkow2019-10-041-4/+0
| * | | | Gl_Rasterizer: Protect CPU Memory mapping from multiple threads.Gravatar Fernando Sahmkow2019-10-042-0/+4
| * | | | Core: Wait for GPU to be idle before shutting down.Gravatar Fernando Sahmkow2019-10-047-0/+19
| * | | | Nvdrv: Correct Event setup in NvdrvGravatar Fernando Sahmkow2019-10-042-23/+14
| * | | | NVFlinger: Reverse the change that only signaled events on buffer acquire.Gravatar Fernando Sahmkow2019-10-042-20/+1
| * | | | Nvdrv: Do framelimiting only in the CPU ThreadGravatar Fernando Sahmkow2019-10-042-3/+4
| * | | | NvFlinger: Don't swap buffers if a frame is missing and always trigger event ...Gravatar Fernando Sahmkow2019-10-041-1/+3
| * | | | GPU_Async: Correct fences, display events and more.Gravatar Fernando Sahmkow2019-10-046-21/+38
| * | | | Nvdrv: Correct Async regression and avoid signaling empty buffer vsyncsGravatar Fernando Sahmkow2019-10-042-3/+9
* | | | | Merge pull request #2984 from lioncash/fallthrough2Gravatar Rodrigo Locatti2019-10-151-0/+1
|\ \ \ \ \
| * | | | | video_core/surface: Add missing break in PixelFormatFromTextureFormat()Gravatar Lioncash2019-10-151-0/+1
| | |/ / / | |/| | |
* | | | | Merge pull request #2981 from lioncash/copyGravatar Rodrigo Locatti2019-10-152-34/+32
|\ \ \ \ \
| * | | | | gl_shader_decompiler: Make ExprDecompiler's GetResult() a const member functionGravatar Lioncash2019-10-151-1/+1
| * | | | | gl_shader_decompiler: Use a std::string_view with GetDeclarationWithSuffix()Gravatar Lioncash2019-10-151-1/+1
| * | | | | gl_shader_decompiler: Fold flow_var constant into GetFlowVariable()Gravatar Lioncash2019-10-151-3/+1
| * | | | | gl_shader_decompiler: Mark ASTDecompiler/ExprDecompiler parameters as const r...Gravatar Lioncash2019-10-151-21/+21
| * | | | | gl_shader_decompiler: Pass by reference to GenerateTextureArgument()Gravatar Lioncash2019-10-151-2/+2