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

org.lwjgl.vulkan.VkInternalAllocationNotification Maven / Gradle / Ivy

Go to download

A new generation graphics and compute API that provides high-efficiency, cross-platform access to modern GPUs used in a wide variety of devices from PCs and consoles to mobile phones and embedded platforms.

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

import javax.annotation.*;

import org.lwjgl.system.*;

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

/**
 * Application-defined memory allocation notification function.
 * 
 * 
C Specification
* *

The type of {@code pfnInternalAllocation} is:

* *
 * typedef void (VKAPI_PTR *PFN_vkInternalAllocationNotification)(
 *     void*                                       pUserData,
 *     size_t                                      size,
 *     VkInternalAllocationType                    allocationType,
 *     VkSystemAllocationScope                     allocationScope);
* *
Description
* *

This is a purely informational callback.

* *
See Also
* *

{@link VkAllocationCallbacks}

*/ public abstract class VkInternalAllocationNotification extends Callback implements VkInternalAllocationNotificationI { /** * Creates a {@code VkInternalAllocationNotification} instance from the specified function pointer. * * @return the new {@code VkInternalAllocationNotification} */ public static VkInternalAllocationNotification create(long functionPointer) { VkInternalAllocationNotificationI instance = Callback.get(functionPointer); return instance instanceof VkInternalAllocationNotification ? (VkInternalAllocationNotification)instance : new Container(functionPointer, instance); } /** Like {@link #create(long) create}, but returns {@code null} if {@code functionPointer} is {@code NULL}. */ @Nullable public static VkInternalAllocationNotification createSafe(long functionPointer) { return functionPointer == NULL ? null : create(functionPointer); } /** Creates a {@code VkInternalAllocationNotification} instance that delegates to the specified {@code VkInternalAllocationNotificationI} instance. */ public static VkInternalAllocationNotification create(VkInternalAllocationNotificationI instance) { return instance instanceof VkInternalAllocationNotification ? (VkInternalAllocationNotification)instance : new Container(instance.address(), instance); } protected VkInternalAllocationNotification() { super(SIGNATURE); } private VkInternalAllocationNotification(long functionPointer) { super(functionPointer); } private static final class Container extends VkInternalAllocationNotification { private final VkInternalAllocationNotificationI delegate; Container(long functionPointer, VkInternalAllocationNotificationI delegate) { super(functionPointer); this.delegate = delegate; } @Override public void invoke(long pUserData, long size, int allocationType, int allocationScope) { delegate.invoke(pUserData, size, allocationType, allocationScope); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy