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

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

import org.lwjgl.*;
import org.lwjgl.system.*;

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

/**
 * Structure specifying a image format properties.
 * 
 * 
Description
* *
Note
* *

There is no mechanism to query the size of an image before creating it, to compare that size against {@code maxResourceSize}. If an application attempts to create an image that exceeds this limit, the creation will fail or the image will be invalid. While the advertised limit must be at least 231, it may not be possible to create an image that approaches that size, particularly for {@link VK10#VK_IMAGE_TYPE_1D IMAGE_TYPE_1D}.

*
* *

If the combination of parameters to {@link VK10#vkGetPhysicalDeviceImageFormatProperties GetPhysicalDeviceImageFormatProperties} is not supported by the implementation for use in {@link VK10#vkCreateImage CreateImage}, then all members of {@link VkImageFormatProperties} will be filled with zero.

* *
See Also
* *

{@link VkExtent3D}, {@link VkExternalImageFormatPropertiesNV}, {@link VkImageFormatProperties2KHR}, {@link VK10#vkGetPhysicalDeviceImageFormatProperties GetPhysicalDeviceImageFormatProperties}

* *

Member documentation

* *
    *
  • {@code maxExtent} – are the maximum image dimensions. See the Allowed Extent Values section below for how these values are constrained by {@code type}.
  • *
  • {@code maxMipLevels} – the maximum number of mipmap levels. {@code maxMipLevels} must either be equal to 1 (valid only if {@code tiling} is {@link VK10#VK_IMAGE_TILING_LINEAR IMAGE_TILING_LINEAR}) or be equal to ⌈log2(max(width, height, depth))⌉ + 1. width, height, and depth are taken from the corresponding members of {@code maxExtent}.
  • *
  • {@code maxArrayLayers} – the maximum number of array layers. {@code maxArrayLayers} must either be equal to 1 or be greater than or equal to the {@code maxImageArrayLayers} member of {@link VkPhysicalDeviceLimits}. A value of 1 is valid only if {@code tiling} is {@link VK10#VK_IMAGE_TILING_LINEAR IMAGE_TILING_LINEAR} or if {@code type} is {@link VK10#VK_IMAGE_TYPE_3D IMAGE_TYPE_3D}.
  • *
  • {@code sampleCounts} – a bitmask of {@code VkSampleCountFlagBits} specifying all the supported sample counts for this image as described below.
  • *
  • {@code maxResourceSize} – an upper bound on the total image size in bytes, inclusive of all image subresources. Implementations may have an address space limit on total size of a resource, which is advertised by this property. {@code maxResourceSize} must be at least 231.
  • *
* *

Layout

* *
 * struct VkImageFormatProperties {
 *     {@link VkExtent3D VkExtent3D} maxExtent;
 *     uint32_t maxMipLevels;
 *     uint32_t maxArrayLayers;
 *     VkSampleCountFlags sampleCounts;
 *     VkDeviceSize maxResourceSize;
 * }
*/ public class VkImageFormatProperties extends Struct implements NativeResource { /** The struct size in bytes. */ public static final int SIZEOF; public static final int ALIGNOF; /** The struct member offsets. */ public static final int MAXEXTENT, MAXMIPLEVELS, MAXARRAYLAYERS, SAMPLECOUNTS, MAXRESOURCESIZE; static { Layout layout = __struct( __member(VkExtent3D.SIZEOF, VkExtent3D.ALIGNOF), __member(4), __member(4), __member(4), __member(8) ); SIZEOF = layout.getSize(); ALIGNOF = layout.getAlignment(); MAXEXTENT = layout.offsetof(0); MAXMIPLEVELS = layout.offsetof(1); MAXARRAYLAYERS = layout.offsetof(2); SAMPLECOUNTS = layout.offsetof(3); MAXRESOURCESIZE = layout.offsetof(4); } VkImageFormatProperties(long address, ByteBuffer container) { super(address, container); } /** * Creates a {@link VkImageFormatProperties} instance at the current position of the specified {@link ByteBuffer} container. Changes to the buffer's content will be * visible to the struct instance and vice versa. * *

The created instance holds a strong reference to the container object.

*/ public VkImageFormatProperties(ByteBuffer container) { this(memAddress(container), checkContainer(container, SIZEOF)); } @Override public int sizeof() { return SIZEOF; } /** Returns a {@link VkExtent3D} view of the {@code maxExtent} field. */ public VkExtent3D maxExtent() { return nmaxExtent(address()); } /** Returns the value of the {@code maxMipLevels} field. */ @NativeType("uint32_t") public int maxMipLevels() { return nmaxMipLevels(address()); } /** Returns the value of the {@code maxArrayLayers} field. */ @NativeType("uint32_t") public int maxArrayLayers() { return nmaxArrayLayers(address()); } /** Returns the value of the {@code sampleCounts} field. */ @NativeType("VkSampleCountFlags") public int sampleCounts() { return nsampleCounts(address()); } /** Returns the value of the {@code maxResourceSize} field. */ @NativeType("VkDeviceSize") public long maxResourceSize() { return nmaxResourceSize(address()); } // ----------------------------------- /** Returns a new {@link VkImageFormatProperties} instance allocated with {@link MemoryUtil#memAlloc memAlloc}. The instance must be explicitly freed. */ public static VkImageFormatProperties malloc() { return create(nmemAlloc(SIZEOF)); } /** Returns a new {@link VkImageFormatProperties} instance allocated with {@link MemoryUtil#memCalloc memCalloc}. The instance must be explicitly freed. */ public static VkImageFormatProperties calloc() { return create(nmemCalloc(1, SIZEOF)); } /** Returns a new {@link VkImageFormatProperties} instance allocated with {@link BufferUtils}. */ public static VkImageFormatProperties create() { return new VkImageFormatProperties(BufferUtils.createByteBuffer(SIZEOF)); } /** Returns a new {@link VkImageFormatProperties} instance for the specified memory address or {@code null} if the address is {@code NULL}. */ public static VkImageFormatProperties create(long address) { return address == NULL ? null : new VkImageFormatProperties(address, null); } /** * Returns a new {@link VkImageFormatProperties.Buffer} instance allocated with {@link MemoryUtil#memAlloc memAlloc}. The instance must be explicitly freed. * * @param capacity the buffer capacity */ public static Buffer malloc(int capacity) { return create(__malloc(capacity, SIZEOF), capacity); } /** * Returns a new {@link VkImageFormatProperties.Buffer} instance allocated with {@link MemoryUtil#memCalloc memCalloc}. The instance must be explicitly freed. * * @param capacity the buffer capacity */ public static Buffer calloc(int capacity) { return create(nmemCalloc(capacity, SIZEOF), capacity); } /** * Returns a new {@link VkImageFormatProperties.Buffer} instance allocated with {@link BufferUtils}. * * @param capacity the buffer capacity */ public static Buffer create(int capacity) { return new Buffer(__create(capacity, SIZEOF)); } /** * Create a {@link VkImageFormatProperties.Buffer} instance at the specified memory. * * @param address the memory address * @param capacity the buffer capacity */ public static Buffer create(long address, int capacity) { return address == NULL ? null : new Buffer(address, null, -1, 0, capacity, capacity); } // ----------------------------------- /** Returns a new {@link VkImageFormatProperties} instance allocated on the thread-local {@link MemoryStack}. */ public static VkImageFormatProperties mallocStack() { return mallocStack(stackGet()); } /** Returns a new {@link VkImageFormatProperties} instance allocated on the thread-local {@link MemoryStack} and initializes all its bits to zero. */ public static VkImageFormatProperties callocStack() { return callocStack(stackGet()); } /** * Returns a new {@link VkImageFormatProperties} instance allocated on the specified {@link MemoryStack}. * * @param stack the stack from which to allocate */ public static VkImageFormatProperties mallocStack(MemoryStack stack) { return create(stack.nmalloc(ALIGNOF, SIZEOF)); } /** * Returns a new {@link VkImageFormatProperties} instance allocated on the specified {@link MemoryStack} and initializes all its bits to zero. * * @param stack the stack from which to allocate */ public static VkImageFormatProperties callocStack(MemoryStack stack) { return create(stack.ncalloc(ALIGNOF, 1, SIZEOF)); } /** * Returns a new {@link VkImageFormatProperties.Buffer} instance allocated on the thread-local {@link MemoryStack}. * * @param capacity the buffer capacity */ public static Buffer mallocStack(int capacity) { return mallocStack(capacity, stackGet()); } /** * Returns a new {@link VkImageFormatProperties.Buffer} instance allocated on the thread-local {@link MemoryStack} and initializes all its bits to zero. * * @param capacity the buffer capacity */ public static Buffer callocStack(int capacity) { return callocStack(capacity, stackGet()); } /** * Returns a new {@link VkImageFormatProperties.Buffer} instance allocated on the specified {@link MemoryStack}. * * @param stack the stack from which to allocate * @param capacity the buffer capacity */ public static Buffer mallocStack(int capacity, MemoryStack stack) { return create(stack.nmalloc(ALIGNOF, capacity * SIZEOF), capacity); } /** * Returns a new {@link VkImageFormatProperties.Buffer} instance allocated on the specified {@link MemoryStack} and initializes all its bits to zero. * * @param stack the stack from which to allocate * @param capacity the buffer capacity */ public static Buffer callocStack(int capacity, MemoryStack stack) { return create(stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity); } // ----------------------------------- /** Unsafe version of {@link #maxExtent}. */ public static VkExtent3D nmaxExtent(long struct) { return VkExtent3D.create(struct + VkImageFormatProperties.MAXEXTENT); } /** Unsafe version of {@link #maxMipLevels}. */ public static int nmaxMipLevels(long struct) { return memGetInt(struct + VkImageFormatProperties.MAXMIPLEVELS); } /** Unsafe version of {@link #maxArrayLayers}. */ public static int nmaxArrayLayers(long struct) { return memGetInt(struct + VkImageFormatProperties.MAXARRAYLAYERS); } /** Unsafe version of {@link #sampleCounts}. */ public static int nsampleCounts(long struct) { return memGetInt(struct + VkImageFormatProperties.SAMPLECOUNTS); } /** Unsafe version of {@link #maxResourceSize}. */ public static long nmaxResourceSize(long struct) { return memGetLong(struct + VkImageFormatProperties.MAXRESOURCESIZE); } // ----------------------------------- /** An array of {@link VkImageFormatProperties} structs. */ public static class Buffer extends StructBuffer implements NativeResource { /** * Creates a new {@link VkImageFormatProperties.Buffer} instance backed by the specified container. * * Changes to the container's content will be visible to the struct buffer instance and vice versa. The two buffers' position, limit, and mark values * will be independent. The new buffer's position will be zero, its capacity and its limit will be the number of bytes remaining in this buffer divided * by {@link VkImageFormatProperties#SIZEOF}, and its mark will be undefined. * *

The created buffer instance holds a strong reference to the container object.

*/ public Buffer(ByteBuffer container) { super(container, container.remaining() / SIZEOF); } Buffer(long address, ByteBuffer container, int mark, int pos, int lim, int cap) { super(address, container, mark, pos, lim, cap); } @Override protected Buffer self() { return this; } @Override protected Buffer newBufferInstance(long address, ByteBuffer container, int mark, int pos, int lim, int cap) { return new Buffer(address, container, mark, pos, lim, cap); } @Override protected VkImageFormatProperties newInstance(long address) { return new VkImageFormatProperties(address, container); } @Override public int sizeof() { return SIZEOF; } /** Returns a {@link VkExtent3D} view of the {@code maxExtent} field. */ public VkExtent3D maxExtent() { return VkImageFormatProperties.nmaxExtent(address()); } /** Returns the value of the {@code maxMipLevels} field. */ @NativeType("uint32_t") public int maxMipLevels() { return VkImageFormatProperties.nmaxMipLevels(address()); } /** Returns the value of the {@code maxArrayLayers} field. */ @NativeType("uint32_t") public int maxArrayLayers() { return VkImageFormatProperties.nmaxArrayLayers(address()); } /** Returns the value of the {@code sampleCounts} field. */ @NativeType("VkSampleCountFlags") public int sampleCounts() { return VkImageFormatProperties.nsampleCounts(address()); } /** Returns the value of the {@code maxResourceSize} field. */ @NativeType("VkDeviceSize") public long maxResourceSize() { return VkImageFormatProperties.nmaxResourceSize(address()); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy