1. 09 Sep, 2018 1 commit
  2. 07 Sep, 2018 5 commits
  3. 06 Sep, 2018 4 commits
  4. 05 Sep, 2018 6 commits
  5. 04 Sep, 2018 3 commits
  6. 03 Sep, 2018 12 commits
  7. 02 Sep, 2018 2 commits
  8. 31 Aug, 2018 7 commits
    • Vulkan: Mega-refactor to VertexArrayVk. · 88fc6da3
      Jamie Madill authored
      This moves a lot of the code in VertexArrayVk into ContextVk. Having
      the code in a centralized place makes the code a bit more organized
      since the Context is reponsible for binding state to the command
      buffers. It also makes it easier to use dirty bits to track the command
      buffer state.
      
      Bug: angleproject:2786
      Change-Id: I5cefbb14028e8f3fe651f26e997ca88f8f1c7628
      Reviewed-on: https://chromium-review.googlesource.com/1188953
      Commit-Queue: Jamie Madill <jmadill@chromium.org>
      Reviewed-by: 's avatarGeoff Lang <geofflang@chromium.org>
    • Vulkan: Refactor VertexArrayVk::streamIndexData. · 253038d8
      Jamie Madill authored
      This enables us to use the same code for streaming client side index
      arrays and for translating buffers.
      
      Also includes a few more code cleanups.
      
      Bug: angleproject:2786
      Change-Id: Ic615d87cb50fd0acd8ab6b63ed334da4b1c40eff
      Reviewed-on: https://chromium-review.googlesource.com/1188952
      Commit-Queue: Jamie Madill <jmadill@chromium.org>
      Reviewed-by: 's avatarGeoff Lang <geofflang@chromium.org>
      Reviewed-by: 's avatarFrank Henigman <fjhenigman@chromium.org>
    • Fix EGLImage pixel format validation · 2eb54074
      Yuly Novikov authored
      This fixes the scenario when EGLImage source and target have different types.
      For example, a texture is created with unsigned format using glTexImage2D,
      it is used as a source of EGLImage with eglCreateImageKHR,
      and then the EGLImage is used to create a renderbuffer target with
      glEGLImageTargetRenderbufferStorageOES.
      
      OES_EGL_image doesn't specify what should happen in this case,
      but GL implementations (Nexus 5X) seem to allow using this renderbuffer in
      glFramebufferRenderbuffer and the resulting framebuffer is complete.
      Thus, in this case, instead of checking whether the renderbuffer format
      can be used in glFramebufferRenderbuffer, we need to check whether the
      original texture can be used in glFramebufferTexture2D.
      Similarly in reverse direction.
      
      Also, for the case of source renderbuffer and target texture,
      presume that glEGLImageTargetTexture2DOES will succeed regardless of
      renderbuffer format.
      
      1. Add isRenderable and isTexturable checks to egl::Image class,
         and perform different checks depending on source type.
      2. Add isRenderable check to FramebufferAttachment and delegate EGLImage
         attachments check to egl::Image.
      3. Use these checks in validation of EGLImageTargetTexture2D,
         EGLImageTargetRenderbufferStorage and when checking attachment completeness
      
      Bug: angleproject:2567
      
      Change-Id: I8e9f4a2930a4075a4d8464f62582c6825270187e
      Reviewed-on: https://chromium-review.googlesource.com/1192585
      Commit-Queue: Yuly Novikov <ynovikov@chromium.org>
      Reviewed-by: 's avatarGeoff Lang <geofflang@chromium.org>
    • Add stubs for A4A opt-in library. · abcb2b3b
      Ian Elliott authored
      Bug: angleproject:2794
      Change-Id: I9ba8abf5fdac4a1bae24bc78ece62337d24e903b
      Reviewed-on: https://chromium-review.googlesource.com/1196043
      Commit-Queue: Ian Elliott <ianelliott@google.com>
      Reviewed-by: 's avatarGeoff Lang <geofflang@chromium.org>
      Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org>
    • Add specification for ANGLE_texture_multisample. · 97dbf436
      Yunchao He authored
      The patch adds the specification for the ANGLE_texture_multisample
      extension, which enables the functionality of multisample texture.
      
      This extension is also the basis to expose multisample texture to
      web via a webgl extension.
      
      BUG=angleproject:2275
      BUG=angleproject:2775
      
      Change-Id: I21771ac1d7d3e2fad8bf5d5e0a5c5e082c8fe7a2
      Reviewed-on: https://chromium-review.googlesource.com/859917
      Commit-Queue: Yunchao He <yunchao.he@intel.com>
      Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org>
    • Roll VK deps forward as of 8/31/2018 · 3a181e3e
      Tobin Ehlis authored
      Roll Vulkan ANGLE dependencies forward as of 8/31/2018. This grabs some
      new validation checks including point-related checks that may be
      interesting for bug 2727.
      
      One of these checks, related to PointSize, is firing so I've added some
      code in the VK debug callback to suppress those error messages for now
      and filed a separate bug (2796) to fix that issue in the renderer.
      
      Had to overhaul the json gen script as validation changed how these are
      generated. They now use a base template with some strings replaced to
      account for platform and Vulkan header version. Offloaded all of that
      work to our existing json generate script which was previously more of
      an intelligent copy but now had some further intelligence for
      transforming from input template into final json files.
      
      Had to also roll glslang forward to meet shader validation dependency.
      
      Bug: angleproject:2727
      Change-Id: I929619cd258cddd6bc9c6743600e072c46736f5c
      Reviewed-on: https://chromium-review.googlesource.com/1194617Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org>
      Reviewed-by: 's avatarGeoff Lang <geofflang@chromium.org>
      Commit-Queue: Tobin Ehlis <tobine@google.com>
    • Vulkan: Allow gaps in vertex attributes by packing them. · 89e82979
      Geoff Lang authored
      Work around restrictions with setting null vertex buffers on command buffers
      by binding ranges of non-null buffers.
      
      Enable VertexAttributeTest on ES2/Vulkan
      
      BUG=angleproject:2792
      BUG=angleproject:2797
      
      Change-Id: Ief9db1e60c8c9045a4101abe859302d529decbcb
      Reviewed-on: https://chromium-review.googlesource.com/1194282
      Commit-Queue: Geoff Lang <geofflang@chromium.org>
      Reviewed-by: 's avatarGeoff Lang <geofflang@chromium.org>
      Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org>