isReady method

bool isReady()

Implementation

bool isReady() {
	if ( programReady == false ) {
		programReady = gl.getProgramParameter( program!, COMPLETION_STATUS_KHR ).id;
	}
	return programReady;
}