Home | History | Annotate | Download | only in functional

Lines Matching refs:binaryFormat

175 	ctx.beginSection("GL_INVALID_ENUM is generated if binaryFormat is not an accepted value.");
182 ctx.beginSection("GL_INVALID_VALUE is generated if the data pointed to by binary does not match the format specified by binaryFormat.");
402 GLenum binaryFormat = -1;
416 ctx.glGetProgramBinary (program.getProgram(), 0, &binaryLength, &binaryFormat, &binaryPtr);
420 ctx.glGetProgramBinary (program.getProgram(), bufSize-1, &binaryLength, &binaryFormat, &binaryPtr);
433 ctx.glGetProgramBinary (programInvalid.getProgram(), bufSize, &binaryLength, &binaryFormat, &binaryPtr);
443 GLenum binaryFormat = -1;
455 ctx.glGetProgramBinary (srcProgram.getProgram(), bufSize, &binaryLength, &binaryFormat, &binaryBuf[0]);
459 ctx.glProgramBinary (dummyShader, binaryFormat, &binaryBuf[0], binaryLength);
463 ctx.beginSection("GL_INVALID_ENUM is generated if binaryFormat is not a value recognized by the implementation.");