{
  "_class" : "hudson.matrix.MatrixRun",
  "actions" : [
    {
      
    },
    {
      "_class" : "hudson.model.CauseAction",
      "causes" : [
        {
          "_class" : "hudson.model.Cause$UpstreamCause",
          "shortDescription" : "Started by upstream project \"jogl\" build number 1,315",
          "upstreamBuild" : 1315,
          "upstreamProject" : "jogl",
          "upstreamUrl" : "job/jogl/"
        }
      ]
    },
    {
      
    },
    {
      "_class" : "hudson.plugins.git.util.BuildData",
      "buildsByBranchName" : {
        "origin/master" : {
          "_class" : "hudson.plugins.git.util.Build",
          "buildNumber" : 1315,
          "buildResult" : None,
          "marked" : {
            "SHA1" : "53c6a6cde3b57b54c71b9c1dc341c46854e33487",
            "branch" : [
              {
                "SHA1" : "53c6a6cde3b57b54c71b9c1dc341c46854e33487",
                "name" : "origin/master"
              }
            ]
          },
          "revision" : {
            "SHA1" : "53c6a6cde3b57b54c71b9c1dc341c46854e33487",
            "branch" : [
              {
                "SHA1" : "53c6a6cde3b57b54c71b9c1dc341c46854e33487",
                "name" : "origin/master"
              }
            ]
          }
        }
      },
      "lastBuiltRevision" : {
        "SHA1" : "53c6a6cde3b57b54c71b9c1dc341c46854e33487",
        "branch" : [
          {
            "SHA1" : "53c6a6cde3b57b54c71b9c1dc341c46854e33487",
            "name" : "origin/master"
          }
        ]
      },
      "remoteUrls" : [
        "git://jogamp.org/srv/scm/jogl.git"
      ],
      "scmName" : ""
    },
    {
      "_class" : "hudson.plugins.git.GitTagAction"
    },
    {
      
    },
    {
      "_class" : "hudson.tasks.junit.TestResultAction",
      "failCount" : 8,
      "skipCount" : 0,
      "totalCount" : 939,
      "urlName" : "testReport"
    },
    {
      "_class" : "org.jenkinsci.plugins.displayurlapi.actions.RunDisplayAction"
    }
  ],
  "artifacts" : [
    
  ],
  "building" : False,
  "description" : None,
  "displayName" : "#1315",
  "duration" : 6257357,
  "estimatedDuration" : 3583845,
  "executor" : None,
  "fullDisplayName" : "jogl » macos-x86_64 #1315",
  "id" : "2014-07-29_21-14-37",
  "inProgress" : False,
  "keepLog" : False,
  "number" : 1315,
  "queueId" : -1,
  "result" : "UNSTABLE",
  "timestamp" : 1406661277000,
  "url" : "https://jogamp.org/chuck/job/jogl/label=macos-x86_64/1315/",
  "builtOn" : "macosx64-NV320M-10_6-jogamp-x64-sgothel-012",
  "changeSet" : {
    "_class" : "hudson.plugins.git.GitChangeSetList",
    "items" : [
      {
        "_class" : "hudson.plugins.git.GitChangeSet",
        "affectedPaths" : [
          "src/jogl/classes/javax/media/opengl/GLContext.java"
        ],
        "commitId" : "67444b99f42e5a6db282e8a7dbc0e633713d0d48",
        "timestamp" : 1406652186000,
        "author" : {
          "absoluteUrl" : "https://jogamp.org/chuck/user/sven%20gothel",
          "fullName" : "Sven Gothel"
        },
        "authorEmail" : "sgothel@jausoft.com",
        "comment" : "GLContext.hasNoDefaultVAO(): Remove ES 3.x, fixing issues w/ ES 3.x client side vertex arrays\u000a\u000aCommit 6136457f10d020c779adc78641d0048f77ab1635 defined hasNoDefaultVAO() as [ GL4, GL3, GLES3 ],\u000ahowever ES 3.x still supports (deprecated):\u000a  - client side vertex arrays\u000a  - default vertex array object (VAO)\u000a\u000aSetting a custom VAO leads to GL_INVALID_OPERATION for client side vertex arrays\u000aused w/ glVertexPointer(..).\u000a\u000aHence removing GLES3 from hasNoDefaultVAO().\u000a",
        "date" : "2014-07-29T18:43:06+0200",
        "id" : "67444b99f42e5a6db282e8a7dbc0e633713d0d48",
        "msg" : "GLContext.hasNoDefaultVAO(): Remove ES 3.x, fixing issues w/ ES 3.x",
        "paths" : [
          {
            "editType" : "edit",
            "file" : "src/jogl/classes/javax/media/opengl/GLContext.java"
          }
        ]
      },
      {
        "_class" : "hudson.plugins.git.GitChangeSet",
        "affectedPaths" : [
          "src/jogl/classes/javax/media/opengl/GLProfile.java",
          "src/jogl/classes/com/jogamp/gluegen/opengl/BuildComposablePipeline.java",
          "src/jogl/classes/jogamp/opengl/util/glsl/fixedfunc/FixedFuncHook.java",
          "make/scripts/tests.sh"
        ],
        "commitId" : "323fd68b6cce41de4980a909ef55273a98a8aad9",
        "timestamp" : 1406652730000,
        "author" : {
          "absoluteUrl" : "https://jogamp.org/chuck/user/sven%20gothel",
          "fullName" : "Sven Gothel"
        },
        "authorEmail" : "sgothel@jausoft.com",
        "comment" : "BuildComposablePipeline: Handle synthetic isGL* and getGL* more generic, allow FixedFunctionHook to properly determine it's identity\u000a\u000aBuildComposablePipeline: Handle synthetic isGL* and getGL* more generic, allow using a prologue hook\u000aas needed for FixedFunctionHook's 'isGL*core()', 'isGLES*Compatible()' and 'getGLProfile()' methods.\u000a\u000aThe latter FixedFunctionHook take the emulated GL profile GL2ES1 into account,\u000aallowing JOGL code to assume only having GL2ES1 available.\u000aOtherwise methods like Texture.enable(..) would skip the glEnable(TEXTURE_2D)\u000acall and FixedFunctionHook could not enable it's usage.\u000a\u000aGLProfile received a 'public static GLProfile createCustomGLProfile(final String profile, final GLProfile profileImpl)'\u000aallowing utilities like FixedFunctionHook to create a generic profile.\u000a\u000aBuildComposablePipeline sorts the methods before emitting for better readability.\u000a",
        "date" : "2014-07-29T18:52:10+0200",
        "id" : "323fd68b6cce41de4980a909ef55273a98a8aad9",
        "msg" : "BuildComposablePipeline: Handle synthetic isGL* and getGL* more generic,",
        "paths" : [
          {
            "editType" : "edit",
            "file" : "make/scripts/tests.sh"
          },
          {
            "editType" : "edit",
            "file" : "src/jogl/classes/javax/media/opengl/GLProfile.java"
          },
          {
            "editType" : "edit",
            "file" : "src/jogl/classes/jogamp/opengl/util/glsl/fixedfunc/FixedFuncHook.java"
          },
          {
            "editType" : "edit",
            "file" : "src/jogl/classes/com/jogamp/gluegen/opengl/BuildComposablePipeline.java"
          }
        ]
      },
      {
        "_class" : "hudson.plugins.git.GitChangeSet",
        "affectedPaths" : [
          "make/scripts/tests.sh",
          "src/jogl/classes/com/jogamp/opengl/util/glsl/ShaderCode.java"
        ],
        "commitId" : "c391da73631aa551ad73d88068efebdb1e67e650",
        "timestamp" : 1406653943000,
        "author" : {
          "absoluteUrl" : "https://jogamp.org/chuck/user/sven%20gothel",
          "fullName" : "Sven Gothel"
        },
        "authorEmail" : "sgothel@jausoft.com",
        "comment" : "Fix ShaderCode.es3_default_precision_fp: ES 3.x requires same precision for uniforms -> re-use es3_default_precision_vp; Fixes PointsDemoES2\u000a",
        "date" : "2014-07-29T19:12:23+0200",
        "id" : "c391da73631aa551ad73d88068efebdb1e67e650",
        "msg" : "Fix ShaderCode.es3_default_precision_fp: ES 3.x requires same precision",
        "paths" : [
          {
            "editType" : "edit",
            "file" : "make/scripts/tests.sh"
          },
          {
            "editType" : "edit",
            "file" : "src/jogl/classes/com/jogamp/opengl/util/glsl/ShaderCode.java"
          }
        ]
      },
      {
        "_class" : "hudson.plugins.git.GitChangeSet",
        "affectedPaths" : [
          "src/jogl/classes/jogamp/opengl/util/glsl/fixedfunc/FixedFuncHook.java"
        ],
        "commitId" : "53c6a6cde3b57b54c71b9c1dc341c46854e33487",
        "timestamp" : 1406653997000,
        "author" : {
          "absoluteUrl" : "https://jogamp.org/chuck/user/sven%20gothel",
          "fullName" : "Sven Gothel"
        },
        "authorEmail" : "sgothel@jausoft.com",
        "comment" : "FixedFuncHook: Use downstream gl.getGLProfile().getImpl() for custom GL2ES1 impl. profile, reflecting true implementing profile.\u000a",
        "date" : "2014-07-29T19:13:17+0200",
        "id" : "53c6a6cde3b57b54c71b9c1dc341c46854e33487",
        "msg" : "FixedFuncHook: Use downstream gl.getGLProfile().getImpl() for custom",
        "paths" : [
          {
            "editType" : "edit",
            "file" : "src/jogl/classes/jogamp/opengl/util/glsl/fixedfunc/FixedFuncHook.java"
          }
        ]
      }
    ],
    "kind" : "git"
  },
  "culprits" : [
    {
      "absoluteUrl" : "https://jogamp.org/chuck/user/code",
      "fullName" : "code"
    },
    {
      "absoluteUrl" : "https://jogamp.org/chuck/user/sgothel",
      "fullName" : "Sven Gothel"
    }
  ]
}