1. 06 Apr, 2019 14 commits
  2. 05 Apr, 2019 21 commits
  3. 04 Apr, 2019 5 commits
    • Lioncash's avatar
      gl_shader_decompiler: Rename GenerateTemporal() to GenerateTemporary() · 52746ed8
      Lioncash authored
      Temporal generally indicates a relation to time, but this is just
      creating a temporary, so this isn't really an accurate name for what the
      function is actually doing.
      52746ed8
    • ReinUsesLisp's avatar
      gl_shader_decompiler: Fix TXQ types · 88a3c05b
      ReinUsesLisp authored
      TXQ returns integer types. Shaders usually do:
      
      R0 = TXQ(); // => int
      R0 = static_cast<float>(R0);
      
      If we don't treat it as an integer, it will cast a binary float value as
      float - resulting in a corrupted number.
      88a3c05b
    • Lioncash's avatar
      hle/service: Resolve unused variable warnings · 7f506be2
      Lioncash authored
      In several places, we have request parsers where there's nothing to
      really parse, simply because the HLE function in question operates on
      buffers. In these cases we can just remove these instances altogether.
      
      In the other cases, we can retrieve the relevant members from the parser
      and at least log them out, giving them some use.
      7f506be2
    • Lioncash's avatar
      core: Add missing override specifiers where applicable · 5b0a9f8b
      Lioncash authored
      Applies the override specifier where applicable. In the case of
      destructors that are  defaulted in their definition, they can
      simply be removed.
      
      This also removes the unnecessary inclusions being done in audin_u and
      audrec_u, given their close proximity.
      5b0a9f8b
    • Lioncash's avatar
      video_core/renderer_opengl: Remove unnecessary includes · 3fd5998d
      Lioncash authored
      Quite a few unused includes have built up over time, particularly on
      core/memory.h. Removing these includes means the source files including
      those files will no longer need to be rebuilt if they're changed, making
      compilation slightly faster in this scenario.
      3fd5998d