├── .gitattributes ├── .github └── workflows │ └── Windows CI.yml ├── .gitignore ├── LICENSE ├── Package.swift ├── README.md └── Sources ├── Direct3D12 ├── Common │ ├── Error.swift │ ├── IUnknown.swift │ └── String+Convenience.swift ├── Improvised │ ├── Enumerations │ │ └── WindingDirection.swift │ └── Strcutures │ │ └── D3DColor.swift ├── d3d12_h │ ├── Enumerations │ │ ├── BLEND.swift │ │ ├── BLEND_OP.swift │ │ ├── BUFFER_SRV_FLAGS.swift │ │ ├── BUFFER_UAV_FLAGS.swift │ │ ├── CLEAR_FLAGS.swift │ │ ├── COLOR_WRITE_ENABLE.swift │ │ ├── COMMAND_LIST_TYPE.swift │ │ ├── COMMAND_QUEUE_FLAGS.swift │ │ ├── COMMAND_QUEUE_PRIORITY.swift │ │ ├── COMPARISON_FUNC.swift │ │ ├── CONSERVATIVE_RASTERIZATION_MODE.swift │ │ ├── CPU_PAGE_PROPERTY.swift │ │ ├── CULL_MODE.swift │ │ ├── DEPTH_WRITE_MASK.swift │ │ ├── DESCRIPTOR_HEAP_FLAGS.swift │ │ ├── DESCRIPTOR_HEAP_TYPE.swift │ │ ├── DESCRIPTOR_RANGE_TYPE.swift │ │ ├── DSV_DIMENSION.swift │ │ ├── DSV_FLAGS.swift │ │ ├── FEATURE.swift │ │ ├── FENCE_FLAGS.swift │ │ ├── FILL_MODE.swift │ │ ├── FILTER.swift │ │ ├── HEAP_FLAGS.swift │ │ ├── HEAP_TYPE.swift │ │ ├── INDEX_BUFFER_STRIP_CUT_VALUE.swift │ │ ├── INDIRECT_ARGUMENT_TYPE.swift │ │ ├── INPUT_CLASSIFICATION.swift │ │ ├── LOGIC_OP.swift │ │ ├── MEMORY_POOL.swift │ │ ├── PIPELINE_STATE_FLAGS.swift │ │ ├── PREDICATION_OP.swift │ │ ├── PRIMITIVE_TOPOLOGY_TYPE.swift │ │ ├── QUERY_HEAP_TYPE.swift │ │ ├── QUERY_TYPE.swift │ │ ├── RESOURCE_BARRIER_FLAGS.swift │ │ ├── RESOURCE_BARRIER_TYPE.swift │ │ ├── RESOURCE_DIMENSION.swift │ │ ├── RESOURCE_FLAGS.swift │ │ ├── RESOURCE_STATES.swift │ │ ├── ROOT_PARAMETER_TYPE.swift │ │ ├── ROOT_SIGNATURE_FLAGS.swift │ │ ├── ROOT_SIGNATURE_VERSION.swift │ │ ├── RTV_DIMENSION.swift │ │ ├── SHADER_COMPONENT_MAPPING.swift │ │ ├── SHADER_VISIBILITY.swift │ │ ├── SRV_DIMENSION.swift │ │ ├── STATIC_BORDER_COLOR.swift │ │ ├── STENCIL_OP.swift │ │ ├── TEXTURE_ADDRESS_MODE.swift │ │ ├── TEXTURE_COPY_TYPE.swift │ │ ├── TEXTURE_LAYOUT.swift │ │ ├── TILE_COPY_FLAGS.swift │ │ ├── TILE_MAPPING_FLAGS.swift │ │ ├── TILE_RANGE_FLAGS.swift │ │ └── UAV_DIMENSION.swift │ ├── Functions │ │ └── D3D12SerializeRootSignature.swift │ ├── Interfaces │ │ ├── DXCommandAllocator.swift │ │ ├── DXCommandList.swift │ │ ├── DXCommandQueue.swift │ │ ├── DXCommandSignature.swift │ │ ├── DXDescriptorHeap.swift │ │ ├── DXDevice.swift │ │ ├── DXDeviceChild.swift │ │ ├── DXFence.swift │ │ ├── DXGraphicsCommandList.swift │ │ ├── DXHeap.swift │ │ ├── DXObject.swift │ │ ├── DXPageable.swift │ │ ├── DXPipelineState.swift │ │ ├── DXQueryHeap.swift │ │ ├── DXResource.swift │ │ ├── DXRootSignature.swift │ │ └── DXRootSignatureDeserializer.swift │ └── Structures │ │ ├── BLEND_DESC.swift │ │ ├── BOX.swift │ │ ├── BUFFER_RTV.swift │ │ ├── BUFFER_SRV.swift │ │ ├── BUFFER_UAV.swift │ │ ├── CACHED_PIPELINE_STATE.swift │ │ ├── CLEAR_VALUE.swift │ │ ├── COMMAND_QUEUE_DESC.swift │ │ ├── COMMAND_SIGNATURE_DESC.swift │ │ ├── COMPUTE_PIPELINE_STATE_DESC.swift │ │ ├── CONSTANT_BUFFER_VIEW_DESC.swift │ │ ├── CPU_DESCRIPTOR_HANDLE.swift │ │ ├── DEPTH_STENCILOP_DESC.swift │ │ ├── DEPTH_STENCIL_DESC.swift │ │ ├── DEPTH_STENCIL_VALUE.swift │ │ ├── DEPTH_STENCIL_VIEW_DESC.swift │ │ ├── DESCRIPTOR_HEAP_DESC.swift │ │ ├── DESCRIPTOR_RANGE.swift │ │ ├── DISCARD_REGION.swift │ │ ├── GPU_DESCRIPTOR_HANDLE.swift │ │ ├── GPU_VIRTUAL_ADDRESS.swift │ │ ├── GRAPHICS_PIPELINE_STATE_DESC.swift │ │ ├── HEAP_DESC.swift │ │ ├── HEAP_PROPERTIES.swift │ │ ├── INDEX_BUFFER_VIEW.swift │ │ ├── INDIRECT_ARGUMENT_DESC.swift │ │ ├── INPUT_ELEMENT_DESC.swift │ │ ├── INPUT_LAYOUT_DESC.swift │ │ ├── PACKED_MIP_INFO.swift │ │ ├── PLACED_SUBRESOURCE_FOOTPRINT.swift │ │ ├── QUERY_HEAP_DESC.swift │ │ ├── RANGE.swift │ │ ├── RASTERIZER_DESC.swift │ │ ├── RAYT_ACC_STRUCT_SRV.swift │ │ ├── RECT.swift │ │ ├── RENDER_TARGET_BLEND_DESC.swift │ │ ├── RENDER_TARGET_VIEW_DESC.swift │ │ ├── RESOURCE_ALIASING_BARRIER.swift │ │ ├── RESOURCE_ALLOCATION_INFO.swift │ │ ├── RESOURCE_BARRIER.swift │ │ ├── RESOURCE_DESC.swift │ │ ├── RESOURCE_TRANSITION_BARRIER.swift │ │ ├── RESOURCE_UAV_BARRIER.swift │ │ ├── ROOT_CONSTANTS.swift │ │ ├── ROOT_DESCRIPTOR.swift │ │ ├── ROOT_DESCRIPTOR_TABLE.swift │ │ ├── ROOT_PARAMETER.swift │ │ ├── ROOT_SIGNATURE_DESC.swift │ │ ├── SAMPLER_DESC.swift │ │ ├── SHADER_BYTECODE.swift │ │ ├── SHADER_RESOURCE_VIEW_DESC.swift │ │ ├── SO_DECLARATION_ENTRY.swift │ │ ├── STATIC_SAMPLER_DESC.swift │ │ ├── STREAM_OUTPUT_BUFFER_VIEW.swift │ │ ├── STREAM_OUTPUT_DESC.swift │ │ ├── SUBRESOURCE_FOOTPRINT.swift │ │ ├── SUBRESOURCE_TILING.swift │ │ ├── TEX1D_ARRAY_DSV.swift │ │ ├── TEX1D_ARRAY_RTV.swift │ │ ├── TEX1D_ARRAY_SRV.swift │ │ ├── TEX1D_ARRAY_UAV.swift │ │ ├── TEX1D_DSV.swift │ │ ├── TEX1D_RTV.swift │ │ ├── TEX1D_SRV.swift │ │ ├── TEX1D_UAV.swift │ │ ├── TEX2DMS_ARRAY_DSV.swift │ │ ├── TEX2DMS_ARRAY_RTV.swift │ │ ├── TEX2DMS_ARRAY_SRV.swift │ │ ├── TEX2DMS_DSV.swift │ │ ├── TEX2DMS_RTV.swift │ │ ├── TEX2DMS_SRV.swift │ │ ├── TEX2D_ARRAY_DSV.swift │ │ ├── TEX2D_ARRAY_RTV.swift │ │ ├── TEX2D_ARRAY_SRV.swift │ │ ├── TEX2D_ARRAY_UAV.swift │ │ ├── TEX2D_DSV.swift │ │ ├── TEX2D_RTV.swift │ │ ├── TEX2D_SRV.swift │ │ ├── TEX2D_UAV.swift │ │ ├── TEX3D_RTV.swift │ │ ├── TEX3D_SRV.swift │ │ ├── TEX3D_UAV.swift │ │ ├── TEXCUBE_ARRAY_SRV.swift │ │ ├── TEXCUBE_SRV.swift │ │ ├── TEXTURE_COPY_LOCATION.swift │ │ ├── TILED_RESOURCE_COORDINATE.swift │ │ ├── TILE_REGION_SIZE.swift │ │ ├── TILE_SHAPE.swift │ │ ├── UNORDERED_ACCESS_VIEW_DESC.swift │ │ ├── VERTEX_BUFFER_VIEW.swift │ │ └── VIEWPORT.swift ├── d3d12sdklayers_h │ └── Interfaces │ │ └── DXDebug.swift ├── d3dcommon_h │ ├── Enumerations │ │ ├── FEATURE_LEVEL.swift │ │ └── PRIMITIVE_TOPOLOGY.swift │ └── Interfaces │ │ └── ID3DBlob.swift ├── d3dcompiler_h │ └── Functions │ │ └── CompileFromFile.swift ├── dxgi1_2_h │ ├── Enumerations │ │ ├── DXGI_ALPHA_MODE.swift │ │ └── DXGI_SCALING.swift │ └── Structures │ │ ├── DXGI_SWAP_CHAIN_DESC1.swift │ │ └── DXGI_SWAP_CHAIN_FULLSCREEN_DESC.swift ├── dxgi_h │ ├── Enumerations │ │ ├── DXGI_MODE_SCALING.swift │ │ ├── DXGI_MODE_SCANLINE_ORDER.swift │ │ ├── DXGI_PRESENT.swift │ │ ├── DXGI_SWAP_CHAIN_FLAG.swift │ │ ├── DXGI_SWAP_EFFECT.swift │ │ └── DXGI_USAGE.swift │ ├── Interfaces │ │ ├── IDXGIAdapter.swift │ │ ├── IDXGIDevice.swift │ │ ├── IDXGIDeviceSubObject.swift │ │ ├── IDXGIFactory.swift │ │ ├── IDXGIFactory1.swift │ │ ├── IDXGIFactory2.swift │ │ ├── IDXGIFactory3.swift │ │ ├── IDXGIFactory4.swift │ │ ├── IDXGIObject.swift │ │ ├── IDXGIOutput.swift │ │ ├── IDXGISwapChain.swift │ │ └── IDXGISwapChain1.swift │ └── Structures │ │ ├── DXGI_PRESENT_PARAMETERS.swift │ │ └── DXGI_RATIONAL.swift ├── dxgicommon_h │ └── Structures │ │ └── DXGI_SAMPLE_DESC.swift └── dxgiformat_h │ └── Enumerations │ └── DXGI_FORMAT.swift ├── Direct3D12_Enumerations └── Package.swift └── Direct3D12_Unimplemented ├── Package.swift └── Sources └── Direct3D12_Unimplemented └── d3d12_h ├── Enumerations ├── AUTO_BREADCRUMB_OP.swift ├── AXIS_SHADING_RATE.swift ├── BACKGROUND_PROCESSING_MODE.swift ├── COMMAND_LIST_FLAGS.swift ├── COMMAND_LIST_SUPPORT_FLAGS.swift ├── CONSERVATIVE_RASTERIZATION_TIER.swift ├── CROSS_NODE_SHARING_TIER.swift ├── DEBUG_COMMAND_LIST_PARAMETER_TYPE.swift ├── DEBUG_DEVICE_PARAMETER_TYPE.swift ├── DEBUG_FEATURE.swift ├── DESCRIPTOR_RANGE_FLAGS.swift ├── DRED_ALLOCATION_TYPE.swift ├── DRED_ENABLEMENT.swift ├── DRED_VERSION.swift ├── DRIVER_MATCHING_IDENTIFIER_STATUS.swift ├── ELEMENTS_LAYOUT.swift ├── EXPORT_FLAGS.swift ├── FILTER_REDUCTION_TYPE.swift ├── FILTER_TYPE.swift ├── FORMAT_SUPPORT1.swift ├── FORMAT_SUPPORT2.swift ├── GRAPHICS_STATES.swift ├── HEAP_SERIALIZATION_TIER.swift ├── HIT_GROUP_TYPE.swift ├── LIFETIME_STATE.swift ├── MEASUREMENTS_ACTION.swift ├── META_COMMAND_PARAMETER_FLAGS.swift ├── META_COMMAND_PARAMETER_STAGE.swift ├── META_COMMAND_PARAMETER_TYPE.swift ├── MULTIPLE_FENCE_WAIT_FLAGS.swift ├── MULTISAMPLE_QUALITY_LEVEL_FLAGS.swift ├── PIPELINE_STATE_SUBOBJECT_TYPE.swift ├── PROGRAMMABLE_SAMPLE_POSITIONS_TIER.swift ├── PROTECTED_RESOURCE_SESSION_FLAGS.swift ├── PROTECTED_RESOURCE_SESSION_SUPPORT_FLAGS.swift ├── PROTECTED_SESSION_STATUS.swift ├── RAYTRACING_ACCELERATION_STRUCTURE_BUILD_FLAGS.swift ├── RAYTRACING_ACCELERATION_STRUCTURE_COPY_MODE.swift ├── RAYTRACING_ACCELERATION_STRUCTURE_POSTBUILD_INFO_TYPE.swift ├── RAYTRACING_ACCELERATION_STRUCTURE_TYPE.swift ├── RAYTRACING_GEOMETRY_FLAGS.swift ├── RAYTRACING_GEOMETRY_TYPE.swift ├── RAYTRACING_INSTANCE_FLAGS.swift ├── RAYTRACING_TIER.swift ├── RAY_FLAGS.swift ├── RENDER_PASS_BEGINNING_ACCESS_TYPE.swift ├── RENDER_PASS_ENDING_ACCESS_TYPE.swift ├── RENDER_PASS_FLAGS.swift ├── RENDER_PASS_TIER.swift ├── RESIDENCY_FLAGS.swift ├── RESIDENCY_PRIORITY.swift ├── RESOLVE_MODE.swift ├── RESOURCE_BINDING_TIER.swift ├── RESOURCE_HEAP_TIER.swift ├── ROOT_DESCRIPTOR_FLAGS.swift ├── SERIALIZED_DATA_TYPE.swift ├── SHADER_CACHE_SUPPORT_FLAGS.swift ├── SHADER_MIN_PRECISION_SUPPORT.swift ├── SHADER_MODEL.swift ├── SHADING_RATE.swift ├── SHADING_RATE_COMBINER.swift ├── SHARED_RESOURCE_COMPATIBILITY_TIER.swift ├── STATE_OBJECT_FLAGS.swift ├── STATE_OBJECT_TYPE.swift ├── STATE_SUBOBJECT_TYPE.swift ├── TEMPLATE_D3D12_ENUM.swift ├── TEMPLATE_D3D12_FLAGS.swift ├── TILED_RESOURCES_TIER.swift ├── VARIABLE_SHADING_RATE_TIER.swift ├── VIEW_INSTANCING_FLAGS.swift ├── VIEW_INSTANCING_TIER.swift └── WRITEBUFFERIMMEDIATE_MODE.swift ├── Interfaces ├── DXDevice1.swift ├── DXDevice2.swift ├── DXDevice3.swift ├── DXDevice4.swift ├── DXDevice5.swift ├── DXDevice6.swift ├── DXDevice7.swift ├── DXDevice8.swift ├── DXDeviceRemovedExtendedData.swift ├── DXDeviceRemovedExtendedDataSettings.swift ├── DXFence1.swift ├── DXGraphicsCommandList1.swift ├── DXGraphicsCommandList2.swift ├── DXGraphicsCommandList3.swift ├── DXGraphicsCommandList4.swift ├── DXGraphicsCommandList5.swift ├── DXLifetimeOwner.swift ├── DXLifetimeTracker.swift ├── DXMetaCommand.swift ├── DXPipelineLibrary.swift ├── DXPipelineLibrary1.swift ├── DXProtectedResourceSession.swift ├── DXProtectedResourceSession1.swift ├── DXProtectedSession.swift ├── DXStateObject.swift ├── DXStateObjectProperties.swift ├── DXTools.swift └── DXVersionedRootSignatureDeserializer.swift └── Structures ├── AUTO_BREADCRUMB_NODE.swift ├── BUILD_RAYT_ACC_STRUCT_DESC.swift ├── BUILD_RAYT_ACC_STRUCT_INPUTS.swift ├── BUILD_RAYT_ACC_STRUCT_TOOL_VIS_HEADER.swift ├── DEPTH_STENCIL_DESC1.swift ├── DESCRIPTOR_RANGE1.swift ├── DEVICE_REMOVED_EXTENDED_DATA.swift ├── DEVICE_REMOVED_EXTENDED_DATA1.swift ├── DISPATCH_ARGUMENTS.swift ├── DISPATCH_RAYS_DESC.swift ├── DRAW_ARGUMENTS.swift ├── DRAW_INDEXED_ARGUMENTS.swift ├── DRED_ALLOCATION_NODE.swift ├── DRED_AUTO_BREADCRUMBS_OUTPUT.swift ├── DRED_PAGE_FAULT_OUTPUT.swift ├── DXIL_LIBRARY_DESC.swift ├── DXIL_SUBOBJECT_TO_EXPORTS_ASSOCIATION.swift ├── EXISTING_COLLECTION_DESC.swift ├── EXPORT_DESC.swift ├── FEATURE_DATA_ARCHITECTURE.swift ├── FEATURE_DATA_ARCHITECTURE1.swift ├── FEATURE_DATA_COMMAND_QUEUE_PRIORITY.swift ├── FEATURE_DATA_CROSS_NODE.swift ├── FEATURE_DATA_D3D12_OPTIONS.swift ├── FEATURE_DATA_D3D12_OPTIONS1.swift ├── FEATURE_DATA_D3D12_OPTIONS2.swift ├── FEATURE_DATA_D3D12_OPTIONS3.swift ├── FEATURE_DATA_D3D12_OPTIONS4.swift ├── FEATURE_DATA_D3D12_OPTIONS5.swift ├── FEATURE_DATA_D3D12_OPTIONS6.swift ├── FEATURE_DATA_EXISTING_HEAPS.swift ├── FEATURE_DATA_FEATURE_LEVELS.swift ├── FEATURE_DATA_FORMAT_INFO.swift ├── FEATURE_DATA_FORMAT_SUPPORT.swift ├── FEATURE_DATA_GPU_VIRTUAL_ADDRESS_SUPPORT.swift ├── FEATURE_DATA_MULTISAMPLE_QUALITY_LEVELS.swift ├── FEATURE_DATA_PROTECTED_RESOURCE_SESSION_SUPPORT.swift ├── FEATURE_DATA_QUERY_META_COMMAND.swift ├── FEATURE_DATA_ROOT_SIGNATURE.swift ├── FEATURE_DATA_SERIALIZATION.swift ├── FEATURE_DATA_SHADER_CACHE.swift ├── FEATURE_DATA_SHADER_MODEL.swift ├── GLOBAL_ROOT_SIGNATURE.swift ├── GPU_VIRTUAL_ADDRESS_AND_STRIDE.swift ├── GPU_VIRTUAL_ADDRESS_RANGE.swift ├── GPU_VIRTUAL_ADDRESS_RANGE_AND_STRIDE.swift ├── HIT_GROUP_DESC.swift ├── LOCAL_ROOT_SIGNATURE.swift ├── MEMCPY_DEST.swift ├── META_COMMAND_DESC.swift ├── META_COMMAND_PARAMETER_DESC.swift ├── MIP_REGION.swift ├── NODE_MASK.swift ├── PIPELINE_STATE_STREAM_DESC.swift ├── PROTECTED_RESOURCE_SESSION_DESC.swift ├── PROTECTED_RESOURCE_SESSION_DESC1.swift ├── QUERY_DATA_PIPELINE_STATISTICS.swift ├── QUERY_DATA_SO_STATISTICS.swift ├── RANGE_UINT64.swift ├── RAYTRACING_AABB.swift ├── RAYTRACING_GEOMETRY_AABBS_DESC.swift ├── RAYTRACING_GEOMETRY_DESC.swift ├── RAYTRACING_GEOMETRY_TRIANGLES_DESC.swift ├── RAYTRACING_INSTANCE_DESC.swift ├── RAYTRACING_PIPELINE_CONFIG.swift ├── RAYTRACING_SHADER_CONFIG.swift ├── RAYT_ACC_STRUCT_POSTB_INF_COMPACTED_SIZE_DESC.swift ├── RAYT_ACC_STRUCT_POSTB_INF_CURRENT_SIZE_DESC.swift ├── RAYT_ACC_STRUCT_POSTB_INF_DESC.swift ├── RAYT_ACC_STRUCT_POSTB_INF_SERIALIZATION_DESC.swift ├── RAYT_ACC_STRUCT_POSTB_INF_TOOLS_VISUALIZATION_DESC.swift ├── RAYT_ACC_STRUCT_PREB_INF.swift ├── RENDER_PASS_BEGINNING_ACCESS.swift ├── RENDER_PASS_BEGINNING_ACCESS_CLEAR_PARAMETERS.swift ├── RENDER_PASS_DEPTH_STENCIL_DESC.swift ├── RENDER_PASS_ENDING_ACCESS.swift ├── RENDER_PASS_ENDING_ACCESS_RESOLVE_PARAMETERS.swift ├── RENDER_PASS_ENDING_ACCESS_RESOLVE_SUBRESOURCE_PARAMETERS.swift ├── RENDER_PASS_RENDER_TARGET_DESC.swift ├── RESOURCE_ALLOCATION_INFO1.swift ├── RESOURCE_DESC1.swift ├── ROOT_DESCRIPTOR1.swift ├── ROOT_DESCRIPTOR_TABLE1.swift ├── ROOT_PARAMETER1.swift ├── ROOT_SIGNATURE_DESC1.swift ├── RT_FORMAT_ARRAY.swift ├── SAMPLE_POSITION.swift ├── SERIALIZED_DATA_DRIVER_MATCHING_IDENTIFIER.swift ├── SERIALIZED_RAYTRACING_ACCELERATION_STRUCTURE_HEADER.swift ├── STATE_OBJECT_CONFIG.swift ├── STATE_OBJECT_DESC.swift ├── STATE_SUBOBJECT.swift ├── SUBOBJECT_TO_EXPORTS_ASSOCIATION.swift ├── SUBRESOURCE_DATA.swift ├── SUBRESOURCE_INFO.swift ├── SUBRESOURCE_RANGE_UINT64.swift ├── VERSIONED_ROOT_SIGNATURE_DESC.swift ├── VIEW_INSTANCE_LOCATION.swift ├── VIEW_INSTANCING_DESC.swift └── WRITEBUFFERIMMEDIATE_PARAMETER.swift /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/Windows CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/.github/workflows/Windows CI.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Direct3D12/Common/Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/Common/Error.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/Common/IUnknown.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/Common/IUnknown.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/Common/String+Convenience.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/Common/String+Convenience.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/Improvised/Enumerations/WindingDirection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/Improvised/Enumerations/WindingDirection.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/Improvised/Strcutures/D3DColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/Improvised/Strcutures/D3DColor.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/BLEND.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/BLEND.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/BLEND_OP.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/BLEND_OP.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/BUFFER_SRV_FLAGS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/BUFFER_SRV_FLAGS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/BUFFER_UAV_FLAGS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/BUFFER_UAV_FLAGS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/CLEAR_FLAGS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/CLEAR_FLAGS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/COLOR_WRITE_ENABLE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/COLOR_WRITE_ENABLE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/COMMAND_LIST_TYPE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/COMMAND_LIST_TYPE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/COMMAND_QUEUE_FLAGS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/COMMAND_QUEUE_FLAGS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/COMMAND_QUEUE_PRIORITY.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/COMMAND_QUEUE_PRIORITY.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/COMPARISON_FUNC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/COMPARISON_FUNC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/CONSERVATIVE_RASTERIZATION_MODE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/CONSERVATIVE_RASTERIZATION_MODE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/CPU_PAGE_PROPERTY.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/CPU_PAGE_PROPERTY.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/CULL_MODE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/CULL_MODE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/DEPTH_WRITE_MASK.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/DEPTH_WRITE_MASK.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/DESCRIPTOR_HEAP_FLAGS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/DESCRIPTOR_HEAP_FLAGS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/DESCRIPTOR_HEAP_TYPE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/DESCRIPTOR_HEAP_TYPE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/DESCRIPTOR_RANGE_TYPE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/DESCRIPTOR_RANGE_TYPE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/DSV_DIMENSION.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/DSV_DIMENSION.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/DSV_FLAGS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/DSV_FLAGS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/FEATURE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/FEATURE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/FENCE_FLAGS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/FENCE_FLAGS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/FILL_MODE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/FILL_MODE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/FILTER.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/FILTER.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/HEAP_FLAGS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/HEAP_FLAGS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/HEAP_TYPE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/HEAP_TYPE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/INDEX_BUFFER_STRIP_CUT_VALUE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/INDEX_BUFFER_STRIP_CUT_VALUE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/INDIRECT_ARGUMENT_TYPE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/INDIRECT_ARGUMENT_TYPE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/INPUT_CLASSIFICATION.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/INPUT_CLASSIFICATION.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/LOGIC_OP.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/LOGIC_OP.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/MEMORY_POOL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/MEMORY_POOL.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/PIPELINE_STATE_FLAGS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/PIPELINE_STATE_FLAGS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/PREDICATION_OP.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/PREDICATION_OP.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/PRIMITIVE_TOPOLOGY_TYPE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/PRIMITIVE_TOPOLOGY_TYPE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/QUERY_HEAP_TYPE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/QUERY_HEAP_TYPE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/QUERY_TYPE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/QUERY_TYPE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/RESOURCE_BARRIER_FLAGS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/RESOURCE_BARRIER_FLAGS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/RESOURCE_BARRIER_TYPE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/RESOURCE_BARRIER_TYPE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/RESOURCE_DIMENSION.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/RESOURCE_DIMENSION.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/RESOURCE_FLAGS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/RESOURCE_FLAGS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/RESOURCE_STATES.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/RESOURCE_STATES.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/ROOT_PARAMETER_TYPE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/ROOT_PARAMETER_TYPE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/ROOT_SIGNATURE_FLAGS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/ROOT_SIGNATURE_FLAGS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/ROOT_SIGNATURE_VERSION.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/ROOT_SIGNATURE_VERSION.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/RTV_DIMENSION.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/RTV_DIMENSION.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/SHADER_COMPONENT_MAPPING.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/SHADER_COMPONENT_MAPPING.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/SHADER_VISIBILITY.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/SHADER_VISIBILITY.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/SRV_DIMENSION.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/SRV_DIMENSION.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/STATIC_BORDER_COLOR.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/STATIC_BORDER_COLOR.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/STENCIL_OP.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/STENCIL_OP.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/TEXTURE_ADDRESS_MODE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/TEXTURE_ADDRESS_MODE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/TEXTURE_COPY_TYPE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/TEXTURE_COPY_TYPE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/TEXTURE_LAYOUT.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/TEXTURE_LAYOUT.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/TILE_COPY_FLAGS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/TILE_COPY_FLAGS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/TILE_MAPPING_FLAGS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/TILE_MAPPING_FLAGS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/TILE_RANGE_FLAGS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/TILE_RANGE_FLAGS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Enumerations/UAV_DIMENSION.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Enumerations/UAV_DIMENSION.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Functions/D3D12SerializeRootSignature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Functions/D3D12SerializeRootSignature.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Interfaces/DXCommandAllocator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Interfaces/DXCommandAllocator.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Interfaces/DXCommandList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Interfaces/DXCommandList.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Interfaces/DXCommandQueue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Interfaces/DXCommandQueue.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Interfaces/DXCommandSignature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Interfaces/DXCommandSignature.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Interfaces/DXDescriptorHeap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Interfaces/DXDescriptorHeap.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Interfaces/DXDevice.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Interfaces/DXDevice.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Interfaces/DXDeviceChild.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Interfaces/DXDeviceChild.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Interfaces/DXFence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Interfaces/DXFence.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Interfaces/DXGraphicsCommandList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Interfaces/DXGraphicsCommandList.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Interfaces/DXHeap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Interfaces/DXHeap.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Interfaces/DXObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Interfaces/DXObject.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Interfaces/DXPageable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Interfaces/DXPageable.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Interfaces/DXPipelineState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Interfaces/DXPipelineState.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Interfaces/DXQueryHeap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Interfaces/DXQueryHeap.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Interfaces/DXResource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Interfaces/DXResource.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Interfaces/DXRootSignature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Interfaces/DXRootSignature.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Interfaces/DXRootSignatureDeserializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Interfaces/DXRootSignatureDeserializer.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/BLEND_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/BLEND_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/BOX.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/BOX.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/BUFFER_RTV.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/BUFFER_RTV.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/BUFFER_SRV.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/BUFFER_SRV.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/BUFFER_UAV.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/BUFFER_UAV.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/CACHED_PIPELINE_STATE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/CACHED_PIPELINE_STATE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/CLEAR_VALUE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/CLEAR_VALUE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/COMMAND_QUEUE_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/COMMAND_QUEUE_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/COMMAND_SIGNATURE_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/COMMAND_SIGNATURE_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/COMPUTE_PIPELINE_STATE_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/COMPUTE_PIPELINE_STATE_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/CONSTANT_BUFFER_VIEW_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/CONSTANT_BUFFER_VIEW_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/CPU_DESCRIPTOR_HANDLE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/CPU_DESCRIPTOR_HANDLE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/DEPTH_STENCILOP_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/DEPTH_STENCILOP_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/DEPTH_STENCIL_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/DEPTH_STENCIL_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/DEPTH_STENCIL_VALUE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/DEPTH_STENCIL_VALUE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/DEPTH_STENCIL_VIEW_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/DEPTH_STENCIL_VIEW_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/DESCRIPTOR_HEAP_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/DESCRIPTOR_HEAP_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/DESCRIPTOR_RANGE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/DESCRIPTOR_RANGE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/DISCARD_REGION.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/DISCARD_REGION.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/GPU_DESCRIPTOR_HANDLE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/GPU_DESCRIPTOR_HANDLE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/GPU_VIRTUAL_ADDRESS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/GPU_VIRTUAL_ADDRESS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/GRAPHICS_PIPELINE_STATE_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/GRAPHICS_PIPELINE_STATE_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/HEAP_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/HEAP_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/HEAP_PROPERTIES.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/HEAP_PROPERTIES.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/INDEX_BUFFER_VIEW.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/INDEX_BUFFER_VIEW.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/INDIRECT_ARGUMENT_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/INDIRECT_ARGUMENT_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/INPUT_ELEMENT_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/INPUT_ELEMENT_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/INPUT_LAYOUT_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/INPUT_LAYOUT_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/PACKED_MIP_INFO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/PACKED_MIP_INFO.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/PLACED_SUBRESOURCE_FOOTPRINT.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/PLACED_SUBRESOURCE_FOOTPRINT.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/QUERY_HEAP_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/QUERY_HEAP_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/RANGE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/RANGE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/RASTERIZER_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/RASTERIZER_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/RAYT_ACC_STRUCT_SRV.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/RAYT_ACC_STRUCT_SRV.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/RECT.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/RECT.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/RENDER_TARGET_BLEND_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/RENDER_TARGET_BLEND_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/RENDER_TARGET_VIEW_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/RENDER_TARGET_VIEW_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/RESOURCE_ALIASING_BARRIER.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/RESOURCE_ALIASING_BARRIER.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/RESOURCE_ALLOCATION_INFO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/RESOURCE_ALLOCATION_INFO.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/RESOURCE_BARRIER.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/RESOURCE_BARRIER.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/RESOURCE_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/RESOURCE_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/RESOURCE_TRANSITION_BARRIER.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/RESOURCE_TRANSITION_BARRIER.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/RESOURCE_UAV_BARRIER.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/RESOURCE_UAV_BARRIER.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/ROOT_CONSTANTS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/ROOT_CONSTANTS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/ROOT_DESCRIPTOR.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/ROOT_DESCRIPTOR.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/ROOT_DESCRIPTOR_TABLE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/ROOT_DESCRIPTOR_TABLE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/ROOT_PARAMETER.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/ROOT_PARAMETER.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/ROOT_SIGNATURE_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/ROOT_SIGNATURE_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/SAMPLER_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/SAMPLER_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/SHADER_BYTECODE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/SHADER_BYTECODE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/SHADER_RESOURCE_VIEW_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/SHADER_RESOURCE_VIEW_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/SO_DECLARATION_ENTRY.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/SO_DECLARATION_ENTRY.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/STATIC_SAMPLER_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/STATIC_SAMPLER_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/STREAM_OUTPUT_BUFFER_VIEW.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/STREAM_OUTPUT_BUFFER_VIEW.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/STREAM_OUTPUT_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/STREAM_OUTPUT_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/SUBRESOURCE_FOOTPRINT.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/SUBRESOURCE_FOOTPRINT.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/SUBRESOURCE_TILING.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/SUBRESOURCE_TILING.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/TEX1D_ARRAY_DSV.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/TEX1D_ARRAY_DSV.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/TEX1D_ARRAY_RTV.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/TEX1D_ARRAY_RTV.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/TEX1D_ARRAY_SRV.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/TEX1D_ARRAY_SRV.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/TEX1D_ARRAY_UAV.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/TEX1D_ARRAY_UAV.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/TEX1D_DSV.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/TEX1D_DSV.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/TEX1D_RTV.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/TEX1D_RTV.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/TEX1D_SRV.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/TEX1D_SRV.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/TEX1D_UAV.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/TEX1D_UAV.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/TEX2DMS_ARRAY_DSV.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/TEX2DMS_ARRAY_DSV.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/TEX2DMS_ARRAY_RTV.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/TEX2DMS_ARRAY_RTV.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/TEX2DMS_ARRAY_SRV.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/TEX2DMS_ARRAY_SRV.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/TEX2DMS_DSV.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/TEX2DMS_DSV.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/TEX2DMS_RTV.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/TEX2DMS_RTV.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/TEX2DMS_SRV.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/TEX2DMS_SRV.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/TEX2D_ARRAY_DSV.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/TEX2D_ARRAY_DSV.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/TEX2D_ARRAY_RTV.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/TEX2D_ARRAY_RTV.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/TEX2D_ARRAY_SRV.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/TEX2D_ARRAY_SRV.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/TEX2D_ARRAY_UAV.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/TEX2D_ARRAY_UAV.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/TEX2D_DSV.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/TEX2D_DSV.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/TEX2D_RTV.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/TEX2D_RTV.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/TEX2D_SRV.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/TEX2D_SRV.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/TEX2D_UAV.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/TEX2D_UAV.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/TEX3D_RTV.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/TEX3D_RTV.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/TEX3D_SRV.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/TEX3D_SRV.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/TEX3D_UAV.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/TEX3D_UAV.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/TEXCUBE_ARRAY_SRV.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/TEXCUBE_ARRAY_SRV.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/TEXCUBE_SRV.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/TEXCUBE_SRV.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/TEXTURE_COPY_LOCATION.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/TEXTURE_COPY_LOCATION.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/TILED_RESOURCE_COORDINATE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/TILED_RESOURCE_COORDINATE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/TILE_REGION_SIZE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/TILE_REGION_SIZE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/TILE_SHAPE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/TILE_SHAPE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/UNORDERED_ACCESS_VIEW_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/UNORDERED_ACCESS_VIEW_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/VERTEX_BUFFER_VIEW.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/VERTEX_BUFFER_VIEW.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12_h/Structures/VIEWPORT.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12_h/Structures/VIEWPORT.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3d12sdklayers_h/Interfaces/DXDebug.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3d12sdklayers_h/Interfaces/DXDebug.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3dcommon_h/Enumerations/FEATURE_LEVEL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3dcommon_h/Enumerations/FEATURE_LEVEL.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3dcommon_h/Enumerations/PRIMITIVE_TOPOLOGY.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3dcommon_h/Enumerations/PRIMITIVE_TOPOLOGY.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3dcommon_h/Interfaces/ID3DBlob.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3dcommon_h/Interfaces/ID3DBlob.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/d3dcompiler_h/Functions/CompileFromFile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/d3dcompiler_h/Functions/CompileFromFile.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/dxgi1_2_h/Enumerations/DXGI_ALPHA_MODE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/dxgi1_2_h/Enumerations/DXGI_ALPHA_MODE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/dxgi1_2_h/Enumerations/DXGI_SCALING.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/dxgi1_2_h/Enumerations/DXGI_SCALING.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/dxgi1_2_h/Structures/DXGI_SWAP_CHAIN_DESC1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/dxgi1_2_h/Structures/DXGI_SWAP_CHAIN_DESC1.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/dxgi1_2_h/Structures/DXGI_SWAP_CHAIN_FULLSCREEN_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/dxgi1_2_h/Structures/DXGI_SWAP_CHAIN_FULLSCREEN_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/dxgi_h/Enumerations/DXGI_MODE_SCALING.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/dxgi_h/Enumerations/DXGI_MODE_SCALING.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/dxgi_h/Enumerations/DXGI_MODE_SCANLINE_ORDER.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/dxgi_h/Enumerations/DXGI_MODE_SCANLINE_ORDER.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/dxgi_h/Enumerations/DXGI_PRESENT.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/dxgi_h/Enumerations/DXGI_PRESENT.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/dxgi_h/Enumerations/DXGI_SWAP_CHAIN_FLAG.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/dxgi_h/Enumerations/DXGI_SWAP_CHAIN_FLAG.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/dxgi_h/Enumerations/DXGI_SWAP_EFFECT.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/dxgi_h/Enumerations/DXGI_SWAP_EFFECT.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/dxgi_h/Enumerations/DXGI_USAGE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/dxgi_h/Enumerations/DXGI_USAGE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/dxgi_h/Interfaces/IDXGIAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/dxgi_h/Interfaces/IDXGIAdapter.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/dxgi_h/Interfaces/IDXGIDevice.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/dxgi_h/Interfaces/IDXGIDevice.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/dxgi_h/Interfaces/IDXGIDeviceSubObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/dxgi_h/Interfaces/IDXGIDeviceSubObject.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/dxgi_h/Interfaces/IDXGIFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/dxgi_h/Interfaces/IDXGIFactory.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/dxgi_h/Interfaces/IDXGIFactory1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/dxgi_h/Interfaces/IDXGIFactory1.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/dxgi_h/Interfaces/IDXGIFactory2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/dxgi_h/Interfaces/IDXGIFactory2.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/dxgi_h/Interfaces/IDXGIFactory3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/dxgi_h/Interfaces/IDXGIFactory3.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/dxgi_h/Interfaces/IDXGIFactory4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/dxgi_h/Interfaces/IDXGIFactory4.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/dxgi_h/Interfaces/IDXGIObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/dxgi_h/Interfaces/IDXGIObject.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/dxgi_h/Interfaces/IDXGIOutput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/dxgi_h/Interfaces/IDXGIOutput.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/dxgi_h/Interfaces/IDXGISwapChain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/dxgi_h/Interfaces/IDXGISwapChain.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/dxgi_h/Interfaces/IDXGISwapChain1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/dxgi_h/Interfaces/IDXGISwapChain1.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/dxgi_h/Structures/DXGI_PRESENT_PARAMETERS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/dxgi_h/Structures/DXGI_PRESENT_PARAMETERS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/dxgi_h/Structures/DXGI_RATIONAL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/dxgi_h/Structures/DXGI_RATIONAL.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/dxgicommon_h/Structures/DXGI_SAMPLE_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/dxgicommon_h/Structures/DXGI_SAMPLE_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12/dxgiformat_h/Enumerations/DXGI_FORMAT.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12/dxgiformat_h/Enumerations/DXGI_FORMAT.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Enumerations/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Enumerations/Package.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Package.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/AUTO_BREADCRUMB_OP.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/AUTO_BREADCRUMB_OP.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/AXIS_SHADING_RATE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/AXIS_SHADING_RATE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/BACKGROUND_PROCESSING_MODE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/BACKGROUND_PROCESSING_MODE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/COMMAND_LIST_FLAGS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/COMMAND_LIST_FLAGS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/COMMAND_LIST_SUPPORT_FLAGS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/COMMAND_LIST_SUPPORT_FLAGS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/CONSERVATIVE_RASTERIZATION_TIER.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/CONSERVATIVE_RASTERIZATION_TIER.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/CROSS_NODE_SHARING_TIER.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/CROSS_NODE_SHARING_TIER.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/DEBUG_COMMAND_LIST_PARAMETER_TYPE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/DEBUG_COMMAND_LIST_PARAMETER_TYPE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/DEBUG_DEVICE_PARAMETER_TYPE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/DEBUG_DEVICE_PARAMETER_TYPE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/DEBUG_FEATURE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/DEBUG_FEATURE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/DESCRIPTOR_RANGE_FLAGS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/DESCRIPTOR_RANGE_FLAGS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/DRED_ALLOCATION_TYPE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/DRED_ALLOCATION_TYPE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/DRED_ENABLEMENT.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/DRED_ENABLEMENT.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/DRED_VERSION.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/DRED_VERSION.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/DRIVER_MATCHING_IDENTIFIER_STATUS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/DRIVER_MATCHING_IDENTIFIER_STATUS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/ELEMENTS_LAYOUT.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/ELEMENTS_LAYOUT.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/EXPORT_FLAGS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/EXPORT_FLAGS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/FILTER_REDUCTION_TYPE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/FILTER_REDUCTION_TYPE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/FILTER_TYPE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/FILTER_TYPE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/FORMAT_SUPPORT1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/FORMAT_SUPPORT1.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/FORMAT_SUPPORT2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/FORMAT_SUPPORT2.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/GRAPHICS_STATES.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/GRAPHICS_STATES.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/HEAP_SERIALIZATION_TIER.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/HEAP_SERIALIZATION_TIER.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/HIT_GROUP_TYPE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/HIT_GROUP_TYPE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/LIFETIME_STATE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/LIFETIME_STATE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/MEASUREMENTS_ACTION.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/MEASUREMENTS_ACTION.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/META_COMMAND_PARAMETER_FLAGS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/META_COMMAND_PARAMETER_FLAGS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/META_COMMAND_PARAMETER_STAGE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/META_COMMAND_PARAMETER_STAGE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/META_COMMAND_PARAMETER_TYPE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/META_COMMAND_PARAMETER_TYPE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/MULTIPLE_FENCE_WAIT_FLAGS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/MULTIPLE_FENCE_WAIT_FLAGS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/MULTISAMPLE_QUALITY_LEVEL_FLAGS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/MULTISAMPLE_QUALITY_LEVEL_FLAGS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/PIPELINE_STATE_SUBOBJECT_TYPE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/PIPELINE_STATE_SUBOBJECT_TYPE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/PROGRAMMABLE_SAMPLE_POSITIONS_TIER.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/PROGRAMMABLE_SAMPLE_POSITIONS_TIER.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/PROTECTED_RESOURCE_SESSION_FLAGS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/PROTECTED_RESOURCE_SESSION_FLAGS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/PROTECTED_RESOURCE_SESSION_SUPPORT_FLAGS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/PROTECTED_RESOURCE_SESSION_SUPPORT_FLAGS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/PROTECTED_SESSION_STATUS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/PROTECTED_SESSION_STATUS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/RAYTRACING_ACCELERATION_STRUCTURE_BUILD_FLAGS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/RAYTRACING_ACCELERATION_STRUCTURE_BUILD_FLAGS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/RAYTRACING_ACCELERATION_STRUCTURE_COPY_MODE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/RAYTRACING_ACCELERATION_STRUCTURE_COPY_MODE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/RAYTRACING_ACCELERATION_STRUCTURE_POSTBUILD_INFO_TYPE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/RAYTRACING_ACCELERATION_STRUCTURE_POSTBUILD_INFO_TYPE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/RAYTRACING_ACCELERATION_STRUCTURE_TYPE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/RAYTRACING_ACCELERATION_STRUCTURE_TYPE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/RAYTRACING_GEOMETRY_FLAGS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/RAYTRACING_GEOMETRY_FLAGS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/RAYTRACING_GEOMETRY_TYPE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/RAYTRACING_GEOMETRY_TYPE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/RAYTRACING_INSTANCE_FLAGS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/RAYTRACING_INSTANCE_FLAGS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/RAYTRACING_TIER.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/RAYTRACING_TIER.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/RAY_FLAGS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/RAY_FLAGS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/RENDER_PASS_BEGINNING_ACCESS_TYPE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/RENDER_PASS_BEGINNING_ACCESS_TYPE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/RENDER_PASS_ENDING_ACCESS_TYPE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/RENDER_PASS_ENDING_ACCESS_TYPE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/RENDER_PASS_FLAGS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/RENDER_PASS_FLAGS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/RENDER_PASS_TIER.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/RENDER_PASS_TIER.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/RESIDENCY_FLAGS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/RESIDENCY_FLAGS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/RESIDENCY_PRIORITY.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/RESIDENCY_PRIORITY.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/RESOLVE_MODE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/RESOLVE_MODE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/RESOURCE_BINDING_TIER.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/RESOURCE_BINDING_TIER.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/RESOURCE_HEAP_TIER.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/RESOURCE_HEAP_TIER.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/ROOT_DESCRIPTOR_FLAGS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/ROOT_DESCRIPTOR_FLAGS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/SERIALIZED_DATA_TYPE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/SERIALIZED_DATA_TYPE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/SHADER_CACHE_SUPPORT_FLAGS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/SHADER_CACHE_SUPPORT_FLAGS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/SHADER_MIN_PRECISION_SUPPORT.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/SHADER_MIN_PRECISION_SUPPORT.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/SHADER_MODEL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/SHADER_MODEL.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/SHADING_RATE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/SHADING_RATE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/SHADING_RATE_COMBINER.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/SHADING_RATE_COMBINER.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/SHARED_RESOURCE_COMPATIBILITY_TIER.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/SHARED_RESOURCE_COMPATIBILITY_TIER.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/STATE_OBJECT_FLAGS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/STATE_OBJECT_FLAGS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/STATE_OBJECT_TYPE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/STATE_OBJECT_TYPE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/STATE_SUBOBJECT_TYPE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/STATE_SUBOBJECT_TYPE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/TEMPLATE_D3D12_ENUM.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/TEMPLATE_D3D12_ENUM.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/TEMPLATE_D3D12_FLAGS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/TEMPLATE_D3D12_FLAGS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/TILED_RESOURCES_TIER.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/TILED_RESOURCES_TIER.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/VARIABLE_SHADING_RATE_TIER.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/VARIABLE_SHADING_RATE_TIER.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/VIEW_INSTANCING_FLAGS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/VIEW_INSTANCING_FLAGS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/VIEW_INSTANCING_TIER.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/VIEW_INSTANCING_TIER.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/WRITEBUFFERIMMEDIATE_MODE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Enumerations/WRITEBUFFERIMMEDIATE_MODE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXDevice1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXDevice1.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXDevice2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXDevice2.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXDevice3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXDevice3.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXDevice4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXDevice4.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXDevice5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXDevice5.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXDevice6.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXDevice6.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXDevice7.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXDevice7.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXDevice8.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXDevice8.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXDeviceRemovedExtendedData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXDeviceRemovedExtendedData.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXDeviceRemovedExtendedDataSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXDeviceRemovedExtendedDataSettings.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXFence1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXFence1.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXGraphicsCommandList1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXGraphicsCommandList1.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXGraphicsCommandList2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXGraphicsCommandList2.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXGraphicsCommandList3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXGraphicsCommandList3.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXGraphicsCommandList4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXGraphicsCommandList4.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXGraphicsCommandList5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXGraphicsCommandList5.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXLifetimeOwner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXLifetimeOwner.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXLifetimeTracker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXLifetimeTracker.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXMetaCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXMetaCommand.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXPipelineLibrary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXPipelineLibrary.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXPipelineLibrary1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXPipelineLibrary1.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXProtectedResourceSession.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXProtectedResourceSession.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXProtectedResourceSession1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXProtectedResourceSession1.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXProtectedSession.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXProtectedSession.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXStateObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXStateObject.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXStateObjectProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXStateObjectProperties.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXTools.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXTools.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXVersionedRootSignatureDeserializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Interfaces/DXVersionedRootSignatureDeserializer.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/AUTO_BREADCRUMB_NODE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/AUTO_BREADCRUMB_NODE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/BUILD_RAYT_ACC_STRUCT_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/BUILD_RAYT_ACC_STRUCT_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/BUILD_RAYT_ACC_STRUCT_INPUTS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/BUILD_RAYT_ACC_STRUCT_INPUTS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/BUILD_RAYT_ACC_STRUCT_TOOL_VIS_HEADER.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/BUILD_RAYT_ACC_STRUCT_TOOL_VIS_HEADER.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/DEPTH_STENCIL_DESC1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/DEPTH_STENCIL_DESC1.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/DESCRIPTOR_RANGE1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/DESCRIPTOR_RANGE1.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/DEVICE_REMOVED_EXTENDED_DATA.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/DEVICE_REMOVED_EXTENDED_DATA.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/DEVICE_REMOVED_EXTENDED_DATA1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/DEVICE_REMOVED_EXTENDED_DATA1.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/DISPATCH_ARGUMENTS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/DISPATCH_ARGUMENTS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/DISPATCH_RAYS_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/DISPATCH_RAYS_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/DRAW_ARGUMENTS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/DRAW_ARGUMENTS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/DRAW_INDEXED_ARGUMENTS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/DRAW_INDEXED_ARGUMENTS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/DRED_ALLOCATION_NODE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/DRED_ALLOCATION_NODE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/DRED_AUTO_BREADCRUMBS_OUTPUT.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/DRED_AUTO_BREADCRUMBS_OUTPUT.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/DRED_PAGE_FAULT_OUTPUT.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/DRED_PAGE_FAULT_OUTPUT.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/DXIL_LIBRARY_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/DXIL_LIBRARY_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/DXIL_SUBOBJECT_TO_EXPORTS_ASSOCIATION.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/DXIL_SUBOBJECT_TO_EXPORTS_ASSOCIATION.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/EXISTING_COLLECTION_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/EXISTING_COLLECTION_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/EXPORT_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/EXPORT_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/FEATURE_DATA_ARCHITECTURE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/FEATURE_DATA_ARCHITECTURE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/FEATURE_DATA_ARCHITECTURE1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/FEATURE_DATA_ARCHITECTURE1.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/FEATURE_DATA_COMMAND_QUEUE_PRIORITY.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/FEATURE_DATA_COMMAND_QUEUE_PRIORITY.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/FEATURE_DATA_CROSS_NODE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/FEATURE_DATA_CROSS_NODE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/FEATURE_DATA_D3D12_OPTIONS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/FEATURE_DATA_D3D12_OPTIONS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/FEATURE_DATA_D3D12_OPTIONS1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/FEATURE_DATA_D3D12_OPTIONS1.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/FEATURE_DATA_D3D12_OPTIONS2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/FEATURE_DATA_D3D12_OPTIONS2.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/FEATURE_DATA_D3D12_OPTIONS3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/FEATURE_DATA_D3D12_OPTIONS3.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/FEATURE_DATA_D3D12_OPTIONS4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/FEATURE_DATA_D3D12_OPTIONS4.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/FEATURE_DATA_D3D12_OPTIONS5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/FEATURE_DATA_D3D12_OPTIONS5.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/FEATURE_DATA_D3D12_OPTIONS6.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/FEATURE_DATA_D3D12_OPTIONS6.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/FEATURE_DATA_EXISTING_HEAPS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/FEATURE_DATA_EXISTING_HEAPS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/FEATURE_DATA_FEATURE_LEVELS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/FEATURE_DATA_FEATURE_LEVELS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/FEATURE_DATA_FORMAT_INFO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/FEATURE_DATA_FORMAT_INFO.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/FEATURE_DATA_FORMAT_SUPPORT.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/FEATURE_DATA_FORMAT_SUPPORT.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/FEATURE_DATA_GPU_VIRTUAL_ADDRESS_SUPPORT.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/FEATURE_DATA_GPU_VIRTUAL_ADDRESS_SUPPORT.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/FEATURE_DATA_MULTISAMPLE_QUALITY_LEVELS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/FEATURE_DATA_MULTISAMPLE_QUALITY_LEVELS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/FEATURE_DATA_PROTECTED_RESOURCE_SESSION_SUPPORT.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/FEATURE_DATA_PROTECTED_RESOURCE_SESSION_SUPPORT.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/FEATURE_DATA_QUERY_META_COMMAND.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/FEATURE_DATA_QUERY_META_COMMAND.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/FEATURE_DATA_ROOT_SIGNATURE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/FEATURE_DATA_ROOT_SIGNATURE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/FEATURE_DATA_SERIALIZATION.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/FEATURE_DATA_SERIALIZATION.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/FEATURE_DATA_SHADER_CACHE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/FEATURE_DATA_SHADER_CACHE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/FEATURE_DATA_SHADER_MODEL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/FEATURE_DATA_SHADER_MODEL.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/GLOBAL_ROOT_SIGNATURE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/GLOBAL_ROOT_SIGNATURE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/GPU_VIRTUAL_ADDRESS_AND_STRIDE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/GPU_VIRTUAL_ADDRESS_AND_STRIDE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/GPU_VIRTUAL_ADDRESS_RANGE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/GPU_VIRTUAL_ADDRESS_RANGE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/GPU_VIRTUAL_ADDRESS_RANGE_AND_STRIDE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/GPU_VIRTUAL_ADDRESS_RANGE_AND_STRIDE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/HIT_GROUP_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/HIT_GROUP_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/LOCAL_ROOT_SIGNATURE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/LOCAL_ROOT_SIGNATURE.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/MEMCPY_DEST.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/MEMCPY_DEST.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/META_COMMAND_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/META_COMMAND_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/META_COMMAND_PARAMETER_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/META_COMMAND_PARAMETER_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/MIP_REGION.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/MIP_REGION.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/NODE_MASK.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/NODE_MASK.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/PIPELINE_STATE_STREAM_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/PIPELINE_STATE_STREAM_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/PROTECTED_RESOURCE_SESSION_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/PROTECTED_RESOURCE_SESSION_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/PROTECTED_RESOURCE_SESSION_DESC1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/PROTECTED_RESOURCE_SESSION_DESC1.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/QUERY_DATA_PIPELINE_STATISTICS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/QUERY_DATA_PIPELINE_STATISTICS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/QUERY_DATA_SO_STATISTICS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/QUERY_DATA_SO_STATISTICS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/RANGE_UINT64.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/RANGE_UINT64.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/RAYTRACING_AABB.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/RAYTRACING_AABB.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/RAYTRACING_GEOMETRY_AABBS_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/RAYTRACING_GEOMETRY_AABBS_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/RAYTRACING_GEOMETRY_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/RAYTRACING_GEOMETRY_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/RAYTRACING_GEOMETRY_TRIANGLES_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/RAYTRACING_GEOMETRY_TRIANGLES_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/RAYTRACING_INSTANCE_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/RAYTRACING_INSTANCE_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/RAYTRACING_PIPELINE_CONFIG.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/RAYTRACING_PIPELINE_CONFIG.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/RAYTRACING_SHADER_CONFIG.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/RAYTRACING_SHADER_CONFIG.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/RAYT_ACC_STRUCT_POSTB_INF_COMPACTED_SIZE_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/RAYT_ACC_STRUCT_POSTB_INF_COMPACTED_SIZE_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/RAYT_ACC_STRUCT_POSTB_INF_CURRENT_SIZE_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/RAYT_ACC_STRUCT_POSTB_INF_CURRENT_SIZE_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/RAYT_ACC_STRUCT_POSTB_INF_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/RAYT_ACC_STRUCT_POSTB_INF_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/RAYT_ACC_STRUCT_POSTB_INF_SERIALIZATION_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/RAYT_ACC_STRUCT_POSTB_INF_SERIALIZATION_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/RAYT_ACC_STRUCT_POSTB_INF_TOOLS_VISUALIZATION_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/RAYT_ACC_STRUCT_POSTB_INF_TOOLS_VISUALIZATION_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/RAYT_ACC_STRUCT_PREB_INF.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/RAYT_ACC_STRUCT_PREB_INF.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/RENDER_PASS_BEGINNING_ACCESS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/RENDER_PASS_BEGINNING_ACCESS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/RENDER_PASS_BEGINNING_ACCESS_CLEAR_PARAMETERS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/RENDER_PASS_BEGINNING_ACCESS_CLEAR_PARAMETERS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/RENDER_PASS_DEPTH_STENCIL_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/RENDER_PASS_DEPTH_STENCIL_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/RENDER_PASS_ENDING_ACCESS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/RENDER_PASS_ENDING_ACCESS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/RENDER_PASS_ENDING_ACCESS_RESOLVE_PARAMETERS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/RENDER_PASS_ENDING_ACCESS_RESOLVE_PARAMETERS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/RENDER_PASS_ENDING_ACCESS_RESOLVE_SUBRESOURCE_PARAMETERS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/RENDER_PASS_ENDING_ACCESS_RESOLVE_SUBRESOURCE_PARAMETERS.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/RENDER_PASS_RENDER_TARGET_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/RENDER_PASS_RENDER_TARGET_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/RESOURCE_ALLOCATION_INFO1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/RESOURCE_ALLOCATION_INFO1.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/RESOURCE_DESC1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/RESOURCE_DESC1.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/ROOT_DESCRIPTOR1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/ROOT_DESCRIPTOR1.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/ROOT_DESCRIPTOR_TABLE1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/ROOT_DESCRIPTOR_TABLE1.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/ROOT_PARAMETER1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/ROOT_PARAMETER1.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/ROOT_SIGNATURE_DESC1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/ROOT_SIGNATURE_DESC1.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/RT_FORMAT_ARRAY.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/RT_FORMAT_ARRAY.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/SAMPLE_POSITION.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/SAMPLE_POSITION.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/SERIALIZED_DATA_DRIVER_MATCHING_IDENTIFIER.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/SERIALIZED_DATA_DRIVER_MATCHING_IDENTIFIER.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/SERIALIZED_RAYTRACING_ACCELERATION_STRUCTURE_HEADER.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/SERIALIZED_RAYTRACING_ACCELERATION_STRUCTURE_HEADER.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/STATE_OBJECT_CONFIG.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/STATE_OBJECT_CONFIG.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/STATE_OBJECT_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/STATE_OBJECT_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/STATE_SUBOBJECT.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/STATE_SUBOBJECT.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/SUBOBJECT_TO_EXPORTS_ASSOCIATION.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/SUBOBJECT_TO_EXPORTS_ASSOCIATION.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/SUBRESOURCE_DATA.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/SUBRESOURCE_DATA.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/SUBRESOURCE_INFO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/SUBRESOURCE_INFO.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/SUBRESOURCE_RANGE_UINT64.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/SUBRESOURCE_RANGE_UINT64.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/VERSIONED_ROOT_SIGNATURE_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/VERSIONED_ROOT_SIGNATURE_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/VIEW_INSTANCE_LOCATION.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/VIEW_INSTANCE_LOCATION.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/VIEW_INSTANCING_DESC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/VIEW_INSTANCING_DESC.swift -------------------------------------------------------------------------------- /Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/WRITEBUFFERIMMEDIATE_PARAMETER.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STREGAsGate/Direct3D12/HEAD/Sources/Direct3D12_Unimplemented/Sources/Direct3D12_Unimplemented/d3d12_h/Structures/WRITEBUFFERIMMEDIATE_PARAMETER.swift --------------------------------------------------------------------------------