1. 27 Feb, 2019 9 commits
  2. 26 Feb, 2019 2 commits
  3. 25 Feb, 2019 18 commits
  4. 24 Feb, 2019 8 commits
  5. 22 Feb, 2019 3 commits
    • ReinUsesLisp's avatar
      vk_scheduler: Implement a scheduler · f546fb35
      ReinUsesLisp authored
      The scheduler abstracts command buffer and fence management with an
      interface that's able to do OpenGL-like operations on Vulkan command
      buffers.
      
      It returns by value a command buffer and fence that have to be used for
      subsequent operations until Flush or Finish is executed, after that the
      current execution context (the pair of command buffers and fences) gets
      invalidated a new one must be fetched. Thankfully validation layers will
      quickly detect if this is skipped throwing an error due to modifications
      to a sent command buffer.
      f546fb35
    • bunnei's avatar
      Merge pull request #2138 from ReinUsesLisp/vulkan-memory-manager · 94b27bb8
      bunnei authored
      vk_memory_manager: Implement memory manager
      94b27bb8
    • Lioncash's avatar
      service/nvflinger: Store BufferQueue instances as regular data members · 90528f13
      Lioncash authored
      The NVFlinger service is already passed into services that need to
      guarantee its lifetime, so the BufferQueue instances will already live
      as long as they're needed. Making them std::shared_ptr instances in this
      case is unnecessary.
      90528f13