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
  • tests
  • gl_tests
  • GLSLTest.cpp
Find file
BlameHistoryPermalink
  • jchen10's avatar
    Enable ParallelCompile for Mac · 828acb39
    jchen10 authored Jan 22, 2019
    Linked in parallel, GLSLTest_ES3.LargeNumberOfFloat4Parameters
    fails on the Mac asan bots. It looks a driver bug caused by
    handling some long GLSL expressions. This works around it by
    breaking down the expression in the test from:
        return a0 + a1 + ... + alast;
    to:
        vec4 sum = vec4(0, 0, 0, 0);
        sum += a0;
        sum += a1;
        ...
        sum += alast;
        return sum;
    
    This also fixes a CGLPixelFormat leak, although it's irrelevant
    to the bot failures.
    
    BUG=922936
    BUG=angleproject:3087
    BUG=angleproject:3047
    
    Change-Id: I20249ada43e9dd226f582a568ed4ed50a0e4375d
    Reviewed-on: https://chromium-review.googlesource.com/c/1426430Reviewed-by: 's avatarCorentin Wallez <cwallez@chromium.org>
    Reviewed-by: 's avatarGeoff Lang <geofflang@chromium.org>
    Commit-Queue: Jie A Chen <jie.a.chen@intel.com>
    828acb39
GLSLTest.cpp 152 KB
EditWeb IDE
×

Replace GLSLTest.cpp

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.