Skip to content

  • Projects
  • Groups
  • Snippets
  • Help
  • This project
    • Loading...
  • Sign in / Register
A
angle
  • Project
    • Overview
    • Details
    • Activity
    • Cycle Analytics
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
    • Charts
  • Issues 0
    • Issues 0
    • List
    • Board
    • Labels
    • Milestones
  • Merge Requests 0
    • Merge Requests 0
  • CI / CD
    • CI / CD
    • Pipelines
    • Jobs
    • Schedules
    • Charts
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Members
    • Members
  • Collapse sidebar
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Chen Yisong
  • angle
  • Repository

Switch branch/tag
  • angle
  • src
  • libANGLE
  • FrameCapture.h
Find file
BlameHistoryPermalink
  • Cody Northrop's avatar
    Capture/Replay: Track groups of strings · 34120d07
    Cody Northrop authored Aug 27, 2020
    When string counters were added, it accidentally broke
    transform feedback varyings.
    
    All the strings were combined, resulting in:
    
      const char *glTransformFeedbackVaryings_varyings_0[] = {
          R"(out_Posout_Aout_Bout_C)"
       };
    
    Instead, generate the counter for the entire group.
    
    This CL results in:
    
      const char *glTransformFeedbackVaryings_varyings_0[] = {
          R"(out_Pos)",
          R"(out_A)",
          R"(out_B)",
          R"(out_C)",
       };
    
    Test: Manhattan MEC works again
    Bug: angleproject:4941
    Change-Id: Ie605395942c9105ba234009989f41a2a1cd8c53e
    Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2381565Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org>
    Commit-Queue: Cody Northrop <cnorthrop@google.com>
    34120d07
FrameCapture.h 20.7 KB
EditWeb IDE
×

Replace FrameCapture.h

Attach a file by drag & drop or click to upload


Cancel
A new branch will be created in your fork and a new merge request will be started.