org.lwjgl.opengles.GLDebugMessageCallback Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lwjgl-opengles Show documentation
Show all versions of lwjgl-opengles Show documentation
A royalty-free, cross-platform API for full-function 2D and 3D graphics on embedded systems - including consoles, phones, appliances and vehicles.
/*
* Copyright LWJGL. All rights reserved.
* License terms: https://www.lwjgl.org/license
* MACHINE GENERATED FILE, DO NOT EDIT
*/
package org.lwjgl.opengles;
import javax.annotation.*;
import org.lwjgl.system.*;
import static org.lwjgl.system.MemoryUtil.*;
/**
* Instances of this class may be passed to the {@link GLES32#glDebugMessageCallback DebugMessageCallback} method.
*
* Type
*
*
* void (*) (
* GLenum source,
* GLenum type,
* GLuint id,
* GLenum severity,
* GLsizei length,
* const GLchar *message,
* const void *userParam
* )
*/
public abstract class GLDebugMessageCallback extends Callback implements GLDebugMessageCallbackI {
/**
* Creates a {@code GLDebugMessageCallback} instance from the specified function pointer.
*
* @return the new {@code GLDebugMessageCallback}
*/
public static GLDebugMessageCallback create(long functionPointer) {
GLDebugMessageCallbackI instance = Callback.get(functionPointer);
return instance instanceof GLDebugMessageCallback
? (GLDebugMessageCallback)instance
: new Container(functionPointer, instance);
}
/** Like {@link #create(long) create}, but returns {@code null} if {@code functionPointer} is {@code NULL}. */
@Nullable
public static GLDebugMessageCallback createSafe(long functionPointer) {
return functionPointer == NULL ? null : create(functionPointer);
}
/** Creates a {@code GLDebugMessageCallback} instance that delegates to the specified {@code GLDebugMessageCallbackI} instance. */
public static GLDebugMessageCallback create(GLDebugMessageCallbackI instance) {
return instance instanceof GLDebugMessageCallback
? (GLDebugMessageCallback)instance
: new Container(instance.address(), instance);
}
protected GLDebugMessageCallback() {
super(SIGNATURE);
}
private GLDebugMessageCallback(long functionPointer) {
super(functionPointer);
}
/**
* Converts the specified {@link GLDebugMessageCallback} arguments to a String.
*
* This method may only be used inside a GLDebugMessageCallback invocation.
*
* @param length the GLDebugMessageCallback {@code length} argument
* @param message the GLDebugMessageCallback {@code message} argument
*
* @return the message as a String
*/
public static String getMessage(int length, long message) {
return memUTF8(memByteBuffer(message, length));
}
private static final class Container extends GLDebugMessageCallback {
private final GLDebugMessageCallbackI delegate;
Container(long functionPointer, GLDebugMessageCallbackI delegate) {
super(functionPointer);
this.delegate = delegate;
}
@Override
public void invoke(int source, int type, int id, int severity, int length, long message, long userParam) {
delegate.invoke(source, type, id, severity, length, message, userParam);
}
}
}