├── .gitignore ├── LICENSE ├── README.md ├── images └── SharpVk.png └── src ├── SharpVk.Emit ├── AccessModifier.cs ├── BlockBuilder.cs ├── BuilderFactory.cs ├── CodeBlockBuilder.cs ├── DocBuilder.cs ├── EnumBuilder.cs ├── ExpressionBuilder.cs ├── FileBuilder.cs ├── IndentedTextWriter.cs ├── IndentedTextWriterExtensions.cs ├── MemberInitBuilder.cs ├── MemberModifier.cs ├── NamespaceBuilder.cs ├── ParameterBuilder.cs ├── SharpVk.Emit.csproj ├── SwitchCaseBuilder.cs ├── TypeBuilder.cs ├── TypeKind.cs └── TypeModifier.cs ├── SharpVk.Generator ├── Collation │ ├── CollationStage.cs │ ├── CommandCollator.cs │ ├── CommandDeclaration.cs │ ├── ConstantCollator.cs │ ├── ConstantDeclaration.cs │ ├── DelegateCollator.cs │ ├── DelegateDeclaration.cs │ ├── EnumCollator.cs │ ├── EnumDeclaration.cs │ ├── EnumMapping.cs │ ├── ExtensionCollator.cs │ ├── ExtensionDeclaration.cs │ ├── FieldDeclaration.cs │ ├── ITypedDeclaration.cs │ ├── MemberDeclaration.cs │ ├── NameFormatter.cs │ ├── ParamDeclaration.cs │ ├── TypeCollator.cs │ ├── TypeDeclaration.cs │ ├── TypeNameMapping.cs │ └── WrappedTypedDeclaration.cs ├── CommentCache.json ├── Emission │ ├── CacheStructEmitter.cs │ ├── ConstantEmitter.cs │ ├── DelegateEmitter.cs │ ├── EmissionStage.cs │ ├── EnumEmitter.cs │ ├── ExceptionEmitter.cs │ ├── FileBuilderFactory.cs │ ├── HandleEmitter.cs │ ├── HandleExtensionsEmitter.cs │ ├── MethodEmitter.cs │ ├── StructEmitter.cs │ └── UnmodifiedFileCleanup.cs ├── Expressions.cs ├── ExtensionInfo.cs ├── FixedLengthDeclaration.cs ├── FixedLengthType.cs ├── Generation │ ├── Action.cs │ ├── CommentGenerator.cs │ ├── ConstantDefinition.cs │ ├── ConstantGenerator.cs │ ├── DelegateDefinition.cs │ ├── DelegateGenerator.cs │ ├── EnumDefinition.cs │ ├── EnumGenerator.cs │ ├── ExceptionDefinition.cs │ ├── ExceptionGenerator.cs │ ├── ExtensionConstantGenerator.cs │ ├── FieldDefinition.cs │ ├── GenerationStage.cs │ ├── HandleDefinition.cs │ ├── HandleExtensionDefinition.cs │ ├── HandleExtensionsGenerator.cs │ ├── HandleGenerator.cs │ ├── MarshalledStructGenerator.cs │ ├── Marshalling │ │ ├── ArrayLenMemberPattern.cs │ │ ├── ArrayMemberPattern.cs │ │ ├── ArraySingularMemberPattern.cs │ │ ├── FixedLengthMemberPattern.cs │ │ ├── FixedValueMemberPattern.cs │ │ ├── IMarshalValueRule.cs │ │ ├── IMemberPatternRule.cs │ │ ├── MarshalDelegateValue.cs │ │ ├── MarshalHandleValue.cs │ │ ├── MarshalInfo.cs │ │ ├── MarshalPointerValue.cs │ │ ├── MarshalSimpleValue.cs │ │ ├── MarshalStructValue.cs │ │ ├── MarshalVoidPointerValue.cs │ │ ├── MemberPatternContext.cs │ │ ├── MemberPatternInfo.cs │ │ ├── NextExtensionMemberPattern.cs │ │ ├── ParsedExpressionBuilder.cs │ │ ├── ParsedExpressionEqualityCheck.cs │ │ ├── ParsedExpressionTokenCheck.cs │ │ ├── SimpleMemberPattern.cs │ │ ├── VerbInfoMemberPattern.cs │ │ └── VersionMemberPattern.cs │ ├── MemberDefinition.cs │ ├── MethodDefinition.cs │ ├── Methods │ │ ├── EnumeratePatternRule.cs │ │ ├── IMethodPatternRule.cs │ │ └── MethodPatternInfo.cs │ ├── NameLookup.cs │ ├── NamespaceMap.cs │ ├── PInvokeDefinition.cs │ ├── PInvokeGenerator.cs │ ├── ParamActionDefinition.cs │ ├── ParamDefinition.cs │ ├── PrimitiveGenerator.cs │ ├── StructDefinition.cs │ ├── StructGenerator.cs │ └── TypedDefinition.cs ├── IVkXmlCache.cs ├── LoadXmlStage.cs ├── NullStage.cs ├── PassthroughWorker.cs ├── Pipeline │ ├── ICleanupWorker.cs │ ├── IOutputWorker.cs │ ├── IStage.cs │ ├── IWorker.cs │ ├── Pipeline.cs │ └── PipelineBuilder.cs ├── PointerType.cs ├── Program.cs ├── Rules │ ├── IRule.cs │ └── RuleExtensions.cs ├── ServiceProviderExtensions.cs ├── SharpVk.Generator.csproj ├── Specification │ ├── CommandElementReader.cs │ ├── CommandRequirement.cs │ ├── Elements │ │ ├── ChildElement.cs │ │ ├── CommandElement.cs │ │ ├── EnumElement.cs │ │ ├── EnumField.cs │ │ ├── MemberElement.cs │ │ ├── ParamElement.cs │ │ ├── SpecElement.cs │ │ └── TypeElement.cs │ ├── EnumElementReader.cs │ ├── ExtensionSet.cs │ ├── NameParser.cs │ ├── PointerTypeUtil.cs │ ├── Rules │ │ ├── FunctionPointerTypeRule.cs │ │ ├── ITypeExtensionRule.cs │ │ └── MemberTypeRule.cs │ ├── SimpleParser.cs │ ├── SpecParserStage.cs │ └── TypeElementReader.cs ├── StringExtensions.cs ├── TypeCategory.cs ├── TypePattern.cs ├── TypeReference.cs ├── VkXmlCache.cs └── vk.xml ├── SharpVk.Glfw ├── .msbump ├── CharDelegate.cs ├── CharModsDelegate.cs ├── CodePoint.cs ├── CursorPosDelegate.cs ├── ErrorCode.cs ├── ErrorDelegate.cs ├── ErrorUtility.cs ├── Glfw3.cs ├── GlfwErrorException.cs ├── InputAction.cs ├── InstanceExtensions.cs ├── Key.cs ├── KeyDelegate.cs ├── Modifier.cs ├── Monitor.cs ├── MonitorEvent.cs ├── MonitorEventDelegate.cs ├── MonitorHandle.cs ├── MouseButton.cs ├── MouseButtonDelegate.cs ├── NativeString.cs ├── ScrollDelegate.cs ├── SharpVk.Glfw.csproj ├── VideoMode.cs ├── VideoModePointer.cs ├── Window.cs ├── WindowAttribute.cs ├── WindowHandle.cs └── WindowSizeDelegate.cs ├── SharpVk.Shanq.GlmSharp ├── DeviceExtensions.cs ├── SamplerExtensions.cs ├── SharpVk.Shanq.GlmSharp.csproj └── VectorTypeLibrary.cs ├── SharpVk.Shanq.Numerics ├── DeviceExtensions.cs ├── SharpVk.Shanq.Numerics.csproj └── VectorTypeLibrary.cs ├── SharpVk.Shanq ├── BinarySink.cs ├── BuiltinAttribute.cs ├── IVectorTypeLibrary.cs ├── ImageType2d.cs ├── LocationAttribute.cs ├── Pointer.cs ├── QueryableOrigin.cs ├── Sampler2d.cs ├── ShanqExpressionVisitor.cs ├── ShanqQueryExecutor.cs ├── ShanqQueryable.cs ├── ShanqShader.cs ├── SharpVk.Shanq.csproj ├── SpirvFile.cs └── TypeExtensions.cs ├── SharpVk.TestHarness ├── Program.cs ├── SharpVk.TestHarness.csproj └── glfw3.dll ├── SharpVk.Tests ├── InstanceTests.cs └── SharpVk.Tests.csproj ├── SharpVk.sln ├── SharpVk ├── AccessFlags.gen.cs ├── AllocationCallbacks.gen.cs ├── AllocationFunctionDelegate.gen.cs ├── Amd │ ├── AmdExtensions.gen.cs │ ├── CommandBufferExtensions.gen.cs │ ├── DeviceMemoryOverallocationCreateInfo.gen.cs │ ├── DisplayNativeHdrSurfaceCapabilities.gen.cs │ ├── MemoryOverallocationBehavior.gen.cs │ ├── PhysicalDeviceCoherentMemoryFeatures.gen.cs │ ├── PhysicalDeviceShaderCoreProperties.gen.cs │ ├── PhysicalDeviceShaderCoreProperties2.gen.cs │ ├── PipelineCompilerControlCreateInfo.gen.cs │ ├── PipelineCompilerControlFlags.gen.cs │ ├── PipelineExtensions.gen.cs │ ├── PipelineRasterizationStateRasterizationOrder.gen.cs │ ├── RasterizationOrder.gen.cs │ ├── ShaderCorePropertiesFlags.gen.cs │ ├── ShaderInfoType.gen.cs │ ├── ShaderResourceUsage.gen.cs │ ├── ShaderStatisticsInfo.gen.cs │ ├── SwapchainDisplayNativeHdrCreateInfo.gen.cs │ ├── SwapchainExtensions.gen.cs │ └── TextureLODGatherFormatProperties.gen.cs ├── Android │ ├── AndroidExtensions.gen.cs │ ├── AndroidHardwareBufferFormatProperties.gen.cs │ ├── AndroidHardwareBufferProperties.gen.cs │ ├── AndroidHardwareBufferUsage.gen.cs │ ├── DeviceExtensions.gen.cs │ ├── ExternalFormat.gen.cs │ ├── ImportAndroidHardwareBufferInfo.gen.cs │ ├── MemoryGetAndroidHardwareBufferInfo.gen.cs │ ├── NativeBuffer.gen.cs │ ├── NativeBufferUsage2.gen.cs │ ├── PhysicalDevicePresentationProperties.gen.cs │ ├── SwapchainImageCreateInfo.gen.cs │ └── SwapchainImageUsageFlags.gen.cs ├── ApplicationInfo.gen.cs ├── ArrayProxy.cs ├── AttachmentDescription.gen.cs ├── AttachmentDescription2.gen.cs ├── AttachmentDescriptionFlags.gen.cs ├── AttachmentDescriptionStencilLayout.gen.cs ├── AttachmentLoadOp.gen.cs ├── AttachmentReference.gen.cs ├── AttachmentReference2.gen.cs ├── AttachmentReferenceStencilLayout.gen.cs ├── AttachmentStoreOp.gen.cs ├── BaseInStructure.gen.cs ├── BaseOutStructure.gen.cs ├── BindBufferMemoryDeviceGroupInfo.gen.cs ├── BindBufferMemoryInfo.gen.cs ├── BindImageMemoryDeviceGroupInfo.gen.cs ├── BindImageMemoryInfo.gen.cs ├── BindImagePlaneMemoryInfo.gen.cs ├── BindSparseInfo.gen.cs ├── BlendFactor.gen.cs ├── BlendOp.gen.cs ├── Bool32.cs ├── BorderColor.gen.cs ├── Buffer.gen.cs ├── Buffer.partial.cs ├── BufferCopy.gen.cs ├── BufferCreateFlags.gen.cs ├── BufferCreateInfo.gen.cs ├── BufferDeviceAddressInfo.gen.cs ├── BufferImageCopy.gen.cs ├── BufferMemoryBarrier.gen.cs ├── BufferMemoryRequirementsInfo2.gen.cs ├── BufferOpaqueCaptureAddressCreateInfo.gen.cs ├── BufferUsageFlags.gen.cs ├── BufferView.gen.cs ├── BufferViewCreateFlags.gen.cs ├── BufferViewCreateInfo.gen.cs ├── ChromaLocation.gen.cs ├── ClearAttachment.gen.cs ├── ClearColorValue.cs ├── ClearDepthStencilValue.gen.cs ├── ClearRect.gen.cs ├── ClearValue.cs ├── ColorComponentFlags.gen.cs ├── CommandBuffer.gen.cs ├── CommandBuffer.partial.cs ├── CommandBufferAllocateInfo.gen.cs ├── CommandBufferBeginInfo.gen.cs ├── CommandBufferInheritanceInfo.gen.cs ├── CommandBufferLevel.gen.cs ├── CommandBufferResetFlags.gen.cs ├── CommandBufferUsageFlags.gen.cs ├── CommandCache.cs ├── CommandCacheStruct.cs ├── CommandCacheStruct.gen.cs ├── CommandPool.gen.cs ├── CommandPoolCreateFlags.gen.cs ├── CommandPoolCreateInfo.gen.cs ├── CommandPoolResetFlags.gen.cs ├── CommandPoolTrimFlags.gen.cs ├── CompareOp.gen.cs ├── ComponentMapping.cs ├── ComponentMapping.gen.cs ├── ComponentSwizzle.gen.cs ├── ComputePipelineCreateInfo.gen.cs ├── ConformanceVersion.gen.cs ├── Constants.gen.cs ├── CopyDescriptorSet.gen.cs ├── CullModeFlags.gen.cs ├── DependencyFlags.gen.cs ├── DescriptorBindingFlags.gen.cs ├── DescriptorBufferInfo.gen.cs ├── DescriptorImageInfo.gen.cs ├── DescriptorPool.gen.cs ├── DescriptorPool.partial.cs ├── DescriptorPoolCreateFlags.gen.cs ├── DescriptorPoolCreateInfo.gen.cs ├── DescriptorPoolResetFlags.gen.cs ├── DescriptorPoolSize.gen.cs ├── DescriptorSet.gen.cs ├── DescriptorSet.partial.cs ├── DescriptorSetAllocateInfo.gen.cs ├── DescriptorSetLayout.gen.cs ├── DescriptorSetLayoutBinding.gen.cs ├── DescriptorSetLayoutBindingFlagsCreateInfo.gen.cs ├── DescriptorSetLayoutCreateFlags.gen.cs ├── DescriptorSetLayoutCreateInfo.gen.cs ├── DescriptorSetLayoutSupport.gen.cs ├── DescriptorSetVariableDescriptorCountAllocateInfo.gen.cs ├── DescriptorSetVariableDescriptorCountLayoutSupport.gen.cs ├── DescriptorType.gen.cs ├── DescriptorUpdateTemplate.gen.cs ├── DescriptorUpdateTemplateCreateFlags.gen.cs ├── DescriptorUpdateTemplateCreateInfo.gen.cs ├── DescriptorUpdateTemplateEntry.gen.cs ├── DescriptorUpdateTemplateType.gen.cs ├── Device.gen.cs ├── Device.partial.cs ├── DeviceAddress.cs ├── DeviceCreateFlags.gen.cs ├── DeviceCreateInfo.gen.cs ├── DeviceGroupBindSparseInfo.gen.cs ├── DeviceGroupCommandBufferBeginInfo.gen.cs ├── DeviceGroupDeviceCreateInfo.gen.cs ├── DeviceGroupRenderPassBeginInfo.gen.cs ├── DeviceGroupSubmitInfo.gen.cs ├── DeviceMemory.gen.cs ├── DeviceMemoryOpaqueCaptureAddressInfo.gen.cs ├── DeviceQueueCreateFlags.gen.cs ├── DeviceQueueCreateInfo.gen.cs ├── DeviceQueueInfo2.gen.cs ├── DeviceSize.cs ├── DispatchIndirectCommand.gen.cs ├── DrawIndexedIndirectCommand.gen.cs ├── DrawIndirectCommand.gen.cs ├── DriverId.gen.cs ├── DynamicState.gen.cs ├── Event.gen.cs ├── EventCreateFlags.gen.cs ├── EventCreateInfo.gen.cs ├── Exceptions.gen.cs ├── ExportFenceCreateInfo.gen.cs ├── ExportMemoryAllocateInfo.gen.cs ├── ExportSemaphoreCreateInfo.gen.cs ├── ExtensionProperties.gen.cs ├── Extent2D.gen.cs ├── Extent2D.partial.cs ├── Extent3D.gen.cs ├── ExternalBufferProperties.gen.cs ├── ExternalFenceFeatureFlags.gen.cs ├── ExternalFenceHandleTypeFlags.gen.cs ├── ExternalFenceProperties.gen.cs ├── ExternalImageFormatProperties.gen.cs ├── ExternalMemoryBufferCreateInfo.gen.cs ├── ExternalMemoryFeatureFlags.gen.cs ├── ExternalMemoryHandleTypeFlags.gen.cs ├── ExternalMemoryImageCreateInfo.gen.cs ├── ExternalMemoryProperties.gen.cs ├── ExternalSemaphoreFeatureFlags.gen.cs ├── ExternalSemaphoreHandleTypeFlags.gen.cs ├── ExternalSemaphoreProperties.gen.cs ├── Fence.gen.cs ├── Fence.partial.cs ├── FenceCreateFlags.gen.cs ├── FenceCreateInfo.gen.cs ├── FenceImportFlags.gen.cs ├── Filter.gen.cs ├── Format.gen.cs ├── FormatFeatureFlags.gen.cs ├── FormatProperties.gen.cs ├── FormatProperties2.gen.cs ├── Framebuffer.gen.cs ├── FramebufferAttachmentImageInfo.gen.cs ├── FramebufferAttachmentsCreateInfo.gen.cs ├── FramebufferCreateFlags.gen.cs ├── FramebufferCreateInfo.gen.cs ├── FreeFunctionDelegate.gen.cs ├── FrontFace.gen.cs ├── Fuchsia │ ├── FuchsiaExtensions.gen.cs │ ├── ImagePipeSurfaceCreateFlags.gen.cs │ ├── ImagePipeSurfaceCreateInfo.gen.cs │ └── InstanceExtensions.gen.cs ├── Ggp │ ├── GgpExtensions.gen.cs │ ├── InstanceExtensions.gen.cs │ ├── PresentFrameToken.gen.cs │ ├── StreamDescriptorSurfaceCreateFlags.gen.cs │ └── StreamDescriptorSurfaceCreateInfo.gen.cs ├── Google │ ├── GoogleExtensions.gen.cs │ ├── PastPresentationTiming.gen.cs │ ├── PresentTime.gen.cs │ ├── PresentTimesInfo.gen.cs │ ├── RefreshCycleDuration.gen.cs │ └── SwapchainExtensions.gen.cs ├── GraphicsPipelineCreateInfo.gen.cs ├── HostSize.cs ├── IMemoryBinder.cs ├── IProcLookup.cs ├── Image.gen.cs ├── Image.partial.cs ├── ImageAspectFlags.gen.cs ├── ImageBlit.gen.cs ├── ImageCopy.gen.cs ├── ImageCreateFlags.gen.cs ├── ImageCreateInfo.gen.cs ├── ImageFormatListCreateInfo.gen.cs ├── ImageFormatProperties.gen.cs ├── ImageFormatProperties2.gen.cs ├── ImageLayout.gen.cs ├── ImageMemoryBarrier.gen.cs ├── ImageMemoryRequirementsInfo2.gen.cs ├── ImagePlaneMemoryRequirementsInfo.gen.cs ├── ImageResolve.gen.cs ├── ImageSparseMemoryRequirementsInfo2.gen.cs ├── ImageStencilUsageCreateInfo.gen.cs ├── ImageSubresource.gen.cs ├── ImageSubresourceLayers.gen.cs ├── ImageSubresourceRange.gen.cs ├── ImageTiling.gen.cs ├── ImageType.gen.cs ├── ImageUsageFlags.gen.cs ├── ImageView.gen.cs ├── ImageViewCreateFlags.gen.cs ├── ImageViewCreateInfo.gen.cs ├── ImageViewType.gen.cs ├── ImageViewUsageCreateInfo.gen.cs ├── Img │ └── ImgExtensions.gen.cs ├── IndexType.gen.cs ├── InputAttachmentAspectReference.gen.cs ├── Instance.gen.cs ├── Instance.partial.cs ├── InstanceCreateFlags.gen.cs ├── InstanceCreateInfo.gen.cs ├── Intel │ ├── CommandBufferExtensions.gen.cs │ ├── DeviceExtensions.gen.cs │ ├── InitializePerformanceApiInfo.gen.cs │ ├── IntelExtensions.gen.cs │ ├── PerformanceConfiguration.gen.cs │ ├── PerformanceConfigurationAcquireInfo.gen.cs │ ├── PerformanceConfigurationType.gen.cs │ ├── PerformanceMarkerInfo.gen.cs │ ├── PerformanceOverrideInfo.gen.cs │ ├── PerformanceOverrideType.gen.cs │ ├── PerformanceParameterType.gen.cs │ ├── PerformanceStreamMarkerInfo.gen.cs │ ├── PerformanceValue.gen.cs │ ├── PerformanceValueData.cs │ ├── PerformanceValueType.gen.cs │ ├── PhysicalDeviceShaderIntegerFunctions2Features.gen.cs │ ├── QueryPoolCreateInfo.gen.cs │ ├── QueryPoolSamplingMode.gen.cs │ └── QueueExtensions.gen.cs ├── InternalAllocationNotificationDelegate.gen.cs ├── InternalAllocationType.gen.cs ├── InternalFreeNotificationDelegate.gen.cs ├── Interop │ ├── AllocationCallbacks.gen.cs │ ├── Amd │ │ ├── DeviceMemoryOverallocationCreateInfo.gen.cs │ │ ├── DisplayNativeHdrSurfaceCapabilities.gen.cs │ │ ├── PhysicalDeviceCoherentMemoryFeatures.gen.cs │ │ ├── PhysicalDeviceShaderCoreProperties.gen.cs │ │ ├── PhysicalDeviceShaderCoreProperties2.gen.cs │ │ ├── PipelineCompilerControlCreateInfo.gen.cs │ │ ├── PipelineRasterizationStateRasterizationOrder.gen.cs │ │ ├── ShaderStatisticsInfo.gen.cs │ │ ├── SwapchainDisplayNativeHdrCreateInfo.gen.cs │ │ ├── TextureLODGatherFormatProperties.gen.cs │ │ ├── VkCommandBufferWriteBufferMarkerDelegate.gen.cs │ │ ├── VkPipelineGetShaderInfoDelegate.gen.cs │ │ └── VkSwapchainKHRSetLocalDimmingDelegate.gen.cs │ ├── Android │ │ ├── AndroidHardwareBufferFormatProperties.gen.cs │ │ ├── AndroidHardwareBufferProperties.gen.cs │ │ ├── AndroidHardwareBufferUsage.gen.cs │ │ ├── ExternalFormat.gen.cs │ │ ├── ImportAndroidHardwareBufferInfo.gen.cs │ │ ├── MemoryGetAndroidHardwareBufferInfo.gen.cs │ │ ├── NativeBuffer.gen.cs │ │ ├── PhysicalDevicePresentationProperties.gen.cs │ │ ├── SwapchainImageCreateInfo.gen.cs │ │ ├── VkDeviceGetAndroidHardwareBufferPropertiesDelegate.gen.cs │ │ └── VkDeviceGetMemoryAndroidHardwareBufferDelegate.gen.cs │ ├── ApplicationInfo.gen.cs │ ├── AttachmentDescription2.gen.cs │ ├── AttachmentDescriptionStencilLayout.gen.cs │ ├── AttachmentReference2.gen.cs │ ├── AttachmentReferenceStencilLayout.gen.cs │ ├── BaseInStructure.gen.cs │ ├── BaseOutStructure.gen.cs │ ├── BindBufferMemoryDeviceGroupInfo.gen.cs │ ├── BindBufferMemoryInfo.gen.cs │ ├── BindImageMemoryDeviceGroupInfo.gen.cs │ ├── BindImageMemoryInfo.gen.cs │ ├── BindImagePlaneMemoryInfo.gen.cs │ ├── BindSparseInfo.gen.cs │ ├── Buffer.gen.cs │ ├── BufferCreateInfo.gen.cs │ ├── BufferDeviceAddressInfo.gen.cs │ ├── BufferMemoryBarrier.gen.cs │ ├── BufferMemoryRequirementsInfo2.gen.cs │ ├── BufferOpaqueCaptureAddressCreateInfo.gen.cs │ ├── BufferView.gen.cs │ ├── BufferViewCreateInfo.gen.cs │ ├── CommandBuffer.gen.cs │ ├── CommandBufferAllocateInfo.gen.cs │ ├── CommandBufferBeginInfo.gen.cs │ ├── CommandBufferInheritanceInfo.gen.cs │ ├── CommandPool.gen.cs │ ├── CommandPoolCreateInfo.gen.cs │ ├── ComputePipelineCreateInfo.gen.cs │ ├── CopyDescriptorSet.gen.cs │ ├── DescriptorBufferInfo.gen.cs │ ├── DescriptorImageInfo.gen.cs │ ├── DescriptorPool.gen.cs │ ├── DescriptorPoolCreateInfo.gen.cs │ ├── DescriptorSet.gen.cs │ ├── DescriptorSetAllocateInfo.gen.cs │ ├── DescriptorSetLayout.gen.cs │ ├── DescriptorSetLayoutBinding.gen.cs │ ├── DescriptorSetLayoutBindingFlagsCreateInfo.gen.cs │ ├── DescriptorSetLayoutCreateInfo.gen.cs │ ├── DescriptorSetLayoutSupport.gen.cs │ ├── DescriptorSetVariableDescriptorCountAllocateInfo.gen.cs │ ├── DescriptorSetVariableDescriptorCountLayoutSupport.gen.cs │ ├── DescriptorUpdateTemplate.gen.cs │ ├── DescriptorUpdateTemplateCreateInfo.gen.cs │ ├── Device.gen.cs │ ├── DeviceCreateInfo.gen.cs │ ├── DeviceGroupBindSparseInfo.gen.cs │ ├── DeviceGroupCommandBufferBeginInfo.gen.cs │ ├── DeviceGroupDeviceCreateInfo.gen.cs │ ├── DeviceGroupRenderPassBeginInfo.gen.cs │ ├── DeviceGroupSubmitInfo.gen.cs │ ├── DeviceMemory.gen.cs │ ├── DeviceMemoryOpaqueCaptureAddressInfo.gen.cs │ ├── DeviceQueueCreateInfo.gen.cs │ ├── DeviceQueueInfo2.gen.cs │ ├── Event.gen.cs │ ├── EventCreateInfo.gen.cs │ ├── ExportFenceCreateInfo.gen.cs │ ├── ExportMemoryAllocateInfo.gen.cs │ ├── ExportSemaphoreCreateInfo.gen.cs │ ├── ExtensionProperties.gen.cs │ ├── ExternalBufferProperties.gen.cs │ ├── ExternalFenceProperties.gen.cs │ ├── ExternalImageFormatProperties.gen.cs │ ├── ExternalMemoryBufferCreateInfo.gen.cs │ ├── ExternalMemoryImageCreateInfo.gen.cs │ ├── ExternalSemaphoreProperties.gen.cs │ ├── Fence.gen.cs │ ├── FenceCreateInfo.gen.cs │ ├── FormatProperties2.gen.cs │ ├── Framebuffer.gen.cs │ ├── FramebufferAttachmentImageInfo.gen.cs │ ├── FramebufferAttachmentsCreateInfo.gen.cs │ ├── FramebufferCreateInfo.gen.cs │ ├── Fuchsia │ │ ├── ImagePipeSurfaceCreateInfo.gen.cs │ │ └── VkInstanceCreateImagePipeSurfaceDelegate.gen.cs │ ├── Ggp │ │ ├── PresentFrameToken.gen.cs │ │ ├── StreamDescriptorSurfaceCreateInfo.gen.cs │ │ └── VkInstanceCreateStreamDescriptorSurfaceDelegate.gen.cs │ ├── Google │ │ ├── PresentTimesInfo.gen.cs │ │ ├── VkSwapchainKHRGetPastPresentationTimingDelegate.gen.cs │ │ └── VkSwapchainKHRGetRefreshCycleDurationDelegate.gen.cs │ ├── GraphicsPipelineCreateInfo.gen.cs │ ├── HeapUtil.cs │ ├── Image.gen.cs │ ├── ImageBlit.gen.cs │ ├── ImageCreateInfo.gen.cs │ ├── ImageFormatListCreateInfo.gen.cs │ ├── ImageFormatProperties2.gen.cs │ ├── ImageMemoryBarrier.gen.cs │ ├── ImageMemoryRequirementsInfo2.gen.cs │ ├── ImagePlaneMemoryRequirementsInfo.gen.cs │ ├── ImageSparseMemoryRequirementsInfo2.gen.cs │ ├── ImageStencilUsageCreateInfo.gen.cs │ ├── ImageView.gen.cs │ ├── ImageViewCreateInfo.gen.cs │ ├── ImageViewUsageCreateInfo.gen.cs │ ├── Instance.gen.cs │ ├── InstanceCreateInfo.gen.cs │ ├── Intel │ │ ├── InitializePerformanceApiInfo.gen.cs │ │ ├── PerformanceConfiguration.gen.cs │ │ ├── PerformanceConfigurationAcquireInfo.gen.cs │ │ ├── PerformanceMarkerInfo.gen.cs │ │ ├── PerformanceOverrideInfo.gen.cs │ │ ├── PerformanceStreamMarkerInfo.gen.cs │ │ ├── PerformanceValue.gen.cs │ │ ├── PhysicalDeviceShaderIntegerFunctions2Features.gen.cs │ │ ├── QueryPoolCreateInfo.gen.cs │ │ ├── VkCommandBufferSetPerformanceMarkerDelegate.gen.cs │ │ ├── VkCommandBufferSetPerformanceOverrideDelegate.gen.cs │ │ ├── VkCommandBufferSetPerformanceStreamMarkerDelegate.gen.cs │ │ ├── VkDeviceAcquirePerformanceConfigurationDelegate.gen.cs │ │ ├── VkDeviceGetPerformanceParameterDelegate.gen.cs │ │ ├── VkDeviceInitializePerformanceApiDelegate.gen.cs │ │ ├── VkDeviceUninitializePerformanceApiDelegate.gen.cs │ │ ├── VkPerformanceConfigurationINTELReleaseDelegate.gen.cs │ │ └── VkQueueSetPerformanceConfigurationDelegate.gen.cs │ ├── Khronos │ │ ├── AcquireNextImageInfo.gen.cs │ │ ├── AcquireProfilingLockInfo.gen.cs │ │ ├── AndroidSurfaceCreateInfo.gen.cs │ │ ├── BindImageMemorySwapchainInfo.gen.cs │ │ ├── D3D12FenceSubmitInfo.gen.cs │ │ ├── DeviceGroupPresentCapabilities.gen.cs │ │ ├── DeviceGroupPresentInfo.gen.cs │ │ ├── DeviceGroupSwapchainCreateInfo.gen.cs │ │ ├── Display.gen.cs │ │ ├── DisplayMode.gen.cs │ │ ├── DisplayModeCreateInfo.gen.cs │ │ ├── DisplayModeProperties.gen.cs │ │ ├── DisplayModeProperties2.gen.cs │ │ ├── DisplayPlaneCapabilities2.gen.cs │ │ ├── DisplayPlaneInfo2.gen.cs │ │ ├── DisplayPlaneProperties.gen.cs │ │ ├── DisplayPlaneProperties2.gen.cs │ │ ├── DisplayPresentInfo.gen.cs │ │ ├── DisplayProperties.gen.cs │ │ ├── DisplayProperties2.gen.cs │ │ ├── DisplaySurfaceCreateInfo.gen.cs │ │ ├── ExportFenceWin32HandleInfo.gen.cs │ │ ├── ExportMemoryWin32HandleInfo.gen.cs │ │ ├── ExportSemaphoreWin32HandleInfo.gen.cs │ │ ├── FenceGetFileDescriptorInfo.gen.cs │ │ ├── FenceGetWin32HandleInfo.gen.cs │ │ ├── ImageSwapchainCreateInfo.gen.cs │ │ ├── ImportFenceFileDescriptorInfo.gen.cs │ │ ├── ImportFenceWin32HandleInfo.gen.cs │ │ ├── ImportMemoryFileDescriptorInfo.gen.cs │ │ ├── ImportMemoryWin32HandleInfo.gen.cs │ │ ├── ImportSemaphoreFileDescriptorInfo.gen.cs │ │ ├── ImportSemaphoreWin32HandleInfo.gen.cs │ │ ├── MemoryFileDescriptorProperties.gen.cs │ │ ├── MemoryGetFileDescriptorInfo.gen.cs │ │ ├── MemoryGetWin32HandleInfo.gen.cs │ │ ├── MemoryWin32HandleProperties.gen.cs │ │ ├── PerformanceCounter.gen.cs │ │ ├── PerformanceCounterDescription.gen.cs │ │ ├── PerformanceQuerySubmitInfo.gen.cs │ │ ├── PhysicalDevicePerformanceQueryFeatures.gen.cs │ │ ├── PhysicalDevicePerformanceQueryProperties.gen.cs │ │ ├── PhysicalDevicePipelineExecutablePropertiesFeatures.gen.cs │ │ ├── PhysicalDevicePushDescriptorProperties.gen.cs │ │ ├── PhysicalDeviceShaderClockFeatures.gen.cs │ │ ├── PhysicalDeviceSurfaceInfo2.gen.cs │ │ ├── PipelineExecutableInfo.gen.cs │ │ ├── PipelineExecutableInternalRepresentation.gen.cs │ │ ├── PipelineExecutableProperties.gen.cs │ │ ├── PipelineExecutableStatistic.gen.cs │ │ ├── PipelineInfo.gen.cs │ │ ├── PresentInfo.gen.cs │ │ ├── PresentRegion.gen.cs │ │ ├── PresentRegions.gen.cs │ │ ├── QueryPoolPerformanceCreateInfo.gen.cs │ │ ├── SemaphoreGetFileDescriptorInfo.gen.cs │ │ ├── SemaphoreGetWin32HandleInfo.gen.cs │ │ ├── SharedPresentSurfaceCapabilities.gen.cs │ │ ├── Surface.gen.cs │ │ ├── SurfaceCapabilities2.gen.cs │ │ ├── SurfaceFormat2.gen.cs │ │ ├── SurfaceProtectedCapabilities.gen.cs │ │ ├── Swapchain.gen.cs │ │ ├── SwapchainCreateInfo.gen.cs │ │ ├── VkCommandBufferPushDescriptorSetDelegate.gen.cs │ │ ├── VkCommandBufferPushDescriptorSetWithTemplateDelegate.gen.cs │ │ ├── VkDeviceAcquireNextImage2Delegate.gen.cs │ │ ├── VkDeviceAcquireProfilingLockDelegate.gen.cs │ │ ├── VkDeviceCreateSharedSwapchainsDelegate.gen.cs │ │ ├── VkDeviceCreateSwapchainDelegate.gen.cs │ │ ├── VkDeviceGetFenceFileDescriptorDelegate.gen.cs │ │ ├── VkDeviceGetFenceWin32HandleDelegate.gen.cs │ │ ├── VkDeviceGetGroupPresentCapabilitiesDelegate.gen.cs │ │ ├── VkDeviceGetGroupSurfacePresentModesDelegate.gen.cs │ │ ├── VkDeviceGetMemoryFileDescriptorDelegate.gen.cs │ │ ├── VkDeviceGetMemoryFileDescriptorPropertiesDelegate.gen.cs │ │ ├── VkDeviceGetMemoryWin32HandleDelegate.gen.cs │ │ ├── VkDeviceGetMemoryWin32HandlePropertiesDelegate.gen.cs │ │ ├── VkDeviceGetPipelineExecutableInternalRepresentationsDelegate.gen.cs │ │ ├── VkDeviceGetPipelineExecutablePropertiesDelegate.gen.cs │ │ ├── VkDeviceGetPipelineExecutableStatisticsDelegate.gen.cs │ │ ├── VkDeviceGetSemaphoreFileDescriptorDelegate.gen.cs │ │ ├── VkDeviceGetSemaphoreWin32HandleDelegate.gen.cs │ │ ├── VkDeviceImportFenceFileDescriptorDelegate.gen.cs │ │ ├── VkDeviceImportFenceWin32HandleDelegate.gen.cs │ │ ├── VkDeviceImportSemaphoreFileDescriptorDelegate.gen.cs │ │ ├── VkDeviceImportSemaphoreWin32HandleDelegate.gen.cs │ │ ├── VkDeviceReleaseProfilingLockDelegate.gen.cs │ │ ├── VkDisplayModeKHRGetDisplayPlaneCapabilitiesDelegate.gen.cs │ │ ├── VkInstanceCreateAndroidSurfaceDelegate.gen.cs │ │ ├── VkInstanceCreateDisplayPlaneSurfaceDelegate.gen.cs │ │ ├── VkInstanceCreateWaylandSurfaceDelegate.gen.cs │ │ ├── VkInstanceCreateWin32SurfaceDelegate.gen.cs │ │ ├── VkInstanceCreateXcbSurfaceDelegate.gen.cs │ │ ├── VkInstanceCreateXlibSurfaceDelegate.gen.cs │ │ ├── VkPhysicalDeviceCreateDisplayModeDelegate.gen.cs │ │ ├── VkPhysicalDeviceEnumerateQueueFamilyPerformanceQueryCountersDelegate.gen.cs │ │ ├── VkPhysicalDeviceGetDisplayModeProperties2Delegate.gen.cs │ │ ├── VkPhysicalDeviceGetDisplayModePropertiesDelegate.gen.cs │ │ ├── VkPhysicalDeviceGetDisplayPlaneCapabilities2Delegate.gen.cs │ │ ├── VkPhysicalDeviceGetDisplayPlaneProperties2Delegate.gen.cs │ │ ├── VkPhysicalDeviceGetDisplayPlanePropertiesDelegate.gen.cs │ │ ├── VkPhysicalDeviceGetDisplayPlaneSupportedDisplaysDelegate.gen.cs │ │ ├── VkPhysicalDeviceGetDisplayProperties2Delegate.gen.cs │ │ ├── VkPhysicalDeviceGetDisplayPropertiesDelegate.gen.cs │ │ ├── VkPhysicalDeviceGetPresentRectanglesDelegate.gen.cs │ │ ├── VkPhysicalDeviceGetQueueFamilyPerformanceQueryPassesDelegate.gen.cs │ │ ├── VkPhysicalDeviceGetSurfaceCapabilities2Delegate.gen.cs │ │ ├── VkPhysicalDeviceGetSurfaceCapabilitiesDelegate.gen.cs │ │ ├── VkPhysicalDeviceGetSurfaceFormats2Delegate.gen.cs │ │ ├── VkPhysicalDeviceGetSurfaceFormatsDelegate.gen.cs │ │ ├── VkPhysicalDeviceGetSurfacePresentModesDelegate.gen.cs │ │ ├── VkPhysicalDeviceGetSurfaceSupportDelegate.gen.cs │ │ ├── VkPhysicalDeviceGetWaylandPresentationSupportDelegate.gen.cs │ │ ├── VkPhysicalDeviceGetWin32PresentationSupportDelegate.gen.cs │ │ ├── VkPhysicalDeviceGetXcbPresentationSupportDelegate.gen.cs │ │ ├── VkPhysicalDeviceGetXlibPresentationSupportDelegate.gen.cs │ │ ├── VkQueuePresentDelegate.gen.cs │ │ ├── VkSurfaceKHRDestroyDelegate.gen.cs │ │ ├── VkSwapchainKHRAcquireNextImageDelegate.gen.cs │ │ ├── VkSwapchainKHRDestroyDelegate.gen.cs │ │ ├── VkSwapchainKHRGetImagesDelegate.gen.cs │ │ ├── VkSwapchainKHRGetStatusDelegate.gen.cs │ │ ├── WaylandSurfaceCreateInfo.gen.cs │ │ ├── Win32KeyedMutexAcquireReleaseInfo.gen.cs │ │ ├── Win32SurfaceCreateInfo.gen.cs │ │ ├── XcbSurfaceCreateInfo.gen.cs │ │ └── XlibSurfaceCreateInfo.gen.cs │ ├── LayerProperties.gen.cs │ ├── MappedMemoryRange.gen.cs │ ├── MemoryAllocateFlagsInfo.gen.cs │ ├── MemoryAllocateInfo.gen.cs │ ├── MemoryBarrier.gen.cs │ ├── MemoryDedicatedAllocateInfo.gen.cs │ ├── MemoryDedicatedRequirements.gen.cs │ ├── MemoryOpaqueCaptureAddressAllocateInfo.gen.cs │ ├── MemoryRequirements2.gen.cs │ ├── MoltenVk │ │ ├── IOSSurfaceCreateInfo.gen.cs │ │ ├── MacOSSurfaceCreateInfo.gen.cs │ │ ├── VkInstanceCreateIOSSurfaceDelegate.gen.cs │ │ └── VkInstanceCreateMacOSSurfaceDelegate.gen.cs │ ├── Multivendor │ │ ├── AttachmentSampleLocations.gen.cs │ │ ├── BufferDeviceAddressCreateInfo.gen.cs │ │ ├── CalibratedTimestampInfo.gen.cs │ │ ├── CommandBufferInheritanceConditionalRenderingInfo.gen.cs │ │ ├── ConditionalRenderingBeginInfo.gen.cs │ │ ├── DebugMarkerMarkerInfo.gen.cs │ │ ├── DebugMarkerObjectNameInfo.gen.cs │ │ ├── DebugMarkerObjectTagInfo.gen.cs │ │ ├── DebugReportCallback.gen.cs │ │ ├── DebugReportCallbackCreateInfo.gen.cs │ │ ├── DebugUtilsLabel.gen.cs │ │ ├── DebugUtilsMessenger.gen.cs │ │ ├── DebugUtilsMessengerCallbackData.gen.cs │ │ ├── DebugUtilsMessengerCreateInfo.gen.cs │ │ ├── DebugUtilsObjectNameInfo.gen.cs │ │ ├── DebugUtilsObjectTagInfo.gen.cs │ │ ├── DescriptorPoolInlineUniformBlockCreateInfo.gen.cs │ │ ├── DeviceEventInfo.gen.cs │ │ ├── DeviceQueueGlobalPriorityCreateInfo.gen.cs │ │ ├── DisplayEventInfo.gen.cs │ │ ├── DisplayPowerInfo.gen.cs │ │ ├── DrmFormatModifierPropertiesList.gen.cs │ │ ├── FilterCubicImageViewImageFormatProperties.gen.cs │ │ ├── HdrMetadata.gen.cs │ │ ├── HeadlessSurfaceCreateInfo.gen.cs │ │ ├── ImageDrmFormatModifierExplicitCreateInfo.gen.cs │ │ ├── ImageDrmFormatModifierListCreateInfo.gen.cs │ │ ├── ImageDrmFormatModifierProperties.gen.cs │ │ ├── ImageViewASTCDecodeMode.gen.cs │ │ ├── ImportMemoryHostPointerInfo.gen.cs │ │ ├── MemoryHostPointerProperties.gen.cs │ │ ├── MemoryPriorityAllocateInfo.gen.cs │ │ ├── MetalSurfaceCreateInfo.gen.cs │ │ ├── MultisampleProperties.gen.cs │ │ ├── PhysicalDeviceASTCDecodeFeatures.gen.cs │ │ ├── PhysicalDeviceBlendOperationAdvancedFeatures.gen.cs │ │ ├── PhysicalDeviceBlendOperationAdvancedProperties.gen.cs │ │ ├── PhysicalDeviceBufferDeviceAddressFeatures.gen.cs │ │ ├── PhysicalDeviceConditionalRenderingFeatures.gen.cs │ │ ├── PhysicalDeviceConservativeRasterizationProperties.gen.cs │ │ ├── PhysicalDeviceDepthClipEnableFeatures.gen.cs │ │ ├── PhysicalDeviceDiscardRectangleProperties.gen.cs │ │ ├── PhysicalDeviceExternalMemoryHostProperties.gen.cs │ │ ├── PhysicalDeviceFragmentDensityMapFeatures.gen.cs │ │ ├── PhysicalDeviceFragmentDensityMapProperties.gen.cs │ │ ├── PhysicalDeviceFragmentShaderInterlockFeatures.gen.cs │ │ ├── PhysicalDeviceImageDrmFormatModifierInfo.gen.cs │ │ ├── PhysicalDeviceImageViewImageFormatInfo.gen.cs │ │ ├── PhysicalDeviceIndexTypeUint8Features.gen.cs │ │ ├── PhysicalDeviceInlineUniformBlockFeatures.gen.cs │ │ ├── PhysicalDeviceInlineUniformBlockProperties.gen.cs │ │ ├── PhysicalDeviceLineRasterizationFeatures.gen.cs │ │ ├── PhysicalDeviceLineRasterizationProperties.gen.cs │ │ ├── PhysicalDeviceMemoryBudgetProperties.gen.cs │ │ ├── PhysicalDeviceMemoryPriorityFeatures.gen.cs │ │ ├── PhysicalDevicePCIBusInfoProperties.gen.cs │ │ ├── PhysicalDeviceSampleLocationsProperties.gen.cs │ │ ├── PhysicalDeviceShaderDemoteToHelperInvocationFeatures.gen.cs │ │ ├── PhysicalDeviceSubgroupSizeControlFeatures.gen.cs │ │ ├── PhysicalDeviceSubgroupSizeControlProperties.gen.cs │ │ ├── PhysicalDeviceTexelBufferAlignmentFeatures.gen.cs │ │ ├── PhysicalDeviceTexelBufferAlignmentProperties.gen.cs │ │ ├── PhysicalDeviceTextureCompressionASTCHDRFeatures.gen.cs │ │ ├── PhysicalDeviceToolProperties.gen.cs │ │ ├── PhysicalDeviceTransformFeedbackFeatures.gen.cs │ │ ├── PhysicalDeviceTransformFeedbackProperties.gen.cs │ │ ├── PhysicalDeviceVertexAttributeDivisorFeatures.gen.cs │ │ ├── PhysicalDeviceVertexAttributeDivisorProperties.gen.cs │ │ ├── PhysicalDeviceYcbcrImageArraysFeatures.gen.cs │ │ ├── PipelineColorBlendAdvancedStateCreateInfo.gen.cs │ │ ├── PipelineCreationFeedbackCreateInfo.gen.cs │ │ ├── PipelineDiscardRectangleStateCreateInfo.gen.cs │ │ ├── PipelineRasterizationConservativeStateCreateInfo.gen.cs │ │ ├── PipelineRasterizationDepthClipStateCreateInfo.gen.cs │ │ ├── PipelineRasterizationLineStateCreateInfo.gen.cs │ │ ├── PipelineRasterizationStateStreamCreateInfo.gen.cs │ │ ├── PipelineSampleLocationsStateCreateInfo.gen.cs │ │ ├── PipelineShaderStageRequiredSubgroupSizeCreateInfo.gen.cs │ │ ├── PipelineVertexInputDivisorStateCreateInfo.gen.cs │ │ ├── RenderPassFragmentDensityMapCreateInfo.gen.cs │ │ ├── RenderPassSampleLocationsBeginInfo.gen.cs │ │ ├── SampleLocationsInfo.gen.cs │ │ ├── ShaderModuleValidationCacheCreateInfo.gen.cs │ │ ├── SubpassSampleLocations.gen.cs │ │ ├── SurfaceCapabilities2.gen.cs │ │ ├── SurfaceCapabilitiesFullScreenExclusive.gen.cs │ │ ├── SurfaceFullScreenExclusiveInfo.gen.cs │ │ ├── SurfaceFullScreenExclusiveWin32Info.gen.cs │ │ ├── SwapchainCounterCreateInfo.gen.cs │ │ ├── ValidationCache.gen.cs │ │ ├── ValidationCacheCreateInfo.gen.cs │ │ ├── ValidationFeatures.gen.cs │ │ ├── ValidationFlags.gen.cs │ │ ├── VkCommandBufferBeginConditionalRenderingDelegate.gen.cs │ │ ├── VkCommandBufferBeginDebugUtilsLabelDelegate.gen.cs │ │ ├── VkCommandBufferBeginQueryIndexedDelegate.gen.cs │ │ ├── VkCommandBufferBeginTransformFeedbackDelegate.gen.cs │ │ ├── VkCommandBufferBindTransformFeedbackBuffersDelegate.gen.cs │ │ ├── VkCommandBufferDrawIndirectByteCountDelegate.gen.cs │ │ ├── VkCommandBufferEndConditionalRenderingDelegate.gen.cs │ │ ├── VkCommandBufferEndDebugUtilsLabelDelegate.gen.cs │ │ ├── VkCommandBufferEndQueryIndexedDelegate.gen.cs │ │ ├── VkCommandBufferEndTransformFeedbackDelegate.gen.cs │ │ ├── VkCommandBufferInsertDebugUtilsLabelDelegate.gen.cs │ │ ├── VkCommandBufferSetDiscardRectangleDelegate.gen.cs │ │ ├── VkCommandBufferSetLineStippleDelegate.gen.cs │ │ ├── VkCommandBufferSetSampleLocationsDelegate.gen.cs │ │ ├── VkDebugReportCallbackEXTDestroyDelegate.gen.cs │ │ ├── VkDebugUtilsMessengerEXTDestroyDelegate.gen.cs │ │ ├── VkDeviceCreateValidationCacheDelegate.gen.cs │ │ ├── VkDeviceDisplayPowerControlDelegate.gen.cs │ │ ├── VkDeviceGetCalibratedTimestampsDelegate.gen.cs │ │ ├── VkDeviceGetGroupSurfacePresentModes2Delegate.gen.cs │ │ ├── VkDeviceGetMemoryHostPointerPropertiesDelegate.gen.cs │ │ ├── VkDeviceRegisterDisplayEventDelegate.gen.cs │ │ ├── VkDeviceRegisterEventDelegate.gen.cs │ │ ├── VkDeviceSetDebugUtilsObjectNameDelegate.gen.cs │ │ ├── VkDeviceSetDebugUtilsObjectTagDelegate.gen.cs │ │ ├── VkDeviceSetHdrMetadataDelegate.gen.cs │ │ ├── VkImageGetDrmFormatModifierPropertiesDelegate.gen.cs │ │ ├── VkInstanceCreateDebugReportCallbackDelegate.gen.cs │ │ ├── VkInstanceCreateDebugUtilsMessengerDelegate.gen.cs │ │ ├── VkInstanceCreateHeadlessSurfaceDelegate.gen.cs │ │ ├── VkInstanceCreateMetalSurfaceDelegate.gen.cs │ │ ├── VkInstanceDebugReportMessageDelegate.gen.cs │ │ ├── VkInstanceSubmitDebugUtilsMessageDelegate.gen.cs │ │ ├── VkPhysicalDeviceAcquireXlibDisplayDelegate.gen.cs │ │ ├── VkPhysicalDeviceGetCalibrateableTimeDomainsDelegate.gen.cs │ │ ├── VkPhysicalDeviceGetMultisamplePropertiesDelegate.gen.cs │ │ ├── VkPhysicalDeviceGetRandROutputDisplayDelegate.gen.cs │ │ ├── VkPhysicalDeviceGetSurfaceCapabilities2Delegate.gen.cs │ │ ├── VkPhysicalDeviceGetSurfacePresentModes2Delegate.gen.cs │ │ ├── VkPhysicalDeviceGetToolPropertiesDelegate.gen.cs │ │ ├── VkPhysicalDeviceReleaseDisplayDelegate.gen.cs │ │ ├── VkQueueBeginDebugUtilsLabelDelegate.gen.cs │ │ ├── VkQueueEndDebugUtilsLabelDelegate.gen.cs │ │ ├── VkQueueInsertDebugUtilsLabelDelegate.gen.cs │ │ ├── VkSwapchainKHRAcquireFullScreenExclusiveModeDelegate.gen.cs │ │ ├── VkSwapchainKHRGetCounterDelegate.gen.cs │ │ ├── VkSwapchainKHRReleaseFullScreenExclusiveModeDelegate.gen.cs │ │ ├── VkValidationCacheEXTDestroyDelegate.gen.cs │ │ ├── VkValidationCacheEXTGetDataDelegate.gen.cs │ │ ├── VkValidationCacheEXTMergeValidationCachesDelegate.gen.cs │ │ └── WriteDescriptorSetInlineUniformBlock.gen.cs │ ├── NVidia │ │ ├── AccelerationStructure.gen.cs │ │ ├── AccelerationStructureCreateInfo.gen.cs │ │ ├── AccelerationStructureInfo.gen.cs │ │ ├── AccelerationStructureMemoryRequirementsInfo.gen.cs │ │ ├── BindAccelerationStructureMemoryInfo.gen.cs │ │ ├── CheckpointData.gen.cs │ │ ├── CoarseSampleOrderCustom.gen.cs │ │ ├── CooperativeMatrixProperties.gen.cs │ │ ├── DedicatedAllocationBufferCreateInfo.gen.cs │ │ ├── DedicatedAllocationImageCreateInfo.gen.cs │ │ ├── DedicatedAllocationMemoryAllocateInfo.gen.cs │ │ ├── Experimental │ │ │ ├── CommandProcessCommandsInfo.gen.cs │ │ │ ├── CommandReserveSpaceForCommandsInfo.gen.cs │ │ │ ├── DeviceGeneratedCommandsFeatures.gen.cs │ │ │ ├── DeviceGeneratedCommandsLimits.gen.cs │ │ │ ├── ImageViewHandleInfo.gen.cs │ │ │ ├── IndirectCommandsLayout.gen.cs │ │ │ ├── IndirectCommandsLayoutCreateInfo.gen.cs │ │ │ ├── IndirectCommandsToken.gen.cs │ │ │ ├── ObjectTable.gen.cs │ │ │ ├── ObjectTableCreateInfo.gen.cs │ │ │ ├── ObjectTableDescriptorSetEntry.gen.cs │ │ │ ├── ObjectTableIndexBufferEntry.gen.cs │ │ │ ├── ObjectTablePipelineEntry.gen.cs │ │ │ ├── ObjectTablePushConstantEntry.gen.cs │ │ │ ├── ObjectTableVertexBufferEntry.gen.cs │ │ │ ├── PhysicalDeviceMultiviewPerViewAttributesProperties.gen.cs │ │ │ ├── VkCommandBufferProcessCommandsDelegate.gen.cs │ │ │ ├── VkCommandBufferReserveSpaceForCommandsDelegate.gen.cs │ │ │ ├── VkDeviceCreateIndirectCommandsLayoutDelegate.gen.cs │ │ │ ├── VkDeviceCreateObjectTableDelegate.gen.cs │ │ │ ├── VkDeviceGetImageViewHandleDelegate.gen.cs │ │ │ ├── VkIndirectCommandsLayoutNVXDestroyDelegate.gen.cs │ │ │ ├── VkObjectTableNVXDestroyDelegate.gen.cs │ │ │ ├── VkObjectTableNVXRegisterObjectsDelegate.gen.cs │ │ │ ├── VkObjectTableNVXUnregisterObjectsDelegate.gen.cs │ │ │ └── VkPhysicalDeviceGetGeneratedCommandsPropertiesDelegate.gen.cs │ │ ├── ExportMemoryAllocateInfo.gen.cs │ │ ├── ExportMemoryWin32HandleInfo.gen.cs │ │ ├── ExternalMemoryImageCreateInfo.gen.cs │ │ ├── FramebufferMixedSamplesCombination.gen.cs │ │ ├── Geometry.gen.cs │ │ ├── GeometryAABB.gen.cs │ │ ├── GeometryData.gen.cs │ │ ├── GeometryTriangles.gen.cs │ │ ├── ImportMemoryWin32HandleInfo.gen.cs │ │ ├── PhysicalDeviceComputeShaderDerivativesFeatures.gen.cs │ │ ├── PhysicalDeviceCooperativeMatrixFeatures.gen.cs │ │ ├── PhysicalDeviceCooperativeMatrixProperties.gen.cs │ │ ├── PhysicalDeviceCornerSampledImageFeatures.gen.cs │ │ ├── PhysicalDeviceCoverageReductionModeFeatures.gen.cs │ │ ├── PhysicalDeviceDedicatedAllocationImageAliasingFeatures.gen.cs │ │ ├── PhysicalDeviceExclusiveScissorFeatures.gen.cs │ │ ├── PhysicalDeviceFragmentShaderBarycentricFeatures.gen.cs │ │ ├── PhysicalDeviceMeshShaderFeatures.gen.cs │ │ ├── PhysicalDeviceMeshShaderProperties.gen.cs │ │ ├── PhysicalDeviceRayTracingProperties.gen.cs │ │ ├── PhysicalDeviceRepresentativeFragmentTestFeatures.gen.cs │ │ ├── PhysicalDeviceShaderImageFootprintFeatures.gen.cs │ │ ├── PhysicalDeviceShaderSMBuiltinsFeatures.gen.cs │ │ ├── PhysicalDeviceShaderSMBuiltinsProperties.gen.cs │ │ ├── PhysicalDeviceShadingRateImageFeatures.gen.cs │ │ ├── PhysicalDeviceShadingRateImageProperties.gen.cs │ │ ├── PipelineCoverageModulationStateCreateInfo.gen.cs │ │ ├── PipelineCoverageReductionStateCreateInfo.gen.cs │ │ ├── PipelineCoverageToColorStateCreateInfo.gen.cs │ │ ├── PipelineRepresentativeFragmentTestStateCreateInfo.gen.cs │ │ ├── PipelineViewportCoarseSampleOrderStateCreateInfo.gen.cs │ │ ├── PipelineViewportExclusiveScissorStateCreateInfo.gen.cs │ │ ├── PipelineViewportShadingRateImageStateCreateInfo.gen.cs │ │ ├── PipelineViewportSwizzleStateCreateInfo.gen.cs │ │ ├── PipelineViewportWScalingStateCreateInfo.gen.cs │ │ ├── QueueFamilyCheckpointProperties.gen.cs │ │ ├── RayTracingPipelineCreateInfo.gen.cs │ │ ├── RayTracingShaderGroupCreateInfo.gen.cs │ │ ├── ShadingRatePalette.gen.cs │ │ ├── VkAccelerationStructureNVDestroyDelegate.gen.cs │ │ ├── VkAccelerationStructureNVGetHandleDelegate.gen.cs │ │ ├── VkCommandBufferBindShadingRateImageDelegate.gen.cs │ │ ├── VkCommandBufferBuildAccelerationStructureDelegate.gen.cs │ │ ├── VkCommandBufferCopyAccelerationStructureDelegate.gen.cs │ │ ├── VkCommandBufferDrawMeshTasksDelegate.gen.cs │ │ ├── VkCommandBufferDrawMeshTasksIndirectCountDelegate.gen.cs │ │ ├── VkCommandBufferDrawMeshTasksIndirectDelegate.gen.cs │ │ ├── VkCommandBufferSetCheckpointDelegate.gen.cs │ │ ├── VkCommandBufferSetCoarseSampleOrderDelegate.gen.cs │ │ ├── VkCommandBufferSetExclusiveScissorDelegate.gen.cs │ │ ├── VkCommandBufferSetViewportShadingRatePaletteDelegate.gen.cs │ │ ├── VkCommandBufferSetViewportWScalingDelegate.gen.cs │ │ ├── VkCommandBufferTraceRaysDelegate.gen.cs │ │ ├── VkCommandBufferWriteAccelerationStructuresPropertiesDelegate.gen.cs │ │ ├── VkDeviceBindAccelerationStructureMemoryDelegate.gen.cs │ │ ├── VkDeviceCreateAccelerationStructureDelegate.gen.cs │ │ ├── VkDeviceCreateRayTracingPipelinesDelegate.gen.cs │ │ ├── VkDeviceGetAccelerationStructureMemoryRequirementsDelegate.gen.cs │ │ ├── VkDeviceMemoryGetWin32HandleDelegate.gen.cs │ │ ├── VkPhysicalDeviceGetCooperativeMatrixPropertiesDelegate.gen.cs │ │ ├── VkPhysicalDeviceGetExternalImageFormatPropertiesDelegate.gen.cs │ │ ├── VkPhysicalDeviceGetSupportedFramebufferMixedSamplesCombinationsDelegate.gen.cs │ │ ├── VkPipelineCompileDeferredDelegate.gen.cs │ │ ├── VkPipelineGetRayTracingShaderGroupHandlesDelegate.gen.cs │ │ ├── VkQueueGetCheckpointDataDelegate.gen.cs │ │ ├── Win32KeyedMutexAcquireReleaseInfo.gen.cs │ │ └── WriteDescriptorSetAccelerationStructure.gen.cs │ ├── NativeLibrary.cs │ ├── Nintendo │ │ ├── ViSurfaceCreateInfo.gen.cs │ │ └── VkInstanceCreateViSurfaceDelegate.gen.cs │ ├── PhysicalDevice.gen.cs │ ├── PhysicalDevice16BitStorageFeatures.gen.cs │ ├── PhysicalDevice8BitStorageFeatures.gen.cs │ ├── PhysicalDeviceBufferDeviceAddressFeatures.gen.cs │ ├── PhysicalDeviceDepthStencilResolveProperties.gen.cs │ ├── PhysicalDeviceDescriptorIndexingFeatures.gen.cs │ ├── PhysicalDeviceDescriptorIndexingProperties.gen.cs │ ├── PhysicalDeviceDriverProperties.gen.cs │ ├── PhysicalDeviceExternalBufferInfo.gen.cs │ ├── PhysicalDeviceExternalFenceInfo.gen.cs │ ├── PhysicalDeviceExternalImageFormatInfo.gen.cs │ ├── PhysicalDeviceExternalSemaphoreInfo.gen.cs │ ├── PhysicalDeviceFeatures.gen.cs │ ├── PhysicalDeviceFeatures2.gen.cs │ ├── PhysicalDeviceFloatControlsProperties.gen.cs │ ├── PhysicalDeviceGroupProperties.gen.cs │ ├── PhysicalDeviceHostQueryResetFeatures.gen.cs │ ├── PhysicalDeviceIDProperties.gen.cs │ ├── PhysicalDeviceImageFormatInfo2.gen.cs │ ├── PhysicalDeviceImagelessFramebufferFeatures.gen.cs │ ├── PhysicalDeviceLimits.gen.cs │ ├── PhysicalDeviceMaintenance3Properties.gen.cs │ ├── PhysicalDeviceMemoryProperties.gen.cs │ ├── PhysicalDeviceMemoryProperties2.gen.cs │ ├── PhysicalDeviceMultiviewFeatures.gen.cs │ ├── PhysicalDeviceMultiviewProperties.gen.cs │ ├── PhysicalDevicePointClippingProperties.gen.cs │ ├── PhysicalDeviceProperties.gen.cs │ ├── PhysicalDeviceProperties2.gen.cs │ ├── PhysicalDeviceProtectedMemoryFeatures.gen.cs │ ├── PhysicalDeviceProtectedMemoryProperties.gen.cs │ ├── PhysicalDeviceSamplerFilterMinmaxProperties.gen.cs │ ├── PhysicalDeviceSamplerYcbcrConversionFeatures.gen.cs │ ├── PhysicalDeviceScalarBlockLayoutFeatures.gen.cs │ ├── PhysicalDeviceSeparateDepthStencilLayoutsFeatures.gen.cs │ ├── PhysicalDeviceShaderAtomicInt64Features.gen.cs │ ├── PhysicalDeviceShaderDrawParametersFeatures.gen.cs │ ├── PhysicalDeviceShaderFloat16Int8Features.gen.cs │ ├── PhysicalDeviceShaderSubgroupExtendedTypesFeatures.gen.cs │ ├── PhysicalDeviceSparseImageFormatInfo2.gen.cs │ ├── PhysicalDeviceSparseProperties.gen.cs │ ├── PhysicalDeviceSubgroupProperties.gen.cs │ ├── PhysicalDeviceTimelineSemaphoreFeatures.gen.cs │ ├── PhysicalDeviceTimelineSemaphoreProperties.gen.cs │ ├── PhysicalDeviceUniformBufferStandardLayoutFeatures.gen.cs │ ├── PhysicalDeviceVariablePointersFeatures.gen.cs │ ├── PhysicalDeviceVulkan11Features.gen.cs │ ├── PhysicalDeviceVulkan11Properties.gen.cs │ ├── PhysicalDeviceVulkan12Features.gen.cs │ ├── PhysicalDeviceVulkan12Properties.gen.cs │ ├── PhysicalDeviceVulkanMemoryModelFeatures.gen.cs │ ├── Pipeline.gen.cs │ ├── PipelineCache.gen.cs │ ├── PipelineCacheCreateInfo.gen.cs │ ├── PipelineColorBlendAttachmentState.gen.cs │ ├── PipelineColorBlendStateCreateInfo.gen.cs │ ├── PipelineDepthStencilStateCreateInfo.gen.cs │ ├── PipelineDynamicStateCreateInfo.gen.cs │ ├── PipelineInputAssemblyStateCreateInfo.gen.cs │ ├── PipelineLayout.gen.cs │ ├── PipelineLayoutCreateInfo.gen.cs │ ├── PipelineMultisampleStateCreateInfo.gen.cs │ ├── PipelineRasterizationStateCreateInfo.gen.cs │ ├── PipelineShaderStageCreateInfo.gen.cs │ ├── PipelineTessellationDomainOriginStateCreateInfo.gen.cs │ ├── PipelineTessellationStateCreateInfo.gen.cs │ ├── PipelineVertexInputStateCreateInfo.gen.cs │ ├── PipelineViewportStateCreateInfo.gen.cs │ ├── ProtectedSubmitInfo.gen.cs │ ├── QueryPool.gen.cs │ ├── QueryPoolCreateInfo.gen.cs │ ├── Queue.gen.cs │ ├── QueueFamilyProperties2.gen.cs │ ├── RenderPass.gen.cs │ ├── RenderPassAttachmentBeginInfo.gen.cs │ ├── RenderPassBeginInfo.gen.cs │ ├── RenderPassCreateInfo.gen.cs │ ├── RenderPassCreateInfo2.gen.cs │ ├── RenderPassInputAttachmentAspectCreateInfo.gen.cs │ ├── RenderPassMultiviewCreateInfo.gen.cs │ ├── Sampler.gen.cs │ ├── SamplerCreateInfo.gen.cs │ ├── SamplerReductionModeCreateInfo.gen.cs │ ├── SamplerYcbcrConversion.gen.cs │ ├── SamplerYcbcrConversionCreateInfo.gen.cs │ ├── SamplerYcbcrConversionImageFormatProperties.gen.cs │ ├── SamplerYcbcrConversionInfo.gen.cs │ ├── Semaphore.gen.cs │ ├── SemaphoreCreateInfo.gen.cs │ ├── SemaphoreSignalInfo.gen.cs │ ├── SemaphoreTypeCreateInfo.gen.cs │ ├── SemaphoreWaitInfo.gen.cs │ ├── ShaderModule.gen.cs │ ├── ShaderModuleCreateInfo.gen.cs │ ├── SparseBufferMemoryBindInfo.gen.cs │ ├── SparseImageFormatProperties2.gen.cs │ ├── SparseImageMemoryBind.gen.cs │ ├── SparseImageMemoryBindInfo.gen.cs │ ├── SparseImageMemoryRequirements2.gen.cs │ ├── SparseImageOpaqueMemoryBindInfo.gen.cs │ ├── SparseMemoryBind.gen.cs │ ├── SpecializationInfo.gen.cs │ ├── SubmitInfo.gen.cs │ ├── SubpassBeginInfo.gen.cs │ ├── SubpassDependency2.gen.cs │ ├── SubpassDescription.gen.cs │ ├── SubpassDescription2.gen.cs │ ├── SubpassDescriptionDepthStencilResolve.gen.cs │ ├── SubpassEndInfo.gen.cs │ ├── TimelineSemaphoreSubmitInfo.gen.cs │ ├── VkBufferBindMemoryDelegate.gen.cs │ ├── VkBufferDestroyDelegate.gen.cs │ ├── VkBufferGetMemoryRequirementsDelegate.gen.cs │ ├── VkBufferViewDestroyDelegate.gen.cs │ ├── VkCommandBufferBeginDelegate.gen.cs │ ├── VkCommandBufferBeginQueryDelegate.gen.cs │ ├── VkCommandBufferBeginRenderPass2Delegate.gen.cs │ ├── VkCommandBufferBeginRenderPassDelegate.gen.cs │ ├── VkCommandBufferBindDescriptorSetsDelegate.gen.cs │ ├── VkCommandBufferBindIndexBufferDelegate.gen.cs │ ├── VkCommandBufferBindPipelineDelegate.gen.cs │ ├── VkCommandBufferBindVertexBuffersDelegate.gen.cs │ ├── VkCommandBufferBlitImageDelegate.gen.cs │ ├── VkCommandBufferClearAttachmentsDelegate.gen.cs │ ├── VkCommandBufferClearColorImageDelegate.gen.cs │ ├── VkCommandBufferClearDepthStencilImageDelegate.gen.cs │ ├── VkCommandBufferCopyBufferDelegate.gen.cs │ ├── VkCommandBufferCopyBufferToImageDelegate.gen.cs │ ├── VkCommandBufferCopyImageDelegate.gen.cs │ ├── VkCommandBufferCopyImageToBufferDelegate.gen.cs │ ├── VkCommandBufferCopyQueryPoolResultsDelegate.gen.cs │ ├── VkCommandBufferDispatchBaseDelegate.gen.cs │ ├── VkCommandBufferDispatchDelegate.gen.cs │ ├── VkCommandBufferDispatchIndirectDelegate.gen.cs │ ├── VkCommandBufferDrawDelegate.gen.cs │ ├── VkCommandBufferDrawIndexedDelegate.gen.cs │ ├── VkCommandBufferDrawIndexedIndirectCountDelegate.gen.cs │ ├── VkCommandBufferDrawIndexedIndirectDelegate.gen.cs │ ├── VkCommandBufferDrawIndirectCountDelegate.gen.cs │ ├── VkCommandBufferDrawIndirectDelegate.gen.cs │ ├── VkCommandBufferEndDelegate.gen.cs │ ├── VkCommandBufferEndQueryDelegate.gen.cs │ ├── VkCommandBufferEndRenderPass2Delegate.gen.cs │ ├── VkCommandBufferEndRenderPassDelegate.gen.cs │ ├── VkCommandBufferExecuteCommandsDelegate.gen.cs │ ├── VkCommandBufferFillBufferDelegate.gen.cs │ ├── VkCommandBufferNextSubpass2Delegate.gen.cs │ ├── VkCommandBufferNextSubpassDelegate.gen.cs │ ├── VkCommandBufferPipelineBarrierDelegate.gen.cs │ ├── VkCommandBufferPushConstantsDelegate.gen.cs │ ├── VkCommandBufferResetDelegate.gen.cs │ ├── VkCommandBufferResetEventDelegate.gen.cs │ ├── VkCommandBufferResetQueryPoolDelegate.gen.cs │ ├── VkCommandBufferResolveImageDelegate.gen.cs │ ├── VkCommandBufferSetBlendConstantsDelegate.gen.cs │ ├── VkCommandBufferSetDepthBiasDelegate.gen.cs │ ├── VkCommandBufferSetDepthBoundsDelegate.gen.cs │ ├── VkCommandBufferSetDeviceMaskDelegate.gen.cs │ ├── VkCommandBufferSetEventDelegate.gen.cs │ ├── VkCommandBufferSetLineWidthDelegate.gen.cs │ ├── VkCommandBufferSetScissorDelegate.gen.cs │ ├── VkCommandBufferSetStencilCompareMaskDelegate.gen.cs │ ├── VkCommandBufferSetStencilReferenceDelegate.gen.cs │ ├── VkCommandBufferSetStencilWriteMaskDelegate.gen.cs │ ├── VkCommandBufferSetViewportDelegate.gen.cs │ ├── VkCommandBufferUpdateBufferDelegate.gen.cs │ ├── VkCommandBufferWaitEventsDelegate.gen.cs │ ├── VkCommandBufferWriteTimestampDelegate.gen.cs │ ├── VkCommandPoolDestroyDelegate.gen.cs │ ├── VkCommandPoolFreeCommandBuffersDelegate.gen.cs │ ├── VkCommandPoolResetDelegate.gen.cs │ ├── VkCommandPoolTrimDelegate.gen.cs │ ├── VkDescriptorPoolDestroyDelegate.gen.cs │ ├── VkDescriptorPoolFreeDescriptorSetsDelegate.gen.cs │ ├── VkDescriptorPoolResetDelegate.gen.cs │ ├── VkDescriptorSetLayoutDestroyDelegate.gen.cs │ ├── VkDescriptorUpdateTemplateDestroyDelegate.gen.cs │ ├── VkDeviceAllocateCommandBuffersDelegate.gen.cs │ ├── VkDeviceAllocateDescriptorSetsDelegate.gen.cs │ ├── VkDeviceAllocateMemoryDelegate.gen.cs │ ├── VkDeviceBindBufferMemory2Delegate.gen.cs │ ├── VkDeviceBindImageMemory2Delegate.gen.cs │ ├── VkDeviceCreateBufferDelegate.gen.cs │ ├── VkDeviceCreateBufferViewDelegate.gen.cs │ ├── VkDeviceCreateCommandPoolDelegate.gen.cs │ ├── VkDeviceCreateComputePipelinesDelegate.gen.cs │ ├── VkDeviceCreateDescriptorPoolDelegate.gen.cs │ ├── VkDeviceCreateDescriptorSetLayoutDelegate.gen.cs │ ├── VkDeviceCreateDescriptorUpdateTemplateDelegate.gen.cs │ ├── VkDeviceCreateEventDelegate.gen.cs │ ├── VkDeviceCreateFenceDelegate.gen.cs │ ├── VkDeviceCreateFramebufferDelegate.gen.cs │ ├── VkDeviceCreateGraphicsPipelinesDelegate.gen.cs │ ├── VkDeviceCreateImageDelegate.gen.cs │ ├── VkDeviceCreateImageViewDelegate.gen.cs │ ├── VkDeviceCreatePipelineCacheDelegate.gen.cs │ ├── VkDeviceCreatePipelineLayoutDelegate.gen.cs │ ├── VkDeviceCreateQueryPoolDelegate.gen.cs │ ├── VkDeviceCreateRenderPass2Delegate.gen.cs │ ├── VkDeviceCreateRenderPassDelegate.gen.cs │ ├── VkDeviceCreateSamplerDelegate.gen.cs │ ├── VkDeviceCreateSamplerYcbcrConversionDelegate.gen.cs │ ├── VkDeviceCreateSemaphoreDelegate.gen.cs │ ├── VkDeviceCreateShaderModuleDelegate.gen.cs │ ├── VkDeviceDestroyDelegate.gen.cs │ ├── VkDeviceFlushMappedMemoryRangesDelegate.gen.cs │ ├── VkDeviceGetBufferDeviceAddressDelegate.gen.cs │ ├── VkDeviceGetBufferMemoryRequirements2Delegate.gen.cs │ ├── VkDeviceGetBufferOpaqueCaptureAddressDelegate.gen.cs │ ├── VkDeviceGetDescriptorSetLayoutSupportDelegate.gen.cs │ ├── VkDeviceGetGroupPeerMemoryFeaturesDelegate.gen.cs │ ├── VkDeviceGetImageMemoryRequirements2Delegate.gen.cs │ ├── VkDeviceGetImageSparseMemoryRequirements2Delegate.gen.cs │ ├── VkDeviceGetMemoryOpaqueCaptureAddressDelegate.gen.cs │ ├── VkDeviceGetProcedureAddressDelegate.gen.cs │ ├── VkDeviceGetQueue2Delegate.gen.cs │ ├── VkDeviceGetQueueDelegate.gen.cs │ ├── VkDeviceInvalidateMappedMemoryRangesDelegate.gen.cs │ ├── VkDeviceMemoryFreeDelegate.gen.cs │ ├── VkDeviceMemoryGetCommitmentDelegate.gen.cs │ ├── VkDeviceMemoryMapDelegate.gen.cs │ ├── VkDeviceMemoryUnmapDelegate.gen.cs │ ├── VkDeviceResetFencesDelegate.gen.cs │ ├── VkDeviceSignalSemaphoreDelegate.gen.cs │ ├── VkDeviceUpdateDescriptorSetWithTemplateDelegate.gen.cs │ ├── VkDeviceUpdateDescriptorSetsDelegate.gen.cs │ ├── VkDeviceWaitForFencesDelegate.gen.cs │ ├── VkDeviceWaitIdleDelegate.gen.cs │ ├── VkDeviceWaitSemaphoresDelegate.gen.cs │ ├── VkEventDestroyDelegate.gen.cs │ ├── VkEventGetStatusDelegate.gen.cs │ ├── VkEventResetDelegate.gen.cs │ ├── VkEventSetDelegate.gen.cs │ ├── VkFenceDestroyDelegate.gen.cs │ ├── VkFenceGetStatusDelegate.gen.cs │ ├── VkFramebufferDestroyDelegate.gen.cs │ ├── VkImageBindMemoryDelegate.gen.cs │ ├── VkImageDestroyDelegate.gen.cs │ ├── VkImageGetMemoryRequirementsDelegate.gen.cs │ ├── VkImageGetSparseMemoryRequirementsDelegate.gen.cs │ ├── VkImageGetSubresourceLayoutDelegate.gen.cs │ ├── VkImageViewDestroyDelegate.gen.cs │ ├── VkInstanceCreateDelegate.gen.cs │ ├── VkInstanceDestroyDelegate.gen.cs │ ├── VkInstanceEnumerateExtensionPropertiesDelegate.gen.cs │ ├── VkInstanceEnumerateLayerPropertiesDelegate.gen.cs │ ├── VkInstanceEnumeratePhysicalDeviceGroupsDelegate.gen.cs │ ├── VkInstanceEnumeratePhysicalDevicesDelegate.gen.cs │ ├── VkInstanceEnumerateVersionDelegate.gen.cs │ ├── VkInstanceGetProcedureAddressDelegate.gen.cs │ ├── VkPhysicalDeviceCreateDeviceDelegate.gen.cs │ ├── VkPhysicalDeviceEnumerateDeviceExtensionPropertiesDelegate.gen.cs │ ├── VkPhysicalDeviceEnumerateDeviceLayerPropertiesDelegate.gen.cs │ ├── VkPhysicalDeviceGetExternalBufferPropertiesDelegate.gen.cs │ ├── VkPhysicalDeviceGetExternalFencePropertiesDelegate.gen.cs │ ├── VkPhysicalDeviceGetExternalSemaphorePropertiesDelegate.gen.cs │ ├── VkPhysicalDeviceGetFeatures2Delegate.gen.cs │ ├── VkPhysicalDeviceGetFeaturesDelegate.gen.cs │ ├── VkPhysicalDeviceGetFormatProperties2Delegate.gen.cs │ ├── VkPhysicalDeviceGetFormatPropertiesDelegate.gen.cs │ ├── VkPhysicalDeviceGetImageFormatProperties2Delegate.gen.cs │ ├── VkPhysicalDeviceGetImageFormatPropertiesDelegate.gen.cs │ ├── VkPhysicalDeviceGetMemoryProperties2Delegate.gen.cs │ ├── VkPhysicalDeviceGetMemoryPropertiesDelegate.gen.cs │ ├── VkPhysicalDeviceGetProperties2Delegate.gen.cs │ ├── VkPhysicalDeviceGetPropertiesDelegate.gen.cs │ ├── VkPhysicalDeviceGetQueueFamilyProperties2Delegate.gen.cs │ ├── VkPhysicalDeviceGetQueueFamilyPropertiesDelegate.gen.cs │ ├── VkPhysicalDeviceGetSparseImageFormatProperties2Delegate.gen.cs │ ├── VkPhysicalDeviceGetSparseImageFormatPropertiesDelegate.gen.cs │ ├── VkPipelineCacheDestroyDelegate.gen.cs │ ├── VkPipelineCacheGetDataDelegate.gen.cs │ ├── VkPipelineCacheMergePipelineCachesDelegate.gen.cs │ ├── VkPipelineDestroyDelegate.gen.cs │ ├── VkPipelineLayoutDestroyDelegate.gen.cs │ ├── VkQueryPoolDestroyDelegate.gen.cs │ ├── VkQueryPoolGetResultsDelegate.gen.cs │ ├── VkQueryPoolResetDelegate.gen.cs │ ├── VkQueueBindSparseDelegate.gen.cs │ ├── VkQueueSubmitDelegate.gen.cs │ ├── VkQueueWaitIdleDelegate.gen.cs │ ├── VkRenderPassDestroyDelegate.gen.cs │ ├── VkRenderPassGetRenderAreaGranularityDelegate.gen.cs │ ├── VkSamplerDestroyDelegate.gen.cs │ ├── VkSamplerYcbcrConversionDestroyDelegate.gen.cs │ ├── VkSemaphoreDestroyDelegate.gen.cs │ ├── VkSemaphoreGetCounterValueDelegate.gen.cs │ ├── VkShaderModuleDestroyDelegate.gen.cs │ └── WriteDescriptorSet.gen.cs ├── Khronos │ ├── AcquireNextImageInfo.gen.cs │ ├── AcquireProfilingLockFlags.gen.cs │ ├── AcquireProfilingLockInfo.gen.cs │ ├── AndroidSurfaceCreateFlags.gen.cs │ ├── AndroidSurfaceCreateInfo.gen.cs │ ├── BindImageMemorySwapchainInfo.gen.cs │ ├── ColorSpace.gen.cs │ ├── CommandBufferExtensions.gen.cs │ ├── CommandPoolTrimFlags.gen.cs │ ├── CompositeAlphaFlags.gen.cs │ ├── D3D12FenceSubmitInfo.gen.cs │ ├── DescriptorUpdateTemplateCreateFlags.gen.cs │ ├── DeviceExtensions.gen.cs │ ├── DeviceGroupPresentCapabilities.gen.cs │ ├── DeviceGroupPresentInfo.gen.cs │ ├── DeviceGroupPresentModeFlags.gen.cs │ ├── DeviceGroupSwapchainCreateInfo.gen.cs │ ├── Display.gen.cs │ ├── DisplayMode.gen.cs │ ├── DisplayModeCreateFlags.gen.cs │ ├── DisplayModeCreateInfo.gen.cs │ ├── DisplayModeParameters.gen.cs │ ├── DisplayModeProperties.gen.cs │ ├── DisplayModeProperties2.gen.cs │ ├── DisplayPlaneAlphaFlags.gen.cs │ ├── DisplayPlaneCapabilities.gen.cs │ ├── DisplayPlaneCapabilities2.gen.cs │ ├── DisplayPlaneInfo2.gen.cs │ ├── DisplayPlaneProperties.gen.cs │ ├── DisplayPlaneProperties2.gen.cs │ ├── DisplayPresentInfo.gen.cs │ ├── DisplayProperties.gen.cs │ ├── DisplayProperties2.gen.cs │ ├── DisplaySurfaceCreateFlags.gen.cs │ ├── DisplaySurfaceCreateInfo.gen.cs │ ├── ExportFenceWin32HandleInfo.gen.cs │ ├── ExportMemoryWin32HandleInfo.gen.cs │ ├── ExportSemaphoreWin32HandleInfo.gen.cs │ ├── ExternalFenceFeatureFlags.gen.cs │ ├── ExternalFenceHandleTypeFlags.gen.cs │ ├── ExternalMemoryFeatureFlags.gen.cs │ ├── ExternalMemoryHandleTypeFlags.gen.cs │ ├── ExternalSemaphoreFeatureFlags.gen.cs │ ├── ExternalSemaphoreHandleTypeFlags.gen.cs │ ├── FenceGetFileDescriptorInfo.gen.cs │ ├── FenceGetWin32HandleInfo.gen.cs │ ├── FenceImportFlags.gen.cs │ ├── ImageSwapchainCreateInfo.gen.cs │ ├── ImportFenceFileDescriptorInfo.gen.cs │ ├── ImportFenceWin32HandleInfo.gen.cs │ ├── ImportMemoryFileDescriptorInfo.gen.cs │ ├── ImportMemoryWin32HandleInfo.gen.cs │ ├── ImportSemaphoreFileDescriptorInfo.gen.cs │ ├── ImportSemaphoreWin32HandleInfo.gen.cs │ ├── InstanceExtensions.gen.cs │ ├── KhrExtensions.gen.cs │ ├── MemoryAllocateFlags.gen.cs │ ├── MemoryFileDescriptorProperties.gen.cs │ ├── MemoryGetFileDescriptorInfo.gen.cs │ ├── MemoryGetWin32HandleInfo.gen.cs │ ├── MemoryWin32HandleProperties.gen.cs │ ├── PeerMemoryFeatureFlags.gen.cs │ ├── PerformanceCounter.gen.cs │ ├── PerformanceCounterDescription.gen.cs │ ├── PerformanceCounterDescriptionFlags.gen.cs │ ├── PerformanceCounterScope.gen.cs │ ├── PerformanceCounterStorage.gen.cs │ ├── PerformanceCounterUnit.gen.cs │ ├── PerformanceQuerySubmitInfo.gen.cs │ ├── PhysicalDeviceExtensions.gen.cs │ ├── PhysicalDevicePerformanceQueryFeatures.gen.cs │ ├── PhysicalDevicePerformanceQueryProperties.gen.cs │ ├── PhysicalDevicePipelineExecutablePropertiesFeatures.gen.cs │ ├── PhysicalDevicePushDescriptorProperties.gen.cs │ ├── PhysicalDeviceShaderClockFeatures.gen.cs │ ├── PhysicalDeviceSurfaceInfo2.gen.cs │ ├── PipelineExecutableInfo.gen.cs │ ├── PipelineExecutableInternalRepresentation.gen.cs │ ├── PipelineExecutableProperties.gen.cs │ ├── PipelineExecutableStatistic.gen.cs │ ├── PipelineExecutableStatisticFormat.gen.cs │ ├── PipelineExecutableStatisticValue.cs │ ├── PipelineInfo.gen.cs │ ├── PresentInfo.gen.cs │ ├── PresentMode.gen.cs │ ├── PresentRegion.gen.cs │ ├── PresentRegions.gen.cs │ ├── QueryPoolPerformanceCreateInfo.gen.cs │ ├── QueueExtensions.gen.cs │ ├── RectLayer.gen.cs │ ├── ResolveModeFlags.gen.cs │ ├── SemaphoreGetFileDescriptorInfo.gen.cs │ ├── SemaphoreGetWin32HandleInfo.gen.cs │ ├── SemaphoreImportFlags.gen.cs │ ├── SemaphoreWaitFlags.gen.cs │ ├── SharedPresentSurfaceCapabilities.gen.cs │ ├── Surface.cs │ ├── Surface.gen.cs │ ├── SurfaceCapabilities.gen.cs │ ├── SurfaceCapabilities2.gen.cs │ ├── SurfaceFormat.gen.cs │ ├── SurfaceFormat2.gen.cs │ ├── SurfaceProtectedCapabilities.gen.cs │ ├── SurfaceTransformFlags.gen.cs │ ├── Swapchain.gen.cs │ ├── SwapchainCreateFlags.gen.cs │ ├── SwapchainCreateInfo.gen.cs │ ├── WaylandSurfaceCreateFlags.gen.cs │ ├── WaylandSurfaceCreateInfo.gen.cs │ ├── Win32KeyedMutexAcquireReleaseInfo.gen.cs │ ├── Win32SurfaceCreateFlags.gen.cs │ ├── Win32SurfaceCreateInfo.gen.cs │ ├── XcbSurfaceCreateFlags.gen.cs │ ├── XcbSurfaceCreateInfo.gen.cs │ ├── XlibSurfaceCreateFlags.gen.cs │ └── XlibSurfaceCreateInfo.gen.cs ├── LayerProperties.gen.cs ├── LogicOp.gen.cs ├── MappedMemoryRange.gen.cs ├── MemoryAllocateFlags.gen.cs ├── MemoryAllocateFlagsInfo.gen.cs ├── MemoryAllocateInfo.gen.cs ├── MemoryBarrier.gen.cs ├── MemoryDedicatedAllocateInfo.gen.cs ├── MemoryDedicatedRequirements.gen.cs ├── MemoryHeap.gen.cs ├── MemoryHeapFlags.gen.cs ├── MemoryMapFlags.gen.cs ├── MemoryOpaqueCaptureAddressAllocateInfo.gen.cs ├── MemoryPropertyFlags.gen.cs ├── MemoryRequirements.gen.cs ├── MemoryRequirements2.gen.cs ├── MemoryType.gen.cs ├── MoltenVk │ ├── IOSSurfaceCreateFlags.gen.cs │ ├── IOSSurfaceCreateInfo.gen.cs │ ├── InstanceExtensions.gen.cs │ ├── MacOSSurfaceCreateFlags.gen.cs │ ├── MacOSSurfaceCreateInfo.gen.cs │ └── MvkExtensions.gen.cs ├── Multivendor │ ├── AttachmentSampleLocations.gen.cs │ ├── BlendOverlap.gen.cs │ ├── BufferDeviceAddressCreateInfo.gen.cs │ ├── CalibratedTimestampInfo.gen.cs │ ├── CommandBufferExtensions.gen.cs │ ├── CommandBufferInheritanceConditionalRenderingInfo.gen.cs │ ├── ConditionalRenderingBeginInfo.gen.cs │ ├── ConditionalRenderingFlags.gen.cs │ ├── ConservativeRasterizationMode.gen.cs │ ├── DebugMarkerMarkerInfo.gen.cs │ ├── DebugMarkerObjectNameInfo.gen.cs │ ├── DebugMarkerObjectTagInfo.gen.cs │ ├── DebugReportCallback.gen.cs │ ├── DebugReportCallbackCreateInfo.gen.cs │ ├── DebugReportCallbackDelegate.gen.cs │ ├── DebugReportFlags.gen.cs │ ├── DebugReportObjectType.gen.cs │ ├── DebugUtilsLabel.gen.cs │ ├── DebugUtilsMessageSeverityFlags.gen.cs │ ├── DebugUtilsMessageTypeFlags.gen.cs │ ├── DebugUtilsMessenger.gen.cs │ ├── DebugUtilsMessengerCallbackData.gen.cs │ ├── DebugUtilsMessengerCallbackData.partial.cs │ ├── DebugUtilsMessengerCallbackDataFlags.gen.cs │ ├── DebugUtilsMessengerCallbackDelegate.gen.cs │ ├── DebugUtilsMessengerCreateFlags.gen.cs │ ├── DebugUtilsMessengerCreateInfo.gen.cs │ ├── DebugUtilsObjectNameInfo.gen.cs │ ├── DebugUtilsObjectNameInfo.partial.cs │ ├── DebugUtilsObjectTagInfo.gen.cs │ ├── DescriptorBindingFlags.gen.cs │ ├── DescriptorPoolInlineUniformBlockCreateInfo.gen.cs │ ├── DeviceEventInfo.gen.cs │ ├── DeviceEventType.gen.cs │ ├── DeviceExtensions.gen.cs │ ├── DeviceQueueGlobalPriorityCreateInfo.gen.cs │ ├── DiscardRectangleMode.gen.cs │ ├── DisplayEventInfo.gen.cs │ ├── DisplayEventType.gen.cs │ ├── DisplayPowerInfo.gen.cs │ ├── DisplayPowerState.gen.cs │ ├── DrmFormatModifierProperties.gen.cs │ ├── DrmFormatModifierPropertiesList.gen.cs │ ├── ExtExtensions.gen.cs │ ├── FilterCubicImageViewImageFormatProperties.gen.cs │ ├── FullScreenExclusive.gen.cs │ ├── HdrMetadata.gen.cs │ ├── HeadlessSurfaceCreateFlags.gen.cs │ ├── HeadlessSurfaceCreateInfo.gen.cs │ ├── ImageDrmFormatModifierExplicitCreateInfo.gen.cs │ ├── ImageDrmFormatModifierListCreateInfo.gen.cs │ ├── ImageDrmFormatModifierProperties.gen.cs │ ├── ImageExtensions.gen.cs │ ├── ImageViewASTCDecodeMode.gen.cs │ ├── ImportMemoryHostPointerInfo.gen.cs │ ├── InstanceExtensions.gen.cs │ ├── LineRasterizationMode.gen.cs │ ├── MemoryHostPointerProperties.gen.cs │ ├── MemoryPriorityAllocateInfo.gen.cs │ ├── MetalSurfaceCreateFlags.gen.cs │ ├── MetalSurfaceCreateInfo.gen.cs │ ├── MultisampleProperties.gen.cs │ ├── PhysicalDeviceASTCDecodeFeatures.gen.cs │ ├── PhysicalDeviceBlendOperationAdvancedFeatures.gen.cs │ ├── PhysicalDeviceBlendOperationAdvancedProperties.gen.cs │ ├── PhysicalDeviceBufferDeviceAddressFeatures.gen.cs │ ├── PhysicalDeviceConditionalRenderingFeatures.gen.cs │ ├── PhysicalDeviceConservativeRasterizationProperties.gen.cs │ ├── PhysicalDeviceDepthClipEnableFeatures.gen.cs │ ├── PhysicalDeviceDiscardRectangleProperties.gen.cs │ ├── PhysicalDeviceExtensions.gen.cs │ ├── PhysicalDeviceExternalMemoryHostProperties.gen.cs │ ├── PhysicalDeviceFragmentDensityMapFeatures.gen.cs │ ├── PhysicalDeviceFragmentDensityMapProperties.gen.cs │ ├── PhysicalDeviceFragmentShaderInterlockFeatures.gen.cs │ ├── PhysicalDeviceImageDrmFormatModifierInfo.gen.cs │ ├── PhysicalDeviceImageViewImageFormatInfo.gen.cs │ ├── PhysicalDeviceIndexTypeUint8Features.gen.cs │ ├── PhysicalDeviceInlineUniformBlockFeatures.gen.cs │ ├── PhysicalDeviceInlineUniformBlockProperties.gen.cs │ ├── PhysicalDeviceLineRasterizationFeatures.gen.cs │ ├── PhysicalDeviceLineRasterizationProperties.gen.cs │ ├── PhysicalDeviceMemoryBudgetProperties.gen.cs │ ├── PhysicalDeviceMemoryPriorityFeatures.gen.cs │ ├── PhysicalDevicePCIBusInfoProperties.gen.cs │ ├── PhysicalDeviceSampleLocationsProperties.gen.cs │ ├── PhysicalDeviceShaderDemoteToHelperInvocationFeatures.gen.cs │ ├── PhysicalDeviceSubgroupSizeControlFeatures.gen.cs │ ├── PhysicalDeviceSubgroupSizeControlProperties.gen.cs │ ├── PhysicalDeviceTexelBufferAlignmentFeatures.gen.cs │ ├── PhysicalDeviceTexelBufferAlignmentProperties.gen.cs │ ├── PhysicalDeviceTextureCompressionASTCHDRFeatures.gen.cs │ ├── PhysicalDeviceToolProperties.gen.cs │ ├── PhysicalDeviceTransformFeedbackFeatures.gen.cs │ ├── PhysicalDeviceTransformFeedbackProperties.gen.cs │ ├── PhysicalDeviceVertexAttributeDivisorFeatures.gen.cs │ ├── PhysicalDeviceVertexAttributeDivisorProperties.gen.cs │ ├── PhysicalDeviceYcbcrImageArraysFeatures.gen.cs │ ├── PipelineColorBlendAdvancedStateCreateInfo.gen.cs │ ├── PipelineCreationFeedback.gen.cs │ ├── PipelineCreationFeedbackCreateInfo.gen.cs │ ├── PipelineCreationFeedbackFlags.gen.cs │ ├── PipelineDiscardRectangleStateCreateFlags.gen.cs │ ├── PipelineDiscardRectangleStateCreateInfo.gen.cs │ ├── PipelineRasterizationConservativeStateCreateFlags.gen.cs │ ├── PipelineRasterizationConservativeStateCreateInfo.gen.cs │ ├── PipelineRasterizationDepthClipStateCreateFlags.gen.cs │ ├── PipelineRasterizationDepthClipStateCreateInfo.gen.cs │ ├── PipelineRasterizationLineStateCreateInfo.gen.cs │ ├── PipelineRasterizationStateStreamCreateFlags.gen.cs │ ├── PipelineRasterizationStateStreamCreateInfo.gen.cs │ ├── PipelineSampleLocationsStateCreateInfo.gen.cs │ ├── PipelineShaderStageRequiredSubgroupSizeCreateInfo.gen.cs │ ├── PipelineVertexInputDivisorStateCreateInfo.gen.cs │ ├── QueueExtensions.gen.cs │ ├── QueueGlobalPriority.gen.cs │ ├── RenderPassFragmentDensityMapCreateInfo.gen.cs │ ├── RenderPassSampleLocationsBeginInfo.gen.cs │ ├── SampleLocation.gen.cs │ ├── SampleLocationsInfo.gen.cs │ ├── ShaderModuleValidationCacheCreateInfo.gen.cs │ ├── SubpassSampleLocations.gen.cs │ ├── SurfaceCapabilities2.gen.cs │ ├── SurfaceCapabilitiesFullScreenExclusive.gen.cs │ ├── SurfaceCounterFlags.gen.cs │ ├── SurfaceFullScreenExclusiveInfo.gen.cs │ ├── SurfaceFullScreenExclusiveWin32Info.gen.cs │ ├── SwapchainCounterCreateInfo.gen.cs │ ├── SwapchainExtensions.gen.cs │ ├── TimeDomain.gen.cs │ ├── ToolPurposeFlags.gen.cs │ ├── ValidationCache.gen.cs │ ├── ValidationCacheCreateFlags.gen.cs │ ├── ValidationCacheCreateInfo.gen.cs │ ├── ValidationCacheHeaderVersion.gen.cs │ ├── ValidationCheck.gen.cs │ ├── ValidationFeatureDisable.gen.cs │ ├── ValidationFeatureEnable.gen.cs │ ├── ValidationFeatures.gen.cs │ ├── ValidationFlags.gen.cs │ ├── VertexInputBindingDivisorDescription.gen.cs │ ├── WriteDescriptorSetInlineUniformBlock.gen.cs │ └── XYColor.gen.cs ├── NVidia │ ├── AccelerationStructure.gen.cs │ ├── AccelerationStructureCreateInfo.gen.cs │ ├── AccelerationStructureInfo.gen.cs │ ├── AccelerationStructureMemoryRequirementsInfo.gen.cs │ ├── AccelerationStructureMemoryRequirementsType.gen.cs │ ├── AccelerationStructureType.gen.cs │ ├── BindAccelerationStructureMemoryInfo.gen.cs │ ├── BuildAccelerationStructureFlags.gen.cs │ ├── CheckpointData.gen.cs │ ├── CoarseSampleLocation.gen.cs │ ├── CoarseSampleOrderCustom.gen.cs │ ├── CoarseSampleOrderType.gen.cs │ ├── CommandBufferExtensions.gen.cs │ ├── ComponentType.gen.cs │ ├── CooperativeMatrixProperties.gen.cs │ ├── CopyAccelerationStructureMode.gen.cs │ ├── CoverageModulationMode.gen.cs │ ├── CoverageReductionMode.gen.cs │ ├── DedicatedAllocationBufferCreateInfo.gen.cs │ ├── DedicatedAllocationImageCreateInfo.gen.cs │ ├── DedicatedAllocationMemoryAllocateInfo.gen.cs │ ├── DeviceExtensions.gen.cs │ ├── DeviceMemoryExtensions.gen.cs │ ├── DrawMeshTasksIndirectCommand.gen.cs │ ├── Experimental │ │ ├── CommandBufferExtensions.gen.cs │ │ ├── CommandProcessCommandsInfo.gen.cs │ │ ├── CommandReserveSpaceForCommandsInfo.gen.cs │ │ ├── DeviceExtensions.gen.cs │ │ ├── DeviceGeneratedCommandsFeatures.gen.cs │ │ ├── DeviceGeneratedCommandsLimits.gen.cs │ │ ├── ImageViewHandleInfo.gen.cs │ │ ├── IndirectCommandsLayout.gen.cs │ │ ├── IndirectCommandsLayoutCreateInfo.gen.cs │ │ ├── IndirectCommandsLayoutToken.gen.cs │ │ ├── IndirectCommandsLayoutUsageFlags.gen.cs │ │ ├── IndirectCommandsToken.gen.cs │ │ ├── IndirectCommandsTokenType.gen.cs │ │ ├── NvxExtensions.gen.cs │ │ ├── ObjectEntryType.gen.cs │ │ ├── ObjectEntryUsageFlags.gen.cs │ │ ├── ObjectTable.gen.cs │ │ ├── ObjectTableCreateInfo.gen.cs │ │ ├── ObjectTableDescriptorSetEntry.gen.cs │ │ ├── ObjectTableEntry.gen.cs │ │ ├── ObjectTableIndexBufferEntry.gen.cs │ │ ├── ObjectTablePipelineEntry.gen.cs │ │ ├── ObjectTablePushConstantEntry.gen.cs │ │ ├── ObjectTableVertexBufferEntry.gen.cs │ │ ├── PhysicalDeviceExtensions.gen.cs │ │ └── PhysicalDeviceMultiviewPerViewAttributesProperties.gen.cs │ ├── ExportMemoryAllocateInfo.gen.cs │ ├── ExportMemoryWin32HandleInfo.gen.cs │ ├── ExternalImageFormatProperties.gen.cs │ ├── ExternalMemoryFeatureFlags.gen.cs │ ├── ExternalMemoryHandleTypeFlags.gen.cs │ ├── ExternalMemoryImageCreateInfo.gen.cs │ ├── FramebufferMixedSamplesCombination.gen.cs │ ├── Geometry.gen.cs │ ├── GeometryAABB.gen.cs │ ├── GeometryData.gen.cs │ ├── GeometryFlags.gen.cs │ ├── GeometryInstanceFlags.gen.cs │ ├── GeometryTriangles.gen.cs │ ├── GeometryType.gen.cs │ ├── ImportMemoryWin32HandleInfo.gen.cs │ ├── NvExtensions.gen.cs │ ├── PhysicalDeviceComputeShaderDerivativesFeatures.gen.cs │ ├── PhysicalDeviceCooperativeMatrixFeatures.gen.cs │ ├── PhysicalDeviceCooperativeMatrixProperties.gen.cs │ ├── PhysicalDeviceCornerSampledImageFeatures.gen.cs │ ├── PhysicalDeviceCoverageReductionModeFeatures.gen.cs │ ├── PhysicalDeviceDedicatedAllocationImageAliasingFeatures.gen.cs │ ├── PhysicalDeviceExclusiveScissorFeatures.gen.cs │ ├── PhysicalDeviceExtensions.gen.cs │ ├── PhysicalDeviceFragmentShaderBarycentricFeatures.gen.cs │ ├── PhysicalDeviceMeshShaderFeatures.gen.cs │ ├── PhysicalDeviceMeshShaderProperties.gen.cs │ ├── PhysicalDeviceRayTracingProperties.gen.cs │ ├── PhysicalDeviceRepresentativeFragmentTestFeatures.gen.cs │ ├── PhysicalDeviceShaderImageFootprintFeatures.gen.cs │ ├── PhysicalDeviceShaderSMBuiltinsFeatures.gen.cs │ ├── PhysicalDeviceShaderSMBuiltinsProperties.gen.cs │ ├── PhysicalDeviceShadingRateImageFeatures.gen.cs │ ├── PhysicalDeviceShadingRateImageProperties.gen.cs │ ├── PipelineCoverageModulationStateCreateFlags.gen.cs │ ├── PipelineCoverageModulationStateCreateInfo.gen.cs │ ├── PipelineCoverageReductionStateCreateFlags.gen.cs │ ├── PipelineCoverageReductionStateCreateInfo.gen.cs │ ├── PipelineCoverageToColorStateCreateFlags.gen.cs │ ├── PipelineCoverageToColorStateCreateInfo.gen.cs │ ├── PipelineExtensions.gen.cs │ ├── PipelineRepresentativeFragmentTestStateCreateInfo.gen.cs │ ├── PipelineViewportCoarseSampleOrderStateCreateInfo.gen.cs │ ├── PipelineViewportExclusiveScissorStateCreateInfo.gen.cs │ ├── PipelineViewportShadingRateImageStateCreateInfo.gen.cs │ ├── PipelineViewportSwizzleStateCreateFlags.gen.cs │ ├── PipelineViewportSwizzleStateCreateInfo.gen.cs │ ├── PipelineViewportWScalingStateCreateInfo.gen.cs │ ├── QueueExtensions.gen.cs │ ├── QueueFamilyCheckpointProperties.gen.cs │ ├── RayTracingPipelineCreateInfo.gen.cs │ ├── RayTracingShaderGroupCreateInfo.gen.cs │ ├── RayTracingShaderGroupType.gen.cs │ ├── Scope.gen.cs │ ├── ShadingRatePalette.gen.cs │ ├── ShadingRatePaletteEntry.gen.cs │ ├── ViewportCoordinateSwizzle.gen.cs │ ├── ViewportSwizzle.gen.cs │ ├── ViewportWScaling.gen.cs │ ├── Win32KeyedMutexAcquireReleaseInfo.gen.cs │ └── WriteDescriptorSetAccelerationStructure.gen.cs ├── Nintendo │ ├── InstanceExtensions.gen.cs │ ├── NnExtensions.gen.cs │ ├── ViSurfaceCreateFlags.gen.cs │ └── ViSurfaceCreateInfo.gen.cs ├── ObjectType.gen.cs ├── Offset2D.gen.cs ├── Offset3D.gen.cs ├── PeerMemoryFeatureFlags.gen.cs ├── PhysicalDevice.gen.cs ├── PhysicalDevice.partial.cs ├── PhysicalDevice16BitStorageFeatures.gen.cs ├── PhysicalDevice8BitStorageFeatures.gen.cs ├── PhysicalDeviceBufferDeviceAddressFeatures.gen.cs ├── PhysicalDeviceDepthStencilResolveProperties.gen.cs ├── PhysicalDeviceDescriptorIndexingFeatures.gen.cs ├── PhysicalDeviceDescriptorIndexingProperties.gen.cs ├── PhysicalDeviceDriverProperties.gen.cs ├── PhysicalDeviceExternalBufferInfo.gen.cs ├── PhysicalDeviceExternalFenceInfo.gen.cs ├── PhysicalDeviceExternalImageFormatInfo.gen.cs ├── PhysicalDeviceExternalSemaphoreInfo.gen.cs ├── PhysicalDeviceFeatures.gen.cs ├── PhysicalDeviceFeatures2.gen.cs ├── PhysicalDeviceFloatControlsProperties.gen.cs ├── PhysicalDeviceGroupProperties.gen.cs ├── PhysicalDeviceHostQueryResetFeatures.gen.cs ├── PhysicalDeviceIDProperties.gen.cs ├── PhysicalDeviceImageFormatInfo2.gen.cs ├── PhysicalDeviceImagelessFramebufferFeatures.gen.cs ├── PhysicalDeviceLimits.gen.cs ├── PhysicalDeviceMaintenance3Properties.gen.cs ├── PhysicalDeviceMemoryProperties.gen.cs ├── PhysicalDeviceMemoryProperties2.gen.cs ├── PhysicalDeviceMultiviewFeatures.gen.cs ├── PhysicalDeviceMultiviewProperties.gen.cs ├── PhysicalDevicePointClippingProperties.gen.cs ├── PhysicalDeviceProperties.gen.cs ├── PhysicalDeviceProperties2.gen.cs ├── PhysicalDeviceProtectedMemoryFeatures.gen.cs ├── PhysicalDeviceProtectedMemoryProperties.gen.cs ├── PhysicalDeviceSamplerFilterMinmaxProperties.gen.cs ├── PhysicalDeviceSamplerYcbcrConversionFeatures.gen.cs ├── PhysicalDeviceScalarBlockLayoutFeatures.gen.cs ├── PhysicalDeviceSeparateDepthStencilLayoutsFeatures.gen.cs ├── PhysicalDeviceShaderAtomicInt64Features.gen.cs ├── PhysicalDeviceShaderDrawParametersFeatures.gen.cs ├── PhysicalDeviceShaderFloat16Int8Features.gen.cs ├── PhysicalDeviceShaderSubgroupExtendedTypesFeatures.gen.cs ├── PhysicalDeviceSparseImageFormatInfo2.gen.cs ├── PhysicalDeviceSparseProperties.gen.cs ├── PhysicalDeviceSubgroupProperties.gen.cs ├── PhysicalDeviceTimelineSemaphoreFeatures.gen.cs ├── PhysicalDeviceTimelineSemaphoreProperties.gen.cs ├── PhysicalDeviceType.gen.cs ├── PhysicalDeviceUniformBufferStandardLayoutFeatures.gen.cs ├── PhysicalDeviceVariablePointersFeatures.gen.cs ├── PhysicalDeviceVulkan11Features.gen.cs ├── PhysicalDeviceVulkan11Properties.gen.cs ├── PhysicalDeviceVulkan12Features.gen.cs ├── PhysicalDeviceVulkan12Properties.gen.cs ├── PhysicalDeviceVulkanMemoryModelFeatures.gen.cs ├── Pipeline.gen.cs ├── PipelineBindPoint.gen.cs ├── PipelineCache.gen.cs ├── PipelineCacheCreateFlags.gen.cs ├── PipelineCacheCreateInfo.gen.cs ├── PipelineCacheHeaderVersion.gen.cs ├── PipelineColorBlendAttachmentState.gen.cs ├── PipelineColorBlendStateCreateFlags.gen.cs ├── PipelineColorBlendStateCreateInfo.gen.cs ├── PipelineCreateFlags.gen.cs ├── PipelineDepthStencilStateCreateFlags.gen.cs ├── PipelineDepthStencilStateCreateInfo.gen.cs ├── PipelineDynamicStateCreateFlags.gen.cs ├── PipelineDynamicStateCreateInfo.gen.cs ├── PipelineInputAssemblyStateCreateFlags.gen.cs ├── PipelineInputAssemblyStateCreateInfo.gen.cs ├── PipelineLayout.gen.cs ├── PipelineLayoutCreateFlags.gen.cs ├── PipelineLayoutCreateInfo.gen.cs ├── PipelineMultisampleStateCreateFlags.gen.cs ├── PipelineMultisampleStateCreateInfo.gen.cs ├── PipelineRasterizationStateCreateFlags.gen.cs ├── PipelineRasterizationStateCreateInfo.gen.cs ├── PipelineShaderStageCreateFlags.gen.cs ├── PipelineShaderStageCreateInfo.gen.cs ├── PipelineStageFlags.gen.cs ├── PipelineTessellationDomainOriginStateCreateInfo.gen.cs ├── PipelineTessellationStateCreateFlags.gen.cs ├── PipelineTessellationStateCreateInfo.gen.cs ├── PipelineVertexInputStateCreateFlags.gen.cs ├── PipelineVertexInputStateCreateInfo.gen.cs ├── PipelineViewportStateCreateFlags.gen.cs ├── PipelineViewportStateCreateInfo.gen.cs ├── PointClippingBehavior.gen.cs ├── PolygonMode.gen.cs ├── PrimitiveTopology.gen.cs ├── ProtectedSubmitInfo.gen.cs ├── PushConstantRange.gen.cs ├── QueryControlFlags.gen.cs ├── QueryPipelineStatisticFlags.gen.cs ├── QueryPool.gen.cs ├── QueryPoolCreateFlags.gen.cs ├── QueryPoolCreateInfo.gen.cs ├── QueryResultFlags.gen.cs ├── QueryType.gen.cs ├── Queue.gen.cs ├── QueueFamilyProperties.gen.cs ├── QueueFamilyProperties2.gen.cs ├── QueueFlags.gen.cs ├── ReallocationFunctionDelegate.gen.cs ├── Rect2D.cs ├── Rect2D.gen.cs ├── RenderPass.gen.cs ├── RenderPassAttachmentBeginInfo.gen.cs ├── RenderPassBeginInfo.gen.cs ├── RenderPassCreateFlags.gen.cs ├── RenderPassCreateInfo.gen.cs ├── RenderPassCreateInfo2.gen.cs ├── RenderPassInputAttachmentAspectCreateInfo.gen.cs ├── RenderPassMultiviewCreateInfo.gen.cs ├── ResolveModeFlags.gen.cs ├── Result.gen.cs ├── SampleCountFlags.gen.cs ├── Sampler.gen.cs ├── SamplerAddressMode.gen.cs ├── SamplerCreateFlags.gen.cs ├── SamplerCreateInfo.gen.cs ├── SamplerMipmapMode.gen.cs ├── SamplerReductionMode.gen.cs ├── SamplerReductionModeCreateInfo.gen.cs ├── SamplerYcbcrConversion.gen.cs ├── SamplerYcbcrConversionCreateInfo.gen.cs ├── SamplerYcbcrConversionImageFormatProperties.gen.cs ├── SamplerYcbcrConversionInfo.gen.cs ├── SamplerYcbcrModelConversion.gen.cs ├── SamplerYcbcrRange.gen.cs ├── Semaphore.gen.cs ├── SemaphoreCreateFlagBits.gen.cs ├── SemaphoreCreateFlags.gen.cs ├── SemaphoreCreateInfo.gen.cs ├── SemaphoreImportFlags.gen.cs ├── SemaphoreSignalInfo.gen.cs ├── SemaphoreType.gen.cs ├── SemaphoreTypeCreateInfo.gen.cs ├── SemaphoreWaitFlags.gen.cs ├── SemaphoreWaitInfo.gen.cs ├── ShaderFloatControlsIndependence.gen.cs ├── ShaderModule.gen.cs ├── ShaderModuleCreateFlags.gen.cs ├── ShaderModuleCreateInfo.gen.cs ├── ShaderStageFlags.gen.cs ├── SharingMode.gen.cs ├── SharpVk.csproj ├── SparseBufferMemoryBindInfo.gen.cs ├── SparseImageFormatFlags.gen.cs ├── SparseImageFormatProperties.gen.cs ├── SparseImageFormatProperties2.gen.cs ├── SparseImageMemoryBind.gen.cs ├── SparseImageMemoryBindInfo.gen.cs ├── SparseImageMemoryRequirements.gen.cs ├── SparseImageMemoryRequirements2.gen.cs ├── SparseImageOpaqueMemoryBindInfo.gen.cs ├── SparseMemoryBind.gen.cs ├── SparseMemoryBindFlags.gen.cs ├── SpecializationInfo.gen.cs ├── SpecializationMapEntry.gen.cs ├── Spirv │ ├── Enums.cs │ ├── ISpirvSink.cs │ ├── OpCode.partial.cs │ ├── Opcode.cs │ ├── Operand.cs │ ├── OperandKind.cs │ ├── Quantifier.cs │ ├── ResultId.cs │ └── SpirvStatement.cs ├── StencilFaceFlags.gen.cs ├── StencilOp.gen.cs ├── StencilOpState.gen.cs ├── Structs.Partial.cs ├── StructureType.gen.cs ├── SubgroupFeatureFlags.gen.cs ├── SubmitInfo.gen.cs ├── SubpassBeginInfo.gen.cs ├── SubpassContents.gen.cs ├── SubpassDependency.gen.cs ├── SubpassDependency2.gen.cs ├── SubpassDescription.gen.cs ├── SubpassDescription2.gen.cs ├── SubpassDescriptionDepthStencilResolve.gen.cs ├── SubpassDescriptionFlags.gen.cs ├── SubpassEndInfo.gen.cs ├── SubresourceLayout.gen.cs ├── SystemAllocationScope.gen.cs ├── TessellationDomainOrigin.gen.cs ├── TimelineSemaphoreSubmitInfo.gen.cs ├── VendorId.gen.cs ├── Version.cs ├── VertexInputAttributeDescription.gen.cs ├── VertexInputBindingDescription.gen.cs ├── VertexInputRate.gen.cs ├── Viewport.gen.cs ├── VoidFunctionDelegate.gen.cs └── WriteDescriptorSet.gen.cs └── version.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/README.md -------------------------------------------------------------------------------- /images/SharpVk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/images/SharpVk.png -------------------------------------------------------------------------------- /src/SharpVk.Emit/AccessModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Emit/AccessModifier.cs -------------------------------------------------------------------------------- /src/SharpVk.Emit/BlockBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Emit/BlockBuilder.cs -------------------------------------------------------------------------------- /src/SharpVk.Emit/BuilderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Emit/BuilderFactory.cs -------------------------------------------------------------------------------- /src/SharpVk.Emit/CodeBlockBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Emit/CodeBlockBuilder.cs -------------------------------------------------------------------------------- /src/SharpVk.Emit/DocBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Emit/DocBuilder.cs -------------------------------------------------------------------------------- /src/SharpVk.Emit/EnumBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Emit/EnumBuilder.cs -------------------------------------------------------------------------------- /src/SharpVk.Emit/ExpressionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Emit/ExpressionBuilder.cs -------------------------------------------------------------------------------- /src/SharpVk.Emit/FileBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Emit/FileBuilder.cs -------------------------------------------------------------------------------- /src/SharpVk.Emit/IndentedTextWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Emit/IndentedTextWriter.cs -------------------------------------------------------------------------------- /src/SharpVk.Emit/IndentedTextWriterExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Emit/IndentedTextWriterExtensions.cs -------------------------------------------------------------------------------- /src/SharpVk.Emit/MemberInitBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Emit/MemberInitBuilder.cs -------------------------------------------------------------------------------- /src/SharpVk.Emit/MemberModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Emit/MemberModifier.cs -------------------------------------------------------------------------------- /src/SharpVk.Emit/NamespaceBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Emit/NamespaceBuilder.cs -------------------------------------------------------------------------------- /src/SharpVk.Emit/ParameterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Emit/ParameterBuilder.cs -------------------------------------------------------------------------------- /src/SharpVk.Emit/SharpVk.Emit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Emit/SharpVk.Emit.csproj -------------------------------------------------------------------------------- /src/SharpVk.Emit/SwitchCaseBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Emit/SwitchCaseBuilder.cs -------------------------------------------------------------------------------- /src/SharpVk.Emit/TypeBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Emit/TypeBuilder.cs -------------------------------------------------------------------------------- /src/SharpVk.Emit/TypeKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Emit/TypeKind.cs -------------------------------------------------------------------------------- /src/SharpVk.Emit/TypeModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Emit/TypeModifier.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/Collation/CollationStage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/Collation/CollationStage.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/Collation/CommandCollator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/Collation/CommandCollator.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/Collation/ConstantCollator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/Collation/ConstantCollator.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/Collation/DelegateCollator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/Collation/DelegateCollator.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/Collation/EnumCollator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/Collation/EnumCollator.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/Collation/EnumDeclaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/Collation/EnumDeclaration.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/Collation/EnumMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/Collation/EnumMapping.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/Collation/FieldDeclaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/Collation/FieldDeclaration.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/Collation/NameFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/Collation/NameFormatter.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/Collation/ParamDeclaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/Collation/ParamDeclaration.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/Collation/TypeCollator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/Collation/TypeCollator.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/Collation/TypeDeclaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/Collation/TypeDeclaration.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/Collation/TypeNameMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/Collation/TypeNameMapping.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/CommentCache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/CommentCache.json -------------------------------------------------------------------------------- /src/SharpVk.Generator/Emission/ConstantEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/Emission/ConstantEmitter.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/Emission/DelegateEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/Emission/DelegateEmitter.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/Emission/EmissionStage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/Emission/EmissionStage.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/Emission/EnumEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/Emission/EnumEmitter.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/Emission/ExceptionEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/Emission/ExceptionEmitter.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/Emission/HandleEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/Emission/HandleEmitter.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/Emission/MethodEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/Emission/MethodEmitter.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/Emission/StructEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/Emission/StructEmitter.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/Expressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/Expressions.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/ExtensionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/ExtensionInfo.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/FixedLengthDeclaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/FixedLengthDeclaration.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/FixedLengthType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/FixedLengthType.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/Generation/Action.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/Generation/Action.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/Generation/EnumDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/Generation/EnumDefinition.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/Generation/EnumGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/Generation/EnumGenerator.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/Generation/FieldDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/Generation/FieldDefinition.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/Generation/GenerationStage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/Generation/GenerationStage.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/Generation/HandleGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/Generation/HandleGenerator.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/Generation/NameLookup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/Generation/NameLookup.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/Generation/NamespaceMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/Generation/NamespaceMap.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/Generation/ParamDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/Generation/ParamDefinition.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/Generation/StructGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/Generation/StructGenerator.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/Generation/TypedDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/Generation/TypedDefinition.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/IVkXmlCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/IVkXmlCache.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/LoadXmlStage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/LoadXmlStage.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/NullStage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/NullStage.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/PassthroughWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/PassthroughWorker.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/Pipeline/ICleanupWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/Pipeline/ICleanupWorker.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/Pipeline/IOutputWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/Pipeline/IOutputWorker.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/Pipeline/IStage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/Pipeline/IStage.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/Pipeline/IWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/Pipeline/IWorker.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/Pipeline/Pipeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/Pipeline/Pipeline.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/Pipeline/PipelineBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/Pipeline/PipelineBuilder.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/PointerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/PointerType.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/Program.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/Rules/IRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/Rules/IRule.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/Rules/RuleExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/Rules/RuleExtensions.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/ServiceProviderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/ServiceProviderExtensions.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/SharpVk.Generator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/SharpVk.Generator.csproj -------------------------------------------------------------------------------- /src/SharpVk.Generator/Specification/ExtensionSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/Specification/ExtensionSet.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/Specification/NameParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/Specification/NameParser.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/Specification/SimpleParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/Specification/SimpleParser.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/StringExtensions.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/TypeCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/TypeCategory.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/TypePattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/TypePattern.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/TypeReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/TypeReference.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/VkXmlCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/VkXmlCache.cs -------------------------------------------------------------------------------- /src/SharpVk.Generator/vk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Generator/vk.xml -------------------------------------------------------------------------------- /src/SharpVk.Glfw/.msbump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Glfw/.msbump -------------------------------------------------------------------------------- /src/SharpVk.Glfw/CharDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Glfw/CharDelegate.cs -------------------------------------------------------------------------------- /src/SharpVk.Glfw/CharModsDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Glfw/CharModsDelegate.cs -------------------------------------------------------------------------------- /src/SharpVk.Glfw/CodePoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Glfw/CodePoint.cs -------------------------------------------------------------------------------- /src/SharpVk.Glfw/CursorPosDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Glfw/CursorPosDelegate.cs -------------------------------------------------------------------------------- /src/SharpVk.Glfw/ErrorCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Glfw/ErrorCode.cs -------------------------------------------------------------------------------- /src/SharpVk.Glfw/ErrorDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Glfw/ErrorDelegate.cs -------------------------------------------------------------------------------- /src/SharpVk.Glfw/ErrorUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Glfw/ErrorUtility.cs -------------------------------------------------------------------------------- /src/SharpVk.Glfw/Glfw3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Glfw/Glfw3.cs -------------------------------------------------------------------------------- /src/SharpVk.Glfw/GlfwErrorException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Glfw/GlfwErrorException.cs -------------------------------------------------------------------------------- /src/SharpVk.Glfw/InputAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Glfw/InputAction.cs -------------------------------------------------------------------------------- /src/SharpVk.Glfw/InstanceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Glfw/InstanceExtensions.cs -------------------------------------------------------------------------------- /src/SharpVk.Glfw/Key.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Glfw/Key.cs -------------------------------------------------------------------------------- /src/SharpVk.Glfw/KeyDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Glfw/KeyDelegate.cs -------------------------------------------------------------------------------- /src/SharpVk.Glfw/Modifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Glfw/Modifier.cs -------------------------------------------------------------------------------- /src/SharpVk.Glfw/Monitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Glfw/Monitor.cs -------------------------------------------------------------------------------- /src/SharpVk.Glfw/MonitorEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Glfw/MonitorEvent.cs -------------------------------------------------------------------------------- /src/SharpVk.Glfw/MonitorEventDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Glfw/MonitorEventDelegate.cs -------------------------------------------------------------------------------- /src/SharpVk.Glfw/MonitorHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Glfw/MonitorHandle.cs -------------------------------------------------------------------------------- /src/SharpVk.Glfw/MouseButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Glfw/MouseButton.cs -------------------------------------------------------------------------------- /src/SharpVk.Glfw/MouseButtonDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Glfw/MouseButtonDelegate.cs -------------------------------------------------------------------------------- /src/SharpVk.Glfw/NativeString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Glfw/NativeString.cs -------------------------------------------------------------------------------- /src/SharpVk.Glfw/ScrollDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Glfw/ScrollDelegate.cs -------------------------------------------------------------------------------- /src/SharpVk.Glfw/SharpVk.Glfw.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Glfw/SharpVk.Glfw.csproj -------------------------------------------------------------------------------- /src/SharpVk.Glfw/VideoMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Glfw/VideoMode.cs -------------------------------------------------------------------------------- /src/SharpVk.Glfw/VideoModePointer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Glfw/VideoModePointer.cs -------------------------------------------------------------------------------- /src/SharpVk.Glfw/Window.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Glfw/Window.cs -------------------------------------------------------------------------------- /src/SharpVk.Glfw/WindowAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Glfw/WindowAttribute.cs -------------------------------------------------------------------------------- /src/SharpVk.Glfw/WindowHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Glfw/WindowHandle.cs -------------------------------------------------------------------------------- /src/SharpVk.Glfw/WindowSizeDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Glfw/WindowSizeDelegate.cs -------------------------------------------------------------------------------- /src/SharpVk.Shanq.GlmSharp/DeviceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Shanq.GlmSharp/DeviceExtensions.cs -------------------------------------------------------------------------------- /src/SharpVk.Shanq.GlmSharp/SamplerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Shanq.GlmSharp/SamplerExtensions.cs -------------------------------------------------------------------------------- /src/SharpVk.Shanq.GlmSharp/VectorTypeLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Shanq.GlmSharp/VectorTypeLibrary.cs -------------------------------------------------------------------------------- /src/SharpVk.Shanq.Numerics/DeviceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Shanq.Numerics/DeviceExtensions.cs -------------------------------------------------------------------------------- /src/SharpVk.Shanq.Numerics/VectorTypeLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Shanq.Numerics/VectorTypeLibrary.cs -------------------------------------------------------------------------------- /src/SharpVk.Shanq/BinarySink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Shanq/BinarySink.cs -------------------------------------------------------------------------------- /src/SharpVk.Shanq/BuiltinAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Shanq/BuiltinAttribute.cs -------------------------------------------------------------------------------- /src/SharpVk.Shanq/IVectorTypeLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Shanq/IVectorTypeLibrary.cs -------------------------------------------------------------------------------- /src/SharpVk.Shanq/ImageType2d.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Shanq/ImageType2d.cs -------------------------------------------------------------------------------- /src/SharpVk.Shanq/LocationAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Shanq/LocationAttribute.cs -------------------------------------------------------------------------------- /src/SharpVk.Shanq/Pointer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Shanq/Pointer.cs -------------------------------------------------------------------------------- /src/SharpVk.Shanq/QueryableOrigin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Shanq/QueryableOrigin.cs -------------------------------------------------------------------------------- /src/SharpVk.Shanq/Sampler2d.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Shanq/Sampler2d.cs -------------------------------------------------------------------------------- /src/SharpVk.Shanq/ShanqExpressionVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Shanq/ShanqExpressionVisitor.cs -------------------------------------------------------------------------------- /src/SharpVk.Shanq/ShanqQueryExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Shanq/ShanqQueryExecutor.cs -------------------------------------------------------------------------------- /src/SharpVk.Shanq/ShanqQueryable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Shanq/ShanqQueryable.cs -------------------------------------------------------------------------------- /src/SharpVk.Shanq/ShanqShader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Shanq/ShanqShader.cs -------------------------------------------------------------------------------- /src/SharpVk.Shanq/SharpVk.Shanq.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Shanq/SharpVk.Shanq.csproj -------------------------------------------------------------------------------- /src/SharpVk.Shanq/SpirvFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Shanq/SpirvFile.cs -------------------------------------------------------------------------------- /src/SharpVk.Shanq/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Shanq/TypeExtensions.cs -------------------------------------------------------------------------------- /src/SharpVk.TestHarness/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.TestHarness/Program.cs -------------------------------------------------------------------------------- /src/SharpVk.TestHarness/SharpVk.TestHarness.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.TestHarness/SharpVk.TestHarness.csproj -------------------------------------------------------------------------------- /src/SharpVk.TestHarness/glfw3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.TestHarness/glfw3.dll -------------------------------------------------------------------------------- /src/SharpVk.Tests/InstanceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Tests/InstanceTests.cs -------------------------------------------------------------------------------- /src/SharpVk.Tests/SharpVk.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.Tests/SharpVk.Tests.csproj -------------------------------------------------------------------------------- /src/SharpVk.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk.sln -------------------------------------------------------------------------------- /src/SharpVk/AccessFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/AccessFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/AllocationCallbacks.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/AllocationCallbacks.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/AllocationFunctionDelegate.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/AllocationFunctionDelegate.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Amd/AmdExtensions.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Amd/AmdExtensions.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Amd/CommandBufferExtensions.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Amd/CommandBufferExtensions.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Amd/MemoryOverallocationBehavior.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Amd/MemoryOverallocationBehavior.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Amd/PipelineCompilerControlFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Amd/PipelineCompilerControlFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Amd/PipelineExtensions.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Amd/PipelineExtensions.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Amd/RasterizationOrder.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Amd/RasterizationOrder.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Amd/ShaderCorePropertiesFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Amd/ShaderCorePropertiesFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Amd/ShaderInfoType.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Amd/ShaderInfoType.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Amd/ShaderResourceUsage.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Amd/ShaderResourceUsage.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Amd/ShaderStatisticsInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Amd/ShaderStatisticsInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Amd/SwapchainExtensions.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Amd/SwapchainExtensions.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Android/AndroidExtensions.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Android/AndroidExtensions.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Android/DeviceExtensions.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Android/DeviceExtensions.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Android/ExternalFormat.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Android/ExternalFormat.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Android/NativeBuffer.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Android/NativeBuffer.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Android/NativeBufferUsage2.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Android/NativeBufferUsage2.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Android/SwapchainImageCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Android/SwapchainImageCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Android/SwapchainImageUsageFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Android/SwapchainImageUsageFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ApplicationInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ApplicationInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ArrayProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ArrayProxy.cs -------------------------------------------------------------------------------- /src/SharpVk/AttachmentDescription.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/AttachmentDescription.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/AttachmentDescription2.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/AttachmentDescription2.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/AttachmentDescriptionFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/AttachmentDescriptionFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/AttachmentLoadOp.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/AttachmentLoadOp.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/AttachmentReference.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/AttachmentReference.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/AttachmentReference2.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/AttachmentReference2.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/AttachmentReferenceStencilLayout.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/AttachmentReferenceStencilLayout.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/AttachmentStoreOp.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/AttachmentStoreOp.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/BaseInStructure.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/BaseInStructure.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/BaseOutStructure.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/BaseOutStructure.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/BindBufferMemoryDeviceGroupInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/BindBufferMemoryDeviceGroupInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/BindBufferMemoryInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/BindBufferMemoryInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/BindImageMemoryDeviceGroupInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/BindImageMemoryDeviceGroupInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/BindImageMemoryInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/BindImageMemoryInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/BindImagePlaneMemoryInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/BindImagePlaneMemoryInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/BindSparseInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/BindSparseInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/BlendFactor.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/BlendFactor.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/BlendOp.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/BlendOp.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Bool32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Bool32.cs -------------------------------------------------------------------------------- /src/SharpVk/BorderColor.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/BorderColor.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Buffer.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Buffer.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Buffer.partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Buffer.partial.cs -------------------------------------------------------------------------------- /src/SharpVk/BufferCopy.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/BufferCopy.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/BufferCreateFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/BufferCreateFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/BufferCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/BufferCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/BufferDeviceAddressInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/BufferDeviceAddressInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/BufferImageCopy.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/BufferImageCopy.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/BufferMemoryBarrier.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/BufferMemoryBarrier.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/BufferMemoryRequirementsInfo2.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/BufferMemoryRequirementsInfo2.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/BufferUsageFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/BufferUsageFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/BufferView.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/BufferView.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/BufferViewCreateFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/BufferViewCreateFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/BufferViewCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/BufferViewCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ChromaLocation.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ChromaLocation.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ClearAttachment.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ClearAttachment.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ClearColorValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ClearColorValue.cs -------------------------------------------------------------------------------- /src/SharpVk/ClearDepthStencilValue.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ClearDepthStencilValue.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ClearRect.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ClearRect.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ClearValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ClearValue.cs -------------------------------------------------------------------------------- /src/SharpVk/ColorComponentFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ColorComponentFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/CommandBuffer.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/CommandBuffer.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/CommandBuffer.partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/CommandBuffer.partial.cs -------------------------------------------------------------------------------- /src/SharpVk/CommandBufferAllocateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/CommandBufferAllocateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/CommandBufferBeginInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/CommandBufferBeginInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/CommandBufferInheritanceInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/CommandBufferInheritanceInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/CommandBufferLevel.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/CommandBufferLevel.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/CommandBufferResetFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/CommandBufferResetFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/CommandBufferUsageFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/CommandBufferUsageFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/CommandCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/CommandCache.cs -------------------------------------------------------------------------------- /src/SharpVk/CommandCacheStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/CommandCacheStruct.cs -------------------------------------------------------------------------------- /src/SharpVk/CommandCacheStruct.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/CommandCacheStruct.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/CommandPool.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/CommandPool.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/CommandPoolCreateFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/CommandPoolCreateFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/CommandPoolCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/CommandPoolCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/CommandPoolResetFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/CommandPoolResetFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/CommandPoolTrimFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/CommandPoolTrimFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/CompareOp.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/CompareOp.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ComponentMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ComponentMapping.cs -------------------------------------------------------------------------------- /src/SharpVk/ComponentMapping.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ComponentMapping.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ComponentSwizzle.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ComponentSwizzle.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ComputePipelineCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ComputePipelineCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ConformanceVersion.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ConformanceVersion.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Constants.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Constants.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/CopyDescriptorSet.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/CopyDescriptorSet.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/CullModeFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/CullModeFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/DependencyFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/DependencyFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/DescriptorBindingFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/DescriptorBindingFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/DescriptorBufferInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/DescriptorBufferInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/DescriptorImageInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/DescriptorImageInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/DescriptorPool.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/DescriptorPool.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/DescriptorPool.partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/DescriptorPool.partial.cs -------------------------------------------------------------------------------- /src/SharpVk/DescriptorPoolCreateFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/DescriptorPoolCreateFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/DescriptorPoolCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/DescriptorPoolCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/DescriptorPoolResetFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/DescriptorPoolResetFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/DescriptorPoolSize.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/DescriptorPoolSize.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/DescriptorSet.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/DescriptorSet.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/DescriptorSet.partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/DescriptorSet.partial.cs -------------------------------------------------------------------------------- /src/SharpVk/DescriptorSetAllocateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/DescriptorSetAllocateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/DescriptorSetLayout.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/DescriptorSetLayout.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/DescriptorSetLayoutBinding.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/DescriptorSetLayoutBinding.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/DescriptorSetLayoutCreateFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/DescriptorSetLayoutCreateFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/DescriptorSetLayoutCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/DescriptorSetLayoutCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/DescriptorSetLayoutSupport.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/DescriptorSetLayoutSupport.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/DescriptorType.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/DescriptorType.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/DescriptorUpdateTemplate.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/DescriptorUpdateTemplate.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/DescriptorUpdateTemplateEntry.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/DescriptorUpdateTemplateEntry.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/DescriptorUpdateTemplateType.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/DescriptorUpdateTemplateType.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Device.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Device.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Device.partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Device.partial.cs -------------------------------------------------------------------------------- /src/SharpVk/DeviceAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/DeviceAddress.cs -------------------------------------------------------------------------------- /src/SharpVk/DeviceCreateFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/DeviceCreateFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/DeviceCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/DeviceCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/DeviceGroupBindSparseInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/DeviceGroupBindSparseInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/DeviceGroupDeviceCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/DeviceGroupDeviceCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/DeviceGroupRenderPassBeginInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/DeviceGroupRenderPassBeginInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/DeviceGroupSubmitInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/DeviceGroupSubmitInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/DeviceMemory.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/DeviceMemory.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/DeviceQueueCreateFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/DeviceQueueCreateFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/DeviceQueueCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/DeviceQueueCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/DeviceQueueInfo2.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/DeviceQueueInfo2.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/DeviceSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/DeviceSize.cs -------------------------------------------------------------------------------- /src/SharpVk/DispatchIndirectCommand.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/DispatchIndirectCommand.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/DrawIndexedIndirectCommand.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/DrawIndexedIndirectCommand.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/DrawIndirectCommand.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/DrawIndirectCommand.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/DriverId.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/DriverId.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/DynamicState.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/DynamicState.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Event.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Event.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/EventCreateFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/EventCreateFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/EventCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/EventCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Exceptions.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Exceptions.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ExportFenceCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ExportFenceCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ExportMemoryAllocateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ExportMemoryAllocateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ExportSemaphoreCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ExportSemaphoreCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ExtensionProperties.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ExtensionProperties.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Extent2D.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Extent2D.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Extent2D.partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Extent2D.partial.cs -------------------------------------------------------------------------------- /src/SharpVk/Extent3D.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Extent3D.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ExternalBufferProperties.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ExternalBufferProperties.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ExternalFenceFeatureFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ExternalFenceFeatureFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ExternalFenceHandleTypeFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ExternalFenceHandleTypeFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ExternalFenceProperties.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ExternalFenceProperties.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ExternalImageFormatProperties.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ExternalImageFormatProperties.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ExternalMemoryBufferCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ExternalMemoryBufferCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ExternalMemoryFeatureFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ExternalMemoryFeatureFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ExternalMemoryHandleTypeFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ExternalMemoryHandleTypeFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ExternalMemoryImageCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ExternalMemoryImageCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ExternalMemoryProperties.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ExternalMemoryProperties.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ExternalSemaphoreFeatureFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ExternalSemaphoreFeatureFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ExternalSemaphoreHandleTypeFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ExternalSemaphoreHandleTypeFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ExternalSemaphoreProperties.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ExternalSemaphoreProperties.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Fence.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Fence.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Fence.partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Fence.partial.cs -------------------------------------------------------------------------------- /src/SharpVk/FenceCreateFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/FenceCreateFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/FenceCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/FenceCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/FenceImportFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/FenceImportFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Filter.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Filter.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Format.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Format.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/FormatFeatureFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/FormatFeatureFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/FormatProperties.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/FormatProperties.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/FormatProperties2.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/FormatProperties2.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Framebuffer.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Framebuffer.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/FramebufferAttachmentImageInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/FramebufferAttachmentImageInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/FramebufferAttachmentsCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/FramebufferAttachmentsCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/FramebufferCreateFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/FramebufferCreateFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/FramebufferCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/FramebufferCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/FreeFunctionDelegate.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/FreeFunctionDelegate.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/FrontFace.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/FrontFace.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Fuchsia/FuchsiaExtensions.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Fuchsia/FuchsiaExtensions.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Fuchsia/InstanceExtensions.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Fuchsia/InstanceExtensions.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Ggp/GgpExtensions.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Ggp/GgpExtensions.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Ggp/InstanceExtensions.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Ggp/InstanceExtensions.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Ggp/PresentFrameToken.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Ggp/PresentFrameToken.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Google/GoogleExtensions.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Google/GoogleExtensions.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Google/PastPresentationTiming.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Google/PastPresentationTiming.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Google/PresentTime.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Google/PresentTime.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Google/PresentTimesInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Google/PresentTimesInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Google/RefreshCycleDuration.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Google/RefreshCycleDuration.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Google/SwapchainExtensions.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Google/SwapchainExtensions.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/GraphicsPipelineCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/GraphicsPipelineCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/HostSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/HostSize.cs -------------------------------------------------------------------------------- /src/SharpVk/IMemoryBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/IMemoryBinder.cs -------------------------------------------------------------------------------- /src/SharpVk/IProcLookup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/IProcLookup.cs -------------------------------------------------------------------------------- /src/SharpVk/Image.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Image.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Image.partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Image.partial.cs -------------------------------------------------------------------------------- /src/SharpVk/ImageAspectFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ImageAspectFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ImageBlit.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ImageBlit.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ImageCopy.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ImageCopy.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ImageCreateFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ImageCreateFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ImageCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ImageCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ImageFormatListCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ImageFormatListCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ImageFormatProperties.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ImageFormatProperties.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ImageFormatProperties2.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ImageFormatProperties2.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ImageLayout.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ImageLayout.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ImageMemoryBarrier.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ImageMemoryBarrier.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ImageMemoryRequirementsInfo2.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ImageMemoryRequirementsInfo2.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ImagePlaneMemoryRequirementsInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ImagePlaneMemoryRequirementsInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ImageResolve.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ImageResolve.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ImageStencilUsageCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ImageStencilUsageCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ImageSubresource.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ImageSubresource.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ImageSubresourceLayers.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ImageSubresourceLayers.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ImageSubresourceRange.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ImageSubresourceRange.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ImageTiling.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ImageTiling.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ImageType.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ImageType.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ImageUsageFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ImageUsageFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ImageView.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ImageView.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ImageViewCreateFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ImageViewCreateFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ImageViewCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ImageViewCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ImageViewType.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ImageViewType.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ImageViewUsageCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ImageViewUsageCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Img/ImgExtensions.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Img/ImgExtensions.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/IndexType.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/IndexType.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/InputAttachmentAspectReference.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/InputAttachmentAspectReference.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Instance.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Instance.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Instance.partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Instance.partial.cs -------------------------------------------------------------------------------- /src/SharpVk/InstanceCreateFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/InstanceCreateFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/InstanceCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/InstanceCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Intel/CommandBufferExtensions.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Intel/CommandBufferExtensions.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Intel/DeviceExtensions.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Intel/DeviceExtensions.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Intel/IntelExtensions.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Intel/IntelExtensions.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Intel/PerformanceConfiguration.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Intel/PerformanceConfiguration.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Intel/PerformanceMarkerInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Intel/PerformanceMarkerInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Intel/PerformanceOverrideInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Intel/PerformanceOverrideInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Intel/PerformanceOverrideType.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Intel/PerformanceOverrideType.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Intel/PerformanceParameterType.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Intel/PerformanceParameterType.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Intel/PerformanceValue.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Intel/PerformanceValue.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Intel/PerformanceValueData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Intel/PerformanceValueData.cs -------------------------------------------------------------------------------- /src/SharpVk/Intel/PerformanceValueType.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Intel/PerformanceValueType.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Intel/QueryPoolCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Intel/QueryPoolCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Intel/QueryPoolSamplingMode.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Intel/QueryPoolSamplingMode.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Intel/QueueExtensions.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Intel/QueueExtensions.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/InternalAllocationType.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/InternalAllocationType.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/InternalFreeNotificationDelegate.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/InternalFreeNotificationDelegate.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/AllocationCallbacks.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/AllocationCallbacks.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/Amd/ShaderStatisticsInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/Amd/ShaderStatisticsInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/Android/ExternalFormat.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/Android/ExternalFormat.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/Android/NativeBuffer.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/Android/NativeBuffer.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/ApplicationInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/ApplicationInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/AttachmentDescription2.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/AttachmentDescription2.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/AttachmentReference2.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/AttachmentReference2.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/BaseInStructure.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/BaseInStructure.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/BaseOutStructure.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/BaseOutStructure.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/BindBufferMemoryInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/BindBufferMemoryInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/BindImageMemoryInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/BindImageMemoryInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/BindImagePlaneMemoryInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/BindImagePlaneMemoryInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/BindSparseInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/BindSparseInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/Buffer.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/Buffer.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/BufferCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/BufferCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/BufferDeviceAddressInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/BufferDeviceAddressInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/BufferMemoryBarrier.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/BufferMemoryBarrier.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/BufferView.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/BufferView.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/BufferViewCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/BufferViewCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/CommandBuffer.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/CommandBuffer.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/CommandBufferBeginInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/CommandBufferBeginInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/CommandPool.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/CommandPool.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/CommandPoolCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/CommandPoolCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/CopyDescriptorSet.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/CopyDescriptorSet.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/DescriptorBufferInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/DescriptorBufferInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/DescriptorImageInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/DescriptorImageInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/DescriptorPool.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/DescriptorPool.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/DescriptorPoolCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/DescriptorPoolCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/DescriptorSet.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/DescriptorSet.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/DescriptorSetLayout.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/DescriptorSetLayout.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/DescriptorUpdateTemplate.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/DescriptorUpdateTemplate.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/Device.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/Device.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/DeviceCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/DeviceCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/DeviceGroupSubmitInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/DeviceGroupSubmitInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/DeviceMemory.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/DeviceMemory.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/DeviceQueueCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/DeviceQueueCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/DeviceQueueInfo2.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/DeviceQueueInfo2.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/Event.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/Event.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/EventCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/EventCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/ExportFenceCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/ExportFenceCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/ExportMemoryAllocateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/ExportMemoryAllocateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/ExtensionProperties.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/ExtensionProperties.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/ExternalBufferProperties.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/ExternalBufferProperties.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/ExternalFenceProperties.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/ExternalFenceProperties.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/Fence.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/Fence.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/FenceCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/FenceCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/FormatProperties2.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/FormatProperties2.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/Framebuffer.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/Framebuffer.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/FramebufferCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/FramebufferCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/Ggp/PresentFrameToken.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/Ggp/PresentFrameToken.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/Google/PresentTimesInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/Google/PresentTimesInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/HeapUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/HeapUtil.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/Image.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/Image.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/ImageBlit.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/ImageBlit.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/ImageCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/ImageCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/ImageFormatProperties2.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/ImageFormatProperties2.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/ImageMemoryBarrier.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/ImageMemoryBarrier.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/ImageView.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/ImageView.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/ImageViewCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/ImageViewCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/ImageViewUsageCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/ImageViewUsageCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/Instance.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/Instance.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/InstanceCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/InstanceCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/Intel/PerformanceValue.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/Intel/PerformanceValue.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/Khronos/Display.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/Khronos/Display.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/Khronos/DisplayMode.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/Khronos/DisplayMode.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/Khronos/PipelineInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/Khronos/PipelineInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/Khronos/PresentInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/Khronos/PresentInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/Khronos/PresentRegion.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/Khronos/PresentRegion.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/Khronos/PresentRegions.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/Khronos/PresentRegions.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/Khronos/Surface.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/Khronos/Surface.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/Khronos/SurfaceFormat2.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/Khronos/SurfaceFormat2.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/Khronos/Swapchain.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/Khronos/Swapchain.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/LayerProperties.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/LayerProperties.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/MappedMemoryRange.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/MappedMemoryRange.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/MemoryAllocateFlagsInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/MemoryAllocateFlagsInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/MemoryAllocateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/MemoryAllocateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/MemoryBarrier.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/MemoryBarrier.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/MemoryRequirements2.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/MemoryRequirements2.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/Multivendor/HdrMetadata.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/Multivendor/HdrMetadata.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/NVidia/CheckpointData.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/NVidia/CheckpointData.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/NVidia/Geometry.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/NVidia/Geometry.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/NVidia/GeometryAABB.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/NVidia/GeometryAABB.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/NVidia/GeometryData.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/NVidia/GeometryData.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/NVidia/GeometryTriangles.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/NVidia/GeometryTriangles.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/NativeLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/NativeLibrary.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/PhysicalDevice.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/PhysicalDevice.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/PhysicalDeviceFeatures.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/PhysicalDeviceFeatures.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/PhysicalDeviceFeatures2.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/PhysicalDeviceFeatures2.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/PhysicalDeviceLimits.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/PhysicalDeviceLimits.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/PhysicalDeviceProperties.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/PhysicalDeviceProperties.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/Pipeline.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/Pipeline.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/PipelineCache.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/PipelineCache.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/PipelineCacheCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/PipelineCacheCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/PipelineLayout.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/PipelineLayout.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/PipelineLayoutCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/PipelineLayoutCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/ProtectedSubmitInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/ProtectedSubmitInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/QueryPool.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/QueryPool.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/QueryPoolCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/QueryPoolCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/Queue.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/Queue.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/QueueFamilyProperties2.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/QueueFamilyProperties2.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/RenderPass.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/RenderPass.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/RenderPassBeginInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/RenderPassBeginInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/RenderPassCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/RenderPassCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/RenderPassCreateInfo2.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/RenderPassCreateInfo2.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/Sampler.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/Sampler.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/SamplerCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/SamplerCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/SamplerYcbcrConversion.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/SamplerYcbcrConversion.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/Semaphore.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/Semaphore.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/SemaphoreCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/SemaphoreCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/SemaphoreSignalInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/SemaphoreSignalInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/SemaphoreTypeCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/SemaphoreTypeCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/SemaphoreWaitInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/SemaphoreWaitInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/ShaderModule.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/ShaderModule.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/ShaderModuleCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/ShaderModuleCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/SparseImageMemoryBind.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/SparseImageMemoryBind.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/SparseMemoryBind.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/SparseMemoryBind.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/SpecializationInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/SpecializationInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/SubmitInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/SubmitInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/SubpassBeginInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/SubpassBeginInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/SubpassDependency2.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/SubpassDependency2.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/SubpassDescription.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/SubpassDescription.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/SubpassDescription2.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/SubpassDescription2.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/SubpassEndInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/SubpassEndInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/VkBufferDestroyDelegate.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/VkBufferDestroyDelegate.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/VkDeviceDestroyDelegate.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/VkDeviceDestroyDelegate.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/VkDeviceGetQueueDelegate.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/VkDeviceGetQueueDelegate.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/VkDeviceWaitIdleDelegate.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/VkDeviceWaitIdleDelegate.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/VkEventDestroyDelegate.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/VkEventDestroyDelegate.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/VkEventGetStatusDelegate.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/VkEventGetStatusDelegate.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/VkEventResetDelegate.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/VkEventResetDelegate.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/VkEventSetDelegate.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/VkEventSetDelegate.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/VkFenceDestroyDelegate.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/VkFenceDestroyDelegate.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/VkFenceGetStatusDelegate.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/VkFenceGetStatusDelegate.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/VkImageDestroyDelegate.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/VkImageDestroyDelegate.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/VkInstanceCreateDelegate.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/VkInstanceCreateDelegate.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/VkQueryPoolResetDelegate.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/VkQueryPoolResetDelegate.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/VkQueueSubmitDelegate.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/VkQueueSubmitDelegate.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/VkQueueWaitIdleDelegate.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/VkQueueWaitIdleDelegate.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/VkSamplerDestroyDelegate.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/VkSamplerDestroyDelegate.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Interop/WriteDescriptorSet.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Interop/WriteDescriptorSet.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/AcquireNextImageInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/AcquireNextImageInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/AcquireProfilingLockInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/AcquireProfilingLockInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/AndroidSurfaceCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/AndroidSurfaceCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/ColorSpace.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/ColorSpace.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/CommandBufferExtensions.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/CommandBufferExtensions.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/CommandPoolTrimFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/CommandPoolTrimFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/CompositeAlphaFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/CompositeAlphaFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/D3D12FenceSubmitInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/D3D12FenceSubmitInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/DeviceExtensions.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/DeviceExtensions.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/DeviceGroupPresentInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/DeviceGroupPresentInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/Display.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/Display.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/DisplayMode.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/DisplayMode.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/DisplayModeCreateFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/DisplayModeCreateFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/DisplayModeCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/DisplayModeCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/DisplayModeParameters.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/DisplayModeParameters.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/DisplayModeProperties.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/DisplayModeProperties.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/DisplayModeProperties2.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/DisplayModeProperties2.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/DisplayPlaneAlphaFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/DisplayPlaneAlphaFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/DisplayPlaneCapabilities.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/DisplayPlaneCapabilities.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/DisplayPlaneInfo2.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/DisplayPlaneInfo2.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/DisplayPlaneProperties.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/DisplayPlaneProperties.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/DisplayPlaneProperties2.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/DisplayPlaneProperties2.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/DisplayPresentInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/DisplayPresentInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/DisplayProperties.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/DisplayProperties.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/DisplayProperties2.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/DisplayProperties2.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/DisplaySurfaceCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/DisplaySurfaceCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/FenceGetWin32HandleInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/FenceGetWin32HandleInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/FenceImportFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/FenceImportFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/ImageSwapchainCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/ImageSwapchainCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/InstanceExtensions.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/InstanceExtensions.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/KhrExtensions.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/KhrExtensions.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/MemoryAllocateFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/MemoryAllocateFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/MemoryGetWin32HandleInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/MemoryGetWin32HandleInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/PeerMemoryFeatureFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/PeerMemoryFeatureFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/PerformanceCounter.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/PerformanceCounter.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/PerformanceCounterScope.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/PerformanceCounterScope.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/PerformanceCounterUnit.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/PerformanceCounterUnit.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/PhysicalDeviceExtensions.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/PhysicalDeviceExtensions.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/PipelineExecutableInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/PipelineExecutableInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/PipelineInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/PipelineInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/PresentInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/PresentInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/PresentMode.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/PresentMode.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/PresentRegion.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/PresentRegion.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/PresentRegions.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/PresentRegions.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/QueueExtensions.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/QueueExtensions.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/RectLayer.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/RectLayer.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/ResolveModeFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/ResolveModeFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/SemaphoreImportFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/SemaphoreImportFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/SemaphoreWaitFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/SemaphoreWaitFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/Surface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/Surface.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/Surface.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/Surface.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/SurfaceCapabilities.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/SurfaceCapabilities.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/SurfaceCapabilities2.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/SurfaceCapabilities2.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/SurfaceFormat.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/SurfaceFormat.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/SurfaceFormat2.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/SurfaceFormat2.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/SurfaceTransformFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/SurfaceTransformFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/Swapchain.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/Swapchain.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/SwapchainCreateFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/SwapchainCreateFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/SwapchainCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/SwapchainCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/WaylandSurfaceCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/WaylandSurfaceCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/Win32SurfaceCreateFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/Win32SurfaceCreateFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/Win32SurfaceCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/Win32SurfaceCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/XcbSurfaceCreateFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/XcbSurfaceCreateFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/XcbSurfaceCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/XcbSurfaceCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/XlibSurfaceCreateFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/XlibSurfaceCreateFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Khronos/XlibSurfaceCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Khronos/XlibSurfaceCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/LayerProperties.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/LayerProperties.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/LogicOp.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/LogicOp.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/MappedMemoryRange.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/MappedMemoryRange.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/MemoryAllocateFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/MemoryAllocateFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/MemoryAllocateFlagsInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/MemoryAllocateFlagsInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/MemoryAllocateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/MemoryAllocateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/MemoryBarrier.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/MemoryBarrier.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/MemoryDedicatedAllocateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/MemoryDedicatedAllocateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/MemoryDedicatedRequirements.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/MemoryDedicatedRequirements.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/MemoryHeap.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/MemoryHeap.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/MemoryHeapFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/MemoryHeapFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/MemoryMapFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/MemoryMapFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/MemoryPropertyFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/MemoryPropertyFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/MemoryRequirements.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/MemoryRequirements.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/MemoryRequirements2.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/MemoryRequirements2.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/MemoryType.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/MemoryType.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/MoltenVk/IOSSurfaceCreateFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/MoltenVk/IOSSurfaceCreateFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/MoltenVk/IOSSurfaceCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/MoltenVk/IOSSurfaceCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/MoltenVk/InstanceExtensions.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/MoltenVk/InstanceExtensions.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/MoltenVk/MacOSSurfaceCreateFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/MoltenVk/MacOSSurfaceCreateFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/MoltenVk/MacOSSurfaceCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/MoltenVk/MacOSSurfaceCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/MoltenVk/MvkExtensions.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/MoltenVk/MvkExtensions.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Multivendor/BlendOverlap.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Multivendor/BlendOverlap.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Multivendor/DebugReportCallback.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Multivendor/DebugReportCallback.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Multivendor/DebugReportFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Multivendor/DebugReportFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Multivendor/DebugUtilsLabel.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Multivendor/DebugUtilsLabel.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Multivendor/DebugUtilsMessenger.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Multivendor/DebugUtilsMessenger.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Multivendor/DeviceEventInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Multivendor/DeviceEventInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Multivendor/DeviceEventType.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Multivendor/DeviceEventType.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Multivendor/DeviceExtensions.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Multivendor/DeviceExtensions.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Multivendor/DiscardRectangleMode.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Multivendor/DiscardRectangleMode.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Multivendor/DisplayEventInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Multivendor/DisplayEventInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Multivendor/DisplayEventType.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Multivendor/DisplayEventType.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Multivendor/DisplayPowerInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Multivendor/DisplayPowerInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Multivendor/DisplayPowerState.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Multivendor/DisplayPowerState.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Multivendor/ExtExtensions.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Multivendor/ExtExtensions.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Multivendor/FullScreenExclusive.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Multivendor/FullScreenExclusive.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Multivendor/HdrMetadata.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Multivendor/HdrMetadata.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Multivendor/ImageExtensions.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Multivendor/ImageExtensions.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Multivendor/InstanceExtensions.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Multivendor/InstanceExtensions.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Multivendor/QueueExtensions.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Multivendor/QueueExtensions.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Multivendor/QueueGlobalPriority.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Multivendor/QueueGlobalPriority.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Multivendor/SampleLocation.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Multivendor/SampleLocation.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Multivendor/SampleLocationsInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Multivendor/SampleLocationsInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Multivendor/SurfaceCapabilities2.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Multivendor/SurfaceCapabilities2.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Multivendor/SurfaceCounterFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Multivendor/SurfaceCounterFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Multivendor/SwapchainExtensions.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Multivendor/SwapchainExtensions.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Multivendor/TimeDomain.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Multivendor/TimeDomain.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Multivendor/ToolPurposeFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Multivendor/ToolPurposeFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Multivendor/ValidationCache.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Multivendor/ValidationCache.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Multivendor/ValidationCheck.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Multivendor/ValidationCheck.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Multivendor/ValidationFeatures.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Multivendor/ValidationFeatures.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Multivendor/ValidationFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Multivendor/ValidationFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Multivendor/XYColor.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Multivendor/XYColor.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/NVidia/AccelerationStructure.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/NVidia/AccelerationStructure.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/NVidia/AccelerationStructureInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/NVidia/AccelerationStructureInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/NVidia/AccelerationStructureType.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/NVidia/AccelerationStructureType.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/NVidia/CheckpointData.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/NVidia/CheckpointData.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/NVidia/CoarseSampleLocation.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/NVidia/CoarseSampleLocation.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/NVidia/CoarseSampleOrderCustom.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/NVidia/CoarseSampleOrderCustom.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/NVidia/CoarseSampleOrderType.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/NVidia/CoarseSampleOrderType.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/NVidia/CommandBufferExtensions.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/NVidia/CommandBufferExtensions.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/NVidia/ComponentType.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/NVidia/ComponentType.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/NVidia/CoverageModulationMode.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/NVidia/CoverageModulationMode.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/NVidia/CoverageReductionMode.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/NVidia/CoverageReductionMode.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/NVidia/DeviceExtensions.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/NVidia/DeviceExtensions.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/NVidia/DeviceMemoryExtensions.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/NVidia/DeviceMemoryExtensions.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/NVidia/Experimental/ObjectTable.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/NVidia/Experimental/ObjectTable.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/NVidia/ExportMemoryAllocateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/NVidia/ExportMemoryAllocateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/NVidia/Geometry.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/NVidia/Geometry.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/NVidia/GeometryAABB.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/NVidia/GeometryAABB.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/NVidia/GeometryData.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/NVidia/GeometryData.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/NVidia/GeometryFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/NVidia/GeometryFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/NVidia/GeometryInstanceFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/NVidia/GeometryInstanceFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/NVidia/GeometryTriangles.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/NVidia/GeometryTriangles.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/NVidia/GeometryType.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/NVidia/GeometryType.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/NVidia/NvExtensions.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/NVidia/NvExtensions.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/NVidia/PhysicalDeviceExtensions.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/NVidia/PhysicalDeviceExtensions.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/NVidia/PipelineExtensions.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/NVidia/PipelineExtensions.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/NVidia/QueueExtensions.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/NVidia/QueueExtensions.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/NVidia/RayTracingShaderGroupType.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/NVidia/RayTracingShaderGroupType.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/NVidia/Scope.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/NVidia/Scope.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/NVidia/ShadingRatePalette.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/NVidia/ShadingRatePalette.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/NVidia/ShadingRatePaletteEntry.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/NVidia/ShadingRatePaletteEntry.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/NVidia/ViewportCoordinateSwizzle.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/NVidia/ViewportCoordinateSwizzle.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/NVidia/ViewportSwizzle.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/NVidia/ViewportSwizzle.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/NVidia/ViewportWScaling.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/NVidia/ViewportWScaling.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Nintendo/InstanceExtensions.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Nintendo/InstanceExtensions.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Nintendo/NnExtensions.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Nintendo/NnExtensions.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Nintendo/ViSurfaceCreateFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Nintendo/ViSurfaceCreateFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Nintendo/ViSurfaceCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Nintendo/ViSurfaceCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ObjectType.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ObjectType.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Offset2D.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Offset2D.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Offset3D.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Offset3D.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/PeerMemoryFeatureFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/PeerMemoryFeatureFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/PhysicalDevice.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/PhysicalDevice.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/PhysicalDevice.partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/PhysicalDevice.partial.cs -------------------------------------------------------------------------------- /src/SharpVk/PhysicalDeviceDriverProperties.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/PhysicalDeviceDriverProperties.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/PhysicalDeviceExternalBufferInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/PhysicalDeviceExternalBufferInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/PhysicalDeviceExternalFenceInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/PhysicalDeviceExternalFenceInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/PhysicalDeviceFeatures.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/PhysicalDeviceFeatures.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/PhysicalDeviceFeatures2.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/PhysicalDeviceFeatures2.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/PhysicalDeviceGroupProperties.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/PhysicalDeviceGroupProperties.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/PhysicalDeviceIDProperties.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/PhysicalDeviceIDProperties.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/PhysicalDeviceLimits.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/PhysicalDeviceLimits.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/PhysicalDeviceProperties.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/PhysicalDeviceProperties.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/PhysicalDeviceProperties2.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/PhysicalDeviceProperties2.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/PhysicalDeviceType.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/PhysicalDeviceType.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Pipeline.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Pipeline.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/PipelineBindPoint.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/PipelineBindPoint.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/PipelineCache.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/PipelineCache.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/PipelineCacheCreateFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/PipelineCacheCreateFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/PipelineCacheCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/PipelineCacheCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/PipelineCacheHeaderVersion.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/PipelineCacheHeaderVersion.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/PipelineCreateFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/PipelineCreateFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/PipelineLayout.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/PipelineLayout.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/PipelineLayoutCreateFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/PipelineLayoutCreateFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/PipelineLayoutCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/PipelineLayoutCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/PipelineShaderStageCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/PipelineShaderStageCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/PipelineStageFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/PipelineStageFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/PointClippingBehavior.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/PointClippingBehavior.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/PolygonMode.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/PolygonMode.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/PrimitiveTopology.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/PrimitiveTopology.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ProtectedSubmitInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ProtectedSubmitInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/PushConstantRange.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/PushConstantRange.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/QueryControlFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/QueryControlFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/QueryPipelineStatisticFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/QueryPipelineStatisticFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/QueryPool.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/QueryPool.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/QueryPoolCreateFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/QueryPoolCreateFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/QueryPoolCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/QueryPoolCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/QueryResultFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/QueryResultFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/QueryType.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/QueryType.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Queue.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Queue.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/QueueFamilyProperties.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/QueueFamilyProperties.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/QueueFamilyProperties2.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/QueueFamilyProperties2.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/QueueFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/QueueFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ReallocationFunctionDelegate.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ReallocationFunctionDelegate.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Rect2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Rect2D.cs -------------------------------------------------------------------------------- /src/SharpVk/Rect2D.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Rect2D.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/RenderPass.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/RenderPass.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/RenderPassAttachmentBeginInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/RenderPassAttachmentBeginInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/RenderPassBeginInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/RenderPassBeginInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/RenderPassCreateFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/RenderPassCreateFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/RenderPassCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/RenderPassCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/RenderPassCreateInfo2.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/RenderPassCreateInfo2.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/RenderPassMultiviewCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/RenderPassMultiviewCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ResolveModeFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ResolveModeFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Result.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Result.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/SampleCountFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/SampleCountFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Sampler.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Sampler.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/SamplerAddressMode.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/SamplerAddressMode.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/SamplerCreateFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/SamplerCreateFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/SamplerCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/SamplerCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/SamplerMipmapMode.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/SamplerMipmapMode.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/SamplerReductionMode.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/SamplerReductionMode.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/SamplerYcbcrConversion.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/SamplerYcbcrConversion.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/SamplerYcbcrConversionInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/SamplerYcbcrConversionInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/SamplerYcbcrModelConversion.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/SamplerYcbcrModelConversion.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/SamplerYcbcrRange.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/SamplerYcbcrRange.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Semaphore.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Semaphore.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/SemaphoreCreateFlagBits.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/SemaphoreCreateFlagBits.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/SemaphoreCreateFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/SemaphoreCreateFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/SemaphoreCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/SemaphoreCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/SemaphoreImportFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/SemaphoreImportFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/SemaphoreSignalInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/SemaphoreSignalInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/SemaphoreType.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/SemaphoreType.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/SemaphoreTypeCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/SemaphoreTypeCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/SemaphoreWaitFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/SemaphoreWaitFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/SemaphoreWaitInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/SemaphoreWaitInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ShaderModule.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ShaderModule.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ShaderModuleCreateFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ShaderModuleCreateFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ShaderModuleCreateInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ShaderModuleCreateInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/ShaderStageFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/ShaderStageFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/SharingMode.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/SharingMode.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/SharpVk.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/SharpVk.csproj -------------------------------------------------------------------------------- /src/SharpVk/SparseBufferMemoryBindInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/SparseBufferMemoryBindInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/SparseImageFormatFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/SparseImageFormatFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/SparseImageFormatProperties.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/SparseImageFormatProperties.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/SparseImageFormatProperties2.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/SparseImageFormatProperties2.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/SparseImageMemoryBind.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/SparseImageMemoryBind.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/SparseImageMemoryBindInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/SparseImageMemoryBindInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/SparseImageMemoryRequirements.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/SparseImageMemoryRequirements.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/SparseMemoryBind.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/SparseMemoryBind.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/SparseMemoryBindFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/SparseMemoryBindFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/SpecializationInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/SpecializationInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/SpecializationMapEntry.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/SpecializationMapEntry.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Spirv/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Spirv/Enums.cs -------------------------------------------------------------------------------- /src/SharpVk/Spirv/ISpirvSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Spirv/ISpirvSink.cs -------------------------------------------------------------------------------- /src/SharpVk/Spirv/OpCode.partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Spirv/OpCode.partial.cs -------------------------------------------------------------------------------- /src/SharpVk/Spirv/Opcode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Spirv/Opcode.cs -------------------------------------------------------------------------------- /src/SharpVk/Spirv/Operand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Spirv/Operand.cs -------------------------------------------------------------------------------- /src/SharpVk/Spirv/OperandKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Spirv/OperandKind.cs -------------------------------------------------------------------------------- /src/SharpVk/Spirv/Quantifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Spirv/Quantifier.cs -------------------------------------------------------------------------------- /src/SharpVk/Spirv/ResultId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Spirv/ResultId.cs -------------------------------------------------------------------------------- /src/SharpVk/Spirv/SpirvStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Spirv/SpirvStatement.cs -------------------------------------------------------------------------------- /src/SharpVk/StencilFaceFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/StencilFaceFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/StencilOp.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/StencilOp.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/StencilOpState.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/StencilOpState.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Structs.Partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Structs.Partial.cs -------------------------------------------------------------------------------- /src/SharpVk/StructureType.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/StructureType.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/SubgroupFeatureFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/SubgroupFeatureFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/SubmitInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/SubmitInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/SubpassBeginInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/SubpassBeginInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/SubpassContents.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/SubpassContents.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/SubpassDependency.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/SubpassDependency.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/SubpassDependency2.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/SubpassDependency2.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/SubpassDescription.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/SubpassDescription.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/SubpassDescription2.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/SubpassDescription2.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/SubpassDescriptionFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/SubpassDescriptionFlags.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/SubpassEndInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/SubpassEndInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/SubresourceLayout.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/SubresourceLayout.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/SystemAllocationScope.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/SystemAllocationScope.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/TessellationDomainOrigin.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/TessellationDomainOrigin.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/TimelineSemaphoreSubmitInfo.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/TimelineSemaphoreSubmitInfo.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/VendorId.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/VendorId.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Version.cs -------------------------------------------------------------------------------- /src/SharpVk/VertexInputBindingDescription.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/VertexInputBindingDescription.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/VertexInputRate.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/VertexInputRate.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/Viewport.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/Viewport.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/VoidFunctionDelegate.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/VoidFunctionDelegate.gen.cs -------------------------------------------------------------------------------- /src/SharpVk/WriteDescriptorSet.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FacticiusVir/SharpVk/HEAD/src/SharpVk/WriteDescriptorSet.gen.cs -------------------------------------------------------------------------------- /src/version.json: -------------------------------------------------------------------------------- 1 | { 2 | "releaseVersion": "1.0.0" 3 | } --------------------------------------------------------------------------------