All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.lwjgl.nuklear.NkPluginAlloc Maven / Gradle / Ivy

There is a newer version: 3.3.6
Show newest version
/*
 * Copyright LWJGL. All rights reserved.
 * License terms: https://www.lwjgl.org/license
 * MACHINE GENERATED FILE, DO NOT EDIT
 */
package org.lwjgl.nuklear;

import org.lwjgl.system.*;

import static org.lwjgl.system.MemoryUtil.*;

public abstract class NkPluginAlloc extends Callback implements NkPluginAllocI {

    /** Creates a {@code NkPluginAlloc} instance from the specified function pointer. */
    public static NkPluginAlloc create(long functionPointer) {
        if (functionPointer == NULL) {
            return null;
        }

        NkPluginAllocI instance = Callback.get(functionPointer);
        return instance instanceof NkPluginAlloc
            ? (NkPluginAlloc)instance
            : new Container(functionPointer, instance);
    }

    /** Creates a {@code NkPluginAlloc} instance that delegates to the specified {@code NkPluginAllocI} instance. */
    public static NkPluginAlloc create(NkPluginAllocI instance) {
        return instance instanceof NkPluginAlloc
            ? (NkPluginAlloc)instance
            : new Container(instance.address(), instance);
    }

    protected NkPluginAlloc() {
        super(SIGNATURE);
    }

    private NkPluginAlloc(long functionPointer) {
        super(functionPointer);
    }

    private static final class Container extends NkPluginAlloc {

        private final NkPluginAllocI delegate;

        Container(long functionPointer, NkPluginAllocI delegate) {
            super(functionPointer);
            this.delegate = delegate;
        }

        @Override
        public long invoke(long handle, long old, long size) {
            return delegate.invoke(handle, old, size);
        }

    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy