Lines Matching refs:values
47 ctx.beginSection("GL_INVALID_ENUM is generated if target is not one of the allowable values.");
765 std::vector<deUint32> values (maxDrawBuffers+1);
769 values[0] = GL_NONE;
770 values[1] = GL_BACK;
771 values[2] = GL_COLOR_ATTACHMENT0;
772 values[3] = GL_DEPTH_ATTACHMENT;
787 ctx.beginSection("GL_INVALID_ENUM is generated if one of the values in bufs is not an accepted value.");
788 ctx.glDrawBuffers (2, &values[2]);
794 ctx.glDrawBuffers (1, &values[1]);
802 ctx.glDrawBuffers (2, &values[0]);
808 ctx.glDrawBuffers (1, &values[2]);
814 ctx.glDrawBuffers (1, &values[1]);
822 ctx.glDrawBuffers (-1, &values[1]);
824 ctx.glDrawBuffers (maxDrawBuffers+1, &values[0]);
843 ctx.beginSection("GL_INVALID_ENUM is generated if target is not one of the accepted values.");