Skip to content
Snippets Groups Projects
  1. Jan 04, 2023
  2. Nov 01, 2022
  3. Oct 30, 2022
  4. Oct 26, 2022
    • Niklas Haas's avatar
      shaders/sampling: refactor pl_shader_sample_ortho · 1544b073
      Niklas Haas authored
      Investigating a bug with broken yuv422 scaling on a cropped texture made
      me conclude that this API is fundamentally broken. We cannot discard the
      unused component from inside this function without knowing what the
      source crop was. We need it to be less magic and to move responsibility
      onto the API user.
      
      Since this is a significant break in API, rename it to
      `pl_shader_sample_ortho2` and preserve the original name for backwards
      compatibility. Annoying, but necessary, because otherwise this regresses
      current users of `pl_shader_sample_ortho` (e.g. vs-placebo).
      v5.229.0
      1544b073
    • Niklas Haas's avatar
      vulkan: don't assume host ptr imports are host mappable · e36aa7a3
      Niklas Haas authored
      The logic in `vk_buf_flush` treates buffers imported from
      PL_HANDLE_HOST_PTR identically to `host_mapped` buffers, but this
      assumption is only true if we assume that the host pointers were
      imported to a host-visible memory type. This is not always the case.
      
      Relax the restriction to only require invalidating mapped memory if the
      memory is actually mapped.
      
      Fixes: https://github.com/haasn/libplacebo/issues/146
      e36aa7a3
    • Niklas Haas's avatar
      3rdparty/glad: update to v2.0.1 · e07f2235
      Niklas Haas authored
      Pulls in a bug fix for building on some platforms we transitively care
      about.
      e07f2235
  5. Oct 25, 2022
  6. Oct 24, 2022
Loading