Exemple #1
0
func GetError() error {
	if errVal := C.alGetError(); errVal == C.AL_NO_ERROR {
		return nil
	} else {
		return Error{errVal}
	}
}
Exemple #2
0
Fichier : al.go Projet : nzlov/goal
/*
 * Error support.
 * Obtain the most recent error generated in the AL state machine.
 */
func GetError() ALenum {
	return ALenum(C.alGetError())
}
Exemple #3
0
func alGetError() int32 {
	return int32(C.alGetError())
}
Exemple #4
0
// GetError() returns the most recent error generated
// in the AL state machine.
func GetError() uint32 {
	return uint32(C.alGetError())
}