Skip to content
Snippets Groups Projects
  1. Sep 04, 2019
  2. Aug 30, 2019
    • Rodrigo Locatti's avatar
      video_core: Silent miscellaneous warnings (#2820) · 4d4f9cc1
      Rodrigo Locatti authored
      * texture_cache/surface_params: Remove unused local variable
      
      * rasterizer_interface: Add missing documentation commentary
      
      * maxwell_dma: Remove unused rasterizer reference
      
      * video_core/gpu: Sort member declaration order to silent -Wreorder warning
      
      * fermi_2d: Remove unused MemoryManager reference
      
      * video_core: Silent unused variable warnings
      
      * buffer_cache: Silent -Wreorder warnings
      
      * kepler_memory: Remove unused MemoryManager reference
      
      * gl_texture_cache: Add missing override
      
      * buffer_cache: Add missing include
      
      * shader/decode: Remove unused variables
      4d4f9cc1
  3. Aug 29, 2019
  4. Aug 21, 2019
  5. Aug 17, 2019
  6. Aug 09, 2019
    • Lioncash's avatar
      yuzu/CMakeLists: Remove qt5_wrap_ui macro usage · 5980aa1e
      Lioncash authored
      We can simply enable CMAKE_AUTOUIC and let CMake take care of handling
      the UI code generation for targets.
      
      As part of letting CMake automatically handle the header file parsing,
      we must not name includes with "ui_*" unless they're related to the
      output of the Qt UIC compiler. Because of this, we need to rename
      ui_settings, given it would conflict with this restriction.
      5980aa1e
  7. Aug 04, 2019
  8. Aug 02, 2019
  9. Jul 30, 2019
  10. Jul 26, 2019
  11. Jul 22, 2019
  12. Jul 20, 2019
  13. Jul 19, 2019
    • Fernando Sahmkow's avatar
      Kernel: Address Feedback · 024b5fe9
      Fernando Sahmkow authored
      024b5fe9
    • Fernando Sahmkow's avatar
    • Fernando Sahmkow's avatar
      VM_Manager: Align allocated memory to 256bytes · 9bede4ee
      Fernando Sahmkow authored
      This commit ensures that all backing memory allocated for the Guest CPU
      is aligned to 256 bytes. This due to how gpu memory works and the heavy
      constraints it has in the alignment of physical memory.
      9bede4ee
    • Lioncash's avatar
      service/audren_u: Handle audio USB output revision queries in ListAudioDeviceName() · 16730c4c
      Lioncash authored
      Audio devices use the supplied revision information in order to
      determine if USB audio output is able to be supported. In this case, we
      can only really handle using this revision information in
      ListAudioDeviceName(), where it checks if USB audio output is supported
      before supplying it as a device name.
      
      A few other scenarios exist where the revision info is checked, such as:
      
      - Early exiting from SetAudioDeviceOutputVolume if USB audio is
        attempted to be set when that device is unsupported.
      
      - Early exiting and returning 0.0f in GetAudioDeviceOutputVolume when
        USB output volume is queried and it's an unsupported device.
      
      - Falling back to AHUB headphones in GetActiveAudioDeviceName when the
        device type is USB output, but is unsupported based off the revision
        info.
      
      In order for these changes to also be implemented, a few other changes
      to the interface need to be made.
      
      Given we now properly handle everything about ListAudioDeviceName(), we
      no longer need to describe it as a stubbed function.
      16730c4c
    • Lioncash's avatar
      service/audren_u: Move revision testing code out of AudRenU · b9ebab71
      Lioncash authored
      The revision querying facilities are used by more than just audren. e.g.
      audio devices can use this to test whether or not USB audio output is
      supported.
      
      This will be used within the following change.
      b9ebab71
    • Lioncash's avatar
      service/audio: Remove global system accessors · ed0485c5
      Lioncash authored
      Trims out the lingering reliance on global state out of the audio code.
      ed0485c5
Loading