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

org.lwjgl.vulkan.KHRPipelineExecutableProperties 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 java.nio.*;

import org.lwjgl.system.*;

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

/**
 * When a pipeline is created, its state and shaders are compiled into zero or more device-specific executables, which are used when executing commands against that pipeline. This extension adds a mechanism to query properties and statistics about the different executables produced by the pipeline compilation process. This is intended to be used by debugging and performance tools to allow them to provide more detailed information to the user. Certain compile-time shader statistics provided through this extension may be useful to developers for debugging or performance analysis.
 * 
 * 
VK_KHR_pipeline_executable_properties
* *
*
Name String
*
{@code VK_KHR_pipeline_executable_properties}
*
Extension Type
*
Device extension
*
Registered Extension Number
*
270
*
Revision
*
1
*
Extension and Version Dependencies
*
    *
  • Requires Vulkan 1.0
  • *
  • Requires {@link KHRGetPhysicalDeviceProperties2 VK_KHR_get_physical_device_properties2}
  • *
*
Special Use
*
*
Contact
*
*
* *
Other Extension Metadata
* *
*
Last Modified Date
*
2019-05-28
*
IP Status
*
No known IP claims.
*
Contributors
*
    *
  • Jason Ekstrand, Intel
  • *
  • Ian Romanick, Intel
  • *
  • Kenneth Graunke, Intel
  • *
  • Baldur Karlsson, Valve
  • *
  • Jesse Hall, Google
  • *
  • Jeff Bolz, Nvidia
  • *
  • Piers Daniel, Nvidia
  • *
  • Tobias Hector, AMD
  • *
  • Jan-Harald Fredriksen, ARM
  • *
  • Tom Olson, ARM
  • *
  • Daniel Koch, Nvidia
  • *
  • Spencer Fricke, Samsung
  • *
*
*/ public class KHRPipelineExecutableProperties { /** The extension specification version. */ public static final int VK_KHR_PIPELINE_EXECUTABLE_PROPERTIES_SPEC_VERSION = 1; /** The extension name. */ public static final String VK_KHR_PIPELINE_EXECUTABLE_PROPERTIES_EXTENSION_NAME = "VK_KHR_pipeline_executable_properties"; /** * Extends {@code VkStructureType}. * *
Enum values:
* *
    *
  • {@link #VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PIPELINE_EXECUTABLE_PROPERTIES_FEATURES_KHR STRUCTURE_TYPE_PHYSICAL_DEVICE_PIPELINE_EXECUTABLE_PROPERTIES_FEATURES_KHR}
  • *
  • {@link #VK_STRUCTURE_TYPE_PIPELINE_INFO_KHR STRUCTURE_TYPE_PIPELINE_INFO_KHR}
  • *
  • {@link #VK_STRUCTURE_TYPE_PIPELINE_EXECUTABLE_PROPERTIES_KHR STRUCTURE_TYPE_PIPELINE_EXECUTABLE_PROPERTIES_KHR}
  • *
  • {@link #VK_STRUCTURE_TYPE_PIPELINE_EXECUTABLE_INFO_KHR STRUCTURE_TYPE_PIPELINE_EXECUTABLE_INFO_KHR}
  • *
  • {@link #VK_STRUCTURE_TYPE_PIPELINE_EXECUTABLE_STATISTIC_KHR STRUCTURE_TYPE_PIPELINE_EXECUTABLE_STATISTIC_KHR}
  • *
  • {@link #VK_STRUCTURE_TYPE_PIPELINE_EXECUTABLE_INTERNAL_REPRESENTATION_KHR STRUCTURE_TYPE_PIPELINE_EXECUTABLE_INTERNAL_REPRESENTATION_KHR}
  • *
*/ public static final int VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PIPELINE_EXECUTABLE_PROPERTIES_FEATURES_KHR = 1000269000, VK_STRUCTURE_TYPE_PIPELINE_INFO_KHR = 1000269001, VK_STRUCTURE_TYPE_PIPELINE_EXECUTABLE_PROPERTIES_KHR = 1000269002, VK_STRUCTURE_TYPE_PIPELINE_EXECUTABLE_INFO_KHR = 1000269003, VK_STRUCTURE_TYPE_PIPELINE_EXECUTABLE_STATISTIC_KHR = 1000269004, VK_STRUCTURE_TYPE_PIPELINE_EXECUTABLE_INTERNAL_REPRESENTATION_KHR = 1000269005; /** * Extends {@code VkPipelineCreateFlagBits}. * *
Enum values:
* *
    *
  • {@link #VK_PIPELINE_CREATE_CAPTURE_STATISTICS_BIT_KHR PIPELINE_CREATE_CAPTURE_STATISTICS_BIT_KHR}
  • *
  • {@link #VK_PIPELINE_CREATE_CAPTURE_INTERNAL_REPRESENTATIONS_BIT_KHR PIPELINE_CREATE_CAPTURE_INTERNAL_REPRESENTATIONS_BIT_KHR}
  • *
*/ public static final int VK_PIPELINE_CREATE_CAPTURE_STATISTICS_BIT_KHR = 0x40, VK_PIPELINE_CREATE_CAPTURE_INTERNAL_REPRESENTATIONS_BIT_KHR = 0x80; /** * VkPipelineExecutableStatisticFormatKHR - Enum describing a pipeline executable statistic * *
Description
* *
    *
  • {@link #VK_PIPELINE_EXECUTABLE_STATISTIC_FORMAT_BOOL32_KHR PIPELINE_EXECUTABLE_STATISTIC_FORMAT_BOOL32_KHR} specifies that the statistic is returned as a 32-bit boolean value which must be either {@link VK10#VK_TRUE TRUE} or {@link VK10#VK_FALSE FALSE} and should be read from the {@code b32} field of {@link VkPipelineExecutableStatisticValueKHR}.
  • *
  • {@link #VK_PIPELINE_EXECUTABLE_STATISTIC_FORMAT_INT64_KHR PIPELINE_EXECUTABLE_STATISTIC_FORMAT_INT64_KHR} specifies that the statistic is returned as a signed 64-bit integer and should be read from the {@code i64} field of {@link VkPipelineExecutableStatisticValueKHR}.
  • *
  • {@link #VK_PIPELINE_EXECUTABLE_STATISTIC_FORMAT_UINT64_KHR PIPELINE_EXECUTABLE_STATISTIC_FORMAT_UINT64_KHR} specifies that the statistic is returned as an unsigned 64-bit integer and should be read from the {@code u64} field of {@link VkPipelineExecutableStatisticValueKHR}.
  • *
  • {@link #VK_PIPELINE_EXECUTABLE_STATISTIC_FORMAT_FLOAT64_KHR PIPELINE_EXECUTABLE_STATISTIC_FORMAT_FLOAT64_KHR} specifies that the statistic is returned as a 64-bit floating-point value and should be read from the {@code f64} field of {@link VkPipelineExecutableStatisticValueKHR}.
  • *
* *
See Also
* *

{@link VkPipelineExecutableStatisticKHR}

*/ public static final int VK_PIPELINE_EXECUTABLE_STATISTIC_FORMAT_BOOL32_KHR = 0, VK_PIPELINE_EXECUTABLE_STATISTIC_FORMAT_INT64_KHR = 1, VK_PIPELINE_EXECUTABLE_STATISTIC_FORMAT_UINT64_KHR = 2, VK_PIPELINE_EXECUTABLE_STATISTIC_FORMAT_FLOAT64_KHR = 3; protected KHRPipelineExecutableProperties() { throw new UnsupportedOperationException(); } // --- [ vkGetPipelineExecutablePropertiesKHR ] --- /** * Unsafe version of: {@link #vkGetPipelineExecutablePropertiesKHR GetPipelineExecutablePropertiesKHR} * * @param pExecutableCount a pointer to an integer related to the number of pipeline executables available or queried, as described below. */ public static int nvkGetPipelineExecutablePropertiesKHR(VkDevice device, long pPipelineInfo, long pExecutableCount, long pProperties) { long __functionAddress = device.getCapabilities().vkGetPipelineExecutablePropertiesKHR; if (CHECKS) { check(__functionAddress); } return callPPPPI(device.address(), pPipelineInfo, pExecutableCount, pProperties, __functionAddress); } /** * Get the executables associated with a pipeline. * *
C Specification
* *

When a pipeline is created, its state and shaders are compiled into zero or more device-specific executables, which are used when executing commands against that pipeline. To query the properties of these pipeline executables, call:

* *

     * VkResult vkGetPipelineExecutablePropertiesKHR(
     *     VkDevice                                    device,
     *     const VkPipelineInfoKHR*                    pPipelineInfo,
     *     uint32_t*                                   pExecutableCount,
     *     VkPipelineExecutablePropertiesKHR*          pProperties);
* *
Description
* *

If {@code pProperties} is {@code NULL}, then the number of pipeline executables associated with the pipeline is returned in {@code pExecutableCount}. Otherwise, {@code pExecutableCount} must point to a variable set by the user to the number of elements in the {@code pProperties} array, and on return the variable is overwritten with the number of structures actually written to {@code pProperties}. If {@code pExecutableCount} is less than the number of pipeline executables associated with the pipeline, at most {@code pExecutableCount} structures will be written, and {@link VK10#VK_INCOMPLETE INCOMPLETE} will be returned instead of {@link VK10#VK_SUCCESS SUCCESS}, to indicate that not all the available properties were returned.

* *
Valid Usage
* * * *
Valid Usage (Implicit)
* *
    *
  • {@code device} must be a valid {@code VkDevice} handle
  • *
  • {@code pPipelineInfo} must be a valid pointer to a valid {@link VkPipelineInfoKHR} structure
  • *
  • {@code pExecutableCount} must be a valid pointer to a {@code uint32_t} value
  • *
  • If the value referenced by {@code pExecutableCount} is not 0, and {@code pProperties} is not {@code NULL}, {@code pProperties} must be a valid pointer to an array of {@code pExecutableCount} {@link VkPipelineExecutablePropertiesKHR} structures
  • *
* *
Return Codes
* *
*
On success, this command returns
*
    *
  • {@link VK10#VK_SUCCESS SUCCESS}
  • *
  • {@link VK10#VK_INCOMPLETE INCOMPLETE}
  • *
*
On failure, this command returns
*
    *
  • {@link VK10#VK_ERROR_OUT_OF_HOST_MEMORY ERROR_OUT_OF_HOST_MEMORY}
  • *
  • {@link VK10#VK_ERROR_OUT_OF_DEVICE_MEMORY ERROR_OUT_OF_DEVICE_MEMORY}
  • *
*
* *
See Also
* *

{@link VkPipelineExecutablePropertiesKHR}, {@link VkPipelineInfoKHR}

* * @param device the device that created the pipeline. * @param pPipelineInfo describes the pipeline being queried. * @param pExecutableCount a pointer to an integer related to the number of pipeline executables available or queried, as described below. * @param pProperties either {@code NULL} or a pointer to an array of {@link VkPipelineExecutablePropertiesKHR} structures. */ @NativeType("VkResult") public static int vkGetPipelineExecutablePropertiesKHR(VkDevice device, @NativeType("VkPipelineInfoKHR const *") VkPipelineInfoKHR pPipelineInfo, @NativeType("uint32_t *") IntBuffer pExecutableCount, @Nullable @NativeType("VkPipelineExecutablePropertiesKHR *") VkPipelineExecutablePropertiesKHR.Buffer pProperties) { if (CHECKS) { check(pExecutableCount, 1); checkSafe(pProperties, pExecutableCount.get(pExecutableCount.position())); } return nvkGetPipelineExecutablePropertiesKHR(device, pPipelineInfo.address(), memAddress(pExecutableCount), memAddressSafe(pProperties)); } // --- [ vkGetPipelineExecutableStatisticsKHR ] --- /** * Unsafe version of: {@link #vkGetPipelineExecutableStatisticsKHR GetPipelineExecutableStatisticsKHR} * * @param pStatisticCount a pointer to an integer related to the number of statistics available or queried, as described below. */ public static int nvkGetPipelineExecutableStatisticsKHR(VkDevice device, long pExecutableInfo, long pStatisticCount, long pStatistics) { long __functionAddress = device.getCapabilities().vkGetPipelineExecutableStatisticsKHR; if (CHECKS) { check(__functionAddress); } return callPPPPI(device.address(), pExecutableInfo, pStatisticCount, pStatistics, __functionAddress); } /** * Get compile time statistics associated with a pipeline executable. * *
C Specification
* *

Each pipeline executable may have a set of statistics associated with it that are generated by the pipeline compilation process. These statistics may include things such as instruction counts, amount of spilling (if any), maximum number of simultaneous threads, or anything else which may aid developers in evaluating the expected performance of a shader. To query the compile-time statistics associated with a pipeline executable, call:

* *

     * VkResult vkGetPipelineExecutableStatisticsKHR(
     *     VkDevice                                    device,
     *     const VkPipelineExecutableInfoKHR*          pExecutableInfo,
     *     uint32_t*                                   pStatisticCount,
     *     VkPipelineExecutableStatisticKHR*           pStatistics);
* *
Description
* *

If {@code pStatistics} is {@code NULL}, then the number of statistics associated with the pipeline executable is returned in {@code pStatisticCount}. Otherwise, {@code pStatisticCount} must point to a variable set by the user to the number of elements in the {@code pStatistics} array, and on return the variable is overwritten with the number of structures actually written to {@code pStatistics}. If {@code pStatisticCount} is less than the number of statistics associated with the pipeline executable, at most {@code pStatisticCount} structures will be written, and {@link VK10#VK_INCOMPLETE INCOMPLETE} will be returned instead of {@link VK10#VK_SUCCESS SUCCESS}, to indicate that not all the available statistics were returned.

* *
Valid Usage
* *
    *
  • {@code pipelineExecutableInfo} must be enabled
  • *
  • {@code pipeline} member of {@code pExecutableInfo} must have been created with {@code device}
  • *
  • {@code pipeline} member of {@code pExecutableInfo} must have been created with {@link #VK_PIPELINE_CREATE_CAPTURE_STATISTICS_BIT_KHR PIPELINE_CREATE_CAPTURE_STATISTICS_BIT_KHR}
  • *
* *
Valid Usage (Implicit)
* *
    *
  • {@code device} must be a valid {@code VkDevice} handle
  • *
  • {@code pExecutableInfo} must be a valid pointer to a valid {@link VkPipelineExecutableInfoKHR} structure
  • *
  • {@code pStatisticCount} must be a valid pointer to a {@code uint32_t} value
  • *
  • If the value referenced by {@code pStatisticCount} is not 0, and {@code pStatistics} is not {@code NULL}, {@code pStatistics} must be a valid pointer to an array of {@code pStatisticCount} {@link VkPipelineExecutableStatisticKHR} structures
  • *
* *
Return Codes
* *
*
On success, this command returns
*
    *
  • {@link VK10#VK_SUCCESS SUCCESS}
  • *
  • {@link VK10#VK_INCOMPLETE INCOMPLETE}
  • *
*
On failure, this command returns
*
    *
  • {@link VK10#VK_ERROR_OUT_OF_HOST_MEMORY ERROR_OUT_OF_HOST_MEMORY}
  • *
  • {@link VK10#VK_ERROR_OUT_OF_DEVICE_MEMORY ERROR_OUT_OF_DEVICE_MEMORY}
  • *
*
* *
See Also
* *

{@link VkPipelineExecutableInfoKHR}, {@link VkPipelineExecutableStatisticKHR}

* * @param device the device that created the pipeline. * @param pExecutableInfo describes the pipeline executable being queried. * @param pStatisticCount a pointer to an integer related to the number of statistics available or queried, as described below. * @param pStatistics either {@code NULL} or a pointer to an array of {@link VkPipelineExecutableStatisticKHR} structures. */ @NativeType("VkResult") public static int vkGetPipelineExecutableStatisticsKHR(VkDevice device, @NativeType("VkPipelineExecutableInfoKHR const *") VkPipelineExecutableInfoKHR pExecutableInfo, @NativeType("uint32_t *") IntBuffer pStatisticCount, @Nullable @NativeType("VkPipelineExecutableStatisticKHR *") VkPipelineExecutableStatisticKHR.Buffer pStatistics) { if (CHECKS) { check(pStatisticCount, 1); checkSafe(pStatistics, pStatisticCount.get(pStatisticCount.position())); } return nvkGetPipelineExecutableStatisticsKHR(device, pExecutableInfo.address(), memAddress(pStatisticCount), memAddressSafe(pStatistics)); } // --- [ vkGetPipelineExecutableInternalRepresentationsKHR ] --- /** * Unsafe version of: {@link #vkGetPipelineExecutableInternalRepresentationsKHR GetPipelineExecutableInternalRepresentationsKHR} * * @param pInternalRepresentationCount a pointer to an integer related to the number of internal representations available or queried, as described below. */ public static int nvkGetPipelineExecutableInternalRepresentationsKHR(VkDevice device, long pExecutableInfo, long pInternalRepresentationCount, long pInternalRepresentations) { long __functionAddress = device.getCapabilities().vkGetPipelineExecutableInternalRepresentationsKHR; if (CHECKS) { check(__functionAddress); } return callPPPPI(device.address(), pExecutableInfo, pInternalRepresentationCount, pInternalRepresentations, __functionAddress); } /** * Get internal representations of the pipeline executable. * *
C Specification
* *

Each pipeline executable may have one or more text or binary internal representations associated with it which are generated as part of the compile process. These may include the final shader assembly, a binary form of the compiled shader, or the shader compiler’s internal representation at any number of intermediate compile steps. To query the internal representations associated with a pipeline executable, call:

* *

     * VkResult vkGetPipelineExecutableInternalRepresentationsKHR(
     *     VkDevice                                    device,
     *     const VkPipelineExecutableInfoKHR*          pExecutableInfo,
     *     uint32_t*                                   pInternalRepresentationCount,
     *     VkPipelineExecutableInternalRepresentationKHR* pInternalRepresentations);
* *
Description
* *

If {@code pInternalRepresentations} is {@code NULL}, then the number of internal representations associated with the pipeline executable is returned in {@code pInternalRepresentationCount}. Otherwise, {@code pInternalRepresentationCount} must point to a variable set by the user to the number of elements in the {@code pInternalRepresentations} array, and on return the variable is overwritten with the number of structures actually written to {@code pInternalRepresentations}. If {@code pInternalRepresentationCount} is less than the number of internal representations associated with the pipeline executable, at most {@code pInternalRepresentationCount} structures will be written, and {@link VK10#VK_INCOMPLETE INCOMPLETE} will be returned instead of {@link VK10#VK_SUCCESS SUCCESS}, to indicate that not all the available representations were returned.

* *

While the details of the internal representations remain implementation-dependent, the implementation should order the internal representations in the order in which they occur in the compiled pipeline with the final shader assembly (if any) last.

* *
Valid Usage
* *
    *
  • {@code pipelineExecutableInfo} must be enabled
  • *
  • {@code pipeline} member of {@code pExecutableInfo} must have been created with {@code device}
  • *
  • {@code pipeline} member of {@code pExecutableInfo} must have been created with {@link #VK_PIPELINE_CREATE_CAPTURE_INTERNAL_REPRESENTATIONS_BIT_KHR PIPELINE_CREATE_CAPTURE_INTERNAL_REPRESENTATIONS_BIT_KHR}
  • *
* *
Valid Usage (Implicit)
* *
    *
  • {@code device} must be a valid {@code VkDevice} handle
  • *
  • {@code pExecutableInfo} must be a valid pointer to a valid {@link VkPipelineExecutableInfoKHR} structure
  • *
  • {@code pInternalRepresentationCount} must be a valid pointer to a {@code uint32_t} value
  • *
  • If the value referenced by {@code pInternalRepresentationCount} is not 0, and {@code pInternalRepresentations} is not {@code NULL}, {@code pInternalRepresentations} must be a valid pointer to an array of {@code pInternalRepresentationCount} {@link VkPipelineExecutableInternalRepresentationKHR} structures
  • *
* *
Return Codes
* *
*
On success, this command returns
*
    *
  • {@link VK10#VK_SUCCESS SUCCESS}
  • *
  • {@link VK10#VK_INCOMPLETE INCOMPLETE}
  • *
*
On failure, this command returns
*
    *
  • {@link VK10#VK_ERROR_OUT_OF_HOST_MEMORY ERROR_OUT_OF_HOST_MEMORY}
  • *
  • {@link VK10#VK_ERROR_OUT_OF_DEVICE_MEMORY ERROR_OUT_OF_DEVICE_MEMORY}
  • *
*
* *
See Also
* *

{@link VkPipelineExecutableInfoKHR}, {@link VkPipelineExecutableInternalRepresentationKHR}

* * @param device the device that created the pipeline. * @param pExecutableInfo describes the pipeline executable being queried. * @param pInternalRepresentationCount a pointer to an integer related to the number of internal representations available or queried, as described below. * @param pInternalRepresentations either {@code NULL} or a pointer to an array of {@link VkPipelineExecutableInternalRepresentationKHR} structures. */ @NativeType("VkResult") public static int vkGetPipelineExecutableInternalRepresentationsKHR(VkDevice device, @NativeType("VkPipelineExecutableInfoKHR const *") VkPipelineExecutableInfoKHR pExecutableInfo, @NativeType("uint32_t *") IntBuffer pInternalRepresentationCount, @Nullable @NativeType("VkPipelineExecutableInternalRepresentationKHR *") VkPipelineExecutableInternalRepresentationKHR.Buffer pInternalRepresentations) { if (CHECKS) { check(pInternalRepresentationCount, 1); checkSafe(pInternalRepresentations, pInternalRepresentationCount.get(pInternalRepresentationCount.position())); } return nvkGetPipelineExecutableInternalRepresentationsKHR(device, pExecutableInfo.address(), memAddress(pInternalRepresentationCount), memAddressSafe(pInternalRepresentations)); } /** Array version of: {@link #vkGetPipelineExecutablePropertiesKHR GetPipelineExecutablePropertiesKHR} */ @NativeType("VkResult") public static int vkGetPipelineExecutablePropertiesKHR(VkDevice device, @NativeType("VkPipelineInfoKHR const *") VkPipelineInfoKHR pPipelineInfo, @NativeType("uint32_t *") int[] pExecutableCount, @Nullable @NativeType("VkPipelineExecutablePropertiesKHR *") VkPipelineExecutablePropertiesKHR.Buffer pProperties) { long __functionAddress = device.getCapabilities().vkGetPipelineExecutablePropertiesKHR; if (CHECKS) { check(__functionAddress); check(pExecutableCount, 1); checkSafe(pProperties, pExecutableCount[0]); } return callPPPPI(device.address(), pPipelineInfo.address(), pExecutableCount, memAddressSafe(pProperties), __functionAddress); } /** Array version of: {@link #vkGetPipelineExecutableStatisticsKHR GetPipelineExecutableStatisticsKHR} */ @NativeType("VkResult") public static int vkGetPipelineExecutableStatisticsKHR(VkDevice device, @NativeType("VkPipelineExecutableInfoKHR const *") VkPipelineExecutableInfoKHR pExecutableInfo, @NativeType("uint32_t *") int[] pStatisticCount, @Nullable @NativeType("VkPipelineExecutableStatisticKHR *") VkPipelineExecutableStatisticKHR.Buffer pStatistics) { long __functionAddress = device.getCapabilities().vkGetPipelineExecutableStatisticsKHR; if (CHECKS) { check(__functionAddress); check(pStatisticCount, 1); checkSafe(pStatistics, pStatisticCount[0]); } return callPPPPI(device.address(), pExecutableInfo.address(), pStatisticCount, memAddressSafe(pStatistics), __functionAddress); } /** Array version of: {@link #vkGetPipelineExecutableInternalRepresentationsKHR GetPipelineExecutableInternalRepresentationsKHR} */ @NativeType("VkResult") public static int vkGetPipelineExecutableInternalRepresentationsKHR(VkDevice device, @NativeType("VkPipelineExecutableInfoKHR const *") VkPipelineExecutableInfoKHR pExecutableInfo, @NativeType("uint32_t *") int[] pInternalRepresentationCount, @Nullable @NativeType("VkPipelineExecutableInternalRepresentationKHR *") VkPipelineExecutableInternalRepresentationKHR.Buffer pInternalRepresentations) { long __functionAddress = device.getCapabilities().vkGetPipelineExecutableInternalRepresentationsKHR; if (CHECKS) { check(__functionAddress); check(pInternalRepresentationCount, 1); checkSafe(pInternalRepresentations, pInternalRepresentationCount[0]); } return callPPPPI(device.address(), pExecutableInfo.address(), pInternalRepresentationCount, memAddressSafe(pInternalRepresentations), __functionAddress); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy