diff --git a/Directory.Build.props b/Directory.Build.props index 513d3ac..abd5b22 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -7,7 +7,7 @@ true true - 1.7.1 + 1.7.2 true diff --git a/src/Generator/Program.cs b/src/Generator/Program.cs index 97ac6eb..22217cc 100644 --- a/src/Generator/Program.cs +++ b/src/Generator/Program.cs @@ -1010,52 +1010,91 @@ public static class Program private static bool s_generateUnmanagedDocs = true; + public static string FindRepoRoot() + { + string currentDir = Directory.GetCurrentDirectory(); + Console.WriteLine("cwd is '{0}'", currentDir); + while (true) + { + string repoDir = Path.Combine(currentDir, "Vortice.Win32"); + Console.WriteLine("looking for Vortice.Win32 at '{0}'", repoDir); + if (Directory.Exists(repoDir)) + { + return repoDir; + } + + string? nextDir = Path.GetDirectoryName(currentDir); + if (nextDir == null || nextDir == currentDir) + { + Console.WriteLine("Error: failed to find the 'Vortice.Win32' repository in any of the parent directories"); + Console.WriteLine(" feel free to clone it so one of the directories that were searched above"); + System.Environment.Exit(1); + } + + currentDir = nextDir; + } + } + public static int Main(string[] args) { - string outputPath = AppContext.BaseDirectory; - if (args.Length > 0) - { - outputPath = args[0]; - } + string repoRoot = FindRepoRoot(); + string d3d11Path = Path.Combine(new DirectoryInfo(repoRoot).Parent.FullName, "Vortice.Win32.Direct3D11"); + string d3d12Path = Path.Combine(new DirectoryInfo(repoRoot).Parent.FullName, "Vortice.Win32.Direct3D12"); + string d3d11on12Path = Path.Combine(new DirectoryInfo(repoRoot).Parent.FullName, "Vortice.Win32.Direct3D11on12"); - if (!Path.IsPathRooted(outputPath)) - { - outputPath = Path.Combine(AppContext.BaseDirectory, outputPath); - } + // Generate docs + //DocGenerator.Generate(new[] { "DXGI" }, Path.Combine(repoRoot, "Generated", "Graphics", "Dxgi.xml")); + //DocGenerator.Generate(new[] { "D3D" }, Path.Combine(repoRoot, "Generated", "Graphics", "Direct3D.xml")); + //DocGenerator.Generate(new[] { "D2D1" }, Path.Combine(repoRoot, "Generated", "Graphics", "Direct2D.xml")); + //DocGenerator.Generate(new[] { "DWRITE" }, Path.Combine(repoRoot, "Generated", "Graphics", "DirectWrite.xml")); + //DocGenerator.Generate(new[] { "WIC" }, Path.Combine(repoRoot, "Generated", "Graphics", "Imaging.xml")); - if (!Directory.Exists(outputPath)) - { - Directory.CreateDirectory(outputPath); - } + //DocGenerator.Generate(new[] { "D3D11" }, Path.Combine(d3d11Path, "Direct3D11.xml")); + //DocGenerator.Generate(new[] { "D3D12" }, Path.Combine(d3d12Path, "Direct3D12.xml")); foreach (string jsonFile in jsons) { string finalPath = Path.Combine(AppContext.BaseDirectory, "win32json", "api", jsonFile); string jsonData = File.ReadAllText(finalPath); ApiData? api = JsonConvert.DeserializeObject(jsonData); - Generate(api!, outputPath, jsonFile); + + string outputPath = repoRoot; + bool useSubFolders = true; + if (jsonFile.EndsWith("Direct3D11.json")) + { + outputPath = d3d11Path; + useSubFolders = false; + } + else if (jsonFile.EndsWith("Direct3D12.json")) + { + outputPath = d3d12Path; + useSubFolders = false; + } + else if (jsonFile.EndsWith("Direct3D11on12.json")) + { + outputPath = d3d11on12Path; + useSubFolders = false; + } + + outputPath = Path.Combine(outputPath, "Generated"); + if (!Directory.Exists(outputPath)) + { + Directory.CreateDirectory(outputPath); + } + + Generate(api!, outputPath, jsonFile, useSubFolders); } - // Generate docs - //DocGenerator.Generate(new[] { "D2D1" }, Path.Combine(outputPath, "Direct2D.xml")); - //DocGenerator.Generate(new[] { "DWRITE" }, Path.Combine(outputPath, "DirectWrite.xml")); - //DocGenerator.Generate(new[] { "D3D" }, Path.Combine(outputPath, "Direct3D.xml")); - //DocGenerator.Generate(new[] { "DXGI" }, Path.Combine(outputPath, "Dxgi.xml")); - //DocGenerator.Generate(new[] { "D3D11" }, Path.Combine(outputPath, "Direct3D11.xml")); + return 0; } - private static void Generate(ApiData api, string outputPath, string jsonFile) + private static void Generate(ApiData api, string outputPath, string jsonFile, bool useSubFolders) { string[] splits = jsonFile.Split(".", StringSplitOptions.RemoveEmptyEntries); string folderRoot = splits[0]; string outputFolder = Path.Combine(outputPath, folderRoot); - if (!Directory.Exists(outputFolder)) - { - Directory.CreateDirectory(outputFolder); - } - string docFile = splits[1]; string subFolderName = string.Empty; for (int i = 1; i < splits.Length - 1; i++) @@ -1083,23 +1122,35 @@ public static class Program if (docFile != "json") { string subdirectory = Path.Combine(outputFolder, docFile); - + } else { docFile = string.Empty; } - if (docFile.Equals("dxgi", StringComparison.OrdinalIgnoreCase)) + string apiName = ns; + string apiFolder; + if (useSubFolders) { - docFile = "DXGI"; + if (!Directory.Exists(outputFolder)) + { + Directory.CreateDirectory(outputFolder); + } + + apiFolder = Path.Combine(outputFolder, subFolderName); + } + else + { + apiFolder = outputPath; } - string apiName = ns; - string apiFolder = Path.Combine(outputFolder, subFolderName); - if (Directory.Exists(apiFolder) == false) + { Directory.CreateDirectory(apiFolder); + } + + docFile = $"../{docFile}"; GenerateConstants(apiFolder, apiName, docFile, api); GenerateTypes(apiFolder, apiName, docFile, api); @@ -1286,7 +1337,7 @@ public static class Program apiName, docFileName, $"Win32.{apiName}"); - GenerateStruct(writer, api, structType); + GenerateStruct(writer, api, structType); s_visitedStructs.Add($"{apiName}.{structType.Name}"); } diff --git a/src/Vortice.Win32.Direct3D11/Direct3D11.xml b/src/Vortice.Win32.Direct3D11/Direct3D11.xml new file mode 100644 index 0000000..fb652a8 --- /dev/null +++ b/src/Vortice.Win32.Direct3D11/Direct3D11.xml @@ -0,0 +1,12825 @@ + + + + + Gets the content description that was used to create the video processor. + Microsoft Docs: + A pointer to a D3D11_VIDEO_PROCESSOR_CONTENT_DESC structure that receives the content description. + + + + + This interface encapsulates an HLSL dynamic linkage. + Microsoft Docs: + + + + + Describes the shape of a tile by specifying its dimensions. + Microsoft Docs: + + + + The width in texels of the tile. + + + The height in texels of the tile. + + + The depth in texels of the tile. + + + + Describes a 3D texture. + Microsoft Docs: + + + + Texture width (in texels). The range is from 1 to D3D11_REQ_TEXTURE3D_U_V_OR_W_DIMENSION (2048). However, the range is actually constrained by the feature level at which you create the rendering device. For more information about restrictions, see Remarks. + + + Texture height (in texels). The range is from 1 to D3D11_REQ_TEXTURE3D_U_V_OR_W_DIMENSION (2048). However, the range is actually constrained by the feature level at which you create the rendering device. For more information about restrictions, see Remarks. + + + Texture depth (in texels). The range is from 1 to D3D11_REQ_TEXTURE3D_U_V_OR_W_DIMENSION (2048). However, the range is actually constrained by the feature level at which you create the rendering device. For more information about restrictions, see Remarks. + + + The maximum number of mipmap levels in the texture. See the remarks in D3D11_TEX1D_SRV. Use 1 for a multisampled texture; or 0 to generate a full set of subtextures. + + + Texture format (see DXGI_FORMAT). + + + Value that identifies how the texture is to be read from and written to. The most common value is D3D11_USAGE_DEFAULT; see D3D11_USAGE for all possible values. + + + Flags (see D3D11_BIND_FLAG) for binding to pipeline stages. The flags can be combined by a logical OR. + + + Flags (see D3D11_CPU_ACCESS_FLAG) to specify the types of CPU access allowed. Use 0 if CPU access is not required. These flags can be combined with a logical OR. + + + Flags (see D3D11_RESOURCE_MISC_FLAG) that identify other, less common resource options. Use 0 if none of these flags apply. These flags can be combined with a logical OR. + + + + Identify the portion of a depth-stencil buffer for writing depth data. + Microsoft Docs: + + + + Turn off writes to the depth-stencil buffer. + + + Turn on writes to the depth-stencil buffer. + + + + Pop a storage filter from the top of the storage-filter stack. + Microsoft Docs: + + + + + Create a shader-resource view for accessing data in a resource. + Microsoft Docs: + Pointer to the resource that will serve as input to a shader. This resource must have been created with the D3D11_BIND_SHADER_RESOURCE + flag. + Pointer to a shader-resource view description (see D3D11_SHADER_RESOURCE_VIEW_DESC). Set this parameter to NULL to create a + view that accesses the entire resource (using the format the resource was created with). + Address of a pointer to an ID3D11ShaderResourceView. Set this parameter to NULL to validate the + other input parameters (the method will return S_FALSE if the other input parameters pass validation). + + + + + Gets a decoder configuration that is supported by the driver. + Microsoft Docs: + A pointer to a D3D11_VIDEO_DECODER_DESC structure that describes the video stream. + The zero-based index of the decoder configuration. To get the number of configurations that the driver supports, call ID3D11VideoDevice::GetVideoDecoderConfigCount. + A pointer to a D3D11_VIDEO_DECODER_CONFIG structure. The method fills in the structure with the decoder configuration. + + + + + Enables or disables an image filter for an input stream on the video processor. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. To get this pointer, call ID3D11VideoDevice::CreateVideoProcessor. + The zero-based index of the input stream. To get the maximum number of streams, call ID3D11VideoProcessorEnumerator::GetVideoProcessorCaps and check the MaxStreamStates structure member. + The filter, specified as a D3D11_VIDEO_PROCESSOR_FILTER value. + +To query which filters the driver supports, call ID3D11VideoProcessorEnumerator::GetVideoProcessorCaps. + Specifies whether to enable the filter. + The filter level. If Enable is FALSE, this parameter is ignored. + +To find the valid range of levels for a specified filter, call ID3D11VideoProcessorEnumerator::GetVideoProcessorFilterRange. + + + + + Describes a compressed buffer for decoding. + Microsoft Docs: + + + + The type of buffer. + + + The offset of the relevant data from the beginning of the buffer, in bytes. This value must be zero. + + + Size of the relevant data. + + + A pointer to a buffer that contains an initialization vector (IV) for encrypted data. If the decode buffer does not contain encrypted data, set this member to NULL. + + + The size of the buffer specified in the pIV parameter. If pIV is NULL, set this member to zero. + + + A pointer to an array of D3D11_VIDEO_DECODER_SUB_SAMPLE_MAPPING_BLOCK structures, which indicates exactly which bytes in the decode buffer are encrypted and which are in the clear. If the decode buffer does not contain encrypted data, set this member to NULL. + +Values in the sub sample mapping blocks are relative to the start of the decode buffer. + + + The number of D3D11_VIDEO_DECODER_SUB_SAMPLE_MAPPING_BLOCK structures specified in the pSubSampleMappingBlocks parameter. If pSubSampleMappingBlocks is NULL, set this member to zero. + + + + Creates a shader-resource view for accessing data in a resource. + Microsoft Docs: + Pointer to the resource that will serve as input to a shader. This resource must have been created with the D3D11_BIND_SHADER_RESOURCE flag. + A pointer to a D3D11_SHADER_RESOURCE_VIEW_DESC1 structure that describes a shader-resource view. Set this parameter to NULL to create a + view that accesses the entire resource (using the format the resource was created with). + A pointer to a memory block that receives a pointer to a ID3D11ShaderResourceView1 interface for the created shader-resource view. Set this parameter to NULL to validate the other input parameters (the method will return S_FALSE if the other input parameters pass validation). + + + + + Gets an immediate context, which can play back command lists. + Microsoft Docs: + Upon completion of the method, the passed pointer to an ID3D11DeviceContext3 interface pointer is initialized. + + + + + Sets the color space for an input stream on the video processor. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. To get this pointer, call ID3D11VideoDevice::CreateVideoProcessor. + The zero-based index of the input stream. To get the maximum number of streams, call ID3D11VideoProcessorEnumerator::GetVideoProcessorCaps and check the MaxStreamStates structure member. + A pointer to a D3D11_VIDEO_PROCESSOR_COLOR_SPACE structure that specifies the color space. + + + + + Sets the target rectangle for the video processor. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. To get this pointer, call ID3D11VideoDevice::CreateVideoProcessor. + Specifies whether to apply the target rectangle. + A pointer to a RECT structure that specifies the target rectangle. If Enable is FALSE, this parameter is ignored. + + + + + Contains input data for a D3D11_AUTHENTICATED_CONFIGURE_PROTECTION command. + Microsoft Docs: + + + + A D3D11_AUTHENTICATED_CONFIGURE_INPUT structure that contains the command GUID and other data. + + + A D3D11_AUTHENTICATED_PROTECTION_FLAGS union that specifies the protection level. + + + + Specifies the elements in a buffer resource to use in a shader-resource view. + Microsoft Docs: + + + + Index of the first element to access. + + + The offset of the first element in the view to access, relative to element 0. + + + The total number of elements in the view. + + + The width of each element (in bytes). + This can be determined from the format stored in the shader-resource-view description. + + + + Identifies the texture resource for a video processor input view. + Microsoft Docs: + + + + The zero-based index into the array of subtextures. + + + The zero-based index of the texture. + + + + Binds resources to the output-merger stage. + Microsoft Docs: + Number of render targets to bind (ranges between 0 and D3D11_SIMULTANEOUS_RENDER_TARGET_COUNT). If this parameter is nonzero, the number of entries in the array to which ppRenderTargetViews points must equal the number in this parameter. If you set NumRTVs to D3D11_KEEP_RENDER_TARGETS_AND_DEPTH_STENCIL (0xffffffff), this method does not modify the currently bound render-target views (RTVs) and also does not modify depth-stencil view (DSV). + Pointer to an array of ID3D11RenderTargetViews that represent the render targets to bind to the device. + If this parameter is NULL and NumRTVs is 0, no render targets are bound. + Pointer to a ID3D11DepthStencilView that represents the depth-stencil view to bind to the device. + If this parameter is NULL, the depth-stencil view is not bound. + Index into a zero-based array to begin setting unordered-access views (ranges from 0 to D3D11_PS_CS_UAV_REGISTER_COUNT - 1). + +For the Direct3D 11.1 runtime, which is available starting with Windows 8, this value can range from 0 to D3D11_1_UAV_SLOT_COUNT - 1. D3D11_1_UAV_SLOT_COUNT is defined as 64. + + +For pixel shaders, UAVStartSlot should be equal to the number of render-target views being bound. + Number of unordered-access views (UAVs) in ppUnorderedAccessViews. If you set NumUAVs to D3D11_KEEP_UNORDERED_ACCESS_VIEWS (0xffffffff), this method does not modify the currently bound unordered-access views. + + +For the Direct3D 11.1 runtime, which is available starting with Windows 8, this value can range from 0 to D3D11_1_UAV_SLOT_COUNT - UAVStartSlot. + Pointer to an array of ID3D11UnorderedAccessViews that represent the unordered-access views to bind to the device. + If this parameter is NULL and NumUAVs is 0, no unordered-access views are bound. + An array of append and consume buffer offsets. A value of -1 indicates to keep the current offset. Any other values set the hidden counter + for that appendable and consumable UAV. pUAVInitialCounts is relevant only for UAVs that were created with either + D3D11_BUFFER_UAV_FLAG_APPEND or D3D11_BUFFER_UAV_FLAG_COUNTER specified + when the UAV was created; otherwise, the argument is ignored. + + + + + Invalidate the pointer to a resource and reenable the GPU's access to that resource. + Microsoft Docs: + A pointer to a ID3D11Resource interface. + A subresource to be unmapped. + + + + + Indicates whether the video decoder supports downsampling with the specified input format, and whether real-time downsampling is supported. + Microsoft Docs: + An object describing the decoding profile, the resolution, and format of the input stream. This is the resolution and format to be downsampled. + A DXGI_COLOR_SPACE_TYPE value that specifies the colorspace of the reference frame data. + The configuration data associated with the decode profile. + The frame rate of the video content. This is used by the driver to determine whether the video can be decoded in real-time. + An object describing the resolution, format, and colorspace of the output frames. This is the destination resolution and format of the downsample operation. + Pointer to a boolean value set by the driver that indicates if downsampling is supported with the specified input data. True if the driver supports the requested downsampling; otherwise, false. + Pointer to a boolean value set by the driver that indicates if real-time decoding is supported with the specified input data. True if the driver supports the requested real-time decoding; otherwise, false. Note that the returned value is based on the current configuration of the video decoder and does not guarantee that real-time decoding will be supported for future downsampling operations. + + + + + Describes a video sample. + Microsoft Docs: + + + + The width of the video sample. + + + The height of the video sample. + + + The format of the video sample. + + + The colorspace of the sample. + + + + Draw indexed, instanced primitives. + Microsoft Docs: + Number of indices read from the index buffer for each instance. + Number of instances to draw. + The location of the first index read by the GPU from the index buffer. + A value added to each index before reading a vertex from the vertex buffer. + A value added to each index before reading per-instance data from a vertex buffer. + + + + + Contains the response to a D3D11_AUTHENTICATED_QUERY_CHANNEL_TYPE query. + Microsoft Docs: + + + + A D3D11_AUTHENTICATED_QUERY_OUTPUT structure that contains a Message Authentication Code (MAC) and other data. + + + A D3D11_AUTHENTICATED_CHANNEL_TYPE value that specifies the channel type. + + + + Gets an immediate context, which can play back command lists. + Microsoft Docs: + Upon completion of the method, the passed pointer to an ID3D11DeviceContext2 interface pointer is initialized. + + + + + Specifies the type of I/O bus that is used by the graphics adapter. + Microsoft Docs: + + + + Indicates a type of bus other than the types listed here. + + + PCI bus. + + + PCI-X bus. + + + PCI Express bus. + + + Accelerated Graphics Port (AGP) bus. + + + The implementation for the graphics adapter is in a motherboard chipset's north bridge. This flag implies that data never goes over an expansion bus (such as PCI or AGP) when it is transferred from main memory to the graphics adapter. + + + Indicates that the graphics adapter is connected to a motherboard chipset's north bridge by tracks on the motherboard, and all of the graphics adapter's chips are soldered to the motherboard. This flag implies that data never goes over an expansion bus (such as PCI or AGP) when it is transferred from main memory to the graphics adapter. + + + The graphics adapter is connected to a motherboard chipset's north bridge by tracks on the motherboard, and all of the graphics adapter's chips are connected through sockets to the motherboard. + + + The graphics adapter is connected to the motherboard through a daughterboard connector. + + + The graphics adapter is connected to the motherboard through a daughterboard connector, and the graphics adapter is inside an enclosure that is not user accessible. + + + One of the D3D11_BUS_IMPL_MODIFIER_Xxx flags is set. + + + + Get application-defined data from a device. + Microsoft Docs: + Guid associated with the data. + A pointer to a variable that on input contains the size, in bytes, of the buffer that pData points to, and on output contains the size, in bytes, of the amount of data that GetPrivateData retrieved. + A pointer to a buffer that GetPrivateData fills with data from the device if pDataSize points to a value that specifies a buffer large enough to hold the data. + + + + + Identifies the input surfaces that can be accessed during video processing. + Microsoft Docs: + + + + + Enables or disables automatic processing features on the video processor. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. To get this pointer, call ID3D11VideoDevice::CreateVideoProcessor. + The zero-based index of the input stream. To get the maximum number of streams, call ID3D11VideoProcessorEnumerator::GetVideoProcessorCaps and check the MaxStreamStates structure member. + If TRUE, automatic processing features are enabled. If FALSE, the driver disables any extra video processing that it might be performing. + + + + + Add a debug message to the message queue and send that message to debug output. + Microsoft Docs: + Category of a message (see D3D11_MESSAGE_CATEGORY). + Severity of a message (see D3D11_MESSAGE_SEVERITY). + Unique identifier of a message (see D3D11_MESSAGE_ID). + User-defined message. + + + + + Set a rendering predicate. + Microsoft Docs: + A pointer to the ID3D11Predicate interface that represents the rendering predicate. A NULL value indicates "no" predication; in this case, the value of PredicateValue is irrelevant but will be preserved for ID3D11DeviceContext::GetPredication. + If TRUE, rendering will be affected by when the predicate's conditions are met. If FALSE, rendering will be affected when the conditions are not met. + + + + + Get the domain-shader resources. + Microsoft Docs: + Index into the device's zero-based array to begin getting shader resources from (ranges from 0 to D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1). + The number of resources to get from the device. Up to a maximum of 128 slots are available for shader resources (ranges from 0 to D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot). + Array of shader resource view interfaces to be returned by the device. + + + + + Performs an extended function for decoding. + Microsoft Docs: + A pointer to the ID3D11VideoDecoder interface. To get this pointer, call ID3D11VideoDevice::CreateVideoDecoder. + A pointer to a D3D11_VIDEO_DECODER_EXTENSION structure that contains data for the function. + + + + + Get the number of milliseconds to sleep after IDXGISwapChain::Present is called. + Microsoft Docs: + + + + + Get the size of the storage-filter stack in bytes. + Microsoft Docs: + + + + + Specifies the subresources from an array of 1D textures to use in a render-target view. + Microsoft Docs: + + + + The index of the mipmap level to use mip slice. + + + The index of the first texture to use in an array of textures. + + + Number of textures to use. + + + + A module-instance interface is used for resource rebinding. + Microsoft Docs: + + + + + Get the compute-shader resources. + Microsoft Docs: + Index into the device's zero-based array to begin getting shader resources from (ranges from 0 to D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1). + The number of resources to get from the device. Up to a maximum of 128 slots are available for shader resources (ranges from 0 to D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot). + Array of shader resource view interfaces to be returned by the device. + + + + + The ID3D11DeviceContext interface represents a device context which generates rendering commands. + Microsoft Docs: + + + + + Contains the response to a D3D11_AUTHENTICATED_QUERY_CURRENT_ENCRYPTION_WHEN_ACCESSIBLE query. + Microsoft Docs: + + + + A D3D11_AUTHENTICATED_QUERY_OUTPUT structure that contains a Message Authentication Code (MAC) and other data. + + + A GUID that specifies the current encryption type. + + + + Describes a buffer resource. + Microsoft Docs: + + + + Size of the buffer in bytes. + + + Identify how the buffer is expected to be read from and written to. Frequency of update is a key factor. The most common value is typically D3D11_USAGE_DEFAULT; see D3D11_USAGE for all possible values. + + + Identify how the buffer will be bound to the pipeline. Flags (see D3D11_BIND_FLAG) can be combined with a logical OR. + + + CPU access flags (see D3D11_CPU_ACCESS_FLAG) or 0 if no CPU access is necessary. Flags can be combined with a logical OR. + + + Miscellaneous flags (see D3D11_RESOURCE_MISC_FLAG) or 0 if unused. Flags can be combined with a logical OR. + + + The size of each element in the buffer structure (in bytes) when the buffer represents a structured buffer. For more info about structured buffers, see Structured Buffer. + +The size value in StructureByteStride must match the size of the format that you use for views of the buffer. For example, if you use a shader resource view (SRV) to read a buffer in a pixel shader, the SRV format size must match the size value in StructureByteStride. + + + + Sets the source rectangle for an input stream on the video processor. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. To get this pointer, call ID3D11VideoDevice::CreateVideoProcessor. + The zero-based index of the input stream. To get the maximum number of streams, call ID3D11VideoProcessorEnumerator::GetVideoProcessorCaps and check the MaxStreamStates structure member. + Specifies whether to apply the source rectangle. + A pointer to a RECT structure that specifies the source rectangle. If Enable is FALSE, this parameter is ignored. + + + + + Enumerates the video processor capabilities of a Microsoft Direct3D 11 device. + Microsoft Docs: + + + + + Filtering options during texture sampling. + Microsoft Docs: + + + + Use point sampling for minification, magnification, and mip-level sampling. + + + Use point sampling for minification and magnification; use linear interpolation for mip-level sampling. + + + Use point sampling for minification; use linear interpolation for magnification; use point sampling for mip-level sampling. + + + Use point sampling for minification; use linear interpolation for magnification and mip-level sampling. + + + Use linear interpolation for minification; use point sampling for magnification and mip-level sampling. + + + Use linear interpolation for minification; use point sampling for magnification; use linear interpolation for mip-level sampling. + + + Use linear interpolation for minification and magnification; use point sampling for mip-level sampling. + + + Use linear interpolation for minification, magnification, and mip-level sampling. + + + Use anisotropic interpolation for minification, magnification, and mip-level sampling. + + + Use point sampling for minification, magnification, and mip-level sampling. Compare the result to the comparison value. + + + Use point sampling for minification and magnification; use linear interpolation for mip-level sampling. Compare the result to the comparison value. + + + Use point sampling for minification; use linear interpolation for magnification; use point sampling for mip-level sampling. Compare the result to the comparison value. + + + Use point sampling for minification; use linear interpolation for magnification and mip-level sampling. Compare the result to the comparison value. + + + Use linear interpolation for minification; use point sampling for magnification and mip-level sampling. Compare the result to the comparison value. + + + Use linear interpolation for minification; use point sampling for magnification; use linear interpolation for mip-level sampling. Compare the result to the comparison value. + + + Use linear interpolation for minification and magnification; use point sampling for mip-level sampling. Compare the result to the comparison value. + + + Use linear interpolation for minification, magnification, and mip-level sampling. Compare the result to the comparison value. + + + Use anisotropic interpolation for minification, magnification, and mip-level sampling. Compare the result to the comparison value. + + + Fetch the same set of texels as D3D11_FILTER_MIN_MAG_MIP_POINT and instead of filtering them return the minimum of the texels. Texels that are weighted 0 during filtering aren't counted towards the minimum. You can query support for this filter type from the MinMaxFiltering member in the D3D11_FEATURE_DATA_D3D11_OPTIONS1 structure. + + + Fetch the same set of texels as D3D11_FILTER_MIN_MAG_POINT_MIP_LINEAR and instead of filtering them return the minimum of the texels. Texels that are weighted 0 during filtering aren't counted towards the minimum. You can query support for this filter type from the MinMaxFiltering member in the D3D11_FEATURE_DATA_D3D11_OPTIONS1 structure. + + + Fetch the same set of texels as D3D11_FILTER_MIN_POINT_MAG_LINEAR_MIP_POINT and instead of filtering them return the minimum of the texels. Texels that are weighted 0 during filtering aren't counted towards the minimum. You can query support for this filter type from the MinMaxFiltering member in the D3D11_FEATURE_DATA_D3D11_OPTIONS1 structure. + + + Fetch the same set of texels as D3D11_FILTER_MIN_POINT_MAG_MIP_LINEAR and instead of filtering them return the minimum of the texels. Texels that are weighted 0 during filtering aren't counted towards the minimum. You can query support for this filter type from the MinMaxFiltering member in the D3D11_FEATURE_DATA_D3D11_OPTIONS1 structure. + + + Fetch the same set of texels as D3D11_FILTER_MIN_LINEAR_MAG_MIP_POINT and instead of filtering them return the minimum of the texels. Texels that are weighted 0 during filtering aren't counted towards the minimum. You can query support for this filter type from the MinMaxFiltering member in the D3D11_FEATURE_DATA_D3D11_OPTIONS1 structure. + + + Fetch the same set of texels as D3D11_FILTER_MIN_LINEAR_MAG_POINT_MIP_LINEAR and instead of filtering them return the minimum of the texels. Texels that are weighted 0 during filtering aren't counted towards the minimum. You can query support for this filter type from the MinMaxFiltering member in the D3D11_FEATURE_DATA_D3D11_OPTIONS1 structure. + + + Fetch the same set of texels as D3D11_FILTER_MIN_MAG_LINEAR_MIP_POINT and instead of filtering them return the minimum of the texels. Texels that are weighted 0 during filtering aren't counted towards the minimum. You can query support for this filter type from the MinMaxFiltering member in the D3D11_FEATURE_DATA_D3D11_OPTIONS1 structure. + + + Fetch the same set of texels as D3D11_FILTER_MIN_MAG_MIP_LINEAR and instead of filtering them return the minimum of the texels. Texels that are weighted 0 during filtering aren't counted towards the minimum. You can query support for this filter type from the MinMaxFiltering member in the D3D11_FEATURE_DATA_D3D11_OPTIONS1 structure. + + + Fetch the same set of texels as D3D11_FILTER_ANISOTROPIC and instead of filtering them return the minimum of the texels. Texels that are weighted 0 during filtering aren't counted towards the minimum. You can query support for this filter type from the MinMaxFiltering member in the D3D11_FEATURE_DATA_D3D11_OPTIONS1 structure. + + + Fetch the same set of texels as D3D11_FILTER_MIN_MAG_MIP_POINT and instead of filtering them return the maximum of the texels. Texels that are weighted 0 during filtering aren't counted towards the maximum. You can query support for this filter type from the MinMaxFiltering member in the D3D11_FEATURE_DATA_D3D11_OPTIONS1 structure. + + + Fetch the same set of texels as D3D11_FILTER_MIN_MAG_POINT_MIP_LINEAR and instead of filtering them return the maximum of the texels. Texels that are weighted 0 during filtering aren't counted towards the maximum. You can query support for this filter type from the MinMaxFiltering member in the D3D11_FEATURE_DATA_D3D11_OPTIONS1 structure. + + + Fetch the same set of texels as D3D11_FILTER_MIN_POINT_MAG_LINEAR_MIP_POINT and instead of filtering them return the maximum of the texels. Texels that are weighted 0 during filtering aren't counted towards the maximum. You can query support for this filter type from the MinMaxFiltering member in the D3D11_FEATURE_DATA_D3D11_OPTIONS1 structure. + + + Fetch the same set of texels as D3D11_FILTER_MIN_POINT_MAG_MIP_LINEAR and instead of filtering them return the maximum of the texels. Texels that are weighted 0 during filtering aren't counted towards the maximum. You can query support for this filter type from the MinMaxFiltering member in the D3D11_FEATURE_DATA_D3D11_OPTIONS1 structure. + + + Fetch the same set of texels as D3D11_FILTER_MIN_LINEAR_MAG_MIP_POINT and instead of filtering them return the maximum of the texels. Texels that are weighted 0 during filtering aren't counted towards the maximum. You can query support for this filter type from the MinMaxFiltering member in the D3D11_FEATURE_DATA_D3D11_OPTIONS1 structure. + + + Fetch the same set of texels as D3D11_FILTER_MIN_LINEAR_MAG_POINT_MIP_LINEAR and instead of filtering them return the maximum of the texels. Texels that are weighted 0 during filtering aren't counted towards the maximum. You can query support for this filter type from the MinMaxFiltering member in the D3D11_FEATURE_DATA_D3D11_OPTIONS1 structure. + + + Fetch the same set of texels as D3D11_FILTER_MIN_MAG_LINEAR_MIP_POINT and instead of filtering them return the maximum of the texels. Texels that are weighted 0 during filtering aren't counted towards the maximum. You can query support for this filter type from the MinMaxFiltering member in the D3D11_FEATURE_DATA_D3D11_OPTIONS1 structure. + + + Fetch the same set of texels as D3D11_FILTER_MIN_MAG_MIP_LINEAR and instead of filtering them return the maximum of the texels. Texels that are weighted 0 during filtering aren't counted towards the maximum. You can query support for this filter type from the MinMaxFiltering member in the D3D11_FEATURE_DATA_D3D11_OPTIONS1 structure. + + + Fetch the same set of texels as D3D11_FILTER_ANISOTROPIC and instead of filtering them return the maximum of the texels. Texels that are weighted 0 during filtering aren't counted towards the maximum. You can query support for this filter type from the MinMaxFiltering member in the D3D11_FEATURE_DATA_D3D11_OPTIONS1 structure. + + + + Copy a region from a source resource to a destination resource. + Microsoft Docs: + A pointer to the destination resource (see ID3D11Resource). + Destination subresource index. + The x-coordinate of the upper left corner of the destination region. + The y-coordinate of the upper left corner of the destination region. For a 1D subresource, this must be zero. + The z-coordinate of the upper left corner of the destination region. For a 1D or 2D subresource, this must be zero. + A pointer to the source resource (see ID3D11Resource). + Source subresource index. + A pointer to a 3D box (see D3D11_BOX) that defines the source subresource that can be copied. If NULL, the entire source subresource is copied. The box must fit within the source resource. + +An empty box results in a no-op. A box is empty if the top value is greater than or equal to the bottom value, or the left value is greater than or equal to the right value, or the front value is greater than or equal to the back value. When the box is empty, CopySubresourceRegion doesn't perform a copy operation. + + + + + Values that specify minimum precision levels at shader stages. + Microsoft Docs: + + + + Minimum precision level is 10-bit. + + + Minimum precision level is 16-bit. + + + + Describes a function. + Microsoft Docs: + + + + The shader version. + + + The name of the originator of the function. + + + A combination of D3DCOMPILE Constants that are combined by using a bitwise OR operation. The resulting value specifies shader compilation and parsing. + + + The number of constant buffers for the function. + + + The number of bound resources for the function. + + + The number of emitted instructions for the function. + + + The number of temporary registers used by the function. + + + The number of temporary arrays used by the function. + + + The number of constant defines for the function. + + + The number of declarations (input + output) for the function. + + + The number of non-categorized texture instructions for the function. + + + The number of texture load instructions for the function. + + + The number of texture comparison instructions for the function. + + + The number of texture bias instructions for the function. + + + The number of texture gradient instructions for the function. + + + The number of floating point arithmetic instructions used by the function. + + + The number of signed integer arithmetic instructions used by the function. + + + The number of unsigned integer arithmetic instructions used by the function. + + + The number of static flow control instructions used by the function. + + + The number of dynamic flow control instructions used by the function. + + + The number of macro instructions used by the function. + + + The number of array instructions used by the function. + + + The number of mov instructions used by the function. + + + The number of movc instructions used by the function. + + + The number of type conversion instructions used by the function. + + + The number of bitwise arithmetic instructions used by the function. + + + A D3D_FEATURE_LEVEL-typed value that specifies the minimum Direct3D feature level target of the function byte code. + + + A value that contains a combination of one or more shader requirements flags; each flag specifies a requirement of the shader. A default value of 0 means there are no requirements. For a list of values, see ID3D11ShaderReflection::GetRequiresFlags. + + + The name of the function. + + + The number of logical parameters in the function signature, not including the return value. + + + Indicates whether the function returns a value. TRUE indicates it returns a value; otherwise, FALSE (it is a subroutine). + + + Indicates whether there is a Direct3D 10Level9 vertex shader blob. TRUE indicates there is a 10Level9 vertex shader blob; otherwise, FALSE. + + + Indicates whether there is a Direct3D 10Level9 pixel shader blob. TRUE indicates there is a 10Level9 pixel shader blob; otherwise, FALSE. + + + + Gets a handle to the authenticated channel. + Microsoft Docs: + Receives a handle to the channel. + + + + + Gets the number of Movc instructions. + Microsoft Docs: + + + + + A 3D texture interface accesses texel data, which is structured memory. + Microsoft Docs: + + + + + Contains input data for a D3D11_AUTHENTICATED_QUERY_ENCRYPTION_WHEN_ACCESSIBLE_GUID query. + Microsoft Docs: + + + + A D3D11_AUTHENTICATED_QUERY_INPUT structure that contains the GUID for the query and other data. + + + The index of the encryption GUID. + + + + Represents key exchange output data for hardware content protection. + Microsoft Docs: + + + + The size of the private data reserved for IHV usage. This size is determined from the pPrivateOutputSize parameter returned by the ID3D11VideoDevice1::GetCryptoSessionPrivateDataSize function. + + + The maximum size of data that the driver can return in the output buffer. The last byte that it can write to is pbOuput[PrivateDataSize + MaxHWProtectionDataSize – 1]. + + + The size of the output data written by the driver. + + + The number of 100 nanosecond units spent transporting the data. + + + The number of 100 nanosecond units spent executing the content protection command. + + + If PrivateDataSize is greater than 0, pbInput[0] – pbOutput[PrivateDataSize - 1] is reserved for IHV use. + +pbOutput[PrivateDataSize] – pbOutput[HWProtectionDataSize + PrivateDataSize - 1] contains the input data for the DRM command. The format and size of the DRM command is defined by the DRM specification. + + + + Allows the driver to recommend optimal output downsample parameters from the input parameters. + Microsoft Docs: + A D3D11_VIDEO_DECODER_DESC object describing the decoding profile, the resolution, and format of the input stream. This is the resolution and format to be downsampled. + A DXGI_COLOR_SPACE_TYPE value that specifies the colorspace of the reference frame data. + The configuration data associated with the decode profile. + The frame rate of the video content. This is used by the driver to determine whether the video can be decoded in real-time. + Pointer to a D3D11_VIDEO_SAMPLE_DESC structure that the driver populates with the recommended output buffer parameters for a downsample operation. The driver will attempt to recommend parameters that can support real-time decoding. If it is unable to do so, the driver will recommend values that are as close to the real-time solution as possible. + + + + + Associate an IUnknown-derived interface with this device child and associate that interface with an application-defined guid. + Microsoft Docs: + Guid associated with the interface. + Pointer to an IUnknown-derived interface to be associated with the device child. + + + + + Get the properties of the texture resource. + Microsoft Docs: + Pointer to a resource description (see D3D11_TEXTURE3D_DESC). + + + + + Draw indexed, non-instanced primitives. + Microsoft Docs: + Number of indices to draw. + The location of the first index read by the GPU from the index buffer. + A value added to each index before reading a vertex from the vertex buffer. + + + + + Specifies the subresources from a multisampled 2D texture to use in a shader-resource view. + Microsoft Docs: + + + + Integer of any value. See remarks. + + + + Get the eviction priority of a resource. + Microsoft Docs: + + + + + Creates a deferred context, which can record command lists. + Microsoft Docs: + Reserved for future use. + Pass 0. + Upon completion of the method, the passed pointer to an ID3D11DeviceContext1 interface pointer is initialized. + + + + + Identifies a type of trace register. + Microsoft Docs: + + + + Output NULL register. + + + Input register. + + + Input primitive ID register. + + + Immediate constant buffer. + + + Temporary register. + + + Temporary register that can be indexed. + + + Output register. + + + Output oDepth register. + + + Constant buffer. + + + Immediate32 register. + + + Sampler. + + + Resource. + + + Rasterizer. + + + Output coverage mask. + + + Stream. + + + This pointer. + + + Output control point ID register (this is actually an input; it defines the output that the thread controls). + + + Input fork instance ID register. + + + Input join instance ID register. + + + Input control point register. + + + Output control point register. + + + Input patch constant register. + + + Input domain point register. + + + Unordered-access view. + + + Thread group shared memory. + + + Input thread ID register. + + + Thread group ID register. + + + Input thread ID in-group register. + + + Input coverage mask register. + + + Input thread ID in-group flattened register. + + + Input geometry shader (GS) instance ID register. + + + Output oDepth greater than or equal register. + + + Output oDepth less than or equal register. + + + Immediate64 register. + + + Cycle counter register. + + + Interface pointer. + + + + Writes encrypted data to a protected surface. + Microsoft Docs: + A pointer to the ID3D11CryptoSession interface. + A pointer to the surface that contains the source data. + A pointer to the protected surface where the encrypted data is written. + A pointer to a D3D11_ENCRYPTED_BLOCK_INFO structure, or NULL. + +If the driver supports partially encrypted buffers, pEncryptedBlockInfo indicates which portions of the buffer are encrypted. If the entire surface is encrypted, set this parameter to NULL. + +To check whether the driver supports partially encrypted buffers, call ID3D11VideoDevice::GetContentProtectionCaps and check for the D3D11_CONTENT_PROTECTION_CAPS_PARTIAL_DECRYPTION + capabilities flag. If the driver does not support partially encrypted buffers, set this parameter to NULL. + The size of the encrypted content key, in bytes. + A pointer to a buffer that contains a content encryption key, or NULL. To query whether the driver supports the use of content keys, call ID3D11VideoDevice::GetContentProtectionCaps and check for the D3D11_CONTENT_PROTECTION_CAPS_CONTENT_KEY capabilities flag. + +If the driver supports content keys, use the content key to encrypt the surface. Encrypt the content key using the session key, and place the resulting cipher text in pContentKey. If the driver does not support content keys, use the session key to encrypt the surface and set pContentKey to NULL. + The size of the pIV buffer, in bytes. + A pointer to a buffer that contains the initialization vector (IV). + +For 128-bit AES-CTR encryption, pIV points to a D3D11_AES_CTR_IV structure. The caller allocates the structure and generates the IV. When you generate the first IV, initialize the structure to a random number. For each subsequent IV, simply increment the IV member of the structure, ensuring that the value always increases. This procedure enables the driver to validate that the same IV is never used more than once with the same key pair. + +For other encryption types, a different structure might be used, or the encryption might not use an IV. + + + + + Identifies how to view a buffer resource. + Microsoft Docs: + + + + View the buffer as raw. For more info about raw viewing of buffers, see Raw Views of Buffers. + + + + Get the depth-stencil view. + Microsoft Docs: + Pointer to a depth-stencil-view description (see D3D11_DEPTH_STENCIL_VIEW_DESC). + + + + + Describes an instance of a compute shader to trace. + Microsoft Docs: + + + + The invocation number of the instance of the compute shader. + + + The SV_GroupThreadID to trace. This value identifies indexes of individual threads within a thread group that a compute shader executes in. + + + The SV_GroupID to trace. This value identifies indexes of a thread group that the compute shader executes in. + + + + This method creates D3D11 resources for use with D3D 11on12. + Microsoft Docs: + A pointer to an already-created D3D12 resource or heap. + A D3D11_RESOURCE_FLAGS structure that enables an application to override flags that would be inferred by the resource/heap properties. + The D3D11_RESOURCE_FLAGS structure contains bind flags, misc flags, and CPU access flags. + The use of the resource on input, as a bitwise-OR'd combination of D3D12_RESOURCE_STATES enumeration constants. + The use of the resource on output, as a bitwise-OR'd combination of D3D12_RESOURCE_STATES enumeration constants. + The globally unique identifier (GUID) for the wrapped resource interface. + The REFIID, or GUID, of the interface to the wrapped resource can be obtained by using the __uuidof() macro. + For example, __uuidof(ID3D12Resource) will get the GUID of the interface to a wrapped resource. + After the method returns, points to the newly created wrapped D3D11 resource or heap. + + + + + Gets the current value of the fence. + Microsoft Docs: + + + + + Rebinds a texture or buffer by name to destination slots. + Microsoft Docs: + The name of the texture or buffer for rebinding. + The first destination slot number for rebinding. + The number of slots for rebinding. + + + + + A domain-shader interface manages an executable program (a domain shader) that controls the domain-shader stage. + Microsoft Docs: + + + + + Gives a device access to a shared resource that is referenced by name and that was created on a different device. + Microsoft Docs: + The name of the resource to open. This parameter cannot be NULL. + The requested access rights to the resource. In addition to the generic access rights, DXGI defines the following values: + +
    +
  • DXGI_SHARED_RESOURCE_READ ( 0x80000000L ) - specifies read access to the resource.
  • +
  • DXGI_SHARED_RESOURCE_WRITE ( 1 ) - specifies write access to the resource.
  • +
+You can combine values by using a bitwise OR operation. + The globally unique identifier (GUID) for the resource interface. For more info, see Remarks. + A pointer to a variable that receives a pointer to the interface for the shared resource object to access. +
+
+ + + The depth-stencil-state interface holds a description for depth-stencil state that you can bind to the output-merger stage. + Microsoft Docs: + + + + + Specifies the subresources from an array of 2D textures to use in a shader-resource view. + Microsoft Docs: + + + + Index of the most detailed mipmap level to use; this number is between 0 and MipLevels (from the original Texture2D for which ID3D11Device::CreateShaderResourceView creates a view) -1. + + + The maximum number of mipmap levels for the view of the texture. See the remarks in D3D11_TEX1D_SRV. + +Set to -1 to indicate all the mipmap levels from MostDetailedMip on down to least detailed. + + + The index of the first texture to use in an array of textures. + + + Number of textures in the array. + + + + Checks the status of a crypto session. + Microsoft Docs: + Specifies a ID3D11CryptoSession for which status is checked. + A D3D11_CRYPTO_SESSION_STATUS that is populated with the crypto session status upon completion. + + + + + Describes Direct3D 11.2 feature options in the current graphics driver. + Microsoft Docs: + + + + Specifies whether the hardware and driver support tiled resources. The runtime sets this member to a D3D11_TILED_RESOURCES_TIER-typed value that indicates if the hardware and driver support tiled resources and at what tier level. + + + Specifies whether the hardware and driver support the filtering options (D3D11_FILTER) of comparing the result to the minimum or maximum value during texture sampling. The runtime sets this member to TRUE if the hardware and driver support these filtering options. + + + Specifies whether the hardware and driver also support the ID3D11DeviceContext1::ClearView method on depth formats. For info about valid depth formats, see D3D11_DEPTH_STENCIL_VIEW_DESC. + + + Specifies support for creating ID3D11Buffer resources that can be passed to the ID3D11DeviceContext::Map and ID3D11DeviceContext::Unmap methods. This means that the CPUAccessFlags member of the D3D11_BUFFER_DESC structure may be set with the desired D3D11_CPU_ACCESS_FLAG elements when the Usage member of D3D11_BUFFER_DESC is set to D3D11_USAGE_DEFAULT. The runtime sets this member to TRUE if the hardware is capable of at least D3D_FEATURE_LEVEL_11_0 and the graphics device driver supports mappable default buffers. + + + + An unordered-access-view interface represents the parts of a resource the pipeline can access during rendering. + Microsoft Docs: + + + + + Create a pixel shader. + Microsoft Docs: + A pointer to the compiled shader. + Size of the compiled pixel shader. + A pointer to a class linkage interface (see ID3D11ClassLinkage); the value can be NULL. + Address of a pointer to a ID3D11PixelShader interface. If this is NULL, all other parameters will be validated, and if all parameters pass validation this API will return S_FALSE instead of S_OK. + + + + + Gets the parameters that were used to create the decoder. + Microsoft Docs: + A pointer to a D3D11_VIDEO_DECODER_DESC structure that receives a description of the video stream. + A pointer to a D3D11_VIDEO_DECODER_CONFIG structure that receives the decoder configuration. + + + + + Creates a device that represents the display adapter and a swap chain used for rendering. + Microsoft Docs: + A pointer to the video adapter to use when creating a device. Pass NULL to use the default adapter, which is the first adapter enumerated + by IDXGIFactory1::EnumAdapters. + +
Note  Do not mix the use of DXGI 1.0 (IDXGIFactory) and DXGI 1.1 (IDXGIFactory1) in an application. Use IDXGIFactory or IDXGIFactory1, but not both in an application. +
+
 
+ The D3D_DRIVER_TYPE, which represents the driver type to create. + A handle to a DLL that implements a software rasterizer. + If DriverType is D3D_DRIVER_TYPE_SOFTWARE, Software must not be NULL. Get the handle by + calling LoadLibrary, + LoadLibraryEx , + or GetModuleHandle. The value should be non-NULLwhen D3D_DRIVER_TYPE is D3D_DRIVER_TYPE_SOFTWARE and NULL otherwise. + The runtime layers to enable (see D3D11_CREATE_DEVICE_FLAG); + values can be bitwise OR'd together. + A pointer to an array of D3D_FEATURE_LEVELs, which determine the order of feature levels to attempt to create. + If pFeatureLevels is set to NULL, + this function uses the following array of feature levels: + + + + + +{ + D3D_FEATURE_LEVEL_11_0, + D3D_FEATURE_LEVEL_10_1, + D3D_FEATURE_LEVEL_10_0, + D3D_FEATURE_LEVEL_9_3, + D3D_FEATURE_LEVEL_9_2, + D3D_FEATURE_LEVEL_9_1, +}; + + + + +
Note  If the Direct3D 11.1 runtime is present on the computer and pFeatureLevels is set to NULL, this function won't create a D3D_FEATURE_LEVEL_11_1 device. To create a D3D_FEATURE_LEVEL_11_1 device, you must explicitly provide a D3D_FEATURE_LEVEL array that includes D3D_FEATURE_LEVEL_11_1. If you provide a D3D_FEATURE_LEVEL array that contains D3D_FEATURE_LEVEL_11_1 on a computer that doesn't have the Direct3D 11.1 runtime installed, this function immediately fails with E_INVALIDARG. +
+
 
+ The number of elements in pFeatureLevels. + The SDK version; use D3D11_SDK_VERSION. + A pointer to a swap chain description (see DXGI_SWAP_CHAIN_DESC) that contains initialization parameters for the swap chain. + Returns the address of a pointer to the IDXGISwapChain object that represents the swap chain used for rendering. + Returns the address of a pointer to an ID3D11Device object that represents the device created. If this parameter is NULL, no ID3D11Device will be returned'. + Returns a pointer to a D3D_FEATURE_LEVEL, which represents the first element in an array of feature levels supported + by the device. Supply NULL as an input if you don't need to determine which feature level is supported. + Returns the address of a pointer to an ID3D11DeviceContext object that represents the device context. If this parameter is NULL, no ID3D11DeviceContext will be returned. +
+
+ + + Get the number of quality levels available during multisampling. + Microsoft Docs: + The texture format during multisampling. + The number of samples during multisampling. + A combination of D3D11_CHECK_MULTISAMPLE_QUALITY_LEVELS_FLAGS values that are combined by using a bitwise OR operation. Currently, only D3D11_CHECK_MULTISAMPLE_QUALITY_LEVELS_TILED_RESOURCE is supported. + A pointer to a variable the receives the number of quality levels supported by the adapter. See Remarks. + + + + + Query information about the reliability of a timestamp query. + Microsoft Docs: + + + + How frequently the GPU counter increments in Hz. + + + If this is TRUE, something occurred in between the query's ID3D11DeviceContext::Begin and ID3D11DeviceContext::End calls that caused the timestamp counter to become discontinuous or disjoint, such as unplugging the AC cord on a laptop, overheating, or throttling up/down due to laptop savings events. The timestamp returned by ID3D11DeviceContext::GetData for a timestamp query is only reliable if Disjoint is FALSE. + + + + Sets the hardware protection state. + Microsoft Docs: + Specifies whether to enable hardware protection. + + + + + Describes the elements in a raw buffer resource to use in a shader-resource view. + Microsoft Docs: + + + + The index of the first element to be accessed by the view. + + + The number of elements in the resource. + + + A D3D11_BUFFEREX_SRV_FLAG-typed value that identifies view options for the buffer. Currently, the only option is to identify a raw view of the buffer. For more info about raw viewing of buffers, see Raw Views of Buffers. + + + + Gets the properties of the texture resource. + Microsoft Docs: + A pointer to a D3D11_TEXTURE3D_DESC1 structure that receives the description of the 3D texture. + + + + + Contains flags that describe content-protection capabilities. + Microsoft Docs: + + + + The content protection is implemented in software by the driver. + + + The content protection is implemented in hardware by the GPU. + + + Content protection is always applied to a protected surface, regardless of whether the application explicitly enables protection. + + + The driver can use partially encrypted buffers. If this capability is not present, the entire buffer must be either encrypted or clear. + + + The driver can encrypt data using a separate content key that is encrypted using the session key. + + + The driver can refresh the session key without renegotiating the key. + + + The driver can read back encrypted data from a protected surface. For more information, see ID3D11VideoContext::EncryptionBlt. + + + The driver requires a separate key to read encrypted data from a protected surface. + + + If the encryption type is D3DCRYPTOTYPE_AES128_CTR, the application must use a sequential count in the D3D11_AES_CTR_IV structure. + + + The driver supports encrypted slice data, but does not support any other encrypted data in the compressed buffer. The caller should not encrypt any data within the buffer other than the slice data. + +
Note  The driver should only report this flag for the specific profiles that have this limitation.
+
 
+
+ + The driver can copy encrypted data from one resource to another, decrypting the data as part of the process. + + + The hardware supports the protection of specific resources. This means that: + +
    +
  • The contents of a protected allocation can never be read by the CPU.
  • +
  • The hardware can ensure a protected resource cannot be copied to an unprotected resource.
  • +
+Note  This enumeration value is supported starting with Windows 10.
+
+ + Physical pages of a protected resource can be evicted and potentially paged to disk in low memory conditions without losing the contents of the resource when paged back in. + +Note  This enumeration value is supported starting with Windows 10. + + + The hardware supports an automatic teardown mechanism that could trigger hardware keys or protected content to become lost in some conditions. The application can register to be notified when these events occur. + +Note  This enumeration value is supported starting with Windows 10. + + + The secure environment is tightly coupled with the GPU and an ID3D11CryptoSession should be used for communication between the user mode DRM component and the secure execution environment. + +Note  This enumeration value is supported starting with Windows 10. + + + + Gets the constant buffers that the pixel shader pipeline stage uses. + Microsoft Docs: + Index into the device's zero-based array to begin retrieving constant buffers from (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1). + Number of buffers to retrieve (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot). + Array of constant buffer interface pointers to be returned by the method. + A pointer to an array that receives the offsets into the buffers that ppConstantBuffers specifies. Each offset specifies where, from the shader's point of view, each constant buffer starts. Each offset is measured in shader constants, which are 16 bytes (4*32-bit components). Therefore, an offset of 2 indicates that the start of the associated constant buffer is 32 bytes into the constant buffer. The runtime sets pFirstConstant to NULL if the buffers do not have offsets. + A pointer to an array that receives the numbers of constants in the buffers that ppConstantBuffers specifies. Each number specifies the number of constants that are contained in the constant buffer that the shader uses. Each number of constants starts from its respective offset that is specified in the pFirstConstant array. The runtime sets pNumConstants to NULL if it doesn't specify the numbers of constants in each buffer. + + + + + Gets the content description that was used to create this enumerator. + Microsoft Docs: + A pointer to a D3D11_VIDEO_PROCESSOR_CONTENT_DESC structure that receives the content description. + + + + + Flags that describe miscellaneous query behavior. + Microsoft Docs: + + + + Tell the hardware that if it is not yet sure if something is hidden or not to draw it anyway. This is only used with an occlusion predicate. Predication data cannot be returned to your application via ID3D11DeviceContext::GetData when using this flag. + + + + Set a boolean that turns the debug output on or off. + Microsoft Docs: + Disable/Enable the debug output (TRUE to disable or mute the output, FALSE to enable the output). + + + + + Specifies the alpha fill mode for video processing. + Microsoft Docs: + + + + Alpha values inside the target rectangle are set to opaque. + + + Alpha values inside the target rectangle are set to the alpha value specified in the background color. To set the background color, call the ID3D11VideoContext::VideoProcessorSetOutputBackgroundColor method. + + + Existing alpha values remain unchanged in the output surface. + + + Alpha values are taken from an input stream, scaled, and copied to the corresponding destination rectangle for that stream. The input stream is specified in the StreamIndex parameter of the ID3D11VideoContext::VideoProcessorSetOutputAlphaFillMode method. + +If the input stream does not have alpha data, the video processor sets the alpha values in the target rectangle to opaque. If the input stream is disabled or the source rectangle is empty, the alpha values in the target rectangle are not modified. + + + + Gets a pointer to the data contained in a subresource, and denies the GPU access to that subresource. + Microsoft Docs: + A pointer to a ID3D11Resource interface. + Index number of the subresource. + A D3D11_MAP-typed value that specifies the CPU's read and write permissions for a resource. + +Flag that specifies what the CPU does when the GPU is busy. This flag is optional. + A pointer to the D3D11_MAPPED_SUBRESOURCE structure for the mapped subresource. + See the Remarks section regarding NULL pointers. + + + + + Contains the response to a D3D11_AUTHENTICATED_QUERY_OUTPUT_ID query. + Microsoft Docs: + + + + A D3D11_AUTHENTICATED_QUERY_OUTPUT structure that contains a Message Authentication Code (MAC) and other data. + + + A handle to the device. + + + A handle to the cryptographic session. + + + The index of the output ID. + + + An output ID that is associated with the specified device and cryptographic session. + + + + Gets a group of flags that indicates the requirements of a shader. + Microsoft Docs: + + + + + Describes the subresources from an array of 2D textures to use in a shader-resource view. + Microsoft Docs: + + + + Index of the most detailed mipmap level to use; this number is between 0 and ( MipLevels (from the original Texture2D for which + ID3D11Device3::CreateShaderResourceView1 + creates a view) - 1). + + + The maximum number of mipmap levels for the view of the texture. See the remarks in D3D11_TEX1D_SRV. + + +Set to -1 to indicate all the mipmap levels from MostDetailedMip on down to least detailed. + + + The index of the first texture to use in an array of textures. + + + Number of textures in the array. + + + The index (plane slice number) of the plane to use in an array of textures. + + + + Identifies unordered-access view options for a buffer resource. + Microsoft Docs: + + + + Resource contains raw, unstructured data. Requires the UAV format to be DXGI_FORMAT_R32_TYPELESS. + For more info about raw viewing of buffers, see Raw Views of Buffers. + + + Allow data to be appended to the end of the buffer. D3D11_BUFFER_UAV_FLAG_APPEND flag must also be used for + any view that will be used as a AppendStructuredBuffer or a ConsumeStructuredBuffer. + Requires the UAV format to be DXGI_FORMAT_UNKNOWN. + + + Adds a counter to the unordered-access-view buffer. D3D11_BUFFER_UAV_FLAG_COUNTER can only be used on a UAV that is a + RWStructuredBuffer and it enables the functionality needed for the IncrementCounterand DecrementCounter methods in HLSL. Requires the UAV format to be DXGI_FORMAT_UNKNOWN. + + + + The CPU copies data from memory to a subresource created in non-mappable memory. + Microsoft Docs: + A pointer to the destination resource (see ID3D11Resource). + A zero-based index, that identifies the destination subresource. See D3D11CalcSubresource for more details. + A pointer to a box that defines the portion of the destination subresource to copy the resource data into. Coordinates are in bytes for buffers and in texels for textures. If NULL, the data is written to the destination subresource with no offset. The dimensions of the source must fit the destination (see D3D11_BOX). + +An empty box results in a no-op. A box is empty if the top value is greater than or equal to the bottom value, or the left value is greater than or equal to the right value, or the front value is greater than or equal to the back value. When the box is empty, UpdateSubresource doesn't perform an update operation. + A pointer to the source data in memory. + The size of one row of the source data. + The size of one depth slice of source data. + + + + + Gets the properties of the video processor input view. + Microsoft Docs: + A pointer to a D3D11_VIDEO_PROCESSOR_INPUT_VIEW_DESC structure. The method fills the structure with the view properties. + + + + + Describes the multi-threading features that are supported by the current graphics driver. + Microsoft Docs: + + + + TRUE means resources can be created concurrently on multiple threads while drawing; FALSE means that the presence of coarse synchronization will prevent concurrency. + + + TRUE means command lists are supported by the current driver; FALSE means that the API will emulate deferred contexts and command lists with software. + + + + Which resources are supported for a given format and given device (see ID3D11Device::CheckFormatSupport and ID3D11Device::CheckFeatureSupport). + Microsoft Docs: + + + + Buffer resources supported. + + + Vertex buffers supported. + + + Index buffers supported. + + + Streaming output buffers supported. + + + 1D texture resources supported. + + + 2D texture resources supported. + + + 3D texture resources supported. + + + Cube texture resources supported. + + + The HLSL Load function for texture objects is supported. + + + The HLSL Sample function for texture objects is supported. + +
Note  If the device supports the format as a resource (1D, 2D, 3D, or cube map) but doesn't support this option, the resource can still use the Sample method but must use only the point filtering sampler state to perform the sample.
+
 
+
+ + The HLSL SampleCmp and SampleCmpLevelZero functions for texture objects are supported. + +
Note  Windows 8 and later might provide limited support for these functions on Direct3D feature levels 9_1, 9_2, and 9_3. For more info, see Implementing shadow buffers for Direct3D feature level 9. +
+
 
+
+ + Reserved. + + + Mipmaps are supported. + + + Automatic generation of mipmaps is supported. + + + Render targets are supported. + + + Blend operations supported. + + + Depth stencils supported. + + + CPU locking supported. + + + Multisample antialiasing (MSAA) resolve operations are supported. For more info, see ID3D11DeviceContex::ResolveSubresource. + + + Format can be displayed on screen. + + + Format cannot be cast to another format. + + + Format can be used as a multisampled rendertarget. + + + Format can be used as a multisampled texture and read into a shader with the HLSL load function. + + + Format can be used with the HLSL gather function. This value is available in DirectX 10.1 or higher. + + + Format supports casting when the resource is a back buffer. + + + Format can be used for an unordered access view. + + + Format can be used with the HLSL gather with comparison function. + + + Format can be used with the decoder output. + +Direct3D 11:  This value is not supported until Direct3D 11.1. + + + Format can be used with the video processor output. + +Direct3D 11:  This value is not supported until Direct3D 11.1. + + + Format can be used with the video processor input. + +Direct3D 11:  This value is not supported until Direct3D 11.1. + + + Format can be used with the video encoder. + +Direct3D 11:  This value is not supported until Direct3D 11.1. + + + + Identifies how to copy a tile. + Microsoft Docs: + + + + Indicates that the GPU isn't currently referencing any of the + portions of destination memory being written. + + + Indicates that the ID3D11DeviceContext2::CopyTiles operation involves copying a linear buffer to a swizzled tiled resource. This means to copy tile data from the +specified buffer location, reading tiles sequentially, +to the specified tile region (in x,y,z order if the region is a box), swizzling to optimal hardware memory layout as needed. +In this ID3D11DeviceContext2::CopyTiles call, you specify the source data with the pBuffer parameter and the destination with the pTiledResource parameter. + + + Indicates that the ID3D11DeviceContext2::CopyTiles operation involves copying a swizzled tiled resource to a linear buffer. This means to copy tile data from the tile region, reading tiles sequentially (in x,y,z order if the region is a box), +to the specified buffer location, deswizzling to linear memory layout as needed. +In this ID3D11DeviceContext2::CopyTiles call, you specify the source data with the pTiledResource parameter and the destination with the pBuffer parameter. + + + + Describes an instance of a pixel shader to trace. + Microsoft Docs: + + + + The invocation number of the instance of the pixel shader. + + + The x-coordinate of the pixel. + + + The y-coordinate of the pixel. + + + A value that describes a mask of pixel samples to trace. If this value specifies any of the masked samples, the trace is activated. The least significant bit (LSB) is sample 0. The non-multisample antialiasing (MSAA) counts as a sample count of 1; therefore, the LSB of SampleMask should be set. If set to zero, the pixel is not traced. However, pixel traces can still be enabled on an invocation basis. + + + + The device context interface represents a device context; it is used to render commands. ID3D11DeviceContext2 adds new methods to those in ID3D11DeviceContext1. + Microsoft Docs: + + + + + Get a bitfield of flags that indicates which debug features are on or off. + Microsoft Docs: + + + + + Represents a fence, an object used for synchronization of the CPU and one or more GPUs. + Microsoft Docs: + + + + + Retrieves the sizes, in units of threads, of the X, Y, and Z dimensions of the shader's thread-group grid. + Microsoft Docs: + A pointer to the size, in threads, of the x-dimension of the thread-group grid. The maximum size is 1024. + A pointer to the size, in threads, of the y-dimension of the thread-group grid. The maximum size is 1024. + A pointer to the size, in threads, of the z-dimension of the thread-group grid. The maximum size is 64. + + + + + Describes depth-stencil state. + Microsoft Docs: + + + + Enable depth testing. + + + Identify a portion of the depth-stencil buffer that can be modified by depth data (see D3D11_DEPTH_WRITE_MASK). + + + A function that compares depth data against existing depth data. The function options are listed in D3D11_COMPARISON_FUNC. + + + Enable stencil testing. + + + Identify a portion of the depth-stencil buffer for reading stencil data. + + + Identify a portion of the depth-stencil buffer for writing stencil data. + + + Identify how to use the results of the depth test and the stencil test for pixels whose surface normal is facing towards the camera (see D3D11_DEPTH_STENCILOP_DESC). + + + Identify how to use the results of the depth test and the stencil test for pixels whose surface normal is facing away from the camera (see D3D11_DEPTH_STENCILOP_DESC). + + + + Create a blend-state object that encapsules blend state for the output-merger stage. + Microsoft Docs: + Pointer to a blend-state description (see D3D11_BLEND_DESC). + Address of a pointer to the blend-state object created (see ID3D11BlendState). + + + + + Gets an immediate context, which can play back command lists. + Microsoft Docs: + Upon completion of the method, the passed pointer to an ID3D11DeviceContext1 interface pointer is initialized. + + + + + Provides data for calls to ID3D11VideoDevice2::CheckFeatureSupport when the feature specified is D3D11_FEATURE_VIDEO_DECODER_HISTOGRAM. + Microsoft Docs: + + + + A D3D11_VIDEO_DECODER_DESC structure containing the decoder description for the decoder to be used with decode histogram. + + + A bitwise OR combination of values from the D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_FLAGS enumeration specifying the components of a DXGI_FORMAT for which histogram support will be queried. + + + The number of per component bins supported. This value must be greater than or equal to 64 and must be a power of 2 (e.g. 64, 128, 256, 512...). + + + The bit depth of the bin counter. The counter is always stored in a 32-bit value and therefore this value must specify 32 bits or less. The counter is stored in the lower bits of the 32-bit storage. The upper bits are set to zero. If the bin count exceeds this bit depth, the value is set to the maximum counter value. Valid values for CounterBitDepth are 16, 24, and 32. + + + + Bind an array of shader resources to the pixel shader stage. + Microsoft Docs: + Index into the device's zero-based array to begin setting shader resources to (ranges from 0 to D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1). + Number of shader resources to set. Up to a maximum of 128 slots are available for shader resources (ranges from 0 to D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot). + Array of shader resource view interfaces to set to the device. + + + + + Creates a device that uses Direct3D 11 functionality in Direct3D 12, specifying a pre-existing Direct3D 12 device to use for Direct3D 11 interop. + Microsoft Docs: + Specifies a pre-existing Direct3D 12 device to use for Direct3D 11 interop. May not be NULL. + One or more bitwise OR'd flags from D3D11_CREATE_DEVICE_FLAG. These are the same flags as those used by D3D11CreateDeviceAndSwapChain. Specifies which runtime layers to enable. Flags must be compatible with device flags, and its NodeMask must be a subset of the NodeMask provided to the present API. + An array of any of the following: + +
    +
  • D3D_FEATURE_LEVEL_12_1
  • +
  • D3D_FEATURE_LEVEL_12_0
  • +
  • D3D_FEATURE_LEVEL_11_1
  • +
  • D3D_FEATURE_LEVEL_11_0
  • +
  • D3D_FEATURE_LEVEL_10_1
  • +
  • D3D_FEATURE_LEVEL_10_0
  • +
  • D3D_FEATURE_LEVEL_9_3
  • +
  • D3D_FEATURE_LEVEL_9_2
  • +
  • D3D_FEATURE_LEVEL_9_1
  • +
+ +The first feature level that is less than or equal to the Direct3D 12 device's feature level will be used to perform Direct3D 11 validation. Creation will fail if no acceptable feature levels are provided. Providing NULL will default to the Direct3D 12 device's feature level. + The size of (that is, the number of elements in) the pFeatureLevels array. + An array of unique queues for D3D11On12 to use. The queues must be of the 3D command queue type. + The size of (that is, the number of elements in) the ppCommandQueues array. + Which node of the Direct3D 12 device to use. Only 1 bit may be set. + Pointer to the returned ID3D11Device. May be NULL. + A pointer to the returned ID3D11DeviceContext. May be NULL. + A pointer to the returned feature level. May be NULL. +
+
+ + + Push an empty storage filter onto the storage-filter stack. + Microsoft Docs: + + + + + Contains the response to a D3D11_AUTHENTICATED_QUERY_DEVICE_HANDLE query. + Microsoft Docs: + + + + A D3D11_AUTHENTICATED_QUERY_OUTPUT structure that contains a Message Authentication Code (MAC) and other data. + + + A handle to the device. + + + + Retrieves information about a register that was read by a step in the trace. + Microsoft Docs: + The index of the step within the trace. The range of the index is [0...NumTraceSteps-1], where NumTraceSteps is a member of the D3D11_TRACE_STATS structure. You can retrieve information in any step order. + The index of the register within the trace step. The range of the index is [0...NumRegistersRead-1], where NumRegistersRead is a member of the D3D11_TRACE_STEP structure. + A pointer to a D3D11_TRACE_REGISTER structure. GetReadRegister fills the members of this structure with information about the register that was read by the step in the trace. + A pointer to a D3D11_TRACE_VALUE structure. GetReadRegister fills the members of this structure with information about the value that was read from the register. + + + + + A 2D texture interface represents texel data, which is structured memory. + Microsoft Docs: + + + + + Get the swap chain that the runtime will use for automatically calling IDXGISwapChain::Present. + Microsoft Docs: + Swap chain that the runtime will use for automatically calling IDXGISwapChain::Present. + + + + + Set all the elements in a render target to one value. + Microsoft Docs: + Pointer to the render target. + A 4-component array that represents the color to fill the render target with. + + + + + Get the domain shader currently set on the device. + Microsoft Docs: + Address of a pointer to a domain shader (see ID3D11DomainShader) to be returned by the method. + Pointer to an array of class instance interfaces (see ID3D11ClassInstance). + The number of class-instance elements in the array. + + + + + Get an array of sampler state interfaces from the compute-shader stage. + Microsoft Docs: + Index into a zero-based array to begin getting samplers from (ranges from 0 to D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - 1). + Number of samplers to get from a device context. Each pipeline stage has a total of 16 sampler slots available (ranges from 0 to D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot). + Pointer to an array of sampler-state interfaces (see ID3D11SamplerState). + + + + + Create a rasterizer state object that tells the rasterizer stage how to behave. + Microsoft Docs: + Pointer to a rasterizer state description (see D3D11_RASTERIZER_DESC). + Address of a pointer to the rasterizer state object created (see ID3D11RasterizerState). + + + + + Updates a fence to a specified value after all previous work has completed. + Microsoft Docs: + A pointer to the ID3D11Fence object. + The value to set the fence to. + + + + + Resets the shader-trace object. + Microsoft Docs: + + + + + Get the hull-shader resources. + Microsoft Docs: + Index into the device's zero-based array to begin getting shader resources from (ranges from 0 to D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1). + The number of resources to get from the device. Up to a maximum of 128 slots are available for shader resources (ranges from 0 to D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot). + Array of shader resource view interfaces to be returned by the device. + + + + + Sets the constant buffers used by the domain-shader stage. + Microsoft Docs: + Index into the zero-based array to begin setting constant buffers to (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1). + Number of buffers to set (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot). + Array of constant buffers (see ID3D11Buffer) being given to the device. + + + + + Gets the destination rectangle for an input stream on the video processor. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. To get this pointer, call ID3D11VideoDevice::CreateVideoProcessor. + The zero-based index of the input stream. To get the maximum number of streams, call ID3D11VideoProcessorEnumerator::GetVideoProcessorCaps and check the MaxStreamStates structure member. + Receives the value TRUE if the destination rectangle is enabled, or FALSE otherwise. + A pointer to a RECT structure that receives the destination rectangle. + + + + + Gets the shader-resource view's description. + Microsoft Docs: + A pointer to a D3D11_SHADER_RESOURCE_VIEW_DESC1 structure that receives the description of the shader-resource view. + + + + + Describes which unordered resource options are supported by the current graphics driver for a given format. + Microsoft Docs: + + + + +DXGI_FORMAT to return information on. + + + Combination of D3D11_FORMAT_SUPPORT2 flags indicating which unordered resource options are supported. + + + + Gets the range of values for an image filter. + Microsoft Docs: + The type of image filter, specified as a D3D11_VIDEO_PROCESSOR_FILTER value. + A pointer to a D3D11_VIDEO_PROCESSOR_FILTER_RANGE structure. The method fills the structure with the range of values for the specified filter. + + + + + Establishes a session key for an authenticated channel. + Microsoft Docs: + A pointer to the ID3D11AuthenticatedChannel interface. This method will fail if the channel type is D3D11_AUTHENTICATED_CHANNEL_D3D11, because the Direct3D11 channel does not support authentication. + The size of the data in the pData array, in bytes. + A pointer to a byte array that contains the encrypted session key. The buffer must contain 256 bytes of data, encrypted using RSA Encryption Scheme - Optimal Asymmetric Encryption Padding (RSAES-OAEP). + + + + + Contains the response to a D3D11_AUTHENTICATED_QUERY_RESTRICTED_SHARED_RESOURCE_PROCESS_COUNT query. + Microsoft Docs: + + + + A D3D11_AUTHENTICATED_QUERY_OUTPUT structure that contains a Message Authentication Code (MAC) and other data. + + + The number of processes that are allowed to open shared resources that have restricted access. A process cannot open such a resource unless the process has been granted access. + + + + Gets the description for blending state that you used to create the blend-state object. + Microsoft Docs: + A pointer to a D3D11_BLEND_DESC structure that receives a description of the blend state. + + + + + Restore all default settings. + Microsoft Docs: + + + + + A shader-resource-view interface represents the subresources a shader can access during rendering. Examples of shader resources include a constant buffer, a texture buffer, and a texture. + Microsoft Docs: + + + + + Gets the constant buffers that the geometry shader pipeline stage uses. + Microsoft Docs: + Index into the device's zero-based array to begin retrieving constant buffers from (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1). + Number of buffers to retrieve (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot). + Array of constant buffer interface pointers to be returned by the method. + A pointer to an array that receives the offsets into the buffers that ppConstantBuffers specifies. Each offset specifies where, from the shader's point of view, each constant buffer starts. Each offset is measured in shader constants, which are 16 bytes (4*32-bit components). Therefore, an offset of 2 indicates that the start of the associated constant buffer is 32 bytes into the constant buffer. The runtime sets pFirstConstant to NULL if the buffers do not have offsets. + A pointer to an array that receives the numbers of constants in the buffers that ppConstantBuffers specifies. Each number specifies the number of constants that are contained in the constant buffer that the shader uses. Each number of constants starts from its respective offset that is specified in the pFirstConstant array. The runtime sets pNumConstants to NULL if it doesn't specify the numbers of constants in each buffer. + + + + + Sets the constant buffers that the compute-shader stage uses. + Microsoft Docs: + Index into the zero-based array to begin setting constant buffers to (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1). + Number of buffers to set (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot). + Array of constant buffers (see ID3D11Buffer) being given to the device. + An array that holds the offsets into the buffers that ppConstantBuffers specifies. Each offset specifies where, from the shader's point of view, each constant buffer starts. Each offset is measured in shader constants, which are 16 bytes (4*32-bit components). Therefore, an offset of 16 indicates that the start of the associated constant buffer is 256 bytes into the constant buffer. Each offset must be a multiple of 16 constants. + An array that holds the numbers of constants in the buffers that ppConstantBuffers specifies. Each number specifies the number of constants that are contained in the constant buffer that the shader uses. Each number of constants starts from its respective offset that is specified in the pFirstConstant array. Each number of constants must be a multiple of 16 constants, in the range [0..4096]. + + + + + Rebinds a texture or buffer from source slot to destination slot. + Microsoft Docs: + The first source slot number for rebinding. + The first destination slot number for rebinding. + The number of slots for rebinding. + + + + + Indicates whether a shader is a sample frequency shader. + Microsoft Docs: + + + + + Gets a constant buffer by index for a function. + Microsoft Docs: + Zero-based index. + + + + + Gets the image filter settings for an input stream on the video processor. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. To get this pointer, call ID3D11VideoDevice::CreateVideoProcessor. + The zero-based index of the input stream. To get the maximum number of streams, call ID3D11VideoProcessorEnumerator::GetVideoProcessorCaps and check the MaxStreamStates structure member. + The filter to query, specified as a D3D11_VIDEO_PROCESSOR_FILTER value. + Receives the value TRUE if the image filter is enabled, or FALSE otherwise. + Receives the filter level. + + + + + Gets the properties of the video decoder output view. + Microsoft Docs: + A pointer to a D3D11_VIDEO_DECODER_OUTPUT_VIEW_DESC structure. The method fills the structure with the view properties. + + + + + Create a counter object for measuring GPU performance. + Microsoft Docs: + Pointer to a counter description (see D3D11_COUNTER_DESC). + Address of a pointer to a counter (see ID3D11Counter). + + + + + Check to see if the draw pipeline state is valid. + Microsoft Docs: + A pointer to the ID3D11DeviceContext, that represents a device context. + + + + + Retrieves capabilities and limitations of the video decoder. + Microsoft Docs: + The decode profile for which the capabilities are queried. + The video width for which the capabilities are queried. + The video height for which the capabilities are queried. + The frame rate of the video content. This information is used by the driver to determine whether the video can be decoded in real-time. + The bit rate of the video stream. A value of zero indicates that the bit rate can be ignored. + The type of cryptography used to encrypt the video stream. A value of NULL indicates that the video stream is not encrypted. + A pointer to a bitwise OR combination of D3D11_VIDEO_DECODER_CAPS values specifying the decoder capabilities. + + + + + Gets the rate conversion capabilities of the video processor. + Microsoft Docs: + A pointer to a D3D11_VIDEO_PROCESSOR_RATE_CONVERSION_CAPS structure that receives the rate conversion capabilities. + + + + + Releases D3D11 resources that were wrapped for D3D 11on12. + Microsoft Docs: + Specifies a pointer to a set of D3D11 resources, defined by ID3D11Resource. + Count of the number of resources. + + + + + Push a storage filter onto the storage-filter stack. + Microsoft Docs: + Pointer to a storage filter (see D3D11_INFO_QUEUE_FILTER). + + + + + Describes double data type support in the current graphics driver. + Microsoft Docs: + + + + Specifies whether double types are allowed. If TRUE, double types are allowed; otherwise FALSE. The runtime must set DoublePrecisionFloatShaderOps to TRUE in order for you to use any HLSL shader that is compiled with a double type. + + + + Gets the pixel aspect ratio for an input stream on the video processor. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. To get this pointer, call ID3D11VideoDevice::CreateVideoProcessor. + The zero-based index of the input stream. To get the maximum number of streams, call ID3D11VideoProcessorEnumerator::GetVideoProcessorCaps and check the MaxStreamStates structure member. + Receives the value TRUE if the pixel aspect ratio is specified. Otherwise, receives the value FALSE. + A pointer to a DXGI_RATIONAL structure. If *pEnabled is TRUE, this parameter receives the pixel aspect ratio of the source rectangle. + A pointer to a DXGI_RATIONAL structure. If *pEnabled is TRUE, this parameter receives the pixel aspect ratio of the destination rectangle. + + + + + Set a domain shader to the device. + Microsoft Docs: + Pointer to a domain shader (see ID3D11DomainShader). Passing in NULL disables the shader for this pipeline stage. + A pointer to an array of class-instance interfaces (see ID3D11ClassInstance). Each interface used by a shader must have a corresponding class instance or the shader will get disabled. Set ppClassInstances to NULL if the shader does not use any interfaces. + The number of class-instance interfaces in the array. + + + + + Gets the current level of downsampling that is performed by the video processor. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. To get this pointer, call ID3D11VideoDevice::CreateVideoProcessor. + Receives the value TRUE if downsampling was explicitly enabled using the ID3D11VideoContext::VideoProcessorSetOutputConstriction method. Receives the value FALSE if the downsampling was disabled or was never set. + If Enabled receives the value TRUE, this parameter receives the downsampling size. Otherwise, this parameter is ignored. + + + + + Gets a driver-specific state for a video processing stream. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. To get this pointer, call ID3D11VideoDevice::CreateVideoProcessor. + The zero-based index of the input stream. To get the maximum number of streams, call ID3D11VideoProcessorEnumerator::GetVideoProcessorCaps and check the MaxStreamStates structure member. + A pointer to a GUID that identifies the state. The meaning of this GUID is defined by the graphics driver. + The size of the pData buffer, in bytes. + A pointer to a buffer that receives the private state data. + + + + + Indicates whether the driver supports the specified combination of format and colorspace conversions. + Microsoft Docs: + The format of the video processor input. + The colorspace of the video processor input. + The format of the video processor output. + The colorspace of the video processor output. + Pointer to a boolean that is set by the driver to indicate if the specified combination of format and colorspace conversions is supported. True if the conversion is supported; otherwise, false. + + + + + Specifies the color space for video processing. + Microsoft Docs: + + + + Specifies whether the output is intended for playback or video processing (such as editing or authoring). The device can optimize the processing based on the type. The default state value is 0 (playback). + + + + + + + + + + + + + + + + +
ValueMeaning
+
+
0
+
+
+Playback + +
+
+
1
+
+
+Video processing + +
+
+ + Specifies the RGB color range. The default state value is 0 (full range). + + + + + + + + + + + + + + + + +
ValueMeaning
+
+
0
+
+
+Full range (0-255) + +
+
+
1
+
+
+Limited range (16-235) + +
+
+ + Specifies the YCbCr transfer matrix. The default state value is 0 (BT.601). + + + + + + + + + + + + + + + + +
ValueMeaning
+
+
0
+
+
+ITU-R BT.601 + +
+
+
1
+
+
+ITU-R BT.709 + +
+
+ + Specifies whether the output uses conventional YCbCr or extended YCbCr (xvYCC). The default state value is zero (conventional YCbCr). + + + + + + + + + + + + + + + + +
ValueMeaning
+
+
0
+
+
+Conventional YCbCr + +
+
+
1
+
+
+Extended YCbCr (xvYCC) + +
+
+ + Specifies the D3D11_VIDEO_PROCESSOR_NOMINAL_RANGE. + + + +Introduced in Windows 8.1. + + + Reserved. Set to zero. + + + + Gets the source rectangle for an input stream on the video processor. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. To get this pointer, call ID3D11VideoDevice::CreateVideoProcessor. + The zero-based index of the input stream. To get the maximum number of streams, call ID3D11VideoProcessorEnumerator::GetVideoProcessorCaps and check the MaxStreamStates structure member. + Receives the value TRUE if the source rectangle is enabled, or FALSE otherwise. + A pointer to a RECT structure that receives the source rectangle. + + + + + Create a single 3D texture. + Microsoft Docs: + A pointer to a D3D11_TEXTURE3D_DESC structure that describes a 3D texture resource. To create a typeless resource that can be interpreted at runtime into different, compatible formats, specify a typeless format in the texture description. To generate mipmap levels automatically, set the number of mipmap levels to 0. + A pointer to an array of D3D11_SUBRESOURCE_DATA structures that describe subresources for the 3D texture resource. Applications cannot specify NULL for pInitialData when creating IMMUTABLE resources (see D3D11_USAGE). If the resource is multisampled, pInitialData must be NULL because multisampled resources cannot be initialized with data when they are created. + +If you don't pass anything to pInitialData, the initial content of the memory for the resource is undefined. In this case, you need to write the resource content some other way before the resource is read. + +You can determine the size of this array from the value in the MipLevels member of the D3D11_TEXTURE3D_DESC structure to which pDesc points. Arrays of 3D volume textures are not supported. + +For more information about this array size, see Remarks. + A pointer to a buffer that receives a pointer to a ID3D11Texture3D interface for the created texture. Set this parameter to NULL to validate the other input parameters (the method will return S_FALSE if the other input parameters pass validation). + + + + + Gets the constant buffers that the vertex shader pipeline stage uses. + Microsoft Docs: + Index into the device's zero-based array to begin retrieving constant buffers from (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1). + Number of buffers to retrieve (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot). + Array of constant buffer interface pointers to be returned by the method. + A pointer to an array that receives the offsets into the buffers that ppConstantBuffers specifies. Each offset specifies where, from the shader's point of view, each constant buffer starts. Each offset is measured in shader constants, which are 16 bytes (4*32-bit components). Therefore, an offset of 2 indicates that the start of the associated constant buffer is 32 bytes into the constant buffer. The runtime sets pFirstConstant to NULL if the buffers do not have offsets. + A pointer to an array that receives the numbers of constants in the buffers that ppConstantBuffers specifies. Each number specifies the number of constants that are contained in the constant buffer that the shader uses. Each number of constants starts from its respective offset that is specified in the pFirstConstant array. The runtime sets pNumConstants to NULL if it doesn't specify the numbers of constants in each buffer. + + + + + Sets the color-palette entries for an input stream on the video processor. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. To get this pointer, call ID3D11VideoDevice::CreateVideoProcessor. + The zero-based index of the input stream. To get the maximum number of streams, call ID3D11VideoProcessorEnumerator::GetVideoProcessorCaps and check the MaxStreamStates structure member. + The number of elements in the pEntries array. + A pointer to an array of palette entries. For RGB streams, the palette entries use the DXGI_FORMAT_B8G8R8A8 representation. For YCbCr streams, the palette entries use the DXGI_FORMAT_AYUV representation. The caller allocates the array. + + + + + Get the pixel shader currently set on the device. + Microsoft Docs: + Address of a pointer to a pixel shader (see ID3D11PixelShader) to be returned by the method. + Pointer to an array of class instance interfaces (see ID3D11ClassInstance). + The number of class-instance elements in the array. + + + + + Get the exception-mode flags. + Microsoft Docs: + A value that contains one or more exception flags; each flag specifies a condition which will cause an exception to be raised. The flags are listed in D3D11_RAISE_FLAG. A default value of 0 means there are no flags. + + + + + Defines the dimensions of a viewport. + Microsoft Docs: + + + + X position of the left hand side of the viewport. Ranges between D3D11_VIEWPORT_BOUNDS_MIN and D3D11_VIEWPORT_BOUNDS_MAX. + + + Y position of the top of the viewport. Ranges between D3D11_VIEWPORT_BOUNDS_MIN and D3D11_VIEWPORT_BOUNDS_MAX. + + + Width of the viewport. + + + Height of the viewport. + + + Minimum depth of the viewport. Ranges between 0 and 1. + + + Maximum depth of the viewport. Ranges between 0 and 1. + + + + Specifies video processing capabilities that relate to deinterlacing, inverse telecine (IVTC), and frame-rate conversion. + Microsoft Docs: + + + + The video processor can perform blend deinterlacing. + + + +In blend deinterlacing, the two fields from an interlaced frame are blended into a single progressive frame. A video processor uses blend deinterlacing when it deinterlaces at half rate, as when converting 60i to 30p. Blend deinterlacing does not require reference frames. + + + The video processor can perform bob deinterlacing. + +In bob deinterlacing, missing field lines are interpolated from the lines above and below. Bob deinterlacing does not require reference frames. + + + The video processor can perform adaptive deinterlacing. + +Adaptive deinterlacing uses spatial or temporal interpolation, and switches between the two on a field-by-field basis, depending on the amount of motion. If the video processor does not receive enough reference frames to perform adaptive deinterlacing, it falls back to bob deinterlacing. + + + The video processor can perform motion-compensated deinterlacing. + + + +Motion-compensated deinterlacing uses motion vectors to recreate missing lines. If the video processor does not receive enough reference frames to perform motion-compensated deinterlacing, it falls back to bob deinterlacing. + + + The video processor can perform inverse telecine (IVTC). + + + +If the video processor supports this capability, the ITelecineCaps member of the D3D11_VIDEO_PROCESSOR_RATE_CONVERSION_CAPS structure specifies which IVTC modes are supported. + + + The video processor can convert the frame rate by interpolating frames. + + + + Get a shader-reflection-variable type. + Microsoft Docs: + Zero-based index. + + + + + Acquires D3D11 resources for use with D3D 11on12. Indicates that rendering to the wrapped resources can begin again. + Microsoft Docs: + Specifies a pointer to a set of D3D11 resources, defined by ID3D11Resource. + Count of the number of resources. + + + + + Defines video processing capabilities for a Microsoft Direct3D 11 video processor. + Microsoft Docs: + + + + The video processor can blend video content in linear color space. Most video content is gamma corrected, resulting in nonlinear values. This capability flag means that the video processor converts colors to linear space before blending, which produces better results. + + + The video processor supports the xvYCC color space for YCbCr data. + + + The video processor can perform range conversion when the input and output are both RGB but use different color ranges (0-255 or 16-235, for 8-bit RGB). + + + The video processor can apply a matrix conversion to YCbCr values when the input and output are both YCbCr. For example, the driver can convert colors from BT.601 to BT.709. + + + The video processor supports YUV nominal range . + +Supported in Windows 8.1 and later. + + + + Stencil operations that can be performed based on the results of stencil test. + Microsoft Docs: + + + + The stencil operation to perform when stencil testing fails. + + + The stencil operation to perform when stencil testing passes and depth testing fails. + + + The stencil operation to perform when stencil testing and depth testing both pass. + + + A function that compares stencil data against existing stencil data. The function options are listed in D3D11_COMPARISON_FUNC. + + + + An input-layout interface holds a definition of how to feed vertex data that is laid out in memory into the input-assembler stage of the graphics pipeline. + Microsoft Docs: + + + + + Specifies the type of process that is identified in the D3D11_AUTHENTICATED_QUERY_RESTRICTED_SHARED_RESOURCE_PROCESS_OUTPUT structure. + Microsoft Docs: + + + + Unknown process type. + + + Desktop Window Manager (DWM) process. + + + Handle to a process. + + + + Get a shader-variable description. + Microsoft Docs: + A pointer to a shader-variable description (see D3D11_SHADER_VARIABLE_DESC). + + + + + Create an array of 2D textures. + Microsoft Docs: + A pointer to a D3D11_TEXTURE2D_DESC structure that describes a 2D texture resource. To create a typeless resource that can be interpreted at runtime into different, compatible formats, specify a typeless format in the texture description. To generate mipmap levels automatically, set the number of mipmap levels to 0. + A pointer to an array of D3D11_SUBRESOURCE_DATA structures that describe subresources for the 2D texture resource. Applications can't specify NULL for pInitialData when creating IMMUTABLE resources (see D3D11_USAGE). If the resource is multisampled, pInitialData must be NULL because multisampled resources cannot be initialized with data when they are created. + +If you don't pass anything to pInitialData, the initial content of the memory for the resource is undefined. In this case, you need to write the resource content some other way before the resource is read. + +You can determine the size of this array from values in the MipLevels and ArraySize members of the D3D11_TEXTURE2D_DESC structure to which pDesc points by using the following calculation: + +MipLevels * ArraySize + +For more information about this array size, see Remarks. + A pointer to a buffer that receives a pointer to a ID3D11Texture2D interface for the created texture. Set this parameter to NULL to validate the other input parameters (the method will return S_FALSE if the other input parameters pass validation). + + + + + Specifies the subresources from a resource that are accessible using an unordered-access view. + Microsoft Docs: + + + + The data format (see DXGI_FORMAT). + + + The resource type (see D3D11_UAV_DIMENSION), which specifies how the resource will be accessed. + + + Specifies which buffer elements can be accessed (see D3D11_BUFFER_UAV). + + + Specifies the subresources in a 1D texture that can be accessed (see D3D11_TEX1D_UAV). + + + Specifies the subresources in a 1D texture array that can be accessed (see D3D11_TEX1D_ARRAY_UAV). + + + Specifies the subresources in a 2D texture that can be accessed (see D3D11_TEX2D_UAV). + + + Specifies the subresources in a 2D texture array that can be accessed (see D3D11_TEX2D_ARRAY_UAV). + + + Specifies subresources in a 3D texture that can be accessed (see D3D11_TEX3D_UAV). + + + + Get the properties of a buffer resource. + Microsoft Docs: + Pointer to a resource description (see D3D11_BUFFER_DESC) filled in by the method. + + + + + A render-target-view interface identifies the render-target subresources that can be accessed during rendering. + Microsoft Docs: + + + + + Specifies the subresources from a resource that are accessible using a render-target view. + Microsoft Docs: + + + + The data format (see DXGI_FORMAT). + + + The resource type (see D3D11_RTV_DIMENSION), which specifies how the render-target resource will be accessed. + + + Specifies which buffer elements can be accessed (see D3D11_BUFFER_RTV). + + + Specifies the subresources in a 1D texture that can be accessed (see D3D11_TEX1D_RTV). + + + Specifies the subresources in a 1D texture array that can be accessed (see D3D11_TEX1D_ARRAY_RTV). + + + Specifies the subresources in a 2D texture that can be accessed (see D3D11_TEX2D_RTV). + + + Specifies the subresources in a 2D texture array that can be accessed (see D3D11_TEX2D_ARRAY_RTV). + + + Specifies a single subresource because a multisampled 2D texture only contains one subresource (see D3D11_TEX2DMS_RTV). + + + Specifies the subresources in a multisampled 2D texture array that can be accessed (see D3D11_TEX2DMS_ARRAY_RTV). + + + Specifies subresources in a 3D texture that can be accessed (see D3D11_TEX3D_RTV). + + + + Specifies the subresources from an array of 1D textures to use in a depth-stencil view. + Microsoft Docs: + + + + The index of the first mipmap level to use. + + + The index of the first texture to use in an array of textures. + + + Number of textures to use. + + + + Enter a device's critical section. + Microsoft Docs: + + + + + Identifies whether conservative rasterization is on or off. + Microsoft Docs: + + + + Conservative rasterization is off. + + + Conservative rasterization is on. + + + + Initializes a shader module from the function-linking-graph object. + Microsoft Docs: + The address of a pointer to an ID3D11ModuleInstance interface for the shader module to initialize. + An optional pointer to a variable that receives a pointer to the ID3DBlob interface that you can use to access compiler error messages, or NULL if there are no errors. + + + + + Indicates triangles facing a particular direction are not drawn. + Microsoft Docs: + + + + Always draw all triangles. + + + Do not draw triangles that are front-facing. + + + Do not draw triangles that are back-facing. + + + + Specifies statistics about a trace. + Microsoft Docs: + + + + A D3D11_SHADER_TRACE_DESC structure that describes the shader trace object for which this structure specifies statistics. + + + The number of calls in the stamp for the trace. This value is always 1 for vertex shaders, hull shaders, domain shaders, geometry shaders, and compute shaders. This value is 4 for pixel shaders. + + + The index of the target stamp. This value is always 0 for vertex shaders, hull shaders, domain shaders, geometry shaders, and compute shaders. However, for pixel shaders this value indicates which of the four pixels in the stamp is the target for the trace. You can examine the traces for other pixels in the stamp to determine how derivative calculations occurred. You can make this determination by correlating the registers across traces. + + + The total number of steps for the trace. This number is the same for all stamp calls. + + + The component trace mask for each input v# register. For information about D3D11_TRACE_COMPONENT_MASK, see D3D11_TRACE_VALUE. + +For vertex shaders, geometry shaders, pixel shaders, hull shaders, and domain shaders, the valid range is [0..31]. For compute shaders, this member is not applicable. Also, inputs for geometry shaders are 2D-indexed. For example, consider v[vertex][attribute]. In this example, the range of [attribute] is [0..31]. The [vertex] axis is the same size for all inputs, which are determined by the GSInputPrimitive member. + +Similarly, inputs for hull shader and domain shader are 2D-indexed. For example, consider v[vertex][attribute]. In this example, the range of [attribute] is [0..15]. The [vertex] axis is the same size for all inputs. + + + The component trace mask for each output o# register. For information about D3D11_TRACE_COMPONENT_MASK, see D3D11_TRACE_VALUE. + +For vertex shaders and geometry shaders, the valid range is [0..31]. For pixel shaders, the valid range is [0..7]. For compute shaders, this member is not applicable. For output control points for hull shaders, the registers are 2D-indexed. For example, consider ocp[vertex][attribute]. In this example, the range of [attribute] is [0..31]. The [vertex] axis is the same size for all inputs. + + + The number of temps, that is, 4x32 bit r# registers that are declared. + + + The maximum index #+1 of all indexable temps x#[] that are declared. If they are declared sparsely (for example, x3[12] and x200[30] only), this value is 201 (200+1). + + + The number of temps for each indexable temp x#[numTemps]. You can only have temps up to the value in the MaxIndexableTempIndex member. + + + The number of 4x32 bit values (if any) that are in the immediate constant buffer. + + +
Note  This member is for pixel shaders only, [stampIndex].
+
 
+A mask that indicates which MSAA samples are covered for each stamp. This coverage occurs before alpha-to-coverage, depth, and stencil operations are performed on the pixel. For non-MSAA, examine the least significant bit (LSB). This mask can be 0 for pixels that are only executed to support derivatives for neighboring pixels.
+
+ +
Note  This member is for pixel shaders only, [stampIndex].
+
 
+A mask that indicates discarded samples. If the pixel shader runs at pixel-frequency, "discard" turns off all the samples. If all the samples are off, the following four mask members are also 0.
+
+ +
Note  This member is for pixel shaders only, [stampIndex].
+
 
+A mask that indicates the MSAA samples that are covered. For non-MSAA, examine the LSB.
+
+ +
Note  This member is for pixel shaders only, [stampIndex].
+
 
+A mask that indicates the MSAA samples that are covered after alpha-to-coverage+sampleMask, but before depth and stencil. For non-MSAA, examine the LSB.
+
+ +
Note  This member is for pixel shaders only, [stampIndex].
+
 
+A mask that indicates the MSAA samples that are covered after alpha-to-coverage+sampleMask+depth, but before stencil. For non-MSAA, examine the LSB.
+
+ +
Note  This member is for pixel shaders only, [stampIndex].
+
 
+A mask that indicates the MSAA samples that are covered after alpha-to-coverage+sampleMask+depth+stencil. For non-MSAA, examine the LSB.
+
+ + A value that specifies whether this trace is for a pixel shader that outputs the oDepth register. TRUE indicates that the pixel shader outputs the oDepth register; otherwise, FALSE. + + + A value that specifies whether this trace is for a pixel shader that outputs the oMask register. TRUE indicates that the pixel shader outputs the oMask register; otherwise, FALSE. + + + A D3D11_TRACE_GS_INPUT_PRIMITIVE-typed value that identifies the type of geometry shader input primitive. That is, this value identifies: {point, line, triangle, line_adj, triangle_adj} or the number of vertices: 1, 2, 3, 4, or 6 respectively. For example, for a line, input v[][#] is actually v[2][#]. For vertex shaders and pixel shaders, set this member to D3D11_TRACE_GS_INPUT_PRIMITIVE_UNDEFINED. + + + A value that specifies whether this trace is for a geometry shader that inputs the PrimitiveID register. TRUE indicates that the geometry shader inputs the PrimitiveID register; otherwise, FALSE. + + +
Note  This member is for hull shaders only.
+
 
+The component trace mask for the hull-shader output. For information about D3D11_TRACE_COMPONENT_MASK, see D3D11_TRACE_VALUE. + +The D3D11_TRACE_INPUT_PRIMITIVE_ID_REGISTER value is available through a call to the ID3D11ShaderTrace::GetInitialRegisterContents method.
+
+ +
Note  This member is for domain shaders only.
+
 
+The component trace mask for the domain-shader input. For information about D3D11_TRACE_COMPONENT_MASK, see D3D11_TRACE_VALUE. + +The following values are available through a call to the ID3D11ShaderTrace::GetInitialRegisterContents method: + +
+
+ + + Gets an immediate context, which can play back command lists. + Microsoft Docs: + Upon completion of the method, the passed pointer to an ID3D11DeviceContext interface pointer is initialized. + + + + + Query types. + Microsoft Docs: + + + + Determines whether or not the GPU is finished processing commands. When the GPU is finished processing commands ID3D11DeviceContext::GetData will return S_OK, and pData will point to a BOOL with a value of TRUE. When using this type of query, ID3D11DeviceContext::Begin is disabled. + + + Get the number of samples that passed the depth and stencil tests in between ID3D11DeviceContext::Begin and ID3D11DeviceContext::End. ID3D11DeviceContext::GetData returns a UINT64. If a depth or stencil test is disabled, then each of those tests will be counted as a pass. + + + Get a timestamp value where ID3D11DeviceContext::GetData returns a UINT64. This kind of query is only useful if two timestamp queries are done in the middle of a D3D11_QUERY_TIMESTAMP_DISJOINT query. The difference of two timestamps can be used to determine how many ticks have elapsed, and the D3D11_QUERY_TIMESTAMP_DISJOINT query will determine if that difference is a reliable value and also has a value that shows how to convert the number of ticks into seconds. See D3D11_QUERY_DATA_TIMESTAMP_DISJOINT. When using this type of query, ID3D11DeviceContext::Begin is disabled. + + + Determines whether or not a D3D11_QUERY_TIMESTAMP is returning reliable values, and also gives the frequency of the processor enabling you to convert the number of elapsed ticks into seconds. ID3D11DeviceContext::GetData will return a D3D11_QUERY_DATA_TIMESTAMP_DISJOINT. This type of query should only be invoked once per frame or less. + + + Get pipeline statistics, such as the number of pixel shader invocations in between ID3D11DeviceContext::Begin and ID3D11DeviceContext::End. ID3D11DeviceContext::GetData will return a D3D11_QUERY_DATA_PIPELINE_STATISTICS. + + + Similar to D3D11_QUERY_OCCLUSION, except ID3D11DeviceContext::GetData returns a BOOL indicating whether or not any samples passed the depth and stencil tests - TRUE meaning at least one passed, FALSE meaning none passed. + + + Get streaming output statistics, such as the number of primitives streamed out in between ID3D11DeviceContext::Begin and ID3D11DeviceContext::End. ID3D11DeviceContext::GetData will return a D3D11_QUERY_DATA_SO_STATISTICS structure. + + + Determines whether or not any of the streaming output buffers overflowed in between ID3D11DeviceContext::Begin and ID3D11DeviceContext::End. ID3D11DeviceContext::GetData returns a BOOL - TRUE meaning there was an overflow, FALSE meaning there was not an overflow. If streaming output writes to multiple buffers, and one of the buffers overflows, then it will stop writing to all the output buffers. When an overflow is detected by Direct3D it is prevented from happening - no memory is corrupted. This predication may be used in conjunction with an SO_STATISTICS query so that when an overflow occurs the SO_STATISTIC query will let the application know how much memory was needed to prevent an overflow. + + + Get streaming output statistics for stream 0, such as the number of primitives streamed out in between ID3D11DeviceContext::Begin and ID3D11DeviceContext::End. ID3D11DeviceContext::GetData will return a D3D11_QUERY_DATA_SO_STATISTICS structure. + + + Determines whether or not the stream 0 output buffers overflowed in between ID3D11DeviceContext::Begin and ID3D11DeviceContext::End. ID3D11DeviceContext::GetData returns a BOOL - TRUE meaning there was an overflow, FALSE meaning there was not an overflow. If streaming output writes to multiple buffers, and one of the buffers overflows, then it will stop writing to all the output buffers. When an overflow is detected by Direct3D it is prevented from happening - no memory is corrupted. This predication may be used in conjunction with an SO_STATISTICS query so that when an overflow occurs the SO_STATISTIC query will let the application know how much memory was needed to prevent an overflow. + + + Get streaming output statistics for stream 1, such as the number of primitives streamed out in between ID3D11DeviceContext::Begin and ID3D11DeviceContext::End. ID3D11DeviceContext::GetData will return a D3D11_QUERY_DATA_SO_STATISTICS structure. + + + Determines whether or not the stream 1 output buffers overflowed in between ID3D11DeviceContext::Begin and ID3D11DeviceContext::End. ID3D11DeviceContext::GetData returns a BOOL - TRUE meaning there was an overflow, FALSE meaning there was not an overflow. If streaming output writes to multiple buffers, and one of the buffers overflows, then it will stop writing to all the output buffers. When an overflow is detected by Direct3D it is prevented from happening - no memory is corrupted. This predication may be used in conjunction with an SO_STATISTICS query so that when an overflow occurs the SO_STATISTIC query will let the application know how much memory was needed to prevent an overflow. + + + Get streaming output statistics for stream 2, such as the number of primitives streamed out in between ID3D11DeviceContext::Begin and ID3D11DeviceContext::End. ID3D11DeviceContext::GetData will return a D3D11_QUERY_DATA_SO_STATISTICS structure. + + + Determines whether or not the stream 2 output buffers overflowed in between ID3D11DeviceContext::Begin and ID3D11DeviceContext::End. ID3D11DeviceContext::GetData returns a BOOL - TRUE meaning there was an overflow, FALSE meaning there was not an overflow. If streaming output writes to multiple buffers, and one of the buffers overflows, then it will stop writing to all the output buffers. When an overflow is detected by Direct3D it is prevented from happening - no memory is corrupted. This predication may be used in conjunction with an SO_STATISTICS query so that when an overflow occurs the SO_STATISTIC query will let the application know how much memory was needed to prevent an overflow. + + + Get streaming output statistics for stream 3, such as the number of primitives streamed out in between ID3D11DeviceContext::Begin and ID3D11DeviceContext::End. ID3D11DeviceContext::GetData will return a D3D11_QUERY_DATA_SO_STATISTICS structure. + + + Determines whether or not the stream 3 output buffers overflowed in between ID3D11DeviceContext::Begin and ID3D11DeviceContext::End. ID3D11DeviceContext::GetData returns a BOOL - TRUE meaning there was an overflow, FALSE meaning there was not an overflow. If streaming output writes to multiple buffers, and one of the buffers overflows, then it will stop writing to all the output buffers. When an overflow is detected by Direct3D it is prevented from happening - no memory is corrupted. This predication may be used in conjunction with an SO_STATISTICS query so that when an overflow occurs the SO_STATISTIC query will let the application know how much memory was needed to prevent an overflow. + + + + Describes whether a GPU profiling technique is supported. + Microsoft Docs: + + + + Specifies whether the hardware and driver support a GPU profiling technique that can be used with development tools. The runtime sets this member to TRUE if the hardware and driver support data marking. + + + + This interface encapsulates an HLSL class. + Microsoft Docs: + + + + + The device interface represents a virtual adapter; it is used to create resources. + Microsoft Docs: + + + + + Calculates a subresource index for a texture. + Microsoft Docs: + A zero-based index for the mipmap level to address; 0 indicates the first, most detailed mipmap level. + The zero-based index for the array level to address; always use 0 for volume (3D) textures. + Number of mipmap levels in the resource. + + + + + Retrieves information about a register that was written by a step in the trace. + Microsoft Docs: + The index of the step within the trace. The range of the index is [0...NumTraceSteps-1], where NumTraceSteps is a member of the D3D11_TRACE_STATS structure. You can retrieve information in any step order. + The index of the register within the trace step. The range of the index is [0...NumRegistersWritten-1], where NumRegistersWritten is a member of the D3D11_TRACE_STEP structure. + A pointer to a D3D11_TRACE_REGISTER structure. GetWrittenRegister fills the members of this structure with information about the register that was written by the step in the trace. + A pointer to a D3D11_TRACE_VALUE structure. GetWrittenRegister fills the members of this structure with information about the value that was written to the register. + + + + + Describes a shader. + Microsoft Docs: + + + + Shader version. + + + The name of the originator of the shader. + + + Shader compilation/parse flags. + + + The number of shader-constant buffers. + + + The number of resource (textures and buffers) bound to a shader. + + + The number of parameters in the input signature. + + + The number of parameters in the output signature. + + + The number of intermediate-language instructions in the compiled shader. + + + The number of temporary registers in the compiled shader. + + + Number of temporary arrays used. + + + Number of constant defines. + + + Number of declarations (input + output). + + + Number of non-categorized texture instructions. + + + Number of texture load instructions + + + Number of texture comparison instructions + + + Number of texture bias instructions + + + Number of texture gradient instructions. + + + Number of floating point arithmetic instructions used. + + + Number of signed integer arithmetic instructions used. + + + Number of unsigned integer arithmetic instructions used. + + + Number of static flow control instructions used. + + + Number of dynamic flow control instructions used. + + + Number of macro instructions used. + + + Number of array instructions used. + + + Number of cut instructions used. + + + Number of emit instructions used. + + + The D3D_PRIMITIVE_TOPOLOGY-typed value that represents the geometry shader output topology. + + + Geometry shader maximum output vertex count. + + + The D3D_PRIMITIVE-typed value that represents the input primitive for a geometry shader or hull shader. + + + Number of parameters in the patch-constant signature. + + + Number of geometry shader instances. + + + Number of control points in the hull shader and domain shader. + + + The D3D_TESSELLATOR_OUTPUT_PRIMITIVE-typed value that represents the tessellator output-primitive type. + + + The D3D_TESSELLATOR_PARTITIONING-typed value that represents the tessellator partitioning mode. + + + The D3D_TESSELLATOR_DOMAIN-typed value that represents the tessellator domain. + + + Number of barrier instructions in a compute shader. + + + Number of interlocked instructions in a compute shader. + + + Number of texture writes in a compute shader. + + + + Signals the end of a decoding operation. + Microsoft Docs: + A pointer to the ID3D11VideoDecoder interface. To get this pointer, call ID3D11VideoDevice::CreateVideoDecoder. + + + + + Specifies texture layout options. + Microsoft Docs: + + + + The texture layout is undefined, and is selected by the driver. + + + Data for the texture is stored in row major (sometimes called pitch-linear) order. + + + A default texture uses the standardized swizzle pattern. + + + + Bind an input-layout object to the input-assembler stage. + Microsoft Docs: + A pointer to the input-layout object (see ID3D11InputLayout), which describes the input buffers that will be read by the IA stage. + + + + + Describes a video processor output view. + Microsoft Docs: + + + + The resource type of the view, specified as a member of the D3D11_VPOV_DIMENSION enumeration. + + + A D3D11_TEX2D_VPOV structure that identifies the texture resource for the output view. + +Use this member of the union when ViewDimension equals D3D11_VPOV_DIMENSION_TEXTURE2D. + + + A D3D11_TEX2D_ARRAY_VPOV structure that identifies the texture array for the output view. + +Use this member of the union when ViewDimension equals D3D11_VPOV_DIMENSION_TEXTURE2DARRAY. + + + + Represents a hardware-accelerated video decoder for Microsoft Direct3D 11. + Microsoft Docs: + + + + + Specifies how the CPU should respond when an application calls the ID3D11DeviceContext::Map method on a resource that is being used by the GPU. + Microsoft Docs: + + + + Specifies that ID3D11DeviceContext::Map should return DXGI_ERROR_WAS_STILL_DRAWING when the GPU blocks the CPU from accessing a resource. For more information about this error code, see DXGI_ERROR. + + + + Gets the color space information for the video processor output surface. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. + A pointer to a DXGI_COLOR_SPACE_TYPE value that indicates the colorspace for the video processor output surface. + + + + + The rasterizer-state interface holds a description for rasterizer state that you can bind to the rasterizer stage. This rasterizer-state interface supports forced sample count and conservative rasterization mode. + Microsoft Docs: + + + + + Bind an array of shader resources to the vertex-shader stage. + Microsoft Docs: + Index into the device's zero-based array to begin setting shader resources to (range is from 0 to D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1). + Number of shader resources to set. Up to a maximum of 128 slots are available for shader resources (range is from 0 to D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot). + Array of shader resource view interfaces to set to the device. + + + + + Gets a constant buffer by name for a function. + Microsoft Docs: + The constant-buffer name. + + + + + Specifies whether an input stream on the video processor contains interlaced or progressive frames. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. To get this pointer, call ID3D11VideoDevice::CreateVideoProcessor. + The zero-based index of the input stream. To get the maximum number of streams, call ID3D11VideoProcessorEnumerator::GetVideoProcessorCaps and check the MaxStreamStates structure member. + A D3D11_VIDEO_FRAME_FORMAT value that specifies the interlacing. + + + + + Gets values that indicate whether the video processor input stream is being flipped vertically or horizontally. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. + An index identifying the input stream. + A pointer to a boolean value indicating whether mirroring is enabled. True if mirroring is enabled; otherwise, false. + A pointer to a boolean value indicating whether the stream is being flipped horizontally. True if the stream is being flipped horizontally; otherwise, false. + A pointer to a boolean value indicating whether the stream is being flipped vertically. True if the stream is being flipped vertically; otherwise, false. + + + + + Adds an instance of a library module to be used for linking. + Microsoft Docs: + A pointer to the ID3D11ModuleInstance interface for the library module instance. + + + + + Get the exception-mode flags. + Microsoft Docs: + + + + + Gets the type of the current HLSL class. + Microsoft Docs: + Type of the current HLSL class. + The length of the pTypeName parameter. + + + + + Specifies a Direct3D 11 video feature or feature set to query about. + Microsoft Docs: + + + + Retrieves the supported components, bin count, and counter bit depth for the a decode histogram with the specified decode profile, resolution, and format. The associated data structure is D3D11_FEATURE_DATA_VIDEO_DECODER_HISTOGRAM. + + + + The device context interface represents a device context; it is used to render commands. ID3D11DeviceContext4 adds new methods to those in ID3D11DeviceContext3. + Microsoft Docs: + + + + + Provides the video functionality of a Microsoft Direct3D 11 device. + Microsoft Docs: + + + + + Get the resource that is accessed through this view. + Microsoft Docs: + Address of a pointer to the resource that is accessed through this view. (See ID3D11Resource.) + + + + + Sets private data on the video device and associates that data with a GUID. + Microsoft Docs: + The GUID associated with the data. + The size of the data, in bytes. + A pointer to the data. + + + + + Specifies the subresources from an array of multisampled 2D textures to use in a shader-resource view. + Microsoft Docs: + + + + The index of the first texture to use in an array of textures. + + + Number of textures to use. + + + + Optional flags that control the behavior of ID3D11DeviceContext::GetData. + Microsoft Docs: + + + + Do not flush the command buffer. This can potentially cause an infinite loop if GetData is continually called until it returns S_OK as there may still be commands in the command buffer that need to be processed in order for GetData to return S_OK. Since the commands in the command buffer are not flushed they will not be processed and therefore GetData will never return S_OK. + + + + Reads encrypted data from a protected surface. + Microsoft Docs: + A pointer to the ID3D11CryptoSession interface of the cryptographic session. + A pointer to the ID3D11Texture2D interface of the protected surface. + A pointer to the ID3D11Texture2D interface of the surface that receives the encrypted data. + The size of the pIV buffer, in bytes. + A pointer to a buffer that receives the initialization vector (IV). The caller allocates this buffer, but the driver generates the IV. + +For 128-bit AES-CTR encryption, pIV points to a D3D11_AES_CTR_IV structure. When the driver generates the first IV, it initializes the structure to a random number. For each subsequent IV, the driver simply increments the IV member of the structure, ensuring that the value always increases. The application can validate that the same IV is never used more than once with the same key pair. + + + + + Gets the number of bitwise instructions. + Microsoft Docs: + + + + + Indicates which resource types to track. + Microsoft Docs: + + + + No resource types are tracked. + + + Track device memory that is created with unordered access view (UAV) bind flags. + + + Track device memory that is created without UAV bind flags. + + + Track all device memory. + + + Track all shaders that use group shared memory. + + + Track all device memory except device memory that is created without UAV bind flags. + + + Track all device memory except device memory that is created with UAV bind flags. + + + Track all memory on the device. + + + + Gets the description for sampler state that you used to create the sampler-state object. + Microsoft Docs: + A pointer to a D3D11_SAMPLER_DESC structure that receives a description of the sampler state. + + + + + Get data from the graphics processing unit (GPU) asynchronously. + Microsoft Docs: + A pointer to an ID3D11Asynchronous interface for the object about which GetData retrieves data. + Address of memory that will receive the data. If NULL, GetData will be used only to check status. The type of data output depends on the type of asynchronous interface. + Size of the data to retrieve or 0. Must be 0 when pData is NULL. + Optional flags. Can be 0 or any combination of the flags enumerated by D3D11_ASYNC_GETDATA_FLAG. + + + + + Bind one or more render targets atomically and the depth-stencil buffer to the output-merger stage. + Microsoft Docs: + Number of render targets to bind (ranges between 0 and D3D11_SIMULTANEOUS_RENDER_TARGET_COUNT). If this parameter is nonzero, the number of entries in the array to which ppRenderTargetViews points must equal the number in this parameter. + Pointer to an array of ID3D11RenderTargetView that represent the render targets to bind to the device. + If this parameter is NULL and NumViews is 0, no render targets are bound. + Pointer to a ID3D11DepthStencilView that represents the depth-stencil view to bind to the device. + If this parameter is NULL, the depth-stencil view is not bound. + + + + + Identify which components of each pixel of a render target are writable during blending. + Microsoft Docs: + + + + Allow data to be stored in the red component. + + + Allow data to be stored in the green component. + + + Allow data to be stored in the blue component. + + + Allow data to be stored in the alpha component. + + + Allow data to be stored in all components. + + + + Generates mipmaps for the given shader resource. + Microsoft Docs: + A pointer to an ID3D11ShaderResourceView interface that represents the shader resource. + + + + + Creates a fence object. + Microsoft Docs: + The initial value for the fence. + A combination of D3D11_FENCE_FLAG-typed values that are combined by using a bitwise OR operation. + The resulting value specifies options for the fence. + The globally unique identifier (GUID) for the fence interface (ID3D11Fence). + The REFIID, or GUID, of the interface to the fence can be obtained by using the __uuidof() macro. + For example, __uuidof(ID3D11Fence) will get the GUID of the interface to a fence. + A pointer to a memory block that receives a pointer to the ID3D11Fence interface that is used to access the fence. + + + + + Registers the "device removed" event and indicates when a Direct3D device has become removed for any reason, using an asynchronous notification mechanism. + Microsoft Docs: + The handle to the "device removed" event. + A pointer to information about the "device removed" event, which can be used in UnregisterDeviceRemoved to unregister the event. + + + + + Bind an array of scissor rectangles to the rasterizer stage. + Microsoft Docs: + Number of scissor rectangles to bind. + An array of scissor rectangles (see D3D11_RECT). + + + + + Specifies which bytes in a video surface are encrypted. + Microsoft Docs: + + + + The number of bytes that are encrypted at the start of the buffer. + + + The number of bytes that are skipped after the first NumEncryptedBytesAtBeginning bytes, and then after each block of NumBytesInEncryptPattern bytes. Skipped bytes are not encrypted. + + + The number of bytes that are encrypted after each block of skipped bytes. + + + + Describes a 1D texture. + Microsoft Docs: + + + + Texture width (in texels). The range is from 1 to D3D11_REQ_TEXTURE1D_U_DIMENSION (16384). However, the range is actually constrained by the feature level at which you create the rendering device. For more information about restrictions, see Remarks. + + + The maximum number of mipmap levels in the texture. See the remarks in D3D11_TEX1D_SRV. Use 1 for a multisampled texture; or 0 to generate a full set of subtextures. + + + Number of textures in the array. The range is from 1 to D3D11_REQ_TEXTURE1D_ARRAY_AXIS_DIMENSION (2048). However, the range is actually constrained by the feature level at which you create the rendering device. For more information about restrictions, see Remarks. + + + Texture format (see DXGI_FORMAT). + + + Value that identifies how the texture is to be read from and written to. The most common value is D3D11_USAGE_DEFAULT; see D3D11_USAGE for all possible values. + + + Flags (see D3D11_BIND_FLAG) for binding to pipeline stages. The flags can be combined by a logical OR. For a 1D texture, the allowable values are: D3D11_BIND_SHADER_RESOURCE, D3D11_BIND_RENDER_TARGET and D3D11_BIND_DEPTH_STENCIL. + + + Flags (see D3D11_CPU_ACCESS_FLAG) to specify the types of CPU access allowed. Use 0 if CPU access is not required. These flags can be combined with a logical OR. + + + Flags (see D3D11_RESOURCE_MISC_FLAG) that identify other, less common resource options. Use 0 if none of these flags apply. These flags can be combined with a logical OR. + + + + Enables better interoperability with a component that might be handed a Direct3D 11 device, but which wants to leverage Direct3D 12 instead. + Microsoft Docs: + + + + + Contains the response to a D3D11_AUTHENTICATED_QUERY_ENCRYPTION_WHEN_ACCESSIBLE_GUID_COUNT query. + Microsoft Docs: + + + + A D3D11_AUTHENTICATED_QUERY_OUTPUT structure that contains a Message Authentication Code (MAC) and other data. + + + The number of encryption GUIDs. + + + + Allow or deny certain types of messages to pass through a filter. + Microsoft Docs: + + + + Number of message categories to allow or deny. + + + Array of message categories to allow or deny. Array must have at least NumCategories members (see D3D11_MESSAGE_CATEGORY). + + + Number of message severity levels to allow or deny. + + + Array of message severity levels to allow or deny. Array must have at least NumSeverities members (see D3D11_MESSAGE_SEVERITY). + + + Number of message IDs to allow or deny. + + + Array of message IDs to allow or deny. Array must have at least NumIDs members (see D3D11_MESSAGE_ID). + + + + Set the maximum number of messages that can be added to the message queue. + Microsoft Docs: + Maximum number of messages that can be added to the message queue. -1 means no limit. + + + + + Gets the rate at which the video processor produces output frames for an input stream. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. To get this pointer, call ID3D11VideoDevice::CreateVideoProcessor. + The zero-based index of the input stream. To get the maximum number of streams, call ID3D11VideoProcessorEnumerator::GetVideoProcessorCaps and check the MaxStreamStates structure member. + Receives a D3D11_VIDEO_PROCESSOR_OUTPUT_RATE value that specifies the output rate. + Receives a Boolean value that specifies how the driver performs frame-rate conversion, if required. + + + + + + + + + + + + + + + + +
ValueMeaning
+
TRUE
+
+
+Repeat frames. + +
+
FALSE
+
+
+Interpolate frames. + +
+ A pointer to a DXGI_RATIONAL structure. If the output rate is D3D11_VIDEO_PROCESSOR_OUTPUT_RATE_CUSTOM, the method fills in this structure with the exact output rate. Otherwise, this parameter is ignored. +
+
+ + + Get the rasterizer state from the rasterizer stage of the pipeline. + Microsoft Docs: + Address of a pointer to a rasterizer-state interface (see ID3D11RasterizerState) to fill with information from the device. + + + + + Represents a video processor for Microsoft Direct3D 11. + Microsoft Docs: + + + + + Set the target output buffers for the stream-output stage of the pipeline. + Microsoft Docs: + The number of buffer to bind to the device. A maximum of four output buffers can be set. If less than four are defined by the call, the remaining buffer slots are set to NULL. See Remarks. + The array of output buffers (see ID3D11Buffer) to bind to the device. The buffers must have been created with the D3D11_BIND_STREAM_OUTPUT flag. + Array of offsets to the output buffers from ppSOTargets, one offset for each buffer. The offset values must be in bytes. + + + + + Gets the ID3D11ClassLinkage object associated with the current HLSL class. + Microsoft Docs: + A pointer to a ID3D11ClassLinkage interface pointer. + + + + + Used with ID3D11On12Device::CreateWrappedResourceto override flags that would be inferred by the resource properties or heap properties, including bind flags, misc flags, and CPU access flags. + Microsoft Docs: + + + + Bind flags must be either completely inferred, or completely specified, to allow the graphics driver to scope a general D3D12 resource to something that D3D11 can understand. + + +If a bind flag is specified which is not supported by the provided resource, an error will be returned. + + +The following bind flags (D3D11_BIND_FLAG enumeration constants) will not be assumed, and must be specified in order for a resource to be used in such a fashion: + + +
    +
  • D3D11_BIND_VERTEX_BUFFER +
  • +
  • D3D11_BIND_INDEX_BUFFER +
  • +
  • D3D11_BIND_CONSTANT_BUFFER +
  • +
  • D3D11_BIND_STREAM_OUTPUT +
  • +
  • D3D11_BIND_DECODER +
  • +
  • D3D11_BIND_VIDEO_ENCODER +
  • +
+The following bind flags will be assumed based on the presence of the corresponding D3D12 resource flag, and can be removed by specifying bind flags: + + +
    +
  • D3D11_BIND_SHADER_RESOURCE, as long as D3D12_RESOURCE_MISC_DENY_SHADER_RESOURCE is not present +
  • +
  • D3D11_BIND_RENDER_TARGET, if D3D12_RESOURCE_MISC_ALLOW_RENDER_TARGET is present +
  • +
  • D3D11_BIND_DEPTH_STENCIL, if D3D12_RESOURCE_MISC_ALLOW_DEPTH_STENCIL is present +
  • +
  • D3D11_BIND_UNORDERED_ACCESS, if D3D12_RESOURCE_MISC_ALLOW_UNORDERED_ACCESS is present
  • +
+A render target or UAV buffer can be wrapped without overriding flags; but a VB/IB/CB/SO buffer must have bind flags manually specified, since these are mutually exclusive in Direct3D 11.
+
+ + If misc flags are nonzero, then any specified flags will be OR’d into the final resource desc with inferred flags. + Misc flags can be partially specified in order to add functionality, but misc flags which are implied cannot be masked out. + + +The following misc flags (D3D11_RESOURCE_MISC_FLAG enumeration constants) will not be assumed: + + +
    +
  • D3D11_RESOURCE_MISC_GENERATE_MIPS (conflicts with CLAMP). +
  • +
  • D3D11_RESOURCE_MISC_TEXTURECUBE (alters default view behavior). +
  • +
  • D3D11_RESOURCE_MISC_DRAWINDIRECT_ARGS (exclusive with some bind flags). +
  • +
  • D3D11_RESOURCE_MISC_BUFFER_ALLOW_RAW_VIEWS (exclusive with other types of UAVs). +
  • +
  • D3D11_RESOURCE_MISC_BUFFER_STRUCTURED (exclusive with other types of UAVs). +
  • +
  • D3D11_RESOURCE_MISC_RESOURCE_CLAMP (prohibits D3D10 QIs, conflicts with GENERATE_MIPS). +
  • +
  • D3D11_RESOURCE_MISC_SHARED_KEYEDMUTEX. It is possible to create a D3D11 keyed mutex resource, create a shared handle for it, and open it via 11on12 or D3D11. +
  • +
+The following misc flags will be assumed, and cannot be removed from the produced resource desc. + If one of these is set, and the D3D12 resource does not support it, creation will fail: + + +
    +
  • D3D11_RESOURCE_MISC_SHARED, D3D11_RESOURCE_MISC_SHARED_NTHANDLE, D3D11_RESOURCE_MISC_RESTRICT_SHARED_RESOURCE, if appropriate heap misc flags are present. +
  • +
  • D3D11_RESOURCE_MISC_GDI_COMPATIBLE, if D3D12 resource is GDI-compatible. +
  • +
  • D3D11_RESOURCE_MISC_TILED, if D3D12 resource was created via CreateReservedResource. +
  • +
  • D3D11_RESOURCE_MISC_TILE_POOL, if a D3D12 heap was passed in. +
  • +
+The following misc flags are invalid to specify for this API: + + +
    +
  • D3D11_RESOURCE_MISC_RESTRICTED_CONTENT, since D3D12 only supports hardware protection. +
  • +
  • D3D11_RESOURCE_MISC_RESTRICT_SHARED_RESOURCE_DRIVER does not exist in 12, and cannot be added in after resource creation. +
  • +
  • D3D11_RESOURCE_MISC_GUARDED is only meant to be set by an internal creation mechanism. +
  • +
+
+ + The CPUAccessFlags are not inferred from the D3D12 resource. + This is because all resources are treated as D3D11_USAGE_DEFAULT, so CPUAccessFlags force validation which assumes Map of default buffers or textures. + Wrapped resources do not support Map(DISCARD). + Wrapped resources do not support Map(NO_OVERWRITE), but that can be implemented by mapping the underlying D3D12 resource instead. + Issuing a Map call on a wrapped resource will synchronize with all D3D11 work submitted against that resource, unless the DO_NOT_WAIT flag was used. + + + The size of each element in the buffer structure (in bytes) when the buffer represents a structured buffer. + + + + This shader-reflection interface provides access to a constant buffer. + Microsoft Docs: + + + + + Establishes the session key for a cryptographic session. + Microsoft Docs: + A pointer to the ID3D11CryptoSession interface of the cryptographic session. + The size of the pData byte array, in bytes. + A pointer to a byte array that contains the encrypted session key. + + + + + Retrieves information about the specified step in the trace. + Microsoft Docs: + The index of the step within the trace. The range of the index is [0...NumTraceSteps-1], where NumTraceSteps is a member of the D3D11_TRACE_STATS structure. You can retrieve information about a step in any step order. + A pointer to a D3D11_TRACE_STEP structure. GetStep fills the members of this structure with information about the trace step that is specified by the stepIndex parameter. + + + + + Draw indexed, instanced, GPU-generated primitives. + Microsoft Docs: + A pointer to an ID3D11Buffer, which is a buffer containing the GPU generated primitives. + Offset in pBufferForArgs to the start of the GPU generated primitives. + + + + + Copies a region from a source resource to a destination resource. + Microsoft Docs: + A pointer to the destination resource. + Destination subresource index. + The x-coordinate of the upper-left corner of the destination region. + The y-coordinate of the upper-left corner of the destination region. For a 1D subresource, this must be zero. + The z-coordinate of the upper-left corner of the destination region. For a 1D or 2D subresource, this must be zero. + A pointer to the source resource. + Source subresource index. + A pointer to a 3D box that defines the region of the source subresource that CopySubresourceRegion1 can copy. If NULL, CopySubresourceRegion1 copies the entire source subresource. The box must fit within the source resource. + +An empty box results in a no-op. A box is empty if the top value is greater than or equal to the bottom value, or the left value is greater than or equal to the right value, or the front value is greater than or equal to the back value. When the box is empty, CopySubresourceRegion1 doesn't perform a copy operation. + A D3D11_COPY_FLAGS-typed value that specifies how to perform the copy operation. If you specify zero for no copy option, CopySubresourceRegion1 behaves like ID3D11DeviceContext::CopySubresourceRegion. For existing display drivers that can't process these flags, the runtime doesn't use them. + + + + + Set a message category to break on when a message with that category passes through the storage filter. + Microsoft Docs: + Message category to break on (see D3D11_MESSAGE_CATEGORY). + Turns this breaking condition on or off (true for on, false for off). + + + + + Get the vertex shader currently set on the device. + Microsoft Docs: + Address of a pointer to a vertex shader (see ID3D11VertexShader) to be returned by the method. + Pointer to an array of class instance interfaces (see ID3D11ClassInstance). + The number of class-instance elements in the array. + + + + + Get the constant buffers used by the geometry shader pipeline stage. + Microsoft Docs: + Index into the device's zero-based array to begin retrieving constant buffers from (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1). + Number of buffers to retrieve (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot). + Array of constant buffer interface pointers (see ID3D11Buffer) to be returned by the method. + + + + + Unordered resource support options for a compute shader resource (see ID3D11Device::CheckFeatureSupport). + Microsoft Docs: + + + + Format supports atomic add. + + + Format supports atomic bitwise operations. + + + Format supports atomic compare with store or exchange. + + + Format supports atomic exchange. + + + Format supports atomic min and max. + + + Format supports atomic unsigned min and max. + + + Format supports a typed load. + + + Format supports a typed store. + + + Format supports logic operations in blend state. + +Direct3D 11:  This value is not supported until Direct3D 11.1. + + + Format supports tiled resources. + +Direct3D 11:  This value is not supported until Direct3D 11.2. + + + Format supports shareable resources. +
Note  DXGI_FORMAT_R8G8B8A8_UNORM and DXGI_FORMAT_R8G8B8A8_UNORM_SRGB are never shareable when using feature level 9, even if the device indicates optional feature support for D3D11_FORMAT_SUPPORT_SHAREABLE. + Attempting to create shared resources with DXGI formats DXGI_FORMAT_R8G8B8A8_UNORM and DXGI_FORMAT_R8G8B8A8_UNORM_SRGB will always fail unless the feature level is 10_0 or higher. +
+
 
+ + +Direct3D 11:  This value is not supported until Direct3D 11.2.
+
+ + Format supports multi-plane overlays. + + + + Sets an array of views for an unordered resource. + Microsoft Docs: + Index of the first element in the zero-based array to begin setting (ranges from 0 to D3D11_1_UAV_SLOT_COUNT - 1). D3D11_1_UAV_SLOT_COUNT is defined as 64. + Number of views to set (ranges from 0 to D3D11_1_UAV_SLOT_COUNT - StartSlot). + A pointer to an array of ID3D11UnorderedAccessView pointers to be set by the method. + An array of append and consume buffer offsets. A value of -1 indicates to keep the current offset. Any other values set the hidden counter + for that appendable and consumable UAV. pUAVInitialCounts is only relevant for UAVs that were created with either + D3D11_BUFFER_UAV_FLAG_APPEND or D3D11_BUFFER_UAV_FLAG_COUNTER specified + when the UAV was created; otherwise, the argument is ignored. + + + + + Mark the beginning of a series of commands. + Microsoft Docs: + A pointer to an ID3D11Asynchronous interface. + + + + + Sets the input signature of the function-linking-graph. + Microsoft Docs: + An array of D3D11_PARAMETER_DESC structures for the parameters of the input signature. + The number of input parameters in the pInputParameters array. + A pointer to a variable that receives a pointer to the ID3D11LinkingNode interface that represents the input signature of the function-linking-graph. + + + + + Describes an instance of a geometry shader to trace. + Microsoft Docs: + + + + The invocation number of the instance of the geometry shader. + + + + Description of a vertex element in a vertex buffer in an output slot. + Microsoft Docs: + + + + Zero-based, stream number. + + + Type of output element; possible values include: "POSITION", "NORMAL", or "TEXCOORD0". + Note that if SemanticName is NULL then + ComponentCount can be greater than 4 and the described entry will be a gap in the stream out where no data will be written. + + + Output element's zero-based index. Should be used if, for example, you have more than one texture coordinate stored in each vertex. + + + Which component of the entry to begin writing out to. Valid values are 0 to 3. For example, if you only wish to output to the y and z components + of a position, then StartComponent should be 1 and ComponentCount should be 2. + + + The number of components of the entry to write out to. Valid values are 1 to 4. For example, if you only wish to output to the y and z components + of a position, then StartComponent should be 1 and ComponentCount should be 2. Note that if SemanticName is NULL then + ComponentCount can be greater than 4 and the described entry will be a gap in the stream out where no data will be written. + + + The associated stream output buffer that is bound to the pipeline + (see ID3D11DeviceContext::SOSetTargets). + The valid range for OutputSlot is 0 to 3. + + + + Sets the constant buffers that the hull-shader stage of the pipeline uses. + Microsoft Docs: + Index into the device's zero-based array to begin setting constant buffers to (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1). + Number of buffers to set (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot). + Array of constant buffers being given to the device. + An array that holds the offsets into the buffers that ppConstantBuffers specifies. Each offset specifies where, from the shader's point of view, each constant buffer starts. Each offset is measured in shader constants, which are 16 bytes (4*32-bit components). Therefore, an offset of 16 indicates that the start of the associated constant buffer is 256 bytes into the constant buffer. Each offset must be a multiple of 16 constants. + An array that holds the numbers of constants in the buffers that ppConstantBuffers specifies. Each number specifies the number of constants that are contained in the constant buffer that the shader uses. Each number of constants starts from its respective offset that is specified in the pFirstConstant array. Each number of constants must be a multiple of 16 constants, in the range [0..4096]. + + + + + The device context interface represents a device context; it is used to render commands. ID3D11DeviceContext1 adds new methods to those in ID3D11DeviceContext. + Microsoft Docs: + + + + + A buffer interface accesses a buffer resource, which is unstructured memory. Buffers typically store vertex or index data. + Microsoft Docs: + + + + + Creates a deferred context, which can record command lists. + Microsoft Docs: + Reserved for future use. Pass 0. + Upon completion of the method, the passed pointer to an ID3D11DeviceContext3 interface pointer is initialized. + + + + + Describes a shader variable. + Microsoft Docs: + + + + The variable name. + + + Offset from the start of the parent structure to the beginning of the variable. + + + Size of the variable (in bytes). + + + A combination of D3D_SHADER_VARIABLE_FLAGS-typed values that are combined by using a bitwise OR operation. The resulting value identifies shader-variable properties. + + + The default value for initializing the variable. + + + Offset from the start of the variable to the beginning of the texture. + + + The size of the texture, in bytes. + + + Offset from the start of the variable to the beginning of the sampler. + + + The size of the sampler, in bytes. + + + + Specifies how to access a resource that is used in a video processor output view. + Microsoft Docs: + + + + Not a valid value. + + + The resource will be accessed as a 2D texture. + + + The resource will be accessed as an array of 2D textures. + + + + Defines constants that specify TBD. + Microsoft Docs: + + + + Specifies the support available when [D3D11_FEATURE_DATA_D3D11_OPTIONS::ExtendedResourceSharing](./ns-d3d11-d3d11_feature_data_d3d11_options.md) is FALSE. + + + Specifies the support available when [D3D11_FEATURE_DATA_D3D11_OPTIONS::ExtendedResourceSharing](./ns-d3d11-d3d11_feature_data_d3d11_options.md) is TRUE. + + + Specifies the support available when [D3D11_FEATURE_DATA_D3D11_OPTIONS4::ExtendedNV12SharedTextureSupported](../d3d11_4/ns-d3d11_4-d3d11_feature_data_d3d11_options4.md) is TRUE. Also see [Extended NV12 texture support](/windows/win32/direct3d11/direct3d-11-4-features#extended-nv12-texture-support). + + + Specifies that DXGI_FORMAT_R11G11B10_FLOAT supports NT handle sharing. Also see CreateSharedHandle. + + + + Clears the depth-stencil resource. + Microsoft Docs: + Pointer to the depth stencil to be cleared. + Identify the type of data to clear (see D3D11_CLEAR_FLAG). + Clear the depth buffer with this value. This value will be clamped between 0 and 1. + Clear the stencil buffer with this value. + + + + + Contains the response to a D3D11_AUTHENTICATED_QUERY_PROTECTION query. + Microsoft Docs: + + + + A D3D11_AUTHENTICATED_QUERY_OUTPUT structure that contains a Message Authentication Code (MAC) and other data. + + + A D3D11_AUTHENTICATED_PROTECTION_FLAGS union that specifies the protection level. + + + + This interface encapsulates methods for querying information from the GPU. + Microsoft Docs: + Pointer to a query description (see D3D11_QUERY_DESC). + Address of a pointer to the query object created (see ID3D11Query). + + + + + Gets the constant buffers that the domain-shader stage uses. + Microsoft Docs: + Index into the device's zero-based array to begin retrieving constant buffers from (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1). + Number of buffers to retrieve (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot). + Array of constant buffer interface pointers to be returned by the method. + A pointer to an array that receives the offsets into the buffers that ppConstantBuffers specifies. Each offset specifies where, from the shader's point of view, each constant buffer starts. Each offset is measured in shader constants, which are 16 bytes (4*32-bit components). Therefore, an offset of 2 indicates that the start of the associated constant buffer is 32 bytes into the constant buffer. The runtime sets pFirstConstant to NULL if the buffers do not have offsets. + A pointer to an array that receives the numbers of constants in the buffers that ppConstantBuffers specifies. Each number specifies the number of constants that are contained in the constant buffer that the shader uses. Each number of constants starts from its respective offset that is specified in the pFirstConstant array. The runtime sets pNumConstants to NULL if it doesn't specify the numbers of constants in each buffer. + + + + + A pixel-shader interface manages an executable program (a pixel shader) that controls the pixel-shader stage. + Microsoft Docs: + + + + + Gets the initialization flags associated with the deferred context that created the command list. + Microsoft Docs: + + + + + Sets the minimum level-of-detail (LOD) for a resource. + Microsoft Docs: + A pointer to an ID3D11Resource that represents the resource. + The level-of-detail, which ranges between 0 and the maximum number of mipmap levels of the resource. For example, the maximum number of mipmap levels of a 1D texture is specified in the MipLevels member of the D3D11_TEXTURE1D_DESC structure. + + + + + Describes the blend state for a render target. + Microsoft Docs: + + + + Enable (or disable) blending. + + + This blend option specifies the operation to perform on the RGB value that the pixel shader outputs. The BlendOp member defines how to combine the SrcBlend and DestBlend operations. + + + This blend option specifies the operation to perform on the current RGB value in the render target. The BlendOp member defines how to combine the SrcBlend and DestBlend operations. + + + This blend operation defines how to combine the SrcBlend and DestBlend operations. + + + This blend option specifies the operation to perform on the alpha value that the pixel shader outputs. Blend options that end in _COLOR are not allowed. The BlendOpAlpha member defines how to combine the SrcBlendAlpha and DestBlendAlpha operations. + + + This blend option specifies the operation to perform on the current alpha value in the render target. Blend options that end in _COLOR are not allowed. The BlendOpAlpha member defines how to combine the SrcBlendAlpha and DestBlendAlpha operations. + + + This blend operation defines how to combine the SrcBlendAlpha and DestBlendAlpha operations. + + + A write mask. + + + + Specifies the inverse telecine (IVTC) capabilities of a video processor. + Microsoft Docs: + + + + The video processor can reverse 3:2 pulldown. + + + The video processor can reverse 2:2 pulldown. + + + The video processor can reverse 2:2:2:4 pulldown. + + + The video processor can reverse 2:3:3:2 pulldown. + + + The video processor can reverse 3:2:3:2:2 pulldown. + + + The video processor can reverse 5:5 pulldown. + + + The video processor can reverse 6:4 pulldown. + + + The video processor can reverse 8:7 pulldown. + + + The video processor can reverse 2:2:2:2:2:2:2:2:2:2:2:3 pulldown. + + + The video processor can reverse other telecine modes not listed here. + + + + Specifies the video rotation states. + Microsoft Docs: + + + + The video is not rotated. + + + The video is rotated 90 degrees clockwise. + + + The video is rotated 180 degrees clockwise. + + + The video is rotated 270 degrees clockwise. + + + + Specifies flags that indicate the most efficient methods for performing video processing operations. + Microsoft Docs: + + + + Multi-plane overlay hardware can perform the rotation operation more efficiently than the ID3D11VideoContext::VideoProcessorBlt method. + + + Multi-plane overlay hardware can perform the scaling operation more efficiently than the ID3D11VideoContext::VideoProcessorBlt method. + + + Multi-plane overlay hardware can perform the colorspace conversion operation more efficiently than the ID3D11VideoContext::VideoProcessorBlt method. + + + The video processor output data should be at least triple buffered for optimal performance. + + + + Sets the reference rasterizer's default race-condition tracking options for the specified resource types. + Microsoft Docs: + A D3D11_SHADER_TRACKING_RESOURCE_TYPE-typed value that specifies the type of resource to track. + A combination of D3D11_SHADER_TRACKING_OPTIONS-typed flags that are combined by using a bitwise OR operation. The resulting value identifies tracking options. If a flag is present, the tracking option that the flag represents is set to "on," otherwise the tracking option is set to "off." + + + + + Describes Direct3D 11.4 feature options in the current graphics driver. + Microsoft Docs: + + + + Specifies a BOOL that determines if NV12 textures can be shared across processes and D3D devices. + + + + Set a message identifier to break on when a message with that identifier passes through the storage filter. + Microsoft Docs: + Message identifier to break on (see D3D11_MESSAGE_ID). + Turns this breaking condition on or off (true for on, false for off). + + + + + Specifies values for the luminance range of YUV data. + Microsoft Docs: + + + + Driver defaults are used, which should be Studio luminance range [16-235], + + + Studio luminance range [16-235] + + + Full luminance range [0-255] + + + + Get the properties of the texture resource. + Microsoft Docs: + Pointer to a resource description (see D3D11_TEXTURE1D_DESC). + + + + + Get application-defined data from a device child. + Microsoft Docs: + Guid associated with the data. + A pointer to a variable that on input contains the size, in bytes, of the buffer that pData points to, and on output contains the size, in bytes, of the amount of data that + GetPrivateDataretrieved. + A pointer to a buffer that + GetPrivateDatafills with data from the device child if pDataSize points to a value that specifies a buffer large enough to hold the data. + + + + + Specifies fence options. + Microsoft Docs: + + + + No options are specified. + + + The fence is shared. + + + The fence is shared with another GPU adapter. + + + + Identifies options for resources. + Microsoft Docs: + + + + Enables MIP map generation by using ID3D11DeviceContext::GenerateMips on a texture resource. The resource must be created with the bind flags that specify that the resource is a render target and a shader resource. + + + Enables resource data sharing between two or more Direct3D devices. The only resources that can be shared are 2D non-mipmapped textures. + + +D3D11_RESOURCE_MISC_SHARED and D3D11_RESOURCE_MISC_SHARED_KEYEDMUTEX are mutually exclusive. + + +WARP and REF devices do not support shared resources. + If you try to create a resource with this flag on either a WARP or REF device, the create method will return an E_OUTOFMEMORY error code. + + +
Note  Starting with Windows 8, WARP devices fully support shared resources. +
+
 
+
Note  Starting with Windows 8, we recommend that you enable resource data sharing between two or more Direct3D devices by using a combination of the D3D11_RESOURCE_MISC_SHARED_NTHANDLE and D3D11_RESOURCE_MISC_SHARED_KEYEDMUTEX flags instead. +
+
 
+
+ + Sets a resource to be a cube texture created from a Texture2DArray that contains 6 textures. + + + Enables instancing of GPU-generated content. + + + Enables a resource as a byte address buffer. + + + Enables a resource as a structured buffer. + + + Enables a resource with MIP map clamping for use with ID3D11DeviceContext::SetResourceMinLOD. + + + Enables the resource to be synchronized by using the IDXGIKeyedMutex::AcquireSync and + IDXGIKeyedMutex::ReleaseSync APIs. + The following Direct3D 11 resource creation APIs, that take D3D11_RESOURCE_MISC_FLAG parameters, have been extended to support the new flag. + + +If you call any of these methods with the D3D11_RESOURCE_MISC_SHARED_KEYEDMUTEX flag set, the interface returned will support the IDXGIKeyedMutex interface. You can retrieve a pointer to the IDXGIKeyedMutex interface from the resource by using IUnknown::QueryInterface. The IDXGIKeyedMutex interface implements the IDXGIKeyedMutex::AcquireSync and IDXGIKeyedMutex::ReleaseSync APIs to synchronize access to the surface. The device that creates the surface, and any other device that opens the surface by using OpenSharedResource, must call IDXGIKeyedMutex::AcquireSync before they issue any rendering commands to the surface. When those devices finish rendering, they must call IDXGIKeyedMutex::ReleaseSync. + + +D3D11_RESOURCE_MISC_SHARED and D3D11_RESOURCE_MISC_SHARED_KEYEDMUTEX are mutually exclusive. + + +WARP and REF devices do not support shared resources. + If you try to create a resource with this flag on either a WARP or REF device, the create method will return an E_OUTOFMEMORY error code. + + +
Note  Starting with Windows 8, WARP devices fully support shared resources. +
+
 
+
+ + Enables a resource compatible with GDI. You must set the D3D11_RESOURCE_MISC_GDI_COMPATIBLE flag on surfaces that you use with GDI. Setting the D3D11_RESOURCE_MISC_GDI_COMPATIBLE flag allows GDI rendering on the surface via IDXGISurface1::GetDC. + + +Consider the following programming tips for using D3D11_RESOURCE_MISC_GDI_COMPATIBLE when you create a texture or use that texture in a swap chain: + +
    +
  • D3D11_RESOURCE_MISC_SHARED_KEYEDMUTEX and D3D11_RESOURCE_MISC_GDI_COMPATIBLE are mutually exclusive. Therefore, do not use them together.
  • +
  • D3D11_RESOURCE_MISC_RESOURCE_CLAMP and D3D11_RESOURCE_MISC_GDI_COMPATIBLE are mutually exclusive. Therefore, do not use them together.
  • +
  • You must bind the texture as a render target for the output-merger stage. For example, set the D3D11_BIND_RENDER_TARGET flag in the BindFlags member of the D3D11_TEXTURE2D_DESC structure. +
  • +
  • You must set the maximum number of MIP map levels to 1. For example, set the MipLevels member of the D3D11_TEXTURE2D_DESC structure to 1. +
  • +
  • You must specify that the texture requires read and write access by the GPU. For example, set the Usage member of the D3D11_TEXTURE2D_DESC structure to D3D11_USAGE_DEFAULT. +
  • +
  • +You must set the texture format to one of the following types. + +
      +
    • DXGI_FORMAT_B8G8R8A8_UNORM
    • +
    • DXGI_FORMAT_B8G8R8A8_TYPELESS
    • +
    • DXGI_FORMAT_B8G8R8A8_UNORM_SRGB
    • +
    For example, set the Format member of the D3D11_TEXTURE2D_DESC structure to one of these types. +
  • +
  • You cannot use D3D11_RESOURCE_MISC_GDI_COMPATIBLE with multisampling. Therefore, set the Count member of the DXGI_SAMPLE_DESC structure to 1. Then, set the SampleDesc member of the D3D11_TEXTURE2D_DESC structure to this DXGI_SAMPLE_DESC structure. +
  • +
+
+ + Set this flag to enable the use of NT HANDLE values when you create a shared resource. By enabling this flag, you deprecate the use of existing HANDLE values. + +The value specifies a new shared resource type that directs the runtime to use NT HANDLE values for the shared resource. The runtime then must confirm that the shared resource works on all hardware at the specified feature level. + + +Without this flag set, the runtime does not strictly validate shared resource parameters (that is, formats, flags, usage, and so on). When the runtime does not validate shared resource parameters, behavior of much of the Direct3D API might be undefined and might vary from driver to driver. + +Direct3D 11 and earlier:  This value is not supported until Direct3D 11.1. + + + Set this flag to indicate that the resource might contain protected content; therefore, the operating system should use the resource only when the driver and hardware support content protection. If the driver and hardware do not support content protection and you try to create a resource with this flag, the resource creation fails. + +Direct3D 11:  This value is not supported until Direct3D 11.1. + + + Set this flag to indicate that the operating system restricts access to the shared surface. You can use this flag together with the D3D11_RESOURCE_MISC_RESTRICT_SHARED_RESOURCE_DRIVER flag and only when you create a shared surface. The process that creates the shared resource can always open the shared resource. + +Direct3D 11:  This value is not supported until Direct3D 11.1. + + + Set this flag to indicate that the driver restricts access to the shared surface. You can use this flag in conjunction with the D3D11_RESOURCE_MISC_RESTRICT_SHARED_RESOURCE flag and only when you create a shared surface. The process that creates the shared resource can always open the shared resource. + +Direct3D 11:  This value is not supported until Direct3D 11.1. + + + Set this flag to indicate that the resource is guarded. Such a resource is returned by the IDCompositionSurface::BeginDraw (DirectComposition) and ISurfaceImageSourceNative::BeginDraw (Windows Runtime) APIs. For these APIs, you provide a region of interest (ROI) on a surface to update. This surface isn't compatible with multiple render targets (MRT). + +A guarded resource automatically restricts all writes to the region that is related to one of the preceding APIs. Additionally, the resource enforces access to the ROI with these restrictions: + + +Direct3D 11:  This value is not supported until Direct3D 11.1. + + + Set this flag to indicate that the resource is a tile pool. + +Direct3D 11:  This value is not supported until Direct3D 11.2. + + + Set this flag to indicate that the resource is a tiled resource. + +Direct3D 11:  This value is not supported until Direct3D 11.2. + + + Set this flag to indicate that the resource should be created such that it will be protected by the hardware. Resource creation will fail if hardware content protection is not supported. + +This flag has the following restrictions: + +
    +
  • This flag cannot be used with the following D3D11_USAGE values:
      +
    • D3D11_USAGE_DYNAMIC
    • +
    • D3D11_USAGE_STAGING
    • +
    +
  • +
  • This flag cannot be used with the following D3D11_BIND_FLAG values.
      +
    • D3D11_BIND_VERTEX_BUFFER
    • +
    • D3D11_BIND_INDEX_BUFFER
    • +
    +
  • +
  • No CPU access flags can be specified.
  • +
+
Note  

Creating a texture using this flag does not automatically guarantee that hardware protection will be enabled for the underlying allocation. Some implementations require that the DRM components are first initialized prior to any guarantees of protection.

+ +
+
 
+Note  This enumeration value is supported starting with Windows 10.
+
+ + + These flags identify the type of resource that will be viewed as a render target. + Microsoft Docs: + + + + Do not use this value, as it will cause ID3D11Device::CreateRenderTargetView to fail. + + + The resource will be accessed as a buffer. + + + The resource will be accessed as a 1D texture. + + + The resource will be accessed as an array of 1D textures. + + + The resource will be accessed as a 2D texture. + + + The resource will be accessed as an array of 2D textures. + + + The resource will be accessed as a 2D texture with multisampling. + + + The resource will be accessed as an array of 2D textures with multisampling. + + + The resource will be accessed as a 3D texture. + + + + Queues commands from a command list onto a device. + Microsoft Docs: + A pointer to an ID3D11CommandList interface that encapsulates a command list. + A Boolean flag that determines whether the target context state is saved prior to and restored after the execution of a command list. Use TRUE to indicate that the runtime needs to save and restore the state. Use FALSE to indicate that no state shall be saved or restored, which causes the target context to return to its default state after the command list executes. Applications should typically use FALSE unless they will restore the state to be nearly equivalent to the state that the runtime would restore if TRUE were passed. When applications use FALSE, they can avoid unnecessary and inefficient state transitions. + + + + + Contains input data for a D3D11_AUTHENTICATED_QUERY_OUTPUT_ID query. + Microsoft Docs: + + + + A D3D11_AUTHENTICATED_QUERY_INPUT structure that contains the GUID for the query and other data. + + + A handle to the device. + + + A handle to the cryptographic session. + + + The index of the output ID. + + + + Copies tiles from buffer to tiled resource or vice versa. + Microsoft Docs: + A pointer to a tiled resource. + A pointer to a D3D11_TILED_RESOURCE_COORDINATE structure that describes the starting coordinates of the tiled resource. + A pointer to a D3D11_TILE_REGION_SIZE structure that describes the size of the tiled region. + A pointer to an ID3D11Buffer that represents a default, dynamic, or staging buffer. + The offset in bytes into the buffer at pBuffer to start the operation. + A combination of D3D11_TILE_COPY_FLAG-typed values that are combined by using a bitwise OR operation and that identifies how to copy tiles. + + + + + Sets the destination rectangle for an input stream on the video processor. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. To get this pointer, call ID3D11VideoDevice::CreateVideoProcessor. + The zero-based index of the input stream. To get the maximum number of streams, call ID3D11VideoProcessorEnumerator::GetVideoProcessorCaps and check the MaxStreamStates structure member. + Specifies whether to apply the destination rectangle. + A pointer to a RECT structure that specifies the destination rectangle. If Enable is FALSE, this parameter is ignored. + + + + + Get the pixel shader resources. + Microsoft Docs: + Index into the device's zero-based array to begin getting shader resources from (ranges from 0 to D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1). + The number of resources to get from the device. Up to a maximum of 128 slots are available for shader resources (ranges from 0 to D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot). + Array of shader resource view interfaces to be returned by the device. + + + + + Updates tiles by copying from app memory to the tiled resource. + Microsoft Docs: + A pointer to a tiled resource to update. + A pointer to a D3D11_TILED_RESOURCE_COORDINATE structure that describes the starting coordinates of the tiled resource. + A pointer to a D3D11_TILE_REGION_SIZE structure that describes the size of the tiled region. + A pointer to memory that contains the source tile data that UpdateTiles uses to update the tiled resource. + A combination of D3D11_TILE_COPY_FLAG-typed values that are combined by using a bitwise OR operation. The only valid value is D3D11_TILE_COPY_NO_OVERWRITE. + The other values aren't meaningful here, though +by definition the D3D11_TILE_COPY_LINEAR_BUFFER_TO_SWIZZLED_TILED_RESOURCE value is basically what UpdateTiles does, but sources from app memory. + + + + + Describes the subresources from a resource that are accessible using an unordered-access view. + Microsoft Docs: + + + + A DXGI_FORMAT-typed value that specifies the data format. + + + A D3D11_UAV_DIMENSION-typed value that specifies the resource type of the view. This type is the same as the resource type of the underlying resource. This member also determines which _UAV to use in the union below. + + + A D3D11_BUFFER_UAV structure that specifies which buffer elements can be accessed. + + + A D3D11_TEX1D_UAV structure that specifies the subresources in a 1D texture that can be accessed. + + + A D3D11_TEX1D_ARRAY_UAV structure that specifies the subresources in a 1D texture array that can be accessed. + + + A D3D11_TEX2D_UAV1 structure that specifies the subresources in a 2D texture that can be accessed. + + + A D3D11_TEX2D_ARRAY_UAV1 structure that specifies the subresources in a 2D texture array that can be accessed. + + + A D3D11_TEX3D_UAV structure that specifies subresources in a 3D texture that can be accessed. + + + + Get an input-parameter description for a shader. + Microsoft Docs: + A zero-based parameter index. + A pointer to a shader-input-signature description. See D3D11_SIGNATURE_PARAMETER_DESC. + + + + + Describes the tile structure of a tiled resource with mipmaps. + Microsoft Docs: + + + + Number of standard mipmaps in the tiled resource. + + + Number of packed mipmaps in the tiled resource. + +This number starts from the least detailed mipmap (either sharing tiles or using non standard tile layout). This number is 0 if no +such packing is in the resource. For array surfaces, this value is the number of mipmaps that are packed for a given array slice where each array slice repeats the same +packing. + + +On Tier_2 tiled resources hardware, mipmaps that fill at least one standard shaped tile in all dimensions +are not allowed to be included in the set of packed mipmaps. On Tier_1 hardware, mipmaps that are an integer multiple of one standard shaped tile in all dimensions are not allowed to be included in the set of packed mipmaps. Mipmaps with at least one +dimension less than the standard tile shape may or may not be packed. When a given mipmap needs to be packed, all coarser +mipmaps for a given array slice are considered packed as well. + + + Number of tiles for the packed mipmaps in the tiled resource. + +If there is no packing, this value is meaningless and is set to 0. +Otherwise, it is set to the number of tiles +that are needed to represent the set of packed mipmaps. +The pixel layout within the packed mipmaps is hardware specific. +If apps define only partial mappings for the set of tiles in packed mipmaps, read and write behavior is vendor specific and undefined. +For arrays, this value is only the count of packed mipmaps within +the subresources for each array slice. + + + Offset of the first packed tile for the resource +in the overall range of tiles. If NumPackedMips is 0, this +value is meaningless and is 0. Otherwise, it is the +offset of the first packed tile for the resource in the overall +range of tiles for the resource. A value of 0 for +StartTileIndexInOverallResource means the entire resource is packed. +For array surfaces, this is the offset for the tiles that contain the packed +mipmaps for the first array slice. Packed mipmaps for each array slice in arrayed surfaces are at this offset +past the beginning of the tiles for each array slice. + +
Note  The +number of overall tiles, packed or not, for a given array slice is +simply the total number of tiles for the resource divided by the +resource's array size, so it is easy to locate the range of tiles for +any given array slice, out of which StartTileIndexInOverallResource identifies +which of those are packed.
+
 
+
+ + + Sets the rate at which the video processor produces output frames for an input stream. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. To get this pointer, call ID3D11VideoDevice::CreateVideoProcessor. + The zero-based index of the input stream. To get the maximum number of streams, call ID3D11VideoProcessorEnumerator::GetVideoProcessorCaps and check the MaxStreamStates structure member. + The output rate, specified as a D3D11_VIDEO_PROCESSOR_OUTPUT_RATE value. + Specifies how the driver performs frame-rate conversion, if required. + + + + + + + + + + + + + + +
ValueMeaning
+
TRUE
+
+
+Repeat frames. + +
+
FALSE
+
+
+Interpolate frames. + +
+ A pointer to a DXGI_RATIONAL structure. If OutputRate is D3D11_VIDEO_PROCESSOR_OUTPUT_RATE_CUSTOM, this parameter specifies the exact output rate. Otherwise, this parameter is ignored and can be NULL. +
+
+ + + Clear all messages from the message queue. + Microsoft Docs: + + + + + Sets the constant buffers that the vertex shader pipeline stage uses. + Microsoft Docs: + Index into the device's zero-based array to begin setting constant buffers to (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1). + Number of buffers to set (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot). + Array of constant buffers being given to the device. + An array that holds the offsets into the buffers that ppConstantBuffers specifies. Each offset specifies where, from the shader's point of view, each constant buffer starts. Each offset is measured in shader constants, which are 16 bytes (4*32-bit components). Therefore, an offset of 16 indicates that the start of the associated constant buffer is 256 bytes into the constant buffer. Each offset must be a multiple of 16 constants. + An array that holds the numbers of constants in the buffers that ppConstantBuffers specifies. Each number specifies the number of constants that are contained in the constant buffer that the shader uses. Each number of constants starts from its respective offset that is specified in the pFirstConstant array. Each number of constants must be a multiple of 16 constants, in the range [0..4096]. + + + + + Copies data into a D3D11_USAGE_DEFAULTtexture which was mapped using ID3D11DeviceContext3::Mapwhile providing a NULL D3D11_MAPPED_SUBRESOURCEparameter. + Microsoft Docs: + A pointer to the destination resource (an + ID3D11Resource). + A zero-based index, that identifies the destination subresource. + For more details, see + D3D11CalcSubresource. + A pointer to a box that defines the portion of the destination subresource to copy the resource data into. + If NULL, the data is written to the destination subresource with no offset. + The dimensions of the source must fit the destination (see + D3D11_BOX). + + +An empty box results in a no-op. + A box is empty if the top value is greater than or equal to the bottom value, or the left value is greater than or equal to the right value, or the front value is greater than or equal to the back value. + When the box is empty, this method doesn't perform any operation. + A pointer to the source data in memory. + The size of one row of the source data. + The size of one depth slice of source data. + + + + + Sets the pixel aspect ratio for an input stream on the video processor. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. To get this pointer, call ID3D11VideoDevice::CreateVideoProcessor. + The zero-based index of the input stream. To get the maximum number of streams, call ID3D11VideoProcessorEnumerator::GetVideoProcessorCaps and check the MaxStreamStates structure member. + Specifies whether the pSourceAspectRatio and pDestinationAspectRatio parameters contain valid values. Otherwise, the pixel aspect ratios are unspecified. + A pointer to a DXGI_RATIONAL structure that contains the pixel aspect ratio of the source rectangle. If Enable is FALSE, this parameter can be NULL. + A pointer to a DXGI_RATIONAL structure that contains the pixel aspect ratio of the destination rectangle. If Enable is FALSE, this parameter can be NULL. + + + + + Set data to a device and associate that data with a guid. + Microsoft Docs: + Guid associated with the data. + Size of the data. + Pointer to the data to be stored with this device. If pData is NULL, DataSize must also be 0, and any data previously associated with the guid will be destroyed. + + + + + A hull-shader interface manages an executable program (a hull shader) that controls the hull-shader stage. + Microsoft Docs: + + + + + Gets the current background color for the video processor. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. To get this pointer, call ID3D11VideoDevice::CreateVideoProcessor. + Receives the value TRUE if the background color is a YCbCr color, or FALSE if the background color is an RGB color. + A pointer to a D3D11_VIDEO_COLOR structure. The method fills in the structure with the background color. + + + + + Get the vertex buffers bound to the input-assembler stage. + Microsoft Docs: + The input slot of the first vertex buffer to get. The first vertex buffer is explicitly bound to the start slot; this causes each additional vertex buffer in the array to be implicitly bound to each subsequent input slot. The maximum of 16 or 32 input slots (ranges from 0 to D3D11_IA_VERTEX_INPUT_RESOURCE_SLOT_COUNT - 1) are available; the maximum number of input slots depends on the feature level. + The number of vertex buffers to get starting at the offset. The number of buffers (plus the starting slot) cannot exceed the total number of IA-stage input slots. + A pointer to an array of vertex buffers returned by the method (see ID3D11Buffer). + Pointer to an array of stride values returned by the method; one stride value for each buffer in the vertex-buffer array. Each stride value is the size (in bytes) of the elements that are to be used from that vertex buffer. + Pointer to an array of offset values returned by the method; one offset value for each buffer in the vertex-buffer array. Each offset is the number of bytes between the first element of a vertex buffer and the first element that will be used. + + + + + Specifies a data access ordering constraint between multiple tiled resources. + Microsoft Docs: + A pointer to an ID3D11Resource or ID3D11View for a resource that was created with the D3D11_RESOURCE_MISC_TILED flag. Access operations on this object must complete before the access operations on the object that pTiledResourceOrViewAccessAfterBarrier specifies. + A pointer to an ID3D11Resource or ID3D11View for a resource that was created with the D3D11_RESOURCE_MISC_TILED flag. Access operations on this object must begin after the access operations on the object that pTiledResourceOrViewAccessBeforeBarrier specifies. + + + + + Set an array of sampler states to the pixel shader pipeline stage. + Microsoft Docs: + Index into the device's zero-based array to begin setting samplers to (ranges from 0 to D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - 1). + Number of samplers in the array. Each pipeline stage has a total of 16 sampler slots available (ranges from 0 to D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot). + Pointer to an array of sampler-state interfaces (see ID3D11SamplerState). See Remarks. + + + + + Copies mappings from a source tiled resource to a destination tiled resource. + Microsoft Docs: + A pointer to the destination tiled resource. + A pointer to a D3D11_TILED_RESOURCE_COORDINATE structure that describes the starting coordinates of the destination tiled resource. + A pointer to the source tiled resource. + A pointer to a D3D11_TILED_RESOURCE_COORDINATE structure that describes the starting coordinates of the source tiled resource. + A pointer to a D3D11_TILE_REGION_SIZE structure that describes the size of the tiled region. + A combination of D3D11_TILE_MAPPING_FLAGS values that are combined by using a bitwise OR operation. The only valid value is D3D11_TILE_MAPPING_NO_OVERWRITE, which indicates that previously submitted commands to the device that may still be executing do not reference any of the tile region being updated. The device can then avoid having to flush previously submitted work to perform the tile mapping update. If the app violates this promise by updating tile mappings for locations in tiled resources that are still being referenced by outstanding commands, undefined rendering behavior results, including the potential for significant slowdowns on some architectures. This is like the "no overwrite" concept that exists elsewhere in the Direct3D API, except applied to the tile mapping data structure itself (which in hardware is a page table). The absence of the D3D11_TILE_MAPPING_NO_OVERWRITE value requires that tile mapping updates that CopyTileMappings specifies must be completed before any subsequent Direct3D command can proceed. + + + + + A function-linking-graph interface is used for constructing shaders that consist of a sequence of precompiled function calls that pass values to each other. + Microsoft Docs: + + + + + Get an array of sampler state interfaces from the hull-shader stage. + Microsoft Docs: + Index into a zero-based array to begin getting samplers from (ranges from 0 to D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - 1). + Number of samplers to get from a device context. Each pipeline stage has a total of 16 sampler slots available (ranges from 0 to D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot). + Pointer to an array of sampler-state interfaces (see ID3D11SamplerState). + + + + + Gets private state data from the video processor. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. To get this pointer, call ID3D11VideoDevice::CreateVideoProcessor. + A pointer to a GUID that identifies the state. The meaning of this GUID is defined by the graphics driver. + The size of the pData buffer, in bytes. + A pointer to a buffer that receives the private state data. + + + + + Specifies a type of compressed buffer for decoding. + Microsoft Docs: + + + + Picture decoding parameter buffer. + + + Macroblock control command buffer. + + + Residual difference block data buffer. + + + Deblocking filter control command buffer. + + + Inverse quantization matrix buffer. + + + Slice-control buffer. + + + Bitstream data buffer. + + + Motion vector buffer. + + + Film grain synthesis data buffer. + + + + Get a description of the resource. + Microsoft Docs: + Pointer to a resource description (see D3D11_UNORDERED_ACCESS_VIEW_DESC.) + + + + + Specifies the intended use for a video processor. + Microsoft Docs: + + + + Normal video playback. The graphics driver should expose a set of capabilities that are appropriate for real-time video playback. + + + Optimal speed. The graphics driver should expose a minimal set of capabilities that are optimized for performance. + + + +Use this setting if you want better performance and can accept some reduction in video quality. For example, you might use this setting in power-saving mode or to play video thumbnails. + + + Optimal quality. The grahics driver should expose its maximum set of capabilities. + +Specify this setting to get the best video quality possible. It is appropriate for tasks such as video editing, when quality is more important than speed. It is not appropriate for real-time playback. + + + + Push a copy of retrieval filter currently on the top of the retrieval-filter stack onto the retrieval-filter stack. + Microsoft Docs: + + + + + Copies data from a D3D11_USAGE_DEFAULTtexture which was mapped using ID3D11DeviceContext3::Mapwhile providing a NULL D3D11_MAPPED_SUBRESOURCEparameter. + Microsoft Docs: + A pointer to the destination data in memory. + The size of one row of the destination data. + The size of one depth slice of destination data. + A pointer to the source resource (see + ID3D11Resource). + A zero-based index, that identifies the destination subresource. + For more details, see + D3D11CalcSubresource. + A pointer to a box that defines the portion of the destination subresource to copy the resource data from. + If NULL, the data is read from the destination subresource with no offset. + The dimensions of the destination must fit the destination (see + D3D11_BOX). + + +An empty box results in a no-op. + A box is empty if the top value is greater than or equal to the bottom value, or the left value is greater than or equal to the right value, or the front value is greater than or equal to the back value. + When the box is empty, this method doesn't perform any operation. + + + + + Describes a shader-resource view. + Microsoft Docs: + + + + A DXGI_FORMAT-typed value that specifies the viewing format. See remarks. + + + A D3D11_SRV_DIMENSION-typed value that specifies the resource type of the view. This type is the same as the resource type of the underlying resource. This member also determines which _SRV to use in the union below. + + + A D3D11_BUFFER_SRV structure that views the resource as a buffer. + + + A D3D11_TEX1D_SRV structure that views the resource as a 1D texture. + + + A D3D11_TEX1D_ARRAY_SRV structure that views the resource as a 1D-texture array. + + + A D3D11_TEX2D_SRV1 structure that views the resource as a 2D-texture. + + + A D3D11_TEX2D_ARRAY_SRV1 structure that views the resource as a 2D-texture array. + + + A D3D11_TEX2DMS_SRV structure that views the resource as a 2D-multisampled texture. + + + A D3D11_TEX2DMS_ARRAY_SRV structure that views the resource as a 2D-multisampled-texture array. + + + A D3D11_TEX3D_SRV structure that views the resource as a 3D texture. + + + A D3D11_TEXCUBE_SRV structure that views the resource as a 3D-cube texture. + + + A D3D11_TEXCUBE_ARRAY_SRV structure that views the resource as a 3D-cube-texture array. + + + A D3D11_BUFFEREX_SRV structure that views the resource as a raw buffer. For more info about raw viewing of buffers, see Raw Views of Buffers. + + + + Gets the number of Mov instructions. + Microsoft Docs: + + + + + Gets the size of the driver's certificate chain. + Microsoft Docs: + Receives the size of the certificate chain, in bytes. + + + + + Describes Direct3D 9 shadow support in the current graphics driver. + Microsoft Docs: + + + + Specifies whether the driver supports the shadowing feature with the comparison-filtering mode set to less than or equal to. The runtime sets this member to TRUE for hardware at Direct3D 10 and higher feature levels. For hardware at Direct3D 9.3 and lower feature levels, the runtime sets this member to TRUE only if the hardware and driver support the shadowing feature; otherwise FALSE. + + + + The rasterizer-state interface holds a description for rasterizer state that you can bind to the rasterizer stage. + Microsoft Docs: + + + + + Categories of debug messages. + Microsoft Docs: + + + + User defined message. See ID3D11InfoQueue::AddMessage. + + + Direct3D 11:  This value is not supported until Direct3D 11.1. + + + + Gets the planar alpha for an input stream on the video processor. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. To get this pointer, call ID3D11VideoDevice::CreateVideoProcessor. + The zero-based index of the input stream. To get the maximum number of streams, call ID3D11VideoProcessorEnumerator::GetVideoProcessorCaps and check the MaxStreamStates structure member. + Receives the value TRUE if planar alpha is enabled, or FALSE otherwise. + Receives the planar alpha value. The value can range from 0.0 (transparent) to 1.0 (opaque). + + + + + Contains input data for a D3D11_AUTHENTICATED_QUERY_OUTPUT_ID_COUNT query. + Microsoft Docs: + + + + A D3D11_AUTHENTICATED_QUERY_INPUT structure that contains the GUID for the query and other data. + + + A handle to the device. + + + A handle to the cryptographic session. + + + + A depth-stencil-view interface accesses a texture resource during depth-stencil testing. + Microsoft Docs: + + + + + Get a constant buffer by index. + Microsoft Docs: + Zero-based index. + + + + + Creates a resource view for a video processor, describing the input sample for the video processing operation. + Microsoft Docs: + A pointer to the ID3D11Resource interface of the input surface. + A pointer to the ID3D11VideoProcessorEnumerator interface that specifies the video processor. To get this pointer, call ID3D11VideoDevice::CreateVideoProcessorEnumerator. + A pointer to a D3D11_VIDEO_PROCESSOR_INPUT_VIEW_DESC structure that describes the view. + Receives a pointer to the ID3D11VideoProcessorInputView interface. The caller must release the resource. If this parameter is NULL, the method checks whether the view is supported, but does not create the view. + + + + + Describes a shader-variable type. + Microsoft Docs: + + + + A D3D_SHADER_VARIABLE_CLASS-typed value that identifies the variable class as one of scalar, vector, matrix, object, and so on. + + + A D3D_SHADER_VARIABLE_TYPE-typed value that identifies the variable type. + + + Number of rows in a matrix. Otherwise a numeric type returns 1, any other type returns 0. + + + Number of columns in a matrix. Otherwise a numeric type returns 1, any other type returns 0. + + + Number of elements in an array; otherwise 0. + + + Number of members in the structure; otherwise 0. + + + Offset, in bytes, between the start of the parent structure and this variable. Can be 0 if not a structure member. + + + Name of the shader-variable type. This member can be NULL if it isn't used. This member supports dynamic shader linkage interface types, which have names. For more info about dynamic shader linkage, see Dynamic Linking. + + + + Specifies the subresource from a 1D texture to use in a shader-resource view. + Microsoft Docs: + + + + Index of the most detailed mipmap level to use; this number is between 0 and MipLevels (from the original Texture1D for which ID3D11Device::CreateShaderResourceView creates a view) -1. + + + The maximum number of mipmap levels for the view of the texture. See the remarks. + +Set to -1 to indicate all the mipmap levels from MostDetailedMip on down to least detailed. + + + + A compute-shader interface manages an executable program (a compute shader) that controls the compute-shader stage. + Microsoft Docs: + + + + + Sets the output color space for the video processor. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. To get this pointer, call ID3D11VideoDevice::CreateVideoProcessor. + A pointer to a D3D11_VIDEO_PROCESSOR_COLOR_SPACE structure that specifies the color space. + + + + + The rasterizer-state interface holds a description for rasterizer state that you can bind to the rasterizer stage. This rasterizer-state interface supports forced sample count. + Microsoft Docs: + + + + + Get the constant buffers used by the vertex shader pipeline stage. + Microsoft Docs: + Index into the device's zero-based array to begin retrieving constant buffers from (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1). + Number of buffers to retrieve (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot). + Array of constant buffer interface pointers (see ID3D11Buffer) to be returned by the method. + + + + + This interface encapsulates methods for measuring GPU performance. + Microsoft Docs: + + + + + Sends queued-up commands in the command buffer to the graphics processing unit (GPU), with a specified context type and an optional event handle to create an event query. + Microsoft Docs: + A D3D11_CONTEXT_TYPE that specifies the context in which a query occurs, such as a 3D command queue, 3D compute queue, 3D copy queue, video, or image. + An optional event handle. When specified, this method creates an event query. + + +Flush1 operates asynchronously, therefore it can return either before or after the GPU finishes executing the queued graphics commands, which will eventually complete. + To create an event query, you can call ID3D11Device::CreateQuery with the + value D3D11_QUERY_EVENT value. + To determine when the GPU is finished processing the graphics commands, + you can then use that event query in a call to ID3D11DeviceContext::GetData. + + + + + Option(s) for raising an error to a non-continuable exception. + Microsoft Docs: + + + + Raise an internal driver error to a non-continuable exception. + + + + Represents key exchange data for hardware content protection. + Microsoft Docs: + + + + The function ID of the DRM command. The values and meanings of the function ID are defined by the DRM specification. + + + Pointer to a buffer containing a D3D11_KEY_EXCHANGE_HW_PROTECTION_INPUT_DATA structure that specifies memory reserved for IHV use and the input data for the DRM command. + + + Pointer to a buffer containing a D3D11_KEY_EXCHANGE_HW_PROTECTION_OUTPUT_DATA structure that specifies memory reserved for IHV use and the input data for the DRM command. + + + The result of the hardware DRM command. + + + + Get the blend state of the output-merger stage. + Microsoft Docs: + Address of a pointer to a blend-state interface (see ID3D11BlendState). + Array of blend factors, one for each RGBA component. + Pointer to a sample mask. + + + + + Arguments for draw indexed instanced indirect. + Microsoft Docs: + + + + The number of indices read from the index buffer for each instance. + + + The number of instances to draw. + + + The location of the first index read by the GPU from the index buffer. + + + A value added to each index before reading a vertex from the vertex buffer. + + + A value added to each index before reading per-instance data from a vertex buffer. + + + + Specifies logical operations to configure for a render target. + Microsoft Docs: + + + + Clears the render target. + + + Sets the render target. + + + Copys the render target. + + + Performs an inverted-copy of the render target. + + + No operation is performed on the render target. + + + Inverts the render target. + + + Performs a logical AND operation on the render target. + + + Performs a logical NAND operation on the render target. + + + Performs a logical OR operation on the render target. + + + Performs a logical NOR operation on the render target. + + + Performs a logical XOR operation on the render target. + + + Performs a logical equal operation on the render target. + + + Performs a logical AND and reverse operation on the render target. + + + Performs a logical AND and invert operation on the render target. + + + Performs a logical OR and reverse operation on the render target. + + + Performs a logical OR and invert operation on the render target. + + + + Gets the number of conversion instructions. + Microsoft Docs: + + + + + Activates the given context state object and changes the current device behavior to Direct3D 11, Direct3D 10.1, or Direct3D 10. + Microsoft Docs: + A pointer to the ID3DDeviceContextState interface for the context state object that was previously created through the ID3D11Device1::CreateDeviceContextState method. If SwapDeviceContextState is called with pState set to NULL, the call has no effect. + A pointer to a variable that receives a pointer to the ID3DDeviceContextState interface for the previously-activated context state object. + + + + + Set a geometry shader to the device. + Microsoft Docs: + Pointer to a geometry shader (see ID3D11GeometryShader). Passing in NULL disables the shader for this pipeline stage. + A pointer to an array of class-instance interfaces (see ID3D11ClassInstance). Each interface used by a shader must have a corresponding class instance or the shader will get disabled. Set ppClassInstances to NULL if the shader does not use any interfaces. + The number of class-instance interfaces in the array. + + + + + Specifies the subresource from a 1D texture that is accessible to a depth-stencil view. + Microsoft Docs: + + + + The index of the first mipmap level to use. + + + + Get a pointer to the input-layout object that is bound to the input-assembler stage. + Microsoft Docs: + A pointer to the input-layout object (see ID3D11InputLayout), which describes the input buffers that will be read by the IA stage. + + + + + Returns driver hints that indicate which of the video processor operations are best performed using multi-plane overlay hardware rather than ID3D11VideoContext::VideoProcessorBlt method. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. + The width of the output stream. + The height of the output stream. + The format of the output stream. + The number of input streams to process. + An array of structures that specifies the format of each input stream and whether each stream should be used when computing behavior hints. + A pointer to a bitwise OR combination of D3D11_VIDEO_PROCESSOR_BEHAVIOR_HINTS values indicating which video processor operations would best be performed using multi-plane overlay hardware rather than the ID3D11VideoContext::VideoProcessorBlt method. + + + + + The device interface represents a virtual adapter; it is used to create resources. ID3D11Device2 adds new methods to those in ID3D11Device1. + Microsoft Docs: + + + + + Sends a configuration command to an authenticated channel. + Microsoft Docs: + A pointer to the ID3D11AuthenticatedChannel interface. + The size of the pInput array, in bytes. + A pointer to a byte array that contains input data for the command. This buffer always starts with a D3D11_AUTHENTICATED_CONFIGURE_INPUT structure. The ConfigureType member of the structure specifies the command and defines the meaning of the rest of the buffer. + A pointer to a D3D11_AUTHENTICATED_CONFIGURE_OUTPUT structure that receives the response to the command. + + + + + Bind an array of viewports to the rasterizer stage of the pipeline. + Microsoft Docs: + Number of viewports to bind. + An array of D3D11_VIEWPORT structures to bind to the device. See the structure page for details about how the viewport size is dependent on the device feature level which has changed between Direct3D 11 and Direct3D 10. + + + + + Creates a rasterizer state object that informs the rasterizer stage how to behave and forces the sample count while UAV rendering or rasterizing. + Microsoft Docs: + A pointer to a D3D11_RASTERIZER_DESC1 structure that describes the rasterizer state. + Address of a pointer to the ID3D11RasterizerState1 interface for the rasterizer state object created. + + + + + Contains input data for the ID3D11VideoContext::QueryAuthenticatedChannel method. + Microsoft Docs: + + + + A GUID that specifies the query. The following GUIDs are defined. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ValueMeaning
+
D3D11_AUTHENTICATED_QUERY_ACCESSIBILITY_ATTRIBUTES
+
+
+Returns the type of I/O bus that is used to send data to the GPU. + +Output data structure: D3D11_AUTHENTICATED_QUERY_ACCESSIBILITY_OUTPUT + + +
+
D3D11_AUTHENTICATED_QUERY_CHANNEL_TYPE
+
+
+Returns the type of authenticated channel. + +Output data structure: D3D11_AUTHENTICATED_QUERY_CHANNEL_TYPE_OUTPUT + + +
+
D3D11_AUTHENTICATED_QUERY_CRYPTO_SESSION
+
+
+Returns handles to the cryptographic session and Direct3D device that are associated with a specified decoder device. + +Input data structure: D3D11_AUTHENTICATED_QUERY_CRYPTO_SESSION_INPUT + + +Output data structure: D3D11_AUTHENTICATED_QUERY_CRYPTO_SESSION_OUTPUT + + +
+
D3D11_AUTHENTICATED_QUERY_CURRENT_ENCRYPTION_WHEN_ACCESSIBLE
+
+
+Returns the encryption type that is applied before content becomes accessible to the CPU or bus. + +Output data structure: D3D11_AUTHENTICATED_QUERY_ACCESSIBILITY_ENCRYPTION_GUID_COUNT_OUTPUT + + +
+
D3D11_AUTHENTICATED_QUERY_DEVICE_HANDLE
+
+
+Returns a handle to the device that is associated with this authenticated channel. + +Output data structure: D3D11_AUTHENTICATED_QUERY_DEVICE_HANDLE_OUTPUT + + +
+
D3D11_AUTHENTICATED_QUERY_ENCRYPTION_WHEN_ACCESSIBLE_GUID
+
+
+Returns one of the encryption types that can be used to encrypt content before it becomes accessible to the CPU or bus. + +Input data structure: D3D11_AUTHENTICATED_QUERY_ACCESSIBILITY_ENCRYPTION_GUID_INPUT + + +Output data structure: D3D11_AUTHENTICATED_QUERY_ACCESSIBILITY_ENCRYPTION_GUID_OUTPUT + + +
+
D3D11_AUTHENTICATED_QUERY_ENCRYPTION_WHEN_ACCESSIBLE_GUID_COUNT
+
+
+Returns the number of encryption types that can be used to encrypt content before it becomes accessible to the CPU or bus. + +Output data structure: D3D11_AUTHENTICATED_QUERY_ACCESSIBILITY_ENCRYPTION_GUID_COUNT_OUTPUT + + +
+
D3D11_AUTHENTICATED_QUERY_OUTPUT_ID
+
+
+Returns one of the output identifiers that is associated with a specified cryptographic session and Direct3D device. + +Input data structure: D3D11_AUTHENTICATED_QUERY_OUTPUT_ID_INPUT + + +Output data structure: D3D11_AUTHENTICATED_QUERY_OUTPUT_ID_OUTPUT + + +
+
D3D11_AUTHENTICATED_QUERY_OUTPUT_ID_COUNT
+
+
+Returns the number of output identifiers that are associated with a specified cryptographic session and Direct3D device. + +Input data structure: D3D11_AUTHENTICATED_QUERY_OUTPUT_ID_COUNT_INPUT + + +Output data structure: D3D11_AUTHENTICATED_QUERY_OUTPUT_ID_COUNT_OUTPUT + + +
+
D3D11_AUTHENTICATED_QUERY_PROTECTION
+
+
+Returns the current protection level for the device. + +Output data structure: D3D11_AUTHENTICATED_QUERY_PROTECTION_OUTPUT + + +
+
D3D11_AUTHENTICATED_QUERY_RESTRICTED_SHARED_RESOURCE_PROCESS
+
+
+Returns information about a process that is allowed to open shared resources with restricted access. + +Input data structure: D3D11_AUTHENTICATED_QUERY_RESTRICTED_SHARED_RESOURCE_PROCESS_INPUT + + +Output data structure: D3D11_AUTHENTICATED_QUERY_RESTRICTED_SHARED_RESOURCE_PROCESS_OUTPUT + + +
+
D3D11_AUTHENTICATED_QUERY_RESTRICTED_SHARED_RESOURCE_PROCESS_COUNT
+
+
+Returns the number of processes that are allowed to open shared resources with restricted access. + +Output data structure: D3D11_AUTHENTICATED_QUERY_RESTRICTED_SHARED_RESOURCE_PROCESS_COUNT_OUTPUT + + +
+
D3D11_AUTHENTICATED_QUERY_UNRESTRICTED_PROTECTED_SHARED_RESOURCE_COUNT
+
+
+Returns the number of protected shared resources that can be opened by any process with no restrictions. + +Output data structure: D3D11_AUTHENTICATED_QUERY_UNRESTRICTED_PROTECTED_SHARED_RESOURCE_COUNT_OUTPUT + + +
+
+ + A handle to the authenticated channel. To get the handle, call the ID3D11AuthenticatedChannel::GetChannelHandle method. + + + The query sequence number. At the start of the session, generate a cryptographically secure 32-bit random number to use as the starting sequence number. For each query, increment the sequence number by 1. + + + + Describes a library. + Microsoft Docs: + + + + The name of the originator of the library. + + + A combination of D3DCOMPILE Constants that are combined by using a bitwise OR operation. The resulting value specifies how the compiler compiles. + + + The number of functions exported from the library. + + + + Describes the coordinates of a tiled resource. + Microsoft Docs: + + + + The x position of a tiled resource. Used for buffer and 1D, 2D, and 3D textures. + + + The y position of a tiled resource. Used for 2D and 3D textures. + + + The z position of a tiled resource. Used for 3D textures. + + + A subresource index value into mipmaps and arrays. Used for 1D, 2D, and 3D textures. + +For mipmaps that use nonstandard tiling, or are packed, or both use nonstandard tiling and are packed, any subresource value that indicates any of the packed mipmaps all refer to the same tile. + + + + Sets the depth-stencil state of the output-merger stage. + Microsoft Docs: + Pointer to a depth-stencil state interface (see ID3D11DepthStencilState) to bind to the device. Set this to NULL to use the default state listed in D3D11_DEPTH_STENCIL_DESC. + Reference value to perform against when doing a depth-stencil test. See remarks. + + + + + Specifies indices for arrays of per component histogram infromation. + Microsoft Docs: + + + + If the format is a YUV format, indicates a histogram for the Y component. + + + If the format is a YUV format, indicates a histogram for the U component. + + + If the format is a YUV format, indicates a histogram for the V component. + + + If the format is an RGB/BGR format, indicates a histogram for the R component. + + + If the format is an RGB/BGR format, indicates a histogram for the G component. + + + If the format is an RGB/BGR format, indicates a histogram for the B component. + + + If the format has an alpha channel, indicates a histogram for the A component. + + + + Specifies the type of Microsoft Direct3D authenticated channel. + Microsoft Docs: + + + + Direct3D 11 channel. This channel provides communication with the Direct3D runtime. + + + Software driver channel. This channel provides communication with a driver that implements content protection mechanisms in software. + + + Hardware driver channel. This channel provides communication with a driver that implements content protection mechanisms in the GPU hardware. + + + + Draw instanced, GPU-generated primitives. + Microsoft Docs: + A pointer to an ID3D11Buffer, which is a buffer containing the GPU generated primitives. + Offset in pBufferForArgs to the start of the GPU generated primitives. + + + + + Set a vertex shader to the device. + Microsoft Docs: + Pointer to a vertex shader (see ID3D11VertexShader). Passing in NULL disables the shader for this pipeline stage. + A pointer to an array of class-instance interfaces (see ID3D11ClassInstance). Each interface used by a shader must have a corresponding class instance or the shader will get disabled. Set ppClassInstances to NULL if the shader does not use any interfaces. + The number of class-instance interfaces in the array. + + + + + Gets a description of the current HLSL class. + Microsoft Docs: + A pointer to a D3D11_CLASS_INSTANCE_DESC structure that describes the current HLSL class. + + + + + Fills the function descriptor structure for the function. + Microsoft Docs: + A pointer to a D3D11_FUNCTION_DESC structure that receives a description of the function. + + + + + Gets the feature level of the hardware device. + Microsoft Docs: + + + + + Gets the number of profiles that are supported by the driver. + Microsoft Docs: + + + + + Specifies an event that should be fired when the fence reaches a certain value. + Microsoft Docs: + The fence value when the event is to be signaled. + A handle to the event object. + + + + + Describes parameters that are used to create a device. + Microsoft Docs: + + + + Use this flag if your application will only call methods of Direct3D 11 interfaces from a single thread. By default, the ID3D11Device object is thread-safe. + By using this flag, you can increase performance. However, if you use this flag and your application calls methods of Direct3D 11 interfaces from multiple threads, undefined behavior might result. + + + Creates a device that supports the debug layer. + +To use this flag, you must have D3D11*SDKLayers.dll installed; otherwise, device creation fails. To get D3D11_1SDKLayers.dll, install the SDK for Windows 8. + + +
Note  This flag is not supported in Direct3D 11.
+
 
+
+ + Prevents multiple threads from being created. When this flag is used with a Windows Advanced Rasterization Platform (WARP) device, no additional threads will be created by WARP + and all rasterization will occur on the calling thread. This flag is not recommended for general use. See remarks. + + + Creates a device that supports BGRA formats (DXGI_FORMAT_B8G8R8A8_UNORM and DXGI_FORMAT_B8G8R8A8_UNORM_SRGB). All 10level9 and higher hardware with WDDM 1.1+ drivers support BGRA formats. + +
Note  Required for Direct2D interoperability with Direct3D resources.
+
 
+
+ + Causes the device and driver to keep information that you can use for shader debugging. The exact impact from this flag will vary from driver to driver. + +To use this flag, you must have D3D11_1SDKLayers.dll installed; otherwise, device creation fails. The created device supports the debug layer. To get D3D11_1SDKLayers.dll, install the SDK for Windows 8. + +If you use this flag and the current driver does not support shader debugging, device creation fails. Shader debugging requires a driver that is implemented to the WDDM for Windows 8 (WDDM 1.2). + +Direct3D 11:  This value is not supported until Direct3D 11.1. + + + Causes the Direct3D runtime to ignore registry settings that turn on the debug layer. You can turn on the debug layer by using the DirectX Control Panel that was included as part of the DirectX SDK. We shipped the last version of the DirectX SDK in June 2010; you can download it from the Microsoft Download Center. You can set this flag in your app, typically in release builds only, to prevent end users from using the DirectX Control Panel to monitor how the app uses Direct3D. + +
Note  You can also set this flag in your app to prevent Direct3D debugging tools, such as Visual Studio Ultimate 2012, from hooking your app.
+
 
+Windows 8.1:  This flag doesn't prevent Visual Studio 2013 and later running on Windows 8.1 and later from hooking your app; instead use ID3D11DeviceContext2::IsAnnotationEnabled. This flag still prevents Visual Studio 2013 and later running on Windows 8 and earlier from hooking your app. + +Direct3D 11:  This value is not supported until Direct3D 11.1.
+
+ + Use this flag if the device will produce GPU workloads that take more than two seconds to complete, and you want the operating system to allow them to successfully finish. If this flag is not set, the operating system performs timeout detection and recovery when it detects a GPU packet that took more than two seconds to execute. If this flag is set, the operating system allows such a long running packet to execute without resetting the GPU. We recommend not to set this flag if your device needs to be highly responsive so that the operating system can detect and recover from GPU timeouts. We recommend to set this flag if your device needs to perform time consuming background tasks such as compute, image recognition, and video encoding to allow such tasks to successfully finish. + +Direct3D 11:  This value is not supported until Direct3D 11.1. + + + Forces the creation of the Direct3D device to fail if the display driver is not implemented to the WDDM for Windows 8 (WDDM 1.2). When the display driver is not implemented to WDDM 1.2, only a Direct3D device that is created with feature level 9.1, 9.2, or 9.3 supports video; therefore, if this flag is set, the runtime creates the Direct3D device only for feature level 9.1, 9.2, or 9.3. We recommend not to specify this flag for applications that want to favor Direct3D capability over video. If feature level 10 and higher is available, the runtime will use that feature level regardless of video support. + +If this flag is set, device creation on the Basic Render Device (BRD) will succeed regardless of the BRD's missing support for video decode. This is because the Media Foundation video stack operates in software mode on BRD. In this situation, if you force the video stack to create the Direct3D device twice (create the device once with this flag, next discover BRD, then again create the device without the flag), you actually degrade performance. + +If you attempt to create a Direct3D device with driver type D3D_DRIVER_TYPE_NULL, D3D_DRIVER_TYPE_REFERENCE, or D3D_DRIVER_TYPE_SOFTWARE, device creation fails at any feature level because none of the associated drivers provide video capability. If you attempt to create a Direct3D device with driver type D3D_DRIVER_TYPE_WARP, device creation succeeds to allow software fallback for video. + +Direct3D 11:  This value is not supported until Direct3D 11.1. + + + + Specifies the subresource from a 2D texture to use in a shader-resource view. + Microsoft Docs: + + + + Index of the most detailed mipmap level to use; this number is between 0 and MipLevels (from the original Texture2D for which ID3D11Device::CreateShaderResourceView creates a view) -1. + + + The maximum number of mipmap levels for the view of the texture. See the remarks in D3D11_TEX1D_SRV. + +Set to -1 to indicate all the mipmap levels from MostDetailedMip on down to least detailed. + + + + Creates a deferred context, which can record command lists. + Microsoft Docs: + Reserved for future use. + Pass 0. + Upon completion of the method, the passed pointer to an ID3D11DeviceContext interface pointer is initialized. + + + + + Defines stereo 3D capabilities for a Microsoft Direct3D 11 video processor. + Microsoft Docs: + + + + The video processor supports the D3D11_VIDEO_PROCESSOR_STEREO_FORMAT_MONO_OFFSET + format. + + + The video processor supports the D3D11_VIDEO_PROCESSOR_STEREO_FORMAT_ROW_INTERLEAVED + format. + + + The video processor supports the D3D11_VIDEO_PROCESSOR_STEREO_FORMAT_COLUMN_INTERLEAVED + format. + + + The video processor supports the D3D11_VIDEO_PROCESSOR_STEREO_FORMAT_CHECKERBOARD + format. + + + The video processor can flip one or both views. For more information, see D3D11_VIDEO_PROCESSOR_STEREO_FLIP_MODE. + + + + Identifies how to bind a resource to the pipeline. + Microsoft Docs: + + + + Bind a buffer as a vertex buffer to the input-assembler stage. + + + Bind a buffer as an index buffer to the input-assembler stage. + + + Bind a buffer as a constant buffer to a shader stage; this flag may NOT be combined with any other bind flag. + + + Bind a buffer or texture to a shader stage; this flag cannot be used with the D3D11_MAP_WRITE_NO_OVERWRITE flag. + +
Note  The Direct3D 11.1 runtime, which is available starting with Windows 8, enables mapping dynamic constant buffers and shader resource views (SRVs) of dynamic buffers with D3D11_MAP_WRITE_NO_OVERWRITE. The Direct3D 11 and earlier runtimes limited mapping to vertex or index buffers. To determine if a Direct3D device supports these features, call ID3D11Device::CheckFeatureSupport with D3D11_FEATURE_D3D11_OPTIONS. CheckFeatureSupport fills members of a D3D11_FEATURE_DATA_D3D11_OPTIONS structure with the device's features. The relevant members here are MapNoOverwriteOnDynamicConstantBuffer and MapNoOverwriteOnDynamicBufferSRV.
+
 
+
+ + Bind an output buffer for the stream-output stage. + + + Bind a texture as a render target for the output-merger stage. + + + Bind a texture as a depth-stencil target for the output-merger stage. + + + Bind an unordered access resource. + + + Set this flag to indicate that a 2D texture is used to receive output from the decoder API. The common way to create resources for a decoder output is by calling the ID3D11Device::CreateTexture2D method to create an array of 2D textures. However, you cannot use texture arrays that are created with this flag in calls to ID3D11Device::CreateShaderResourceView. + +Direct3D 11:  This value is not supported until Direct3D 11.1. + + + Set this flag to indicate that a 2D texture is used to receive input from the video encoder API. The common way to create resources for a video encoder is by calling the ID3D11Device::CreateTexture2D method to create an array of 2D textures. However, you cannot use texture arrays that are created with this flag in calls to ID3D11Device::CreateShaderResourceView. + +Direct3D 11:  This value is not supported until Direct3D 11.1. + + + + Query information about graphics-pipeline activity in between calls to ID3D11DeviceContext::Begin and ID3D11DeviceContext::End. + Microsoft Docs: + + + + Number of vertices read by input assembler. + + + Number of primitives read by the input assembler. This number can be different depending on the primitive topology used. For example, a triangle strip with 6 vertices will produce 4 triangles, however a triangle list with 6 vertices will produce 2 triangles. + + + Number of times a vertex shader was invoked. Direct3D invokes the vertex shader once per vertex. + + + Number of times a geometry shader was invoked. When the geometry shader is set to NULL, this statistic may or may not increment depending on the hardware manufacturer. + + + Number of primitives output by a geometry shader. + + + Number of primitives that were sent to the rasterizer. When the rasterizer is disabled, this will not increment. + + + Number of primitives that were rendered. This may be larger or smaller than CInvocations because after a primitive is clipped sometimes it is either broken up into more than one primitive or completely culled. + + + Number of times a pixel shader was invoked. + + + Number of times a hull shader was invoked. + + + Number of times a domain shader was invoked. + + + Number of times a compute shader was invoked. + + + + Get a shader description. + Microsoft Docs: + A pointer to a shader description. See D3D11_SHADER_DESC. + + + + + Creates a predicate. + Microsoft Docs: + Pointer to a query description where the type of query must be a D3D11_QUERY_SO_OVERFLOW_PREDICATE or D3D11_QUERY_OCCLUSION_PREDICATE (see D3D11_QUERY_DESC). + Address of a pointer to a predicate (see ID3D11Predicate). + + + + + Get the constant buffers used by the compute-shader stage. + Microsoft Docs: + Index into the device's zero-based array to begin retrieving constant buffers from (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1). + Number of buffers to retrieve (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot). + Array of constant buffer interface pointers (see ID3D11Buffer) to be returned by the method. + + + + + Gets the stereo 3D format for an input stream on the video processor. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. To get this pointer, call ID3D11VideoDevice::CreateVideoProcessor. + The zero-based index of the input stream. To get the maximum number of streams, call ID3D11VideoProcessorEnumerator::GetVideoProcessorCaps and check the MaxStreamStates structure member. + Receives the value TRUE if stereo 3D is enabled for this stream, or FALSE otherwise. If the value is FALSE, ignore the remaining parameters. + Receives a D3D11_VIDEO_PROCESSOR_STEREO_FORMAT value that specifies the layout of the two stereo views in memory. + Receives a Boolean value. + + + + + + + + + + + + + + +
ValueMeaning
+
TRUE
+
+
+Frame 0 contains the left view. + +
+
FALSE
+
+
+Frame 0 contains the right view. + +
+ Receives a Boolean value. + + + + + + + + + + + + + + +
ValueMeaning
+
TRUE
+
+
+Frame 0 contains the base view. + +
+
FALSE
+
+
+Frame 1 contains the base view. + +
+ Receives a D3D11_VIDEO_PROCESSOR_STEREO_FLIP_MODE value. This value specifies whether one of the views is flipped. + Receives the pixel offset used for D3D11_VIDEO_PROCESSOR_STEREO_FORMAT_MONO_OFFSET format. This parameter is ignored for other stereo formats. +
+
+ + + Sets the color space information for the video processor output surface. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. + A DXGI_COLOR_SPACE_TYPE value that specifies the colorspace for the video processor output surface. + + + + + Creates a rasterizer state object that informs the rasterizer stage how to behave and forces the sample count while UAV rendering or rasterizing. + Microsoft Docs: + A pointer to a D3D11_RASTERIZER_DESC2 structure that describes the rasterizer state. + A pointer to a memory block that receives a pointer to a ID3D11RasterizerState2 interface for the created rasterizer state object. Set this parameter to NULL to validate the other input parameters (the method will return S_FALSE if the other input parameters pass validation). + + + + + Defines features that a Microsoft Direct3D 11 video processor can support. + Microsoft Docs: + + + + The video processor can set alpha values on the output pixels. For more information, see ID3D11VideoContext::VideoProcessorSetOutputAlphaFillMode. + + + The video processor can downsample the video output. For more information, see ID3D11VideoContext::VideoProcessorSetOutputConstriction. + + + The video processor can perform luma keying. For more information, see ID3D11VideoContext::VideoProcessorSetStreamLumaKey. + + + The video processor can apply alpha values from color palette entries. + + + The driver does not support full video processing capabilities. If this capability flag is set, the video processor has the following limitations: + +
    +
  • A maximum of two streams are supported:
      +
    • The first stream must be either NV12 or YUY2.
    • +
    • The second stream must be AYUV, AI44, or IA44.
    • +
    +
  • +
  • Image adjustment (proc amp) controls are applied to the entire video processing blit, rather than per stream.
  • +
  • Support for per-stream planar alpha is not reliable. (Per-pixel alpha is supported, however.)
  • +
+
+ + The video processor can support 3D stereo video. For more information, see ID3D11VideoContext::VideoProcessorSetStreamStereoFormat. + +All drivers setting this caps must support the following stereo formats: D3D11_VIDEO_PROCESSOR_STEREO_FORMAT_HORIZONTAL, D3D11_VIDEO_PROCESSOR_STEREO_FORMAT_VERTICAL, and D3D11_VIDEO_PROCESSOR_STEREO_FORMAT_SEPARATE. + + + The driver can rotate the input data either 90, 180, or 270 degrees clockwise as part of the video processing operation. + + + The driver supports the VideoProcessorSetStreamAlpha call. + + + The driver supports the VideoProcessorSetStreamPixelAspectRatio call. + + + + A 2D texture interface manages texel data, which is structured memory. + Microsoft Docs: + + + + + Sets a pixel shader to the device. + Microsoft Docs: + Pointer to a pixel shader (see ID3D11PixelShader). Passing in NULL disables the shader for this pipeline stage. + A pointer to an array of class-instance interfaces (see ID3D11ClassInstance). Each interface used by a shader must have a corresponding class instance or the shader will get disabled. Set ppClassInstances to NULL if the shader does not use any interfaces. + The number of class-instance interfaces in the array. + + + + + Sets a driver-specific video processing state. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. To get this pointer, call ID3D11VideoDevice::CreateVideoProcessor. + A pointer to a GUID that identifies the operation. The meaning of this GUID is defined by the graphics driver. + The size of the pData buffer, in bytes. + A pointer to a buffer that contains private state data. The method passes this buffer directly to the driver without validation. It is the responsibility of the driver to validate the data. + + + + + Copies data from a buffer holding variable length data. + Microsoft Docs: + Pointer to ID3D11Buffer. This can be any buffer resource that other copy commands, + such as ID3D11DeviceContext::CopyResource or ID3D11DeviceContext::CopySubresourceRegion, are able to write to. + Offset from the start of pDstBuffer to write 32-bit UINT structure (vertex) count from pSrcView. + Pointer to an ID3D11UnorderedAccessView of a Structured Buffer resource created with either + D3D11_BUFFER_UAV_FLAG_APPEND or D3D11_BUFFER_UAV_FLAG_COUNTER specified + when the UAV was created. These types of resources have hidden counters tracking "how many" records have + been written. + + + + + Gets whether hardware protection is enabled. + Microsoft Docs: + After this method returns, points to a BOOL that indicates whether hardware protection is enabled. + + + + + Get the size of the retrieval-filter stack in bytes. + Microsoft Docs: + + + + + Provides information about the input streams passed into the ID3DVideoContext1::VideoProcessorGetBehaviorHints method. + Microsoft Docs: + + + + A value indicating whether this input stream should be used to compute behavior hints. Set to true if the stream should be used to compute behavior hints; otherwise, set to false. + + + The width of the input stream. + + + The height of the input stream. + + + The format of the input stream. + + + + Gets the number of interfaces. + Microsoft Docs: + + + + + An information-queue interface stores, retrieves, and filters debug messages. The queue consists of a message queue, an optional storage filter stack, and a optional retrieval filter stack. + Microsoft Docs: + + + + + Get the constant buffers used by the pixel shader pipeline stage. + Microsoft Docs: + Index into the device's zero-based array to begin retrieving constant buffers from (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1). + Number of buffers to retrieve (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot). + Array of constant buffer interface pointers (see ID3D11Buffer) to be returned by the method. + + + + + Indicates whether a class type implements an interface. + Microsoft Docs: + A pointer to a ID3D11ShaderReflectionType Interface. + + + + + Specifies the subresource from a multisampled 2D texture to use in a render-target view. + Microsoft Docs: + + + + Integer of any value. See remarks. + + + + An ID3D11ShaderTrace interface implements methods for obtaining traces of shader executions. + Microsoft Docs: + + + + + A predicate interface determines whether geometry should be processed depending on the results of a previous draw call. + Microsoft Docs: + + + + + Sets the planar alpha for an input stream on the video processor. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. To get this pointer, call ID3D11VideoDevice::CreateVideoProcessor. + The zero-based index of the input stream. To get the maximum number of streams, call ID3D11VideoProcessorEnumerator::GetVideoProcessorCaps and check the MaxStreamStates structure member. + Specifies whether alpha blending is enabled. + The planar alpha value. The value can range from 0.0 (transparent) to 1.0 (opaque). + If Enable is FALSE, this parameter is ignored. + + + + + Describes a video decoder output view. + Microsoft Docs: + + + + The decoding profile. To get the list of profiles supported by the device, call the ID3D11VideoDevice::GetVideoDecoderProfile method. + + + The resource type of the view, specified as a member of the D3D11_VDOV_DIMENSION enumeration. + + + A D3D11_TEX2D_VDOV structure that identifies the texture resource for the output view. + + + + Gets the geometry-shader input-primitive description. + Microsoft Docs: + + + + + Describes the configuration of a Microsoft Direct3D 11 decoder device for DirectX Video Acceleration (DXVA). + Microsoft Docs: + + + + If the bitstream data buffers are encrypted using the D3D11CryptoSession mechanism, this GUID should be set to zero. If no encryption is applied, the value is DXVA_NoEncrypt. If ConfigBitstreamRaw is 0, the value must be DXVA_NoEncrypt. + + + If the macroblock control data buffers are encrypted using the D3D11CryptoSession mechanism, this GUID should be set to zero. If no encryption is applied, the value is DXVA_NoEncrypt. If ConfigBitstreamRaw is 1, the value must be DXVA_NoEncrypt. + + + If the residual difference decoding data buffers are encrypted using the D3D11CryptoSession mechanism, this GUID should be set to zero. If no encryption is applied, the value is DXVA_NoEncrypt. If ConfigBitstreamRaw is 1, the value must be DXVA_NoEncrypt. + + + Indicates whether the host-decoder sends raw bit-stream data. If the value is 1, the data for the pictures will be sent in bit-stream buffers as raw bit-stream content. If the value is 0, picture data will be sent using macroblock control command buffers. If either ConfigResidDiffHost or ConfigResidDiffAccelerator is 1, the value must be 0. + + + Specifies whether macroblock control commands are in raster scan order or in arbitrary order. If the value is 1, the macroblock control commands within each macroblock control command buffer are in raster-scan order. If the value is 0, the order is arbitrary. For some types of bit streams, forcing raster order either greatly increases the number of required macroblock control buffers that must be processed, or requires host reordering of the control information. Therefore, supporting arbitrary order can be more efficient. + + + Contains the host residual difference configuration. If the value is 1, some residual difference decoding data may be sent as blocks in the spatial domain from the host. If the value is 0, spatial domain data will not be sent. + + + Indicates the word size used to represent residual difference spatial-domain blocks for predicted (non-intra) pictures when using host-based residual difference decoding. + + +If ConfigResidDiffHost is 1 and ConfigSpatialResid8 is 1, the host will send residual difference spatial-domain blocks for non-intra macroblocks using 8-bit signed samples and for intra macroblocks in predicted (non-intra) pictures in a format that depends on the value of ConfigIntraResidUnsigned: + + +
    +
  • If ConfigIntraResidUnsigned is 0, spatial-domain blocks for intra macroblocks are sent as 8-bit signed integer values relative to a constant reference value of 2^(BPP–1). +
  • +
  • If ConfigIntraResidUnsigned is 1, spatial-domain blocks for intra macroblocks are sent as 8-bit unsigned integer values relative to a constant reference value of 0. +
  • +
+If ConfigResidDiffHost is 1 and ConfigSpatialResid8 is 0, the host will send residual difference spatial-domain blocks of data for non-intra macroblocks using 16-bit signed samples and for intra macroblocks in predicted (non-intra) pictures in a format that depends on the value of ConfigIntraResidUnsigned: + + +
    +
  • If ConfigIntraResidUnsigned is 0, spatial domain blocks for intra macroblocks are sent as 16-bit signed integer values relative to a constant reference value of 2^(BPP–1). +
  • +
  • If ConfigIntraResidUnsigned is 1, spatial domain blocks for intra macroblocks are sent as 16-bit unsigned integer values relative to a constant reference value of 0. +
  • +
+If ConfigResidDiffHost is 0, ConfigSpatialResid8 must be 0. + + +For intra pictures, spatial-domain blocks must be sent using 8-bit samples if bits-per-pixel (BPP) is 8, and using 16-bit samples if BPP > 8. If ConfigIntraResidUnsigned is 0, these samples are sent as signed integer values relative to a constant reference value of 2^(BPP–1), and if ConfigIntraResidUnsigned is 1, these samples are sent as unsigned integer values relative to a constant reference value of 0.
+
+ + If the value is 1, 8-bit difference overflow blocks are subtracted rather than added. The value must be 0 unless ConfigSpatialResid8 is 1. + + +The ability to subtract differences rather than add them enables 8-bit difference decoding to be fully compliant with the full ±255 range of values required in video decoder specifications, because +255 cannot be represented as the addition of two signed 8-bit numbers, but any number in the range ±255 can be represented as the difference between two signed 8-bit numbers (+255 = +127 minus –128). + + + If the value is 1, spatial-domain blocks for intra macroblocks must be clipped to an 8-bit range on the host and spatial-domain blocks for non-intra macroblocks must be clipped to a 9-bit range on the host. If the value is 0, no such clipping is necessary by the host. + + +The value must be 0 unless ConfigSpatialResid8 is 0 and ConfigResidDiffHost is 1. + + + If the value is 1, any spatial-domain residual difference data must be sent in a chrominance-interleaved form matching the YUV format chrominance interleaving pattern. The value must be 0 unless ConfigResidDiffHost is 1 and the YUV format is NV12 or NV21. + + + Indicates the method of representation of spatial-domain blocks of residual difference data for intra blocks when using host-based difference decoding. + + +If ConfigResidDiffHost is 1 and ConfigIntraResidUnsigned is 0, spatial-domain residual difference data blocks for intra macroblocks must be sent as follows: + + +
    +
  • In a non-intra picture, if ConfigSpatialResid8 is 0, the spatial-domain residual difference data blocks for intra macroblocks are sent as 16-bit signed integer values relative to a constant reference value of 2^(BPP–1). +
  • +
  • In a non-intra picture, if ConfigSpatialResid8 is 1, the spatial-domain residual difference data blocks for intra macroblocks are sent as 8-bit signed integer values relative to a constant reference value of 2^(BPP–1). +
  • +
  • In an intra picture, if BPP is 8, the spatial-domain residual difference data blocks for intra macroblocks are sent as 8-bit signed integer values relative to a constant reference value of 2^(BPP–1), regardless of the value of ConfigSpatialResid8. +
  • +
+If ConfigResidDiffHost is 1 and ConfigIntraResidUnsigned is 1, spatial-domain residual difference data blocks for intra macroblocks must be sent as follows: + + +
    +
  • In a non-intra picture, if ConfigSpatialResid8 is 0, the spatial-domain residual difference data blocks for intra macroblocks must be sent as 16-bit unsigned integer values relative to a constant reference value of 0. +
  • +
  • In a non-intra picture, if ConfigSpatialResid8 is 1, the spatial-domain residual difference data blocks for intra macroblocks are sent as 8-bit unsigned integer values relative to a constant reference value of 0. +
  • +
  • In an intra picture, if BPP is 8, the spatial-domain residual difference data blocks for intra macroblocks are sent as 8-bit unsigned integer values relative to a constant reference value of 0, regardless of the value of ConfigSpatialResid8. +
  • +
+The value of the member must be 0 unless ConfigResidDiffHost is 1.
+
+ + If the value is 1, transform-domain blocks of coefficient data may be sent from the host for accelerator-based IDCT. If the value is 0, accelerator-based IDCT will not be used. If both ConfigResidDiffHost and ConfigResidDiffAccelerator are 1, this indicates that some residual difference decoding will be done on the host and some on the accelerator, as indicated by macroblock-level control commands. + + +The value must be 0 if ConfigBitstreamRaw is 1. + + + If the value is 1, the inverse scan for transform-domain block processing will be performed on the host, and absolute indices will be sent instead for any transform coefficients. If the value is 0, the inverse scan will be performed on the accelerator. + + +The value must be 0 if ConfigResidDiffAccelerator is 0 or if Config4GroupedCoefs is 1. + + + If the value is 1, the IDCT specified in Annex W of ITU-T Recommendation H.263 is used. If the value is 0, any compliant IDCT can be used for off-host IDCT. + + +The H.263 annex does not comply with the IDCT requirements of MPEG-2 corrigendum 2, so the value must not be 1 for use with MPEG-2 video. + + +The value must be 0 if ConfigResidDiffAccelerator is 0, indicating purely host-based residual difference decoding. + + + If the value is 1, transform coefficients for off-host IDCT will be sent using the DXVA_TCoef4Group structure. If the value is 0, the DXVA_TCoefSingle structure is used. The value must be 0 if ConfigResidDiffAccelerator is 0 or if ConfigHostInverseScan is 1. + + + Specifies how many frames the decoder device processes at any one time. + + + Contains decoder-specific configuration information. + + + + Identifies a texture resource for a video processor output view. + Microsoft Docs: + + + + The zero-based index into the array of subtextures. + + + The index of the first texture to use. + + + The number of textures in the array. + + + + Describes an HLSL class instance. + Microsoft Docs: + + + + The instance ID of an HLSL class; the default value is 0. + + + The instance index of an HLSL class; the default value is 0. + + + The type ID of an HLSL class; the default value is 0. + + + Describes the constant buffer associated with an HLSL class; the default value is 0. + + + The base constant buffer offset associated with an HLSL class; the default value is 0. + + + The base texture associated with an HLSL class; the default value is 127. + + + The base sampler associated with an HLSL class; the default value is 15. + + + True if the class was created; the default value is false. + + + + Describes an instance of a domain shader to trace. + Microsoft Docs: + + + + The invocation number of the instance of the domain shader. + + + + Sets the HDR metadata describing the display on which the content will be presented. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. + The type of HDR metadata supplied. + The size of the HDR metadata supplied in pHDRMetaData. + +For DXGI_HDR_METADATA_TYPE_NONE, the size should be 0. + +For DXGI_HDR_METADATA_TYPE_HDR10, the size is sizeof(DXGI_HDR_METADATA_HDR10). + Pointer to the metadata information. + +For DXGI_HDR_METADATA_TYPE_NONE, this should be NULL. + +For DXGI_HDR_METADATA_TYPE_HDR10, this is a pointer to a DXGI_HDR_METADATA_HDR10 structure. + + + + + Indicates whether a variable is of the specified type. + Microsoft Docs: + A pointer to a ID3D11ShaderReflectionType Interface. + + + + + Gets the properties of the video processor output view. + Microsoft Docs: + A pointer to a D3D11_VIDEO_PROCESSOR_OUTPUT_VIEW_DESC structure. The method fills the structure with the view properties. + + + + + Gets the HDR metadata describing the display on which the content will be presented. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. + The type of HDR metadata supplied. + The size of the memory referenced by pHDRMetaData. + +If pHDRMetaData is NULL, Size should be 0. + Pointer to a buffer that receives the HDR metadata. + +This parameter can be NULL. + + + + + Gets a description of how a resource is bound to a function. + Microsoft Docs: + The constant-buffer name of the resource. + A pointer to a D3D11_SHADER_INPUT_BIND_DESC structure that describes input binding of the resource. + + + + + Provides data to the ID3D11VideoContext::DecoderBeginFrame method. + Microsoft Docs: + + + + A pointer to the ID3D11CryptoSession interface. To get this pointer, call ID3D11VideoDevice1::CreateCryptoSession. + + + The size of the memory buffer referenced by the pBlob member. + + + The definition of this buffer is dependent on the implementation of the secure execution environment. It could contain a sealed key blob or any other per-key data that the secure execution environment needs to pass to the decode API. + +The definition of this buffer is dependent on the implementation of the secure environment. It may contain data specific to the current frame. + + + A pointer to a GUID identifying the hardware key. + + + The size of the memory buffer referenced by the pPrivateData member. + + + + Unordered-access view options. + Microsoft Docs: + + + + The view type is unknown. + + + View the resource as a buffer. + + + View the resource as a 1D texture. + + + View the resource as a 1D texture array. + + + View the resource as a 2D texture. + + + View the resource as a 2D texture array. + + + View the resource as a 3D texture array. + + + + Gets the color space for an input stream of the video processor. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. To get this pointer, call ID3D11VideoDevice::CreateVideoProcessor. + The zero-based index of the input stream. To get the maximum number of streams, call ID3D11VideoProcessorEnumerator::GetVideoProcessorCaps and check the MaxStreamStates structure member. + Receives a D3D11_VIDEO_PROCESSOR_COLOR_SPACE value that specifies the color space. + + + + + Submits one or more buffers for decoding. + Microsoft Docs: + A pointer to the ID3D11VideoDecoder interface. To get this pointer, call the ID3D11VideoDevice::CreateVideoDecoder method. + The number of buffers submitted for decoding. + A pointer to an array of D3D11_VIDEO_DECODER_BUFFER_DESC structures. The NumBuffers parameter specifies the number of elements in the array. Each element in the array describes a compressed buffer for decoding. + + + + + Identifies a shader type for tracing. + Microsoft Docs: + + + + Identifies a vertex shader. + + + Identifies a hull shader. + + + Identifies a domain shader. + + + Identifies a geometry shader. + + + Identifies a pixel shader. + + + Identifies a compute shader. + + + + Get a shader-reflection variable by index. + Microsoft Docs: + Zero-based index. + + + + + Direct3D 11 feature options. + Microsoft Docs: + + + + The driver supports multithreading. To see an example of testing a driver for multithread support, see How To: Check for Driver Support. Refer to D3D11_FEATURE_DATA_THREADING. + + + Supports the use of the double-precision shaders in HLSL. Refer to D3D11_FEATURE_DATA_DOUBLES. + + + Supports the formats in D3D11_FORMAT_SUPPORT. Refer to D3D11_FEATURE_DATA_FORMAT_SUPPORT. + + + Supports the formats in D3D11_FORMAT_SUPPORT2. Refer to D3D11_FEATURE_DATA_FORMAT_SUPPORT2. + + + Supports compute shaders and raw and structured buffers. Refer to D3D11_FEATURE_DATA_D3D10_X_HARDWARE_OPTIONS. + + + Supports Direct3D 11.1 feature options. Refer to D3D11_FEATURE_DATA_D3D11_OPTIONS. + +Direct3D 11:  This value is not supported until Direct3D 11.1. + + + Supports specific adapter architecture. Refer to D3D11_FEATURE_DATA_ARCHITECTURE_INFO. + +Direct3D 11:  This value is not supported until Direct3D 11.1. + + + Supports Direct3D 9 feature options. Refer to D3D11_FEATURE_DATA_D3D9_OPTIONS. + +Direct3D 11:  This value is not supported until Direct3D 11.1. + + + Supports minimum precision of shaders. For more info about HLSL minimum precision, see using HLSL minimum precision. Refer to D3D11_FEATURE_DATA_SHADER_MIN_PRECISION_SUPPORT. + +Direct3D 11:  This value is not supported until Direct3D 11.1. + + + Supports Direct3D 9 shadowing feature. Refer to D3D11_FEATURE_DATA_D3D9_SHADOW_SUPPORT. + +Direct3D 11:  This value is not supported until Direct3D 11.1. + + + Supports Direct3D 11.2 feature options. Refer to D3D11_FEATURE_DATA_D3D11_OPTIONS1. + +Direct3D 11:  This value is not supported until Direct3D 11.2. + + + Supports Direct3D 11.2 instancing options. Refer to D3D11_FEATURE_DATA_D3D9_SIMPLE_INSTANCING_SUPPORT. + +Direct3D 11:  This value is not supported until Direct3D 11.2. + + + Supports Direct3D 11.2 marker options. Refer to D3D11_FEATURE_DATA_MARKER_SUPPORT. + +Direct3D 11:  This value is not supported until Direct3D 11.2. + + + Supports Direct3D 9 feature options, which includes the Direct3D 9 shadowing feature and instancing support. Refer to D3D11_FEATURE_DATA_D3D9_OPTIONS1. + +Direct3D 11:  This value is not supported until Direct3D 11.2. + + + Supports Direct3D 11.3 conservative rasterization feature options. Refer to D3D11_FEATURE_DATA_D3D11_OPTIONS2. + +Direct3D 11:  This value is not supported until Direct3D 11.3. + + + Supports Direct3D 11.4 conservative rasterization feature options. Refer to D3D11_FEATURE_DATA_D3D11_OPTIONS3. + +Direct3D 11:  This value is not supported until Direct3D 11.4. + + + Supports GPU virtual addresses. Refer to D3D11_FEATURE_DATA_GPU_VIRTUAL_ADDRESS_SUPPORT. + + + Supports a single boolean for NV12 shared textures. Refer to D3D11_FEATURE_DATA_D3D11_OPTIONS4. + +Direct3D 11:  This value is not supported until Direct3D 11.4. + + + Supports shader cache, described in D3D11_FEATURE_DATA_SHADER_CACHE. + + + Supports a D3D11_SHARED_RESOURCE_TIER to indicate a tier for shared resource support. Refer to D3D11_FEATURE_DATA_D3D11_OPTIONS5. + + + + Gets the instance name of the current HLSL class. + Microsoft Docs: + The instance name of the current HLSL class. + The length of the pInstanceName parameter. + + + + + Copy the entire contents of the source resource to the destination resource using the GPU. + Microsoft Docs: + A pointer to the ID3D11Resource interface that represents the destination resource. + A pointer to the ID3D11Resource interface that represents the source resource. + + + + + Creates a resource view for a video decoder, describing the output sample for the decoding operation. + Microsoft Docs: + A pointer to the ID3D11Resource interface of the decoder surface. The resource must be created with the D3D11_BIND_DECODER flag. See D3D11_BIND_FLAG. + A pointer to a D3D11_VIDEO_DECODER_OUTPUT_VIEW_DESC structure that describes the view. + Receives a pointer to the ID3D11VideoDecoderOutputView interface. The caller must release the interface. If this parameter is NULL, the method checks whether the view is supported, but does not create the view. + + + + + Describes a tiled subresource volume. + Microsoft Docs: + + + + The width in tiles of the subresource. + + + The height in tiles of the subresource. + + + The depth in tiles of the subresource. + + + The index of the tile in the overall tiled subresource to start with. + + +GetResourceTiling sets StartTileIndexInOverallResource to D3D11_PACKED_TILE (0xffffffff) to indicate that the whole +D3D11_SUBRESOURCE_TILING structure is meaningless, and the info to which the pPackedMipDesc parameter of GetResourceTiling points applies. For packed tiles, the description of the packed mipmaps comes from a D3D11_PACKED_MIP_DESC structure instead. + + + + Describes a trace register. + Microsoft Docs: + + + + A D3D11_TRACE_REGISTER_TYPE-typed value that identifies the type of register that the shader-trace object uses. + + + An index for one-dimensional arrays. This index is used by the following register types: + +
    +
  • vertex shader or pixel shader input: v[Index1D]
  • +
  • temp: r[Index1D]
  • +
  • output: o[Index1D]
  • +
  • immediate constant buffer: icb[Index1D]
  • +
  • sampler s[Index1D]
  • +
  • resource r[Index1D]
  • +
  • input patch constant register: vpc[Index1D]
  • +
  • unordered access view: u[Index1D]
  • +
  • thread group shared memory: g[Index1D]
  • +
+
+ + An array of indexes for two-dimensional arrays. These indexes are used by the following register types: + +
    +
  • GS input: v[Index2D[0]][Index2D[1]]
  • +
  • indexable temp: x[Index2D[0]][Index2D[1]]
  • +
  • constant buffer: cb#[#]
  • +
  • input control point register: vcp[Index2D[0]][Index2D[1]]
  • +
  • output control point register: vocp[Index2D[0]][Index2D[1]]
  • +
+
+ + The index of the operand, which starts from 0. + + + A combination of the following flags that are combined by using a bitwise OR operation. The resulting value specifies more about the trace register. + + + + + + + + + + +
FlagDescription
D3D11_TRACE_REGISTER_FLAGS_RELATIVE_INDEXING (0x1)Access to the register is part of the relative indexing of a register.
+
+ + + Get a shader-reflection variable by name. + Microsoft Docs: + Variable name. + + + + + Get the flags used during the call to create the device with D3D11CreateDevice. + Microsoft Docs: + + + + + Gets the properties of a render-target view. + Microsoft Docs: + A pointer to a D3D11_RENDER_TARGET_VIEW_DESC1 structure that receives the description of the render-target view. + + + + + Creates a render-target view for accessing resource data. + Microsoft Docs: + Pointer to a ID3D11Resource that represents a render target. This resource must have been created with the D3D11_BIND_RENDER_TARGET flag. + Pointer to a D3D11_RENDER_TARGET_VIEW_DESC that represents a render-target view description. Set this parameter to NULL to create a view that accesses all of the subresources in mipmap level 0. + Address of a pointer to an ID3D11RenderTargetView. Set this parameter to NULL to validate the other input parameters (the method will return S_FALSE if the other input parameters pass validation). + + + + + Set the number of milliseconds to sleep after IDXGISwapChain::Present is called. + Microsoft Docs: + Number of milliseconds to sleep after Present is called. + + + + + Creates a call-function linking node to use in the function-linking-graph. + Microsoft Docs: + The optional namespace for the function, or NULL if no namespace is needed. + A pointer to the ID3D11ModuleInstance interface for the library module that contains the function prototype. + The name of the function. + A pointer to a variable that receives a pointer to the ID3D11LinkingNode interface that represents the function in the function-linking-graph. + + + + + Gets an ID3D11ShaderReflectionType Interface interface containing the variable base class type. + Microsoft Docs: + + + + + Creates a context state object that holds all Microsoft Direct3D state and some Direct3D behavior. + Microsoft Docs: + A combination of + D3D11_1_CREATE_DEVICE_CONTEXT_STATE_FLAG + values that are combined by using a bitwise OR operation. + The resulting value specifies how to create the context state object. + The + D3D11_1_CREATE_DEVICE_CONTEXT_STATE_SINGLETHREADEDflag is currently the only defined flag. + If the original device was created with + D3D11_CREATE_DEVICE_SINGLETHREADED, + you must create all context state objects from that device with the + D3D11_1_CREATE_DEVICE_CONTEXT_STATE_SINGLETHREADEDflag. + + + + +If you set the single-threaded flag for both the context state object and the device, you guarantee that you will call the whole set of context methods and device methods only from one thread. + You therefore do not need to use critical sections to synchronize access to the device context, and the runtime can avoid working with those processor-intensive critical sections. + A pointer to an array of D3D_FEATURE_LEVEL values. The array can contain elements from the following list and determines the order of feature levels for which creation is attempted. + Unlike D3D11CreateDevice, you can't set pFeatureLevels to NULL because there is no default feature level array. + + + + +{ + D3D_FEATURE_LEVEL_11_1, + D3D_FEATURE_LEVEL_11_0, + D3D_FEATURE_LEVEL_10_1, + D3D_FEATURE_LEVEL_10_0, + D3D_FEATURE_LEVEL_9_3, + D3D_FEATURE_LEVEL_9_2, + D3D_FEATURE_LEVEL_9_1, +}; + + + The number of elements in pFeatureLevels. Unlike D3D11CreateDevice, you must set FeatureLevels to greater than 0 because you can't set pFeatureLevels to NULL. + The SDK version. You must set this parameter to D3D11_SDK_VERSION. + The globally unique identifier (GUID) for the emulated interface. This value specifies the behavior of the device when the context state object is active. Valid values are obtained by using the __uuidof operator on the ID3D10Device, ID3D10Device1, ID3D11Device, and ID3D11Device1 interfaces. See Remarks. + A pointer to a variable that receives a D3D_FEATURE_LEVEL value from the pFeatureLevels array. This is the first array value with which CreateDeviceContextState succeeded in creating the context state object. If the call to CreateDeviceContextState fails, the variable pointed to by pChosenFeatureLevel is set to zero. + The address of a pointer to an ID3DDeviceContextState object that represents the state of a Direct3D device. + + + + + Allows applications to annotate the end of a range of graphics commands. + Microsoft Docs: + + + + + Contains a response from the ID3D11VideoContext::QueryAuthenticatedChannel method. + Microsoft Docs: + + + + A D3D11_OMAC structure that contains a Message Authentication Code (MAC) of the data. The driver uses AESbased one-key CBC MAC (OMAC) to calculate this value for the block of data that appears after this structure member. + + + A GUID that specifies the query. For a list of possible values, see D3D11_AUTHENTICATED_QUERY_INPUT + + + A handle to the authenticated channel. To get the handle, call the ID3D11AuthenticatedChannel::GetChannelHandle method. + + + The query sequence number. + + + The result code for the query. + + + + Get the shader resource view's description. + Microsoft Docs: + A pointer to a D3D11_SHADER_RESOURCE_VIEW_DESC structure to be filled with data about the shader resource view. + + + + + The default tracking interface sets reference default tracking options. + Microsoft Docs: + + + + + Bind an array of shader resources to the domain-shader stage. + Microsoft Docs: + Index into the device's zero-based array to begin setting shader resources to (ranges from 0 to D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1). + Number of shader resources to set. Up to a maximum of 128 slots are available for shader resources(ranges from 0 to D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot). + Array of shader resource view interfaces to set to the device. + + + + + A module interface creates an instance of a module that is used for resource rebinding. + Microsoft Docs: + + + + + Identifies a texture resource for a video processor output view. + Microsoft Docs: + + + + The zero-based index into the array of subtextures. + + + + Initializes an instance of a shader module that is used for resource rebinding. + Microsoft Docs: + The name of a shader module to initialize. This can be NULL if you don't want to specify a name for the module. + The address of a pointer to an ID3D11ModuleInstance interface to initialize. + + + + + Given aprofile, checks whether the driver supports a specified output format. + Microsoft Docs: + A pointer to a GUID that identifies the profile. To get the list of supported profiles, call ID3D11VideoDevice::GetVideoDecoderProfile. + A DXGI_FORMAT value that specifies the output format. Typical values include DXGI_FORMAT_NV12 and DXGI_FORMAT_420_OPAQUE. + Receives the value TRUE if the format is supported, or FALSE otherwise. + + + + + Options that specify how to perform shader debug tracking. + Microsoft Docs: + + + + No debug tracking is performed. + + + Track the reading of uninitialized data. + + + Track read-after-write hazards. + + + Track write-after-read hazards. + + + Track write-after-write hazards. + + + Track that hazards are allowed in which data is written but the value does not change. + + + Track that only one type of atomic operation is used on an address. + + + Track read-after-write hazards across thread groups. + + + Track write-after-read hazards across thread groups. + + + Track write-after-write hazards across thread groups. + + + Track that only one type of atomic operation is used on an address across thread groups. + + + Track hazards that are specific to unordered access views (UAVs). + + + Track all hazards. + + + Track all hazards and track that hazards are allowed in which data is written but the value does not change. + + + All of the preceding tracking options are set except D3D11_SHADER_TRACKING_OPTION_IGNORE. + + + + Creates an array of 1D textures. + Microsoft Docs: + A pointer to a D3D11_TEXTURE1D_DESC structure that describes a 1D texture resource. To create a typeless resource that can be interpreted at runtime into different, compatible formats, specify a typeless format in the texture description. To generate mipmap levels automatically, set the number of mipmap levels to 0. + A pointer to an array of D3D11_SUBRESOURCE_DATA structures that describe subresources for the 1D texture resource. Applications can't specify NULL for pInitialData when creating IMMUTABLE resources (see D3D11_USAGE). If the resource is multisampled, pInitialData must be NULL because multisampled resources cannot be initialized with data when they are created. + +If you don't pass anything to pInitialData, the initial content of the memory for the resource is undefined. In this case, you need to write the resource content some other way before the resource is read. + +You can determine the size of this array from values in the MipLevels and ArraySize members of the D3D11_TEXTURE1D_DESC structure to which pDesc points by using the following calculation: + +MipLevels * ArraySize + +For more information about this array size, see Remarks. + A pointer to a buffer that receives a pointer to a ID3D11Texture1D interface for the created texture. Set this parameter to NULL to validate the other input parameters (the method will return S_FALSE if the other input parameters pass validation). + + + + + Create a geometry shader. + Microsoft Docs: + A pointer to the compiled shader. + Size of the compiled geometry shader. + A pointer to a class linkage interface (see ID3D11ClassLinkage); the value can be NULL. + Address of a pointer to a ID3D11GeometryShader interface. If this is NULL, all other parameters will be validated, and if all + parameters pass validation this API will return S_FALSE instead of S_OK. + + + + + This method returns the buffer of the current ID3D11ShaderReflectionVariable. + Microsoft Docs: + + + + + Gets a handle to the cryptographic session. + Microsoft Docs: + Receives a handle to the session. + + + + + Sets the constant buffers used by the compute-shader stage. + Microsoft Docs: + Index into the zero-based array to begin setting constant buffers to (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1). + Number of buffers to set (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot). + Array of constant buffers (see ID3D11Buffer) being given to the device. + + + + + For stereo 3D video, specifies whether the data in frame 0 or frame 1 is flipped, either horizontally or vertically. + Microsoft Docs: + + + + Neither frame is flipped. + + + The data in frame 0 is flipped. + + + The data in frame 1 is flipped. + + + + Contains input data for the ID3D11VideoContext::ConfigureAuthenticatedChannel method. + Microsoft Docs: + + + + A D3D11_OMAC structure that contains a Message Authentication Code (MAC) of the data. The driver uses AES-based one-key CBC MAC (OMAC) to calculate this value for the block of data that appears after this structure member. + + + A GUID that specifies the command. The following GUIDs are defined. + + + + + + + + + + + + + + + + + + + + + + + + + + +
ValueMeaning
+
D3D11_AUTHENTICATED_CONFIGURE_CRYPTO_SESSION
+
+
+Associates a cryptographic session with a decoder device and a Direct3D device. + + + +Input data: D3D11_AUTHENTICATED_CONFIGURE_CRYPTO_SESSION_INPUT + + +
+
D3D11_AUTHENTICATED_CONFIGURE_ENCRYPTION_WHEN_ACCESSIBLE
+
+
+Sets the level of encryption that is performed before protected content becomes accessible to the CPU or bus. + + + +Input data: D3D11_AUTHENTICATED_CONFIGURE_ACCESSIBLE_ENCRYPTION_INPUT + + +
+
D3D11_AUTHENTICATED_CONFIGURE_INITIALIZE
+
+
+Initializes the authenticated channel. + + + +Input data: D3D11_AUTHENTICATED_CONFIGURE_INITIALIZE_INPUT + + +
+
D3D11_AUTHENTICATED_CONFIGURE_PROTECTION
+
+
+Enables or disables protection for the device. + + + +Input data: D3D11_AUTHENTICATED_CONFIGURE_PROTECTION_INPUT + + +
+
D3D11_AUTHENTICATED_CONFIGURE_SHARED_RESOURCE
+
+
+Enables a process to open a shared resource, or disables a process from opening shared resources. + + + +Input data: D3D11_AUTHENTICATED_CONFIGURE_SHARED_RESOURCE_INPUT + + +
+
+ + A handle to the authenticated channel. To get the handle, call the ID3D11AuthenticatedChannel::GetChannelHandle method. + + + The query sequence number. At the start of the session, generate a cryptographically secure 32-bit random number to use as the starting sequence number. For each query, increment the sequence number by 1. + + + + Specifies the subresource from a 1D texture to use in a render-target view. + Microsoft Docs: + + + + The index of the mipmap level to use mip slice. + + + + Specifies capabilities of the video decoder. + Microsoft Docs: + + + + Indicates that the graphics driver supports at least a subset of downsampling operations. + + + Indicates that the decoding hardware cannot support the decode operation in real-time. Decoding is still supported for transcoding scenarios. + +With this capability, it is possible that decoding can occur in real-time if downsampling is enabled. + + + Indicates that the driver supports changing down sample parameters after the initial down sample parameters have been applied. For more information, see ID3D11VideoContext1::DecoderUpdateDownsampling. + + + + Sets the alpha fill mode for data that the video processor writes to the render target. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. To get this pointer, call ID3D11VideoDevice::CreateVideoProcessor. + The alpha fill mode, specified as a D3D11_VIDEO_PROCESSOR_ALPHA_FILL_MODE value. + The zero-based index of an input stream. This parameter is used if AlphaFillMode is D3D11_VIDEO_PROCESSOR_ALPHA_FILL_MODE_SOURCE_STREAM. Otherwise, the parameter is ignored. + + + + + Describes compute shader and raw and structured buffer support in the current graphics driver. + Microsoft Docs: + + + + TRUE if compute shaders and raw and structured buffers are supported; otherwise FALSE. + + + + Describes a function parameter. + Microsoft Docs: + + + + The name of the function parameter. + + + The HLSL semantic that is associated with this function parameter. This name includes the index, for example, SV_Target[n]. + + + A D3D_SHADER_VARIABLE_TYPE-typed value that identifies the variable type for the parameter. + + + A D3D_SHADER_VARIABLE_CLASS-typed value that identifies the variable class for the parameter as one of scalar, vector, matrix, object, and so on. + + + The number of rows for a matrix parameter. + + + The number of columns for a matrix parameter. + + + A D3D_INTERPOLATION_MODE-typed value that identifies the interpolation mode for the parameter. + + + A combination of D3D_PARAMETER_FLAGS-typed values that are combined by using a bitwise OR operation. The resulting value specifies semantic flags for the parameter. + + + The first input register for this parameter. + + + The first input register component for this parameter. + + + The first output register for this parameter. + + + The first output register component for this parameter. + + + + Sets the constant buffers that the domain-shader stage uses. + Microsoft Docs: + Index into the zero-based array to begin setting constant buffers to (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1). + Number of buffers to set (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot). + Array of constant buffers being given to the device. + An array that holds the offsets into the buffers that ppConstantBuffers specifies. Each offset specifies where, from the shader's point of view, each constant buffer starts. Each offset is measured in shader constants, which are 16 bytes (4*32-bit components). Therefore, an offset of 16 indicates that the start of the associated constant buffer is 256 bytes into the constant buffer. Each offset must be a multiple of 16 constants. + An array that holds the numbers of constants in the buffers that ppConstantBuffers specifies. Each number specifies the number of constants that are contained in the constant buffer that the shader uses. Each number of constants starts from its respective offset that is specified in the pFirstConstant array. Each number of constants must be a multiple of 16 constants, in the range [0..4096]. + + + + + Sets a driver-specific state on a video processing stream. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. To get this pointer, call ID3D11VideoDevice::CreateVideoProcessor. + The zero-based index of the input stream. To get the maximum number of streams, call ID3D11VideoProcessorEnumerator::GetVideoProcessorCaps and check the MaxStreamStates structure member. + A pointer to a GUID that identifies the operation. The meaning of this GUID is defined by the graphics driver. + The size of the pData buffer, in bytes. + A pointer to a buffer that contains private state data. The method passes this buffer directly to the driver without validation. It is the responsibility of the driver to validate the data. + + + + + Defines capabilities related to input formats for a Microsoft Direct3D 11 video processor. + Microsoft Docs: + + + + The video processor can deinterlace an input stream that contains interlaced RGB video. + + + The video processor can perform color adjustment on RGB video. + + + The video processor can perform luma keying on RGB video. + + + The video processor can deinterlace input streams with palettized color formats. + + + + Describes the blend state that you use in a call to ID3D11Device1::CreateBlendState1 to create a blend-state object. + Microsoft Docs: + + + + Specifies whether to use alpha-to-coverage as a multisampling technique when setting a pixel to a render target. For more info about using alpha-to-coverage, see Alpha-To-Coverage. + + + Specifies whether to enable independent blending in simultaneous render targets. Set to TRUE to enable independent blending. If set to FALSE, only the RenderTarget[0] members are used; RenderTarget[1..7] are ignored. + +See the Remarks section for restrictions. + + + An array of D3D11_RENDER_TARGET_BLEND_DESC1 structures that describe the blend states for render targets; these correspond to the eight render targets that can be bound to the output-merger stage at one time. + + + + Bind an index buffer to the input-assembler stage. + Microsoft Docs: + A pointer to an ID3D11Buffer object, that contains indices. The index buffer must have been created with + the D3D11_BIND_INDEX_BUFFER flag. + A DXGI_FORMAT that specifies the format of the data in the index buffer. The only formats allowed for index + buffer data are 16-bit (DXGI_FORMAT_R16_UINT) and 32-bit (DXGI_FORMAT_R32_UINT) integers. + Offset (in bytes) from the start of the index buffer to the first index to use. + + + + + Describes the subresource from a 2D texture to use in a render-target view. + Microsoft Docs: + + + + The index of the mipmap level to use mip slice. + + + The index (plane slice number) of the plane to use in the texture. + + + + A description of a single element for the input-assembler stage. + Microsoft Docs: + + + + The HLSL semantic associated with this element in a shader input-signature. + + + The semantic index for the element. A semantic index modifies a semantic, with an integer index number. A semantic index is only needed in a + case where there is more than one element with the same semantic. For example, a 4x4 matrix would have four components each with the semantic + name + + + +matrix + + + +, however each of the four component would have different semantic indices (0, 1, 2, and 3). + + + The data type of the element data. See DXGI_FORMAT. + + + An integer value that identifies the input-assembler (see input slot). Valid values are between 0 and 15, defined in D3D11.h. + + + Optional. Offset (in bytes) from the start of the vertex. Use D3D11_APPEND_ALIGNED_ELEMENT for convenience to define the current element directly + after the previous one, including any packing if necessary. + + + Identifies the input data class for a single input slot (see D3D11_INPUT_CLASSIFICATION). + + + The number of instances to draw using the same per-instance data before advancing in the buffer by one element. This value must be 0 for an + element that contains per-vertex data (the slot class is set to D3D11_INPUT_PER_VERTEX_DATA). + + + + ID3D11SwitchToRef interface + Microsoft Docs: + + + + + Draw non-indexed, non-instanced primitives. + Microsoft Docs: + Number of vertices to draw. + Index of the first vertex, which is usually an offset in a vertex buffer. + + + + + Sends queued-up commands in the command buffer to the graphics processing unit (GPU). + Microsoft Docs: + + + + + A resource interface provides common actions on all resources. + Microsoft Docs: + + + + + Set an array of sampler states to the domain-shader stage. + Microsoft Docs: + Index into the device's zero-based array to begin setting samplers to (ranges from 0 to D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - 1). + Number of samplers in the array. Each pipeline stage has a total of 16 sampler slots available (ranges from 0 to D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot). + Pointer to an array of sampler-state interfaces (see ID3D11SamplerState). See Remarks. + + + + + Passes a value from a source linking node to a destination linking node. + Microsoft Docs: + A pointer to the ID3D11LinkingNode interface for the source linking node. + The zero-based index of the source parameter. + A pointer to the ID3D11LinkingNode interface for the destination linking node. + The zero-based index of the destination parameter. + + + + + Identifies the texture resource for a video decoder output view. + Microsoft Docs: + + + + The zero-based index of the texture. + + + + Gets the corresponding interface slot for a variable that represents an interface pointer. + Microsoft Docs: + Index of the array element to get the slot number for. For a non-array variable this value will be zero. + + + + + Sets the amount of downsampling to perform on the output. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. To get this pointer, call ID3D11VideoDevice::CreateVideoProcessor. + If TRUE, downsampling is enabled. Otherwise, downsampling is disabled and the Size member is ignored. + The sampling size. + + + + + Specifies how to handle the existing contents of a resource during a copy or update operation of a region within that resource. + Microsoft Docs: + + + + The existing contents of the resource cannot be overwritten. + + + The existing contents of the resource are undefined and can be discarded. + + + + Turns multithread protection on or off. + Microsoft Docs: + Set to true to turn multithread protection on, false to turn it off. + + + + + Get the constant buffers used by the domain-shader stage. + Microsoft Docs: + Index into the device's zero-based array to begin retrieving constant buffers from (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1). + Number of buffers to retrieve (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot). + Array of constant buffer interface pointers (see ID3D11Buffer) to be returned by the method. + + + + + Provides the video functionality of a Microsoft Direct3D 11 device. + Microsoft Docs: + + + + + Create a depth-stencil state object that encapsulates depth-stencil test information for the output-merger stage. + Microsoft Docs: + Pointer to a depth-stencil state description (see D3D11_DEPTH_STENCIL_DESC). + Address of a pointer to the depth-stencil state object created (see ID3D11DepthStencilState). + + + + + Gets the type of device context. + Microsoft Docs: + + + + + Creates a video decoder device for Microsoft Direct3D 11. + Microsoft Docs: + A pointer to a D3D11_VIDEO_DECODER_DESC structure that describes the video stream and the decoder profile. + A pointer to a D3D11_VIDEO_DECODER_CONFIG structure that specifies the decoder configuration. + Receives a pointer to the ID3D11VideoDecoder interface. The caller must release the interface. + + + + + Describes a shader signature. + Microsoft Docs: + + + + A per-parameter string that identifies how the data will be used. For more info, see Semantics. + + + Semantic index that modifies the semantic. Used to differentiate different parameters that use the same semantic. + + + The register that will contain this variable's data. + + + A D3D_NAME-typed value that identifies a predefined string that determines the functionality of certain pipeline stages. + + + A D3D_REGISTER_COMPONENT_TYPE-typed value that identifies the per-component-data type that is stored in a register. Each register can store up to four-components of data. + + + Mask which indicates which components of a register are used. + + + Mask which indicates whether a given component is never written (if the signature is an output signature) or always read (if the signature is an input signature). + + + Indicates which stream the geometry shader is using for the signature parameter. + + + A D3D_MIN_PRECISION-typed value that indicates the minimum desired interpolation precision. For more info, see Using HLSL minimum precision. + + + + Pop a retrieval filter from the top of the retrieval-filter stack. + Microsoft Docs: + + + + + This interface encapsulates methods for retrieving data from the GPU asynchronously. + Microsoft Docs: + + + + + Mark the end of a series of commands. + Microsoft Docs: + A pointer to an ID3D11Asynchronous interface. + + + + + Releases a buffer that was obtained by calling the ID3D11VideoContext::GetDecoderBuffer method. + Microsoft Docs: + A pointer to the ID3D11VideoDecoder interface. To get this pointer, call ID3D11VideoDevice::CreateVideoDecoder. + The type of buffer to release. Specify the same value that was used in the Type parameter of the GetDecoderBuffer method. + + + + + Specifies the subresource from a 2D texture to use in a render-target view. + Microsoft Docs: + + + + The index of the mipmap level to use mip slice. + + + + Returns a group of video processor capabilities that are associated with frame-rate conversion, including deinterlacing and inverse telecine. + Microsoft Docs: + The zero-based index of the group to retrieve. To get the maximum index, call ID3D11VideoProcessorEnumerator::GetVideoProcessorCaps and check the RateConversionCapsCount member of the D3D11_VIDEO_PROCESSOR_CAPS structure. + A pointer to a D3D11_VIDEO_PROCESSOR_RATE_CONVERSION_CAPS structure that receives the frame-rate conversion capabilities. + + + + + Gets the base class of a class. + Microsoft Docs: + + + + + Provides the video functionality of a Microsoft Direct3D 11 device. + Microsoft Docs: + + + + + Provides the video decoding and video processing capabilities of a Microsoft Direct3D 11 device. + Microsoft Docs: + + + + + Switches to a new session key. + Microsoft Docs: + A pointer to the ID3D11CryptoSession interface. + + + + + Set a hull shader to the device. + Microsoft Docs: + Pointer to a hull shader (see ID3D11HullShader). Passing in NULL disables the shader for this pipeline stage. + A pointer to an array of class-instance interfaces (see ID3D11ClassInstance). Each interface used by a shader must have a corresponding class instance or the shader will get disabled. Set ppClassInstances to NULL if the shader does not use any interfaces. + The number of class-instance interfaces in the array. + + + + + Defines a group of video processor capabilities that are associated with frame-rate conversion, including deinterlacing and inverse telecine. + Microsoft Docs: + + + + The number of past reference frames required to perform the optimal video processing. + + + The number of future reference frames required to perform the optimal video processing. + + + A bitwise OR of zero or more flags from the D3D11_VIDEO_PROCESSOR_PROCESSOR_CAPS enumeration. + + + A bitwise OR of zero or more flags from the D3D11_VIDEO_PROCESSOR_ITELECINE_CAPS enumeration. + + + The number of custom frame rates that the driver supports. To get the list of custom frame rates, call the ID3D11VideoProcessorEnumerator::GetVideoProcessorCustomRate method. + + + + Creates a deferred context, which can record command lists. + Microsoft Docs: + Reserved for future use. + Pass 0. + Upon completion of the method, the passed pointer to an ID3D11DeviceContext2 interface pointer is initialized. + + + + + Set an array of sampler states to the vertex shader pipeline stage. + Microsoft Docs: + Index into the device's zero-based array to begin setting samplers to (ranges from 0 to D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - 1). + Number of samplers in the array. Each pipeline stage has a total of 16 sampler slots available (ranges from 0 to D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot). + Pointer to an array of sampler-state interfaces (see ID3D11SamplerState). See Remarks. + + + + + Specifies whether the video processor input stream should be flipped vertically or horizontally. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. + An index identifying the input stream. + True if mirroring should be enabled; otherwise, false. + True if the stream should be flipped horizontally; otherwise, false. + True if the stream should be flipped vertically; otherwise, false. + + + + + Describes feature data GPU virtual address support, including maximum address bits per resource and per process. + Microsoft Docs: + + + + The maximum GPU virtual address bits per resource. + + + The maximum GPU virtual address bits per process. + + + + The device interface represents a virtual adapter; it is used to create resources. ID3D11Device3 adds new methods to those in ID3D11Device2. + Microsoft Docs: + + + + + Sets the stream rotation for an input stream on the video processor. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. To get this pointer, call ID3D11VideoDevice::CreateVideoProcessor. + The zero-based index of the input stream. To get the maximum number of streams, call ID3D11VideoProcessorEnumerator::GetVideoProcessorCaps and check the MaxStreamStates structure member. + Specifies if the stream is to be rotated in a clockwise orientation. + Specifies the rotation of the stream. + + + + + Specifies the subresources from a 3D texture to use in a shader-resource view. + Microsoft Docs: + + + + Index of the most detailed mipmap level to use; this number is between 0 and MipLevels (from the original Texture3D for which ID3D11Device::CreateShaderResourceView creates a view) -1. + + + The maximum number of mipmap levels for the view of the texture. See the remarks in D3D11_TEX1D_SRV. + +Set to -1 to indicate all the mipmap levels from MostDetailedMip on down to least detailed. + + + + Defines a color value for Microsoft Direct3D 11 video. + Microsoft Docs: + + + + A D3D11_VIDEO_COLOR_YCbCrA structure that contains a YCbCr color value. + + + A D3D11_VIDEO_COLOR_RGBA structure that contains an RGB color value. + + + + Get a description of how a resource is bound to a shader. + Microsoft Docs: + A zero-based resource index. + A pointer to an input-binding description. See D3D11_SHADER_INPUT_BIND_DESC. + + + + + Specifies how to access a resource that is used in a video processor input view. + Microsoft Docs: + + + + Not a valid value. + + + The resource will be accessed as a 2D texture. + + + + Describes the level of support for shared resources in the current graphics driver. + Microsoft Docs: + + + + A shared resource support tier. + + + + Get an interface by index. + Microsoft Docs: + Zero-based index. + + + + + A render-target-view interface represents the render-target subresources that can be accessed during rendering. + Microsoft Docs: + + + + + Contains an initialization vector (IV) for 128-bit Advanced Encryption Standard CTR mode (AES-CTR) block cipher encryption. + Microsoft Docs: + + + + The IV, in big-endian format. + + + The block count, in big-endian format. + + + + Sets the output signature of the function-linking-graph. + Microsoft Docs: + An array of D3D11_PARAMETER_DESC structures for the parameters of the output signature. + The number of output parameters in the pOutputParameters array. + A pointer to a variable that receives a pointer to the ID3D11LinkingNode interface that represents the output signature of the function-linking-graph. + + + + + Get the size of the data (in bytes) that is output when calling ID3D11DeviceContext::GetData. + Microsoft Docs: + + + + + Gets the stream rotation for an input stream on the video processor. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. To get this pointer, call ID3D11VideoDevice::CreateVideoProcessor. + The zero-based index of the input stream. To get the maximum number of streams, call ID3D11VideoProcessorEnumerator::GetVideoProcessorCaps and check the MaxStreamStates structure member. + Specifies if the stream is rotated. + Specifies the rotation of the stream in a clockwise orientation. + + + + + Indicates whether two ID3D11ShaderReflectionType Interface pointers have the same underlying type. + Microsoft Docs: + A pointer to a ID3D11ShaderReflectionType Interface. + + + + + Describes an instance of a vertex shader to trace. + Microsoft Docs: + + + + The invocation number of the instance of the vertex shader. + + + + Specifies the elements in a buffer resource to use in a render-target view. + Microsoft Docs: + + + + Number of bytes between the beginning of the buffer and the first element to access. + + + The offset of the first element in the view to access, relative to element 0. + + + The total number of elements in the view. + + + The width of each element (in bytes). This can be determined from the format stored in the render-target-view description. + + + + A function-parameter-reflection interface accesses function-parameter info. + Microsoft Docs: + + + + + The different faces of a cube texture. + Microsoft Docs: + + + + Positive X face. + + + Negative X face. + + + Positive Y face. + + + Negative Y face. + + + Positive Z face. + + + Negative Z face. + + + + Links the shader and produces a shader blob that the Direct3D runtime can use. + Microsoft Docs: + A pointer to the ID3D11ModuleInstance interface for the shader module instance to link from. + The name of the shader module instance to link from. + The name for the shader blob that is produced. + Reserved. + A pointer to a variable that receives a pointer to the ID3DBlob interface that you can use to access the compiled shader code. + A pointer to a variable that receives a pointer to the ID3DBlob interface that you can use to access compiler error messages. + + + + + Describes a 3D texture. + Microsoft Docs: + + + + Texture width (in texels). The range is from 1 to D3D11_REQ_TEXTURE3D_U_V_OR_W_DIMENSION (2048). However, the range is actually constrained by the feature level at which you create the rendering device. For more information about restrictions, see Remarks. + + + Texture height (in texels). The range is from 1 to D3D11_REQ_TEXTURE3D_U_V_OR_W_DIMENSION (2048). However, the range is actually constrained by the feature level at which you create the rendering device. For more information about restrictions, see Remarks. + + + Texture depth (in texels). The range is from 1 to D3D11_REQ_TEXTURE3D_U_V_OR_W_DIMENSION (2048). However, the range is actually constrained by the feature level at which you create the rendering device. For more information about restrictions, see Remarks. + + + The maximum number of mipmap levels in the texture. See the remarks in D3D11_TEX1D_SRV. Use 1 for a multisampled texture; or 0 to generate a full set of subtextures. + + + Texture format (see DXGI_FORMAT). + + + Value that identifies how the texture is to be read from and written to. The most common value is D3D11_USAGE_DEFAULT; see D3D11_USAGE for all possible values. + + + Flags (see D3D11_BIND_FLAG) for binding to pipeline stages. The flags can be combined by a logical OR. + + + Flags (see D3D11_CPU_ACCESS_FLAG) to specify the types of CPU access allowed. Use 0 if CPU access is not required. These flags can be combined with a logical OR. + + + Flags (see D3D11_RESOURCE_MISC_FLAG) that identify other, less common resource options. Use 0 if none of these flags apply. These flags can be combined with a logical OR. + + + A D3D11_TEXTURE_LAYOUT-typed value that identifies the layout of the texture. + +The TextureLayout parameter selects both the actual layout of the texture in memory and the layout visible to the application while the texture is mapped. These flags may not be requested without CPU access also requested. + +It is illegal to set CPU access flags on default textures without also setting Layout to a value other than D3D11_TEXTURE_LAYOUT_UNDEFINED. + +D3D11_TEXTURE_LAYOUT_ROW_MAJOR may not be used with 3D textures. D3D11_TEXTURE_LAYOUT_64K_STANDARD_SWIZZLE may not be used with 3D textures that have mipmaps. + + + + Creates a blend-state object that encapsulates blend state for the output-merger stage and allows the configuration of logic operations. + Microsoft Docs: + A pointer to a D3D11_BLEND_DESC1 structure that describes blend state. + Address of a pointer to the ID3D11BlendState1 interface for the blend-state object created. + + + + + Get a message identifier to break on when a message with that identifier passes through the storage filter. + Microsoft Docs: + Message identifier to break on (see D3D11_MESSAGE_ID). + + + + + Identifies the type of resource being used. + Microsoft Docs: + + + + Resource is of unknown type. + + + Resource is a buffer. + + + Resource is a 1D texture. + + + Resource is a 2D texture. + + + Resource is a 3D texture. + + + + Type of data contained in an input slot. + Microsoft Docs: + + + + Input data is per-vertex data. + + + Input data is per-instance data. + + + + Gets the function reflector. + Microsoft Docs: + The zero-based index of the function reflector to retrieve. + + + + + Describes precision support options for shaders in the current graphics driver. + Microsoft Docs: + + + + A combination of D3D11_SHADER_MIN_PRECISION_SUPPORT-typed values that are combined by using a bitwise OR operation. The resulting value specifies minimum precision levels that the driver supports for the pixel shader. A value of zero indicates that the driver supports only full 32-bit precision for the pixel shader. + + + A combination of D3D11_SHADER_MIN_PRECISION_SUPPORT-typed values that are combined by using a bitwise OR operation. The resulting value specifies minimum precision levels that the driver supports for all other shader stages. A value of zero indicates that the driver supports only full 32-bit precision for all other shader stages. + + + + Represents a query object for querying information from the graphics processing unit (GPU). + Microsoft Docs: + + + + + Set the blend state of the output-merger stage. + Microsoft Docs: + Pointer to a blend-state interface (see ID3D11BlendState). Pass NULL for a default blend state. For more info about default blend state, see Remarks. + Array of blend factors, one for each RGBA component. The blend factors modulate values for the pixel shader, render target, or both. If you created the blend-state object with D3D11_BLEND_BLEND_FACTOR or D3D11_BLEND_INV_BLEND_FACTOR, the blending stage uses the non-NULL array of blend factors. If you didn't create the blend-state object with D3D11_BLEND_BLEND_FACTOR or D3D11_BLEND_INV_BLEND_FACTOR, the blending stage does not use the non-NULL array of blend factors; the runtime stores the blend factors, and you can later call ID3D11DeviceContext::OMGetBlendState to retrieve the blend factors. If you pass NULL, the runtime uses or stores a blend factor equal to { 1, 1, 1, 1 }. + 32-bit sample coverage. The default value is 0xffffffff. See remarks. + + + + + Get the description of a shader-reflection-variable type. + Microsoft Docs: + A pointer to a shader-type description (see D3D11_SHADER_TYPE_DESC). + + + + + Create a command list and record graphics commands into it. + Microsoft Docs: + A Boolean flag that determines whether the runtime saves deferred context state before it executes FinishCommandList and restores it afterwards. Use TRUE to indicate that the runtime needs to save and restore the state. Use FALSE to indicate that the runtime will not save or restore any state. In this case, the deferred context will return to its default state after the call to FinishCommandList completes. For information about default state, see ID3D11DeviceContext::ClearState. Typically, use FALSE unless you restore the state to be nearly equivalent to the state that the runtime would restore if you passed TRUE. When you use FALSE, you can avoid unnecessary and inefficient state transitions. + + +
Note  This parameter does not affect the command list that the current call to FinishCommandList returns. However, this parameter affects the command list of the next call to FinishCommandList on the same deferred context. +
+
 
+ Upon completion of the method, the passed pointer to an ID3D11CommandList interface pointer is initialized with the recorded command list information. The resulting ID3D11CommandList object is immutable and can only be used with ID3D11DeviceContext::ExecuteCommandList. +
+
+ + + Get the number of messages that are able to pass through a retrieval filter. + Microsoft Docs: + + + + + Gets the capabilities of the video processor. + Microsoft Docs: + A pointer to a D3D11_VIDEO_PROCESSOR_CAPS structure that receives the capabilities. + + + + + Push an empty retrieval filter onto the retrieval-filter stack. + Microsoft Docs: + + + + + Gets the current target rectangle for the video processor. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. To get this pointer, call ID3D11VideoDevice::CreateVideoProcessor. + Receives the value TRUE if the target rectangle was explicitly set using the ID3D11VideoContext::VideoProcessorSetOutputTargetRect method. Receives the value FALSE if the target rectangle was disabled or was never set. + If Enabled receives the value TRUE, this parameter receives the target rectangle. Otherwise, this parameter is ignored. + + + + + Describes a unordered-access 2D texture resource. + Microsoft Docs: + + + + The mipmap slice index. + + + The index (plane slice number) of the plane to use in the texture. + + + + Describes a query. + Microsoft Docs: + + + + Type of query (see D3D11_QUERY). + + + Miscellaneous flags (see D3D11_QUERY_MISC_FLAG). + + + + Contains input data for a D3D11_AUTHENTICATED_CONFIGURE_SHARED_RESOURCE command. + Microsoft Docs: + + + + A D3D11_AUTHENTICATED_CONFIGURE_INPUT structure that contains the command GUID and other data. + + + A D3D11_AUTHENTICATED_PROCESS_IDENTIFIER_TYPE value that specifies the type of process. + +To specify the Desktop Window Manager (DWM) process, set this member to D3D11_PROCESSIDTYPE_DWM. Otherwise, set this member to D3D11_PROCESSIDTYPE_HANDLE and set the ProcessHandle member to a valid handle. + + + A process handle. If the ProcessType member equals D3D11_PROCESSIDTYPE_HANDLE, the ProcessHandle member specifies a handle to a process. Otherwise, the value is ignored. + + + If TRUE, the specified process has access to restricted shared resources. + + + + Describes the size of a tiled region. + Microsoft Docs: + + + + The number of tiles in the tiled region. + + + Specifies whether the runtime uses the Width, Height, and Depth members to define the region. + +If TRUE, the runtime uses the Width, Height, and Depth members to define the region. + +If FALSE, the runtime ignores the Width, Height, and Depth members and uses the NumTiles member to traverse tiles in the resource linearly across x, then y, then z (as applicable) and then spills over mipmaps/arrays in subresource order. For example, use this technique to map an entire resource at once. + +Regardless of whether you specify TRUE or FALSE for bUseBox, you use a D3D11_TILED_RESOURCE_COORDINATE structure to specify the starting location for the region within the resource as a separate parameter outside of this structure by using x, y, and z coordinates. + +When the region includes mipmaps that are packed with nonstandard tiling, bUseBox must be FALSE because tile dimensions are not standard and the app only knows a count of how many tiles are consumed by the packed area, which is per array slice. The corresponding (separate) starting location parameter uses x to offset into the flat range of tiles in this case, and y and z coordinates must each be 0. + + + The width of the tiled region, in tiles. Used for buffer and 1D, 2D, and 3D textures. + + + The height of the tiled region, in tiles. Used for 2D and 3D textures. + + + The depth of the tiled region, in tiles. Used for 3D textures or arrays. For arrays, used for advancing in depth jumps to next slice of same mipmap size, which isn't contiguous in the subresource counting space if there are multiple mipmaps. + + + + Draw non-indexed, instanced primitives. + Microsoft Docs: + Number of vertices to draw. + Number of instances to draw. + Index of the first vertex. + A value added to each index before reading per-instance data from a vertex buffer. + + + + + Creates a 3D texture. + Microsoft Docs: + A pointer to a D3D11_TEXTURE3D_DESC1 structure that describes a 3D texture resource. To create a typeless resource that can be interpreted at runtime into different, compatible formats, specify a typeless format in the texture description. To generate mipmap levels automatically, set the number of mipmap levels to 0. + A pointer to an array of D3D11_SUBRESOURCE_DATA structures that describe subresources for the 3D texture resource. Applications can't specify NULL for pInitialData when creating IMMUTABLE resources (see D3D11_USAGE). If the resource is multisampled, pInitialData must be NULL because multisampled resources can't be initialized with data when they are created. + +If you don't pass anything to pInitialData, the initial content of the memory for the resource is undefined. In this case, you need to write the resource content some other way before the resource is read. + +You can determine the size of this array from the value in the MipLevels member of the D3D11_TEXTURE3D_DESC1 structure to which pDesc1 points. Arrays of 3D volume textures aren't supported. + +For more information about this array size, see Remarks. + A pointer to a memory block that receives a pointer to a ID3D11Texture3D1 interface for the created texture. Set this parameter to NULL to validate the other input parameters (the method will return S_FALSE if the other input parameters pass validation). + + + + + Creates class linkage libraries to enable dynamic shader linkage. + Microsoft Docs: + A pointer to a class-linkage interface pointer (see ID3D11ClassLinkage). + + + + + Describes an array of unordered-access 2D texture resources. + Microsoft Docs: + + + + The mipmap slice index. + + + The zero-based index of the first array slice to be accessed. + + + The number of slices in the array. + + + + A linker interface is used to link a shader module. + Microsoft Docs: + + + + + Get the support of a given format on the installed video device. + Microsoft Docs: + A DXGI_FORMAT enumeration that describes a format for which to check for support. + A bitfield of D3D11_FORMAT_SUPPORT enumeration values describing how the specified format is supported on the installed device. + The values are ORed together. + + + + + Contains the response to a D3D11_AUTHENTICATED_QUERY_OUTPUT_ID_COUNT query. + Microsoft Docs: + + + + A D3D11_AUTHENTICATED_QUERY_OUTPUT structure that contains a Message Authentication Code (MAC) and other data. + + + A handle to the device. + + + A handle to the cryptographic session. + + + The number of output IDs associated with the specified device and cryptographic session. + + + + Gets the current output color space for the video processor. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. To get this pointer, call ID3D11VideoDevice::CreateVideoProcessor. + A pointer to a D3D11_VIDEO_PROCESSOR_COLOR_SPACE structure. The method fills in the structure with the output color space. + + + + + Gets the HDR metadata associated with the video stream. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. + Identifies the input stream. + The type of the HDR metadata currently associated with the stream. + The size of the memory referenced by pHDRMetaData. + +If pHDRMetaData is NULL, Size should be 0. + Pointer to a buffer that receives the HDR metadata. + +This parameter can be NULL. + + + + + Push a retrieval filter onto the retrieval-filter stack. + Microsoft Docs: + Pointer to a retrieval filter (see D3D11_INFO_QUEUE_FILTER). + + + + + Sets graphics processing unit (GPU) debug reference tracking options. + Microsoft Docs: + A combination of D3D11_SHADER_TRACKING_OPTIONS-typed flags that are combined by using a bitwise OR operation. The resulting value identifies tracking options. If a flag is present, the tracking option that the flag represents is set to "on"; otherwise the tracking option is set to "off." + + + + + Updates the decoder downsampling parameters. + Microsoft Docs: + A pointer to the ID3D11VideoDecoder interface. + The resolution, format, and colorspace of the output/display frames. This is the destination resolution and format of the downsample operation. + + + + + Gets the type of encryption that is supported by this session. + Microsoft Docs: + Receives a GUID that specifies the encryption type. The following GUIDs are defined. + + + + + + + + + + +
ValueMeaning
+
D3D11_CRYPTO_TYPE_AES128_CTR
+
+
+128-bit Advanced Encryption Standard CTR mode (AES-CTR) block cipher. + + +
+
+
+ + + Identifies how to check multisample quality levels. + Microsoft Docs: + + + + Indicates to check the multisample quality levels of a tiled resource. + + + + Describes a unordered-access 1D texture resource. + Microsoft Docs: + + + + The mipmap slice index. + + + + Gets the luma key for an input stream of the video processor. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. To get this pointer, call ID3D11VideoDevice::CreateVideoProcessor. + The zero-based index of the input stream. To get the maximum number of streams, call ID3D11VideoProcessorEnumerator::GetVideoProcessorCaps and check the MaxStreamStates structure member. + Receives the value TRUE if luma keying is enabled, or FALSE otherwise. + Receives the lower bound for the luma key. The valid range is [0…1]. + Receives the upper bound for the luma key. The valid range is [0…1]. + + + + + Describes how a shader resource is bound to a shader input. + Microsoft Docs: + + + + Name of the shader resource. + + + A D3D_SHADER_INPUT_TYPE-typed value that identifies the type of data in the resource. + + + Starting bind point. + + + Number of contiguous bind points for arrays. + + + A combination of D3D_SHADER_INPUT_FLAGS-typed values for shader input-parameter options. + + + If the input is a texture, the D3D_RESOURCE_RETURN_TYPE-typed value that identifies the return type. + + + A D3D_SRV_DIMENSION-typed value that identifies the dimensions of the bound resource. + + + The number of samples for a multisampled texture; when a texture isn't multisampled, the value is set to -1 (0xFFFFFFFF). + + + + Specifies a multi-sample pattern type. + Microsoft Docs: + + + + Pre-defined multi-sample patterns required for Direct3D 11 and Direct3D 10.1 hardware. + + + Pattern where all of the samples are located at the pixel center. + + + + The sampler-state interface holds a description for sampler state that you can bind to any shader stage of the pipeline for reference by texture sample operations. + Microsoft Docs: + + + + + Get a shader-variable type. + Microsoft Docs: + + + + + Creates a cryptographic session to encrypt video content that is sent to the graphics driver. + Microsoft Docs: + A pointer to a GUID that specifies the type of encryption to use. The following GUIDs are defined. + + + + + + + + + + + + +
ValueMeaning
+
D3D11_CRYPTO_TYPE_AES128_CTR
+
+
+128-bit Advanced Encryption Standard CTR mode (AES-CTR) block cipher. + + +
+ A pointer to a GUID that specifies the decoding profile. For a list of possible values, see ID3D11VideoDevice::GetVideoDecoderProfile. If decoding will not be used, set this parameter to NULL. + A pointer to a GUID that specifies the type of key exchange. + + + + + + + + + + +
ValueMeaning
+
D3D11_KEY_EXCHANGE_RSAES_OAEP
+
+
+The caller will create the session key, encrypt it with RSA Encryption Scheme - Optimal Asymmetric Encryption Padding (RSAES-OAEP) by using the driver's public key, and pass the session key to the driver. + +
+ Receives a pointer to the ID3D11CryptoSession interface. The caller must release the interface. +
+
+ + + Identifies a video processor filter. + Microsoft Docs: + + + + Brightness filter. + + + Contrast filter. + + + Hue filter. + + + Saturation filter. + + + Noise reduction filter. + + + Edge enhancement filter. + + + Anamorphic scaling filter. + + + Stereo adjustment filter. When stereo 3D video is enabled, this filter adjusts the offset between the left and right views, allowing the user to reduce potential eye strain. + +The filter value indicates the amount by which the left and right views are adjusted. A positive value shifts the images away from each other: the left image toward the left, and the right image toward the right. A negative value shifts the images in the opposite directions, closer to each other. + + + + Get a pointer to the device that created this interface. + Microsoft Docs: + Address of a pointer to a device (see ID3D11Device). + + + + + Sets the constant buffers that the pixel shader pipeline stage uses, and enables the shader to access other parts of the buffer. + Microsoft Docs: + Index into the device's zero-based array to begin setting constant buffers to (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1). + Number of buffers to set (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot). + Array of constant buffers being given to the device. + An array that holds the offsets into the buffers that ppConstantBuffers specifies. + Each offset specifies where, from the shader's point of view, each constant buffer starts. + Each offset is measured in shader constants, which are 16 bytes (4*32-bit components). + Therefore, an offset of 16 indicates that the start of the associated constant buffer is 256 bytes into the constant buffer. + Each offset must be a multiple of 16 constants. + An array that holds the numbers of constants in the buffers that ppConstantBuffers specifies. + Each number specifies the number of constants that are contained in the constant buffer that the shader uses. + Each number of constants starts from its respective offset that is specified in the pFirstConstant array. + Each number of constants must be a multiple of 16 constants, in the range [0..4096]. + + + + + Specifies the subresources from an array 2D textures that are accessible to a depth-stencil view. + Microsoft Docs: + + + + The index of the first mipmap level to use. + + + The index of the first texture to use in an array of textures. + + + Number of textures to use. + + + + Rebinds a constant buffer from a source slot to a destination slot. + Microsoft Docs: + The source slot number for rebinding. + The destination slot number for rebinding. + The offset in bytes of the destination slot for rebinding. The offset must have 16-byte alignment. + + + + + Sets the reference rasterizer's race-condition tracking options for a specific shader. + Microsoft Docs: + A pointer to the IUnknown interface of a shader. + A combination of D3D11_SHADER_TRACKING_OPTIONS-typed flags that are combined by using a bitwise OR operation. The resulting value identifies tracking options. If a flag is present, the tracking option that the flag represents is set to "on"; otherwise the tracking option is set to "off." + + + + + Gets the minimum feature level. + Microsoft Docs: + A pointer to one of the enumerated values in D3D_FEATURE_LEVEL, which represents the minimum feature level. + + + + + Specifies that the shader trace recorded and is ready to use. + Microsoft Docs: + An optional pointer to a variable that receives the number of times that a matching invocation for the trace occurred. If not used, set to NULL. +For more information about this number, see Remarks. + + + + + Queries whether automatic processing features of the video processor are enabled. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. To get this pointer, call ID3D11VideoDevice::CreateVideoProcessor. + The zero-based index of the input stream. To get the maximum number of streams, call ID3D11VideoProcessorEnumerator::GetVideoProcessorCaps and check the MaxStreamStates structure member. + Receives the value TRUE if automatic processing features are enabled, or FALSE otherwise. + + + + + Find out if multithread protection is turned on or not. + Microsoft Docs: + + + + + Contains input data for a D3D11_AUTHENTICATED_CONFIGURE_CRYPTO_SESSION command. + Microsoft Docs: + + + + A D3D11_AUTHENTICATED_CONFIGURE_INPUT structure that contains the command GUID and other data. + + + A handle to the decoder device. Get this from ID3D11VideoDecoder::GetDriverHandle. + + + A handle to the cryptographic session. Get this from ID3D11CryptoSession::GetCryptoSessionHandle. + + + A handle to the Direct3D device. Get this from D3D11VideoContext::QueryAuthenticatedChannel using D3D11_AUTHENTICATED_QUERY_DEVICE_HANDLE. + + + + Contains input data for a D3D11_AUTHENTICATED_CONFIGURE_INITIALIZE command. + Microsoft Docs: + + + + A D3D11_AUTHENTICATED_CONFIGURE_INPUT structure that contains the command GUID and other data. + + + The initial sequence number for queries. + + + The initial sequence number for commands. + + + + Describes a compressed buffer for decoding. + Microsoft Docs: + + + + The type of buffer, specified as a member of the D3D11_VIDEO_DECODER_BUFFER_TYPE enumeration. + + + Reserved. + + + The offset of the relevant data from the beginning of the buffer, in bytes. This value must be zero. + + + The macroblock address of the first macroblock in the buffer. The macroblock address is given in raster scan order. + + + The number of macroblocks of data in the buffer. This count includes skipped macroblocks. + + + Reserved. Set to zero. + + + Reserved. Set to zero. + + + Reserved. Set to zero. + + + Reserved. Set to zero. + + + A pointer to a buffer that contains an initialization vector (IV) for encrypted data. If the decode buffer does not contain encrypted data, set this member to NULL. + + + The size of the buffer specified in the pIV parameter. If pIV is NULL, set this member to zero. + + + If TRUE, the video surfaces are partially encrypted. + + + A D3D11_ENCRYPTED_BLOCK_INFO structure that specifies which bytes of the surface are encrypted. + + + + A function-reflection interface accesses function info. + Microsoft Docs: + + + + + Create a compute shader. + Microsoft Docs: + A pointer to a compiled shader. + Size of the compiled shader in pShaderBytecode. + A pointer to a ID3D11ClassLinkage, which represents class linkage interface; the value can be NULL. + Address of a pointer to an ID3D11ComputeShader interface. If this is NULL, + all other parameters will be validated; if validation passes, CreateComputeShader returns S_FALSE instead of S_OK. + + + + + Gets the description for rasterizer state that you used to create the rasterizer-state object. + Microsoft Docs: + A pointer to a D3D11_RASTERIZER_DESC2 structure that receives a description of the rasterizer state. This rasterizer state can specify forced sample count and conservative rasterization mode. + + + + + Gets a query description. + Microsoft Docs: + A pointer to a D3D11_QUERY_DESC1 structure that receives a description of the query. + + + + + Get the type of the resource. + Microsoft Docs: + Pointer to the resource type (see D3D11_RESOURCE_DIMENSION). + + + + + Contains the response from the ID3D11VideoContext::ConfigureAuthenticatedChannel method. + Microsoft Docs: + + + + A D3D11_OMAC structure that contains a Message Authentication Code (MAC) of the data. The driver uses AES-based one-key CBC MAC (OMAC) to calculate this value for the block of data that appears after this structure member. + + + A GUID that specifies the command. For a list of GUIDs, see D3D11_AUTHENTICATED_CONFIGURE_INPUT. + + + A handle to the authenticated channel. + + + The command sequence number. + + + The result code for the command. + + + + Describes the content-protection capabilities of a graphics driver. + Microsoft Docs: + + + + A bitwise OR of zero or more flags from the D3D11_CONTENT_PROTECTION_CAPS enumeration. + + + The number of cryptographic key-exchange types that are supported by the driver. To get the list of key-exchange types, call the ID3D11VideoDevice::CheckCryptoKeyExchange method. + + + The encyrption block size, in bytes. The size of data to be encrypted must be a multiple of this value. + + + The total amount of memory, in bytes, that can be used to hold protected surfaces. + + + + Debug messages for setting up an info-queue filter (see D3D11_INFO_QUEUE_FILTER); use these messages to allow or deny message categories to pass through the storage and retrieval filters. + Microsoft Docs: + + + + + Creates a geometry shader that can write to streaming output buffers. + Microsoft Docs: + A pointer to the compiled geometry shader for a standard geometry shader plus stream output. For info on how to get this pointer, see Getting a Pointer to a Compiled Shader. + +To create the stream output without using a geometry shader, pass a pointer to the output signature for the prior stage. To obtain this output signature, call the D3DGetOutputSignatureBlob compiler function. You can also pass a pointer to the compiled shader for the prior stage (for example, the vertex-shader stage or domain-shader stage). This compiled shader provides the output signature for the data. + Size of the compiled geometry shader. + Pointer to a D3D11_SO_DECLARATION_ENTRY array. Cannot be NULL if NumEntries > 0. + The number of entries in the stream output declaration ( ranges from 0 to D3D11_SO_STREAM_COUNT * D3D11_SO_OUTPUT_COMPONENT_COUNT ). + An array of buffer strides; each stride is the size of an element for that buffer. + The number of strides (or buffers) in pBufferStrides (ranges from 0 to D3D11_SO_BUFFER_SLOT_COUNT). + The index number of the stream to be sent to the rasterizer stage (ranges from 0 to D3D11_SO_STREAM_COUNT - 1). + Set to D3D11_SO_NO_RASTERIZED_STREAM if no stream is to be rasterized. + A pointer to a class linkage interface (see ID3D11ClassLinkage); the value can be NULL. + Address of a pointer to an ID3D11GeometryShader interface, representing the geometry shader that was created. + Set this to NULL to validate the other parameters; if validation passes, the method will return S_FALSE instead of S_OK. + + + + + Get a message severity level to break on when a message with that severity level passes through the storage filter. + Microsoft Docs: + Message severity level to break on (see D3D11_MESSAGE_SEVERITY). + + + + + Get an output-parameter description for a shader. + Microsoft Docs: + A zero-based parameter index. + A pointer to a shader-output-parameter description. See D3D11_SIGNATURE_PARAMETER_DESC. + + + + + Types of magnification or minification sampler filters. + Microsoft Docs: + + + + Point filtering used as a texture magnification or minification filter. The texel with coordinates nearest to the desired pixel value is used. The texture filter to be used between mipmap levels is nearest-point mipmap filtering. The rasterizer uses the color from the texel of the nearest mipmap texture. + + + Bilinear interpolation filtering used as a texture magnification or minification filter. A weighted average of a 2 x 2 area of texels surrounding the desired pixel is used. The texture filter to use between mipmap levels is trilinear mipmap interpolation. The rasterizer linearly interpolates pixel color, using the texels of the two nearest mipmap textures. + + + + Describes the elements in a buffer to use in a unordered-access view. + Microsoft Docs: + + + + The zero-based index of the first element to be accessed. + + + The number of elements in the resource. For structured buffers, this is the number of structures in the buffer. + + + View options for the resource (see D3D11_BUFFER_UAV_FLAG). + + + + Fills the parameter descriptor structure for the function's parameter. + Microsoft Docs: + A pointer to a D3D11_PARAMETER_DESC structure that receives a description of the function's parameter. + + + + + Discards a resource from the device context. + Microsoft Docs: + A pointer to the ID3D11Resource interface for the resource to discard. The resource must have been created with usage D3D11_USAGE_DEFAULT or D3D11_USAGE_DYNAMIC, otherwise the runtime drops the call to DiscardResource; if the debug layer is enabled, the runtime returns an error message. + + + + + Describes a unordered-access 3D texture resource. + Microsoft Docs: + + + + The mipmap slice index. + + + The zero-based index of the first depth slice to be accessed. + + + The number of depth slices. + + + + Gets the error from the last function call of the function-linking-graph. + Microsoft Docs: + An pointer to a variable that receives a pointer to the ID3DBlob interface that you can use to access the error. + + + + + Specifies the subresource from a 2D texture that is accessible to a depth-stencil view. + Microsoft Docs: + + + + The index of the first mipmap level to use. + + + + Discards a resource view from the device context. + Microsoft Docs: + A pointer to the ID3D11View interface for the resource view to discard. The resource that underlies the view must have been created with usage D3D11_USAGE_DEFAULT or D3D11_USAGE_DYNAMIC, otherwise the runtime drops the call to DiscardView; if the debug layer is enabled, the runtime returns an error message. + + + + + Gets the number of interface slots in a shader. + Microsoft Docs: + + + + + Gets the function parameter reflector. + Microsoft Docs: + The zero-based index of the function parameter reflector to retrieve. + + + + + Contains the response to a D3D11_AUTHENTICATED_QUERY_ACCESSIBILITY_ATTRIBUTES query. + Microsoft Docs: + + + + A D3D11_AUTHENTICATED_QUERY_OUTPUT structure that contains a Message Authentication Code (MAC) and other data. + + + A bitwise OR of flags from the D3D11_BUS_TYPE enumeration. + + + If TRUE, contiguous blocks of video memory may be accessible to the CPU or the bus. + + + If TRUE, non-contiguous blocks of video memory may be accessible to the CPU or the bus. + + + + Copy a multisampled resource into a non-multisampled resource. + Microsoft Docs: + Destination resource. Must be a created with the D3D11_USAGE_DEFAULT flag and be single-sampled. See ID3D11Resource. + A zero-based index, that identifies the destination subresource. Use D3D11CalcSubresource to calculate the index. + Source resource. Must be multisampled. + The source subresource of the source resource. + A DXGI_FORMAT that indicates how the multisampled resource will be resolved to a single-sampled resource. + See remarks. + + + + + Performs a video processing operation on one or more input samples and writes the result to a Direct3D surface. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. To get this pointer, call the ID3D11VideoDevice::CreateVideoProcessor method. + A pointer to the ID3D11VideoProcessorOutputView interface for the output surface. The output of the video processing operation will be written to this surface. + The frame number of the output video frame, indexed from zero. + The number of input streams to process. + A pointer to an array of D3D11_VIDEO_PROCESSOR_STREAM structures that contain information about the input streams. The caller allocates the array and fills in each structure. The number of elements in the array is given in the StreamCount parameter. + + + + + Describes how a video stream is interlaced. + Microsoft Docs: + + + + Frames are progressive. + + + Frames are interlaced. The top field of each frame is displayed first. + + + Frame are interlaced. The bottom field of each frame is displayed first. + + + + Get a shader-reflection-variable type by index. + Microsoft Docs: + Zero-based index. + + + + + Gets a cryptographic key-exchange mechanism that is supported by the driver. + Microsoft Docs: + A pointer to a GUID that specifies the type of encryption to be used. The following GUIDs are defined. + + + + + + + + + + +
ValueMeaning
+
D3D11_CRYPTO_TYPE_AES128_CTR
+
+
+128-bit Advanced Encryption Standard CTR mode (AES-CTR) block cipher. + + +
+ A pointer to a GUID that specifies the decoding profile. To get profiles that the driver supports, call ID3D11VideoDevice::GetVideoDecoderProfile. If decoding will not be used, set this parameter to NULL. + The zero-based index of the key-exchange type. The driver reports the number of types in the KeyExchangeTypeCount member of the D3D11_VIDEO_CONTENT_PROTECTION_CAPS structure. + Receives a GUID that identifies the type of key exchange. +
+
+ + + Indicates that decoder downsampling will be used and that the driver should allocate the appropriate reference frames. + Microsoft Docs: + A pointer to the ID3D11VideoDecoder interface. + The color space information of the reference frame data. + The resolution, format, and colorspace of the output/display frames. This is the destination resolution and format of the downsample operation. + The number of reference frames to be used in the operation. + + + + + Gets a variable by name. + Microsoft Docs: + A pointer to a string containing the variable name. + + + + + Describes a shader-trace object. + Microsoft Docs: + + + + A D3D11_SHADER_TYPE-typed value that identifies the type of shader that the shader-trace object describes. This member also determines which shader-trace type to use in the following union. + + + A combination of the following flags that are combined by using a bitwise OR operation. The resulting value specifies how ID3D11ShaderTraceFactory::CreateShaderTrace creates the shader-trace object. + + + + + + + + + + + + + + +
FlagDescription
D3D11_SHADER_TRACE_FLAG_RECORD_REGISTER_WRITES (0x1)The shader trace object records register-writes.
D3D11_SHADER_TRACE_FLAG_RECORD_REGISTER_READS (0x2)The shader trace object records register-reads.
+
+ + A D3D11_VERTEX_SHADER_TRACE_DESC structure that describes an instance of a vertex shader to trace. + + + A D3D11_HULL_SHADER_TRACE_DESC structure that describes an instance of a hull shader to trace. + + + A D3D11_DOMAIN_SHADER_TRACE_DESC structure that describes an instance of a domain shader to trace. + + + A D3D11_GEOMETRY_SHADER_TRACE_DESC structure that describes an instance of a geometry shader to trace. + + + A D3D11_PIXEL_SHADER_TRACE_DESC structure that describes an instance of a pixel shader to trace. + + + A D3D11_COMPUTE_SHADER_TRACE_DESC structure that describes an instance of a compute shader to trace. + + + + Gets the initialization flags associated with the current deferred context. + Microsoft Docs: + + + + + Rebinds a resource by name as an unordered access view (UAV) to destination slots. + Microsoft Docs: + The name of the resource for rebinding. + The first destination slot number for rebinding. + The number of slots for rebinding. + + + + + Provides a communication channel with the graphics driver or the Microsoft Direct3D runtime. + Microsoft Docs: + + + + + Contains the response to a D3D11_AUTHENTICATED_QUERY_UNRESTRICTED_PROTECTED_SHARED_RESOURCE_COUNT query. + Microsoft Docs: + + + + A D3D11_AUTHENTICATED_QUERY_OUTPUT structure that contains a Message Authentication Code (MAC) and other data. + + + The number of protected, shared resources that can be opened by any process without restrictions. + + + + Get a counter description. + Microsoft Docs: + Pointer to a counter description (see D3D11_COUNTER_DESC). + + + + + Gets the format of an input stream on the video processor. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. To get this pointer, call ID3D11VideoDevice::CreateVideoProcessor. + The zero-based index of the input stream. To get the maximum number of streams, call ID3D11VideoProcessorEnumerator::GetVideoProcessorCaps and check the MaxStreamStates structure member. + Receives a D3D11_VIDEO_FRAME_FORMAT value that specifies whether the stream contains interlaced or progressive frames. + + + + + Get an array of sampler states from the pixel shader pipeline stage. + Microsoft Docs: + Index into a zero-based array to begin getting samplers from (ranges from 0 to D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - 1). + Number of samplers to get from a device context. Each pipeline stage has a total of 16 sampler slots available (ranges from 0 to D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot). + Arry of sampler-state interface pointers (see ID3D11SamplerState) to be returned by the device. + + + + + Get the reason why the device was removed. + Microsoft Docs: + + + + + Describes a 2D texture. + Microsoft Docs: + + + + Texture width (in texels). The range is from 1 to D3D11_REQ_TEXTURE2D_U_OR_V_DIMENSION (16384). For a texture cube-map, the range is from 1 to D3D11_REQ_TEXTURECUBE_DIMENSION (16384). However, the range is actually constrained by the feature level at which you create the rendering device. For more information about restrictions, see Remarks. + + + Texture height (in texels). The range is from 1 to D3D11_REQ_TEXTURE2D_U_OR_V_DIMENSION (16384). For a texture cube-map, the range is from 1 to D3D11_REQ_TEXTURECUBE_DIMENSION (16384). However, the range is actually constrained by the feature level at which you create the rendering device. For more information about restrictions, see Remarks. + + + The maximum number of mipmap levels in the texture. See the remarks in D3D11_TEX1D_SRV. Use 1 for a multisampled texture; or 0 to generate a full set of subtextures. + + + Number of textures in the texture array. The range is from 1 to D3D11_REQ_TEXTURE2D_ARRAY_AXIS_DIMENSION (2048). For a texture cube-map, this value is a multiple of 6 (that is, 6 times the value in the NumCubes member of D3D11_TEXCUBE_ARRAY_SRV), and the range is from 6 to 2046. The range is actually constrained by the feature level at which you create the rendering device. For more information about restrictions, see Remarks. + + + Texture format (see DXGI_FORMAT). + + + Structure that specifies multisampling parameters for the texture. See DXGI_SAMPLE_DESC. + + + Value that identifies how the texture is to be read from and written to. The most common value is D3D11_USAGE_DEFAULT; see D3D11_USAGE for all possible values. + + + Flags (see D3D11_BIND_FLAG) for binding to pipeline stages. The flags can be combined by a logical OR. + + + Flags (see D3D11_CPU_ACCESS_FLAG) to specify the types of CPU access allowed. Use 0 if CPU access is not required. These flags can be combined with a logical OR. + + + Flags (see D3D11_RESOURCE_MISC_FLAG) that identify other, less common resource options. Use 0 if none of these flags apply. These flags can be combined by using a logical OR. For a texture cube-map, set the D3D11_RESOURCE_MISC_TEXTURECUBE flag. Cube-map arrays (that is, ArraySize > 6) require feature level D3D_FEATURE_LEVEL_10_1 or higher. + + + + Queries the driver for its content protection capabilities. + Microsoft Docs: + A pointer to a GUID that specifies the type of encryption to be used. The following GUIDs are defined. + + + + + + + + + + +
ValueMeaning
+
D3D11_CRYPTO_TYPE_AES128_CTR
+
+
+128-bit Advanced Encryption Standard CTR mode (AES-CTR) block cipher. + + +
+  + +If no encryption will be used, set this parameter to NULL. + A pointer to a GUID that specifies the decoding profile. To get profiles that the driver supports, call ID3D11VideoDevice::GetVideoDecoderProfile. If decoding will not be used, set this parameter to NULL. + +The driver might disallow some combinations of encryption type and profile. + A pointer to a D3D11_VIDEO_CONTENT_PROTECTION_CAPS structure. The method fills in this structure with the driver's content protection capabilities. +
+
+ + + Remove a storage filter from the top of the storage-filter stack. + Microsoft Docs: + + + + + Rebinds an unordered access view (UAV) from source slot to destination slot. + Microsoft Docs: + The first source slot number for rebinding. + The first destination slot number for rebinding. + The number of slots for rebinding. + + + + + Set an array of sampler states to the hull-shader stage. + Microsoft Docs: + Index into the zero-based array to begin setting samplers to (ranges from 0 to D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - 1). + Number of samplers in the array. Each pipeline stage has a total of 16 sampler slots available (ranges from 0 to D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot). + Pointer to an array of sampler-state interfaces (see ID3D11SamplerState). See Remarks. + + + + + The device interface represents a virtual adapter; it is used to create resources. ID3D11Device1 adds new methods to those in ID3D11Device. + Microsoft Docs: + + + + + Specifies a range of tile mappings to use with ID3D11DeviceContext2::UpdateTiles. + Microsoft Docs: + + + + The tile range is NULL. + + + Skip the tile range. + + + Reuse a single tile in the tile range. + + + + Provides threading protection for critical sections of a multi-threaded application. + Microsoft Docs: + + + + + Execute a command list from a thread group. + Microsoft Docs: + The number of groups dispatched in the x direction. ThreadGroupCountX must be less than or equal to D3D11_CS_DISPATCH_MAX_THREAD_GROUPS_PER_DIMENSION (65535). + The number of groups dispatched in the y direction. ThreadGroupCountY must be less than or equal to D3D11_CS_DISPATCH_MAX_THREAD_GROUPS_PER_DIMENSION (65535). + The number of groups dispatched in the z direction. ThreadGroupCountZ must be less than or equal to D3D11_CS_DISPATCH_MAX_THREAD_GROUPS_PER_DIMENSION (65535). + In feature level 10 the value for ThreadGroupCountZ must be 1. + + + + + Allows apps to determine when either a capture or profiling request is enabled. + Microsoft Docs: + + + + + Handles the creation, wrapping, and releasing of D3D11 resources for Direct3D11on12. + Microsoft Docs: + + + + + A shader-resource-view interface specifies the subresources a shader can access during rendering. Examples of shader resources include a constant buffer, a texture buffer, and a texture. + Microsoft Docs: + + + + + Comparison options. + Microsoft Docs: + + + + Never pass the comparison. + + + If the source data is less than the destination data, the comparison passes. + + + If the source data is equal to the destination data, the comparison passes. + + + If the source data is less than or equal to the destination data, the comparison passes. + + + If the source data is greater than the destination data, the comparison passes. + + + If the source data is not equal to the destination data, the comparison passes. + + + If the source data is greater than or equal to the destination data, the comparison passes. + + + Always pass the comparison. + + + + Draw geometry of an unknown size. + Microsoft Docs: + + + + + Queries whether the video processor produces stereo video frames. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. To get this pointer, call ID3D11VideoDevice::CreateVideoProcessor. + Receives the value TRUE if stereo output is enabled, or FALSE otherwise. + + + + + Get an array of sampler states from the vertex shader pipeline stage. + Microsoft Docs: + Index into a zero-based array to begin getting samplers from (ranges from 0 to D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - 1). + Number of samplers to get from a device context. Each pipeline stage has a total of 16 sampler slots available (ranges from 0 to D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot). + Arry of sampler-state interface pointers (see ID3D11SamplerState) to be returned by the device. + + + + + Push a copy of storage filter currently on the top of the storage-filter stack onto the storage-filter stack. + Microsoft Docs: + + + + + Get a counter's information. + Microsoft Docs: + Pointer to counter information (see D3D11_COUNTER_INFO). + + + + + ID3D11SwitchToRef::GetUseRef method + Microsoft Docs: + + + + + Sets the constant buffers used by the geometry shader pipeline stage. + Microsoft Docs: + Index into the device's zero-based array to begin setting constant buffers to (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1). + Number of buffers to set (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot). + Array of constant buffers (see ID3D11Buffer) being given to the device. + + + + + Specifies if the hardware and driver support conservative rasterization and at what tier level. + Microsoft Docs: + + + + Conservative rasterization isn't supported. + + + Tier_1 conservative rasterization is supported. + + + Tier_2 conservative rasterization is supported. + + + Tier_3 conservative rasterization is supported. + + + + A query interface queries information from the GPU. + Microsoft Docs: + + + + + Gets the class-instance object that represents the specified HLSL class. + Microsoft Docs: + The name of a class for which to get the class instance. + The index of the class instance. + The address of a pointer to an ID3D11ClassInstance interface to initialize. + + + + + Describes which resources are supported by the current graphics driver for a given format. + Microsoft Docs: + + + + +DXGI_FORMAT to return information on. + + + Combination of D3D11_FORMAT_SUPPORT flags indicating which resources are supported. + + + + Describes Direct3D 9 feature options in the current graphics driver. + Microsoft Docs: + + + + Specifies whether the driver supports the nonpowers-of-2-unconditionally feature. For more information about this feature, see feature level. The runtime sets this member to TRUE for hardware at Direct3D 10 and higher feature levels. For hardware at Direct3D 9.3 and lower feature levels, the runtime sets this member to FALSE if the hardware and driver support the powers-of-2 (2D textures must have widths and heights specified as powers of two) feature or the nonpowers-of-2-conditionally feature. For more information about this feature, see feature level. + + + + Options for performance counters. + Microsoft Docs: + + + + Define a performance counter that is dependent on the hardware device. + + + + Gets the constant buffers that the hull-shader stage uses. + Microsoft Docs: + Index into the device's zero-based array to begin retrieving constant buffers from (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1). + Number of buffers to retrieve (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot). + Array of constant buffer interface pointers to be returned by the method. + A pointer to an array that receives the offsets into the buffers that ppConstantBuffers specifies. Each offset specifies where, from the shader's point of view, each constant buffer starts. Each offset is measured in shader constants, which are 16 bytes (4*32-bit components). Therefore, an offset of 2 indicates that the start of the associated constant buffer is 32 bytes into the constant buffer. The runtime sets pFirstConstant to NULL if the buffers do not have offsets. + A pointer to an array that receives the numbers of constants in the buffers that ppConstantBuffers specifies. Each number specifies the number of constants that are contained in the constant buffer that the shader uses. Each number of constants starts from its respective offset that is specified in the pFirstConstant array. The runtime sets pNumConstants to NULL if it doesn't specify the numbers of constants in each buffer. + + + + + Specifies how a video format can be used for video processing. + Microsoft Docs: + + + + The format can be used as the input to the video processor. + + + The format can be used as the output from the video processor. + + + + Rebinds a sampler by name to destination slots. + Microsoft Docs: + The name of the sampler for rebinding. + The first destination slot number for rebinding. + The number of slots for rebinding. + + + + + Gets an array of views for an unordered resource. + Microsoft Docs: + Index of the first element in the zero-based array to return (ranges from 0 to D3D11_1_UAV_SLOT_COUNT - 1). + Number of views to get (ranges from 0 to D3D11_1_UAV_SLOT_COUNT - StartSlot). + A pointer to an array of interface pointers (see ID3D11UnorderedAccessView) to get. + + + + + Gets a value indicating whether the output surface from a call to ID3D11VideoContext::VideoProcessorBlt can be read by Direct3D shaders. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. + A pointer to a boolean value indicating if the output surface can be read by Direct3D shaders. True if the surface rendered using ID3D11VideoContext::VideoProcessorBlt can be read by Direct3D shaders; otherwise, false. + + + + + Specifies how to access a resource used in a depth-stencil view. + Microsoft Docs: + + + + D3D11_DSV_DIMENSION_UNKNOWN is not a valid value for D3D11_DEPTH_STENCIL_VIEW_DESC and is not used. + + + The resource will be accessed as a 1D texture. + + + The resource will be accessed as an array of 1D textures. + + + The resource will be accessed as a 2D texture. + + + The resource will be accessed as an array of 2D textures. + + + The resource will be accessed as a 2D texture with multisampling. + + + The resource will be accessed as an array of 2D textures with multisampling. + + + + Fills the library descriptor structure for the library reflection. + Microsoft Docs: + A pointer to a D3D11_LIBRARY_DESC structure that receives a description of the library reflection. + + + + + Specifies the automatic image processing capabilities of the video processor. + Microsoft Docs: + + + + Denoise. + + + Deringing. + + + Edge enhancement. + + + Color correction. + + + Flesh-tone mapping. + + + Image stabilization. + + + Enhanced image resolution. + + + Anamorphic scaling. + + + + Sets the HDR metadata associated with the video stream. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. + Identifies the input stream. + The type of HDR metadata supplied. + The size of the HDR metadata supplied in pHDRMetaData. + +For DXGI_HDR_METADATA_TYPE_NONE, the size should be 0. + +For DXGI_HDR_METADATA_TYPE_HDR10, the size is sizeof(DXGI_HDR_METADATA_HDR10). + Pointer to the metadata information. + +For DXGI_HDR_METADATA_TYPE_NONE, this should be NULL. + +For DXGI_HDR_METADATA_TYPE_HDR10, this is a pointer to a DXGI_HDR_METADATA_HDR10 structure. + + + + + Describes the subresources from a resource that are accessible using a render-target view. + Microsoft Docs: + + + + A DXGI_FORMAT-typed value that specifies the data format. + + + A D3D11_RTV_DIMENSION-typed value that specifies the resource type and how the render-target resource will be accessed. + + + A D3D11_BUFFER_RTV structure that specifies which buffer elements can be accessed. + + + A D3D11_TEX1D_RTV structure that specifies the subresources in a 1D texture that can be accessed. + + + A D3D11_TEX1D_ARRAY_RTV structure that specifies the subresources in a 1D texture array that can be accessed. + + + A D3D11_TEX2D_RTV1 structure that specifies the subresources in a 2D texture that can be accessed. + + + A D3D11_TEX2D_ARRAY_RTV1 structure that specifies the subresources in a 2D texture array that can be accessed. + + + A D3D11_TEX2DMS_RTV structure that specifies a single subresource because a multisampled 2D texture only contains one subresource. + + + A D3D11_TEX2DMS_ARRAY_RTV structure that specifies the subresources in a multisampled 2D texture array that can be accessed. + + + A D3D11_TEX3D_RTV structure that specifies subresources in a 3D texture that can be accessed. + + + + The device interface represents a virtual adapter; it is used to create resources. ID3D11Device5 adds new methods to those in ID3D11Device4. + Microsoft Docs: + + + + + Get the number of messages currently stored in the message queue. + Microsoft Docs: + + + + + ID3D11SwitchToRef::SetUseRef method + Microsoft Docs: + Reserved. + + + + + Create a hull shader. + Microsoft Docs: + A pointer to a compiled shader. + Size of the compiled shader. + A pointer to a class linkage interface (see ID3D11ClassLinkage); the value can be NULL. + Address of a pointer to a ID3D11HullShader interface. + + + + + Depth-stencil view options. + Microsoft Docs: + + + + Indicates that depth values are read only. + + + Indicates that stencil values are read only. + + + + Creates a resource view for a video processor, describing the output sample for the video processing operation. + Microsoft Docs: + A pointer to the ID3D11Resource interface of the output surface. The resource must be created with the D3D11_BIND_RENDER_TARGET flag. See D3D11_BIND_FLAG. + A pointer to the ID3D11VideoProcessorEnumerator interface that specifies the video processor. To get this pointer, call ID3D11VideoDevice::CreateVideoProcessorEnumerator. + A pointer to a D3D11_VIDEO_PROCESSOR_OUTPUT_VIEW_DESC structure that describes the view. + Receives a pointer to the ID3D11VideoProcessorOutputView interface. The caller must release the resource. If this parameter is NULL, the method checks whether the view is supported, but does not create the view. + + + + + Provides the video functionality of a Microsoft Direct3D 11 device. + Microsoft Docs: + + + + + Get the number of messages that were allowed to pass through a storage filter. + Microsoft Docs: + + + + + Identifies a resource to be accessed for reading and writing by the CPU. Applications may combine one or more of these flags. + Microsoft Docs: + + + + Resource is mapped for reading. The resource must have been created with read access + (see D3D11_CPU_ACCESS_READ). + + + Resource is mapped for writing. The resource must have been created with write + access (see D3D11_CPU_ACCESS_WRITE). + + + Resource is mapped for reading and writing. The resource must have been created with read and write + access (see D3D11_CPU_ACCESS_READ and D3D11_CPU_ACCESS_WRITE). + + + Resource is mapped for writing; the previous contents of the resource will be undefined. The resource must have been created with write access + and dynamic usage (See D3D11_CPU_ACCESS_WRITE and D3D11_USAGE_DYNAMIC). + + + Resource is mapped for writing; the existing contents of the resource cannot be overwritten (see Remarks). This flag is only valid on vertex and + index buffers. The resource must have been created with write access (see D3D11_CPU_ACCESS_WRITE). + Cannot be used on a resource created with the D3D11_BIND_CONSTANT_BUFFER flag. + +
Note  The Direct3D 11.1 runtime, which is available starting with Windows 8, enables mapping dynamic constant buffers and shader resource views (SRVs) of dynamic buffers with D3D11_MAP_WRITE_NO_OVERWRITE. The Direct3D 11 and earlier runtimes limited mapping to vertex or index buffers. To determine if a Direct3D device supports these features, call ID3D11Device::CheckFeatureSupport with D3D11_FEATURE_D3D11_OPTIONS. CheckFeatureSupport fills members of a D3D11_FEATURE_DATA_D3D11_OPTIONS structure with the device's features. The relevant members here are MapNoOverwriteOnDynamicConstantBuffer and MapNoOverwriteOnDynamicBufferSRV.
+
 
+
+ + + Describes a unordered-access 2D texture resource. + Microsoft Docs: + + + + The mipmap slice index. + + + + Describes an array of unordered-access 2D texture resources. + Microsoft Docs: + + + + The mipmap slice index. + + + The zero-based index of the first array slice to be accessed. + + + The number of slices in the array. + + + The index (plane slice number) of the plane to use in an array of textures. + + + + Creates a 2D texture. + Microsoft Docs: + A pointer to a D3D11_TEXTURE2D_DESC1 structure that describes a 2D texture resource. To create a typeless resource that can be interpreted at runtime into different, compatible formats, specify a typeless format in the texture description. To generate mipmap levels automatically, set the number of mipmap levels to 0. + A pointer to an array of D3D11_SUBRESOURCE_DATA structures that describe subresources for the 2D texture resource. Applications can't specify NULL for pInitialData when creating IMMUTABLE resources (see D3D11_USAGE). If the resource is multisampled, pInitialData must be NULL because multisampled resources can't be initialized with data when they're created. + +If you don't pass anything to pInitialData, the initial content of the memory for the resource is undefined. In this case, you need to write the resource content some other way before the resource is read. + +You can determine the size of this array from values in the MipLevels and ArraySize members of the D3D11_TEXTURE2D_DESC1 structure to which pDesc1 points by using the following calculation: + +MipLevels * ArraySize + +For more info about this array size, see Remarks. + A pointer to a memory block that receives a pointer to a ID3D11Texture2D1 interface for the created texture. Set this parameter to NULL to validate the other input parameters (the method will return S_FALSE if the other input parameters pass validation). + + + + + Discards the specified elements in a resource view from the device context. + Microsoft Docs: + A pointer to the ID3D11View interface for the resource view to discard. The resource that underlies the view must have been created with usage D3D11_USAGE_DEFAULT or D3D11_USAGE_DYNAMIC, otherwise the runtime drops the call to DiscardView1; if the debug layer is enabled, the runtime returns an error message. + An array of D3D11_RECT structures for the rectangles in the resource view to discard. If NULL, DiscardView1 discards the entire view and behaves the same as DiscardView. + Number of rectangles in the array that the pRects parameter specifies. + + + + + This shader-reflection interface provides access to a variable. + Microsoft Docs: + + + + + Describes a shader constant-buffer. + Microsoft Docs: + + + + The name of the buffer. + + + A D3D_CBUFFER_TYPE-typed value that indicates the intended use of the constant data. + + + The number of unique variables. + + + Buffer size (in bytes). + + + A combination of D3D_SHADER_CBUFFER_FLAGS-typed values that are combined by using a bitwise OR operation. The resulting value specifies properties for the shader constant-buffer. + + + + Specifies a custom rate for frame-rate conversion or inverse telecine (IVTC). + Microsoft Docs: + + + + The ratio of the output frame rate to the input frame rate, expressed as a DXGI_RATIONAL structure that holds a rational number. + + + The number of output frames that will be generated for every N input samples, where N = InputFramesOrFields. + + + If TRUE, the input stream must be interlaced. Otherwise, the input stream must be progressive. + + + The number of input fields or frames for every N output frames that will be generated, where N = OutputFrames. + + + + Enables you to take resources created through the Direct3D 11 APIs, and use them in Direct3D 12. + Microsoft Docs: + + + + + Represents a cryptographic session. + Microsoft Docs: + + + + + Gets the description for rasterizer state that you used to create the rasterizer-state object. + Microsoft Docs: + A pointer to a D3D11_RASTERIZER_DESC structure that receives a description of the rasterizer state. + + + + + Defines the range of supported values for an image filter. + Microsoft Docs: + + + + The minimum value of the filter. + + + The maximum value of the filter. + + + The default value of the filter. + + + A multiplier. Use the following formula to translate the filter setting into the actual filter value: Actual Value = Set Value × Multiplier. + + + + Describes flags that are used to create a device context state object (ID3DDeviceContextState) with the ID3D11Device1::CreateDeviceContextState method. + Microsoft Docs: + + + + You use this flag if your application will only call methods of Direct3D 11 and Direct3D 10 interfaces from a single thread. By default, Direct3D 11 and Direct3D 10 are thread-safe. + By using this flag, you can increase performance. However, if you use this flag and your application calls methods from multiple threads, undefined behavior might result. + + + + Associate an IUnknown-derived interface with this device child and associate that interface with an application-defined guid. + Microsoft Docs: + Guid associated with the interface. + Pointer to an IUnknown-derived interface to be associated with the device child. + + + + + Get information about the primitive type, and data order that describes input data for the input assembler stage. + Microsoft Docs: + A pointer to the type of primitive, and ordering of the primitive data (see D3D11_PRIMITIVE_TOPOLOGY). + + + + + A debug interface controls debug settings, validates pipeline state and can only be used if the debug layer is turned on. + Microsoft Docs: + + + + + Specifies the subresources from an array of cube textures to use in a shader-resource view. + Microsoft Docs: + + + + Index of the most detailed mipmap level to use; this number is between 0 and MipLevels (from the original TextureCube for which ID3D11Device::CreateShaderResourceView creates a view) -1. + + + The maximum number of mipmap levels for the view of the texture. See the remarks in D3D11_TEX1D_SRV. + +Set to -1 to indicate all the mipmap levels from MostDetailedMip on down to least detailed. + + + Index of the first 2D texture to use. + + + Number of cube textures in the array. + + + + Returns statistics about the trace. + Microsoft Docs: + A pointer to a D3D11_TRACE_STATS structure. GetTraceStats fills the members of this structure with statistics about the trace. + + + + + Contains the response to a D3D11_AUTHENTICATED_QUERY_RESTRICTED_SHARED_RESOURCE_PROCESS query. + Microsoft Docs: + + + + A D3D11_AUTHENTICATED_QUERY_OUTPUT structure that contains a Message Authentication Code (MAC) and other data. + + + The index of the process in the list of processes. + + + A D3D11_AUTHENTICATED_PROCESS_IDENTIFIER_TYPE value that specifies the type of process. + + + A process handle. If the ProcessIdentifier member equals D3D11_PROCESSIDTYPE_HANDLE, the ProcessHandle member contains a valid handle to a process. Otherwise, this member is ignored. + + + + Contains driver-specific data for the ID3D11VideoContext::DecoderExtension method. + Microsoft Docs: + + + + The function number. This number identifies the operation to perform. Currently no function numbers are defined. + + + A pointer to a buffer that contains input data for the driver. + + + The size of the pPrivateInputData buffer, in bytes. + + + A pointer to a buffer that the driver can use to write output data. + + + The size of the pPrivateOutputData buffer, in bytes. + + + The number of elements in the ppResourceList array. If ppResourceList is NULL, set ResourceCount to zero. + + + The address of an array of ID3D11Resource pointers. Use this member to pass Direct3D resources to the driver. + + + + Starts a decoding operation to decode a video frame. + Microsoft Docs: + A pointer to the ID3D11VideoDecoder interface. To get this pointer, call ID3D11VideoDevice::CreateVideoDecoder. + A pointer to the ID3D11VideoDecoderOutputView interface. This interface describes the resource that will receive the decoded frame. To get this pointer, call ID3D11VideoDevice::CreateVideoDecoderOutputView. + The size of the content key that is specified in pContentKey. If pContentKey is NULL, set ContentKeySize to zero. + An optional pointer to a content key that was used to encrypt the frame data. If no content key was used, set this parameter to NULL. If the caller provides a content key, the caller must use the session key to encrypt the content key. + + + + + Specifies data for initializing a subresource. + Microsoft Docs: + + + + Pointer to the initialization data. + + + The distance (in bytes) from the beginning of one line of a texture to the next line. + System-memory pitch is used only for 2D and 3D texture data as it is has no meaning for the other resource types. Specify the distance from the first pixel of one 2D slice of a 3D texture to the first pixel of the next 2D slice in that texture in the SysMemSlicePitch member. + + + The distance (in bytes) from the beginning of one depth level to the next. + System-memory-slice pitch is only used for 3D texture data as it has no meaning for the other resource types. + + + + Get the maximum number of messages that can be added to the message queue. + Microsoft Docs: + + + + + Specifies the context in which a query occurs. + Microsoft Docs: + + + + The query can occur in all contexts. + + + The query occurs in the context of a 3D command queue. + + + The query occurs in the context of a 3D compute queue. + + + The query occurs in the context of a 3D copy queue. + + + The query occurs in the context of video. + + + + Contains input data for a D3D11_AUTHENTICATED_CONFIGURE_ENCRYPTION_WHEN_ACCESSIBLE command. + Microsoft Docs: + + + + A D3D11_AUTHENTICATED_CONFIGURE_INPUT structure that contains the command GUID and other data. + + + A GUID that specifies the type of encryption to apply. + + + + Indicates shader type. + Microsoft Docs: + + + + Pixel shader. + + + Vertex shader. + + + Geometry shader. + + + Hull shader. + + + Domain shader. + + + Compute shader. + + + Indicates the end of the enumeration constants. + + + + Get an array of sampler state interfaces from the domain-shader stage. + Microsoft Docs: + Index into a zero-based array to begin getting samplers from (ranges from 0 to D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - 1). + Number of samplers to get from a device context. Each pipeline stage has a total of 16 sampler slots available (ranges from 0 to D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot). + Pointer to an array of sampler-state interfaces (see ID3D11SamplerState). + + + + + Specifies the subresources from an array of 1D textures to use in a shader-resource view. + Microsoft Docs: + + + + Index of the most detailed mipmap level to use; this number is between 0 and MipLevels (from the original Texture1D for which ID3D11Device::CreateShaderResourceView creates a view) -1. + + + The maximum number of mipmap levels for the view of the texture. See the remarks in D3D11_TEX1D_SRV. + +Set to -1 to indicate all the mipmap levels from MostDetailedMip on down to least detailed. + + + The index of the first texture to use in an array of textures. + + + Number of textures in the array. + + + + Resizes a tile pool. + Microsoft Docs: + A pointer to an ID3D11Buffer for the tile pool to resize. + The new size in bytes of the tile pool. The size must be a multiple of 64 KB or 0. + + + + + Gets the array of viewports bound to the rasterizer stage. + Microsoft Docs: + A pointer to a variable that, on input, specifies the number of viewports (ranges from 0 to D3D11_VIEWPORT_AND_SCISSORRECT_OBJECT_COUNT_PER_PIPELINE) + in the pViewports array; on output, the variable contains the actual number of viewports that are bound to the rasterizer stage. + If pViewports is NULL, RSGetViewports fills the variable with the number of viewports currently bound. + +
Note  In some versions of the Windows SDK, a debug device will raise an exception if the input value in the variable to which pNumViewports points is greater than D3D11_VIEWPORT_AND_SCISSORRECT_OBJECT_COUNT_PER_PIPELINE even if pViewports is NULL. The regular runtime ignores the value in the variable to which pNumViewports points when pViewports is NULL. This behavior of a debug device might be corrected in a future release of the Windows SDK. +
+
 
+ An array of D3D11_VIEWPORT structures for the viewports that are bound to the rasterizer stage. If the number of viewports (in the variable to which pNumViewports points) is + greater than the actual number of viewports currently bound, unused elements of the array contain 0. + For info about how the viewport size depends on the device feature level, which has changed between Direct3D 11 + and Direct3D 10, see D3D11_VIEWPORT. +
+
+ + + Get a message from the message queue. + Microsoft Docs: + Index into message queue after an optional retrieval filter has been applied. This can be between 0 and the number of messages in the message queue that pass through the retrieval filter (which can be obtained with ID3D11InfoQueue::GetNumStoredMessagesAllowedByRetrievalFilter). 0 is the message at the front of the message queue. + Returned message (see D3D11_MESSAGE). + Size of pMessage in bytes, including the size of the message string that the pMessage points to. + + + + + The stencil operations that can be performed during depth-stencil testing. + Microsoft Docs: + + + + Keep the existing stencil data. + + + Set the stencil data to 0. + + + Set the stencil data to the reference value set by calling ID3D11DeviceContext::OMSetDepthStencilState. + + + Increment the stencil value by 1, and clamp the result. + + + Decrement the stencil value by 1, and clamp the result. + + + Invert the stencil data. + + + Increment the stencil value by 1, and wrap the result if necessary. + + + Decrement the stencil value by 1, and wrap the result if necessary. + + + + Provides the video decoding and video processing capabilities of a Microsoft Direct3D 11 device. + Microsoft Docs: + + + + + Gets a variable by name. + Microsoft Docs: + A pointer to a string containing the variable name. + + + + + Sets a value indicating whether the output surface from a call to ID3D11VideoContext::VideoProcessorBlt will be read by Direct3D shaders. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. + True if the surface rendered using ID3D11VideoContext::VideoProcessorBlt will be read by Direct3D shaders; otherwise, false. This may be set to false when multi-plane overlay hardware is supported. + + + + + A view interface specifies the parts of a resource the pipeline can access during rendering. + Microsoft Docs: + + + + + Gets a pointer to a decoder buffer. + Microsoft Docs: + A pointer to the ID3D11VideoDecoder interface. To get this pointer, call ID3D11VideoDevice::CreateVideoDecoder. + The type of buffer to retrieve, specified as a member of the D3D11_VIDEO_DECODER_BUFFER_TYPE enumeration. + Receives the size of the buffer, in bytes. + Receives a pointer to the start of the memory buffer. + + + + + Enumerates the video processor capabilities of the driver. + Microsoft Docs: + A pointer to a D3D11_VIDEO_PROCESSOR_CONTENT_DESC structure that describes the video content. + Receives a pointer to the ID3D11VideoProcessorEnumerator interface. The caller must release the interface. + + + + + Sets graphics processing unit (GPU) debug reference default tracking options for specific resource types. + Microsoft Docs: + A D3D11_SHADER_TRACKING_RESOURCE_TYPE-typed value that specifies the type of resource to track. + A combination of D3D11_SHADER_TRACKING_OPTIONS-typed flags that are combined by using a bitwise OR operation. The resulting value identifies tracking options. If a flag is present, the tracking option that the flag represents is set to "on"; otherwise the tracking option is set to "off." + + + + + Contains the response to a D3D11_AUTHENTICATED_QUERY_ENCRYPTION_WHEN_ACCESSIBLE_GUID query. + Microsoft Docs: + + + + A D3D11_AUTHENTICATED_QUERY_OUTPUT structure that contains a Message Authentication Code (MAC) and other data. + + + The index of the encryption GUID. + + + A GUID that specifies a supported encryption type. + + + + Add storage filters to the top of the retrieval-filter stack. + Microsoft Docs: + Array of retrieval filters (see D3D11_INFO_QUEUE_FILTER). + + + + + Set application-defined data to a device child and associate that data with an application-defined guid. + Microsoft Docs: + Guid associated with the data. + Size of the data. + Pointer to the data to be stored with this device child. If pData is NULL, DataSize must also be 0, and any data previously associated with the specified guid will be destroyed. + + + + + Get pointers to the resources bound to the output-merger stage. + Microsoft Docs: + The number of render-target views to retrieve. + Pointer to an array of ID3D11RenderTargetViews, which represent render-target views. Specify NULL for this parameter when retrieval of render-target views is not required. + Pointer to a ID3D11DepthStencilView, which represents a depth-stencil view. Specify NULL for this parameter when retrieval of the depth-stencil view is not required. + Index into a zero-based array to begin retrieving unordered-access views (ranges from 0 to D3D11_PS_CS_UAV_REGISTER_COUNT - 1). + For pixel shaders UAVStartSlot should be equal to the number of render-target views that are bound. + Number of unordered-access views to return in ppUnorderedAccessViews. This number ranges from 0 to D3D11_PS_CS_UAV_REGISTER_COUNT - UAVStartSlot. + Pointer to an array of ID3D11UnorderedAccessViews, which represent unordered-access views that are retrieved. Specify NULL for this parameter when retrieval of unordered-access views is not required. + + + + + The CPU copies data from memory to a subresource created in non-mappable memory. + Microsoft Docs: + A pointer to the destination resource. + A zero-based index that identifies the destination subresource. See D3D11CalcSubresource for more details. + A pointer to a box that defines the portion of the destination subresource to copy the resource data into. Coordinates are in bytes for buffers and in texels for textures. If NULL, UpdateSubresource1 writes the data to the destination subresource with no offset. The dimensions of the source must fit the destination. + +An empty box results in a no-op. A box is empty if the top value is greater than or equal to the bottom value, or the left value is greater than or equal to the right value, or the front value is greater than or equal to the back value. When the box is empty, UpdateSubresource1 doesn't perform an update operation. + A pointer to the source data in memory. + The size of one row of the source data. + The size of one depth slice of source data. + A D3D11_COPY_FLAGS-typed value that specifies how to perform the update operation. If you specify zero for no update option, UpdateSubresource1 behaves like ID3D11DeviceContext::UpdateSubresource. For existing display drivers that can't process these flags, the runtime doesn't use them. + + + + + Gets the current alpha fill mode for the video processor. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. To get this pointer, call ID3D11VideoDevice::CreateVideoProcessor. + Receives the alpha fill mode, as a D3D11_VIDEO_PROCESSOR_ALPHA_FILL_MODE value. + If the alpha fill mode is D3D11_VIDEO_PROCESSOR_ALPHA_FILL_MODE_SOURCE_STREAM, this parameter receives the zero-based index of an input stream. The input stream provides the alpha values for the alpha fill. + + + + + Get the properties of the texture resource. + Microsoft Docs: + Pointer to a resource description (see D3D11_TEXTURE2D_DESC). + + + + + Get the number of quality levels available during multisampling. + Microsoft Docs: + The texture format. See DXGI_FORMAT. + The number of samples during multisampling. + Number of quality levels supported by the adapter. See remarks. + + + + + Gets the driver's certificate chain. + Microsoft Docs: + The size of the pCertificate array, in bytes. To get the size of the certificate chain, call ID3D11CryptoSession::GetCertificateSize. + A pointer to a byte array that receives the driver's certificate chain. The caller must allocate the array. + + + + + Retrieves the initial contents of the specified input register. + Microsoft Docs: + A pointer to a D3D11_TRACE_VALUE structure. GetInitialRegisterContents fills the members of this structure with information about the initial contents. + + + + + Represents the status of an ID3D11CryptoSession interface. + Microsoft Docs: + + + + The ID3D11CryptoSession is in a functional state. + + + The underlying hardware key for the specified ID3D11CryptoSession has become lost. + + + The underlying hardware key for the specified ID3D11CryptoSession has become lost and protected content has become corrupted. + + + + Gets a description of the resource. + Microsoft Docs: + A pointer to a D3D11_UNORDERED_ACCESS_VIEW_DESC1 structure that receives the description of the unordered-access resource. + + + + + Gets the description for blending state that you used to create the blend-state object. + Microsoft Docs: + A pointer to a D3D11_BLEND_DESC1 structure that receives a description of the blend state. This blend state can specify logical operations as well as blending operations. + + + + + The tracking interface sets reference tracking options. + Microsoft Docs: + + + + + Describes rasterizer state. + Microsoft Docs: + + + + Determines the fill mode to use when rendering (see D3D11_FILL_MODE). + + + Indicates triangles facing the specified direction are not drawn (see D3D11_CULL_MODE). + + + Determines if a triangle is front- or back-facing. If this parameter is TRUE, a triangle will be considered front-facing if its vertices are counter-clockwise on the render target and considered back-facing if they are clockwise. If this parameter is FALSE, the opposite is true. + + + Depth value added to a given pixel. For info about depth bias, see Depth Bias. + + + Maximum depth bias of a pixel. For info about depth bias, see Depth Bias. + + + Scalar on a given pixel's slope. For info about depth bias, see Depth Bias. + + + Enable clipping based on distance. + +The hardware always performs x and y clipping of rasterized coordinates. When DepthClipEnable is set to the default–TRUE, the hardware also clips the z value (that is, the hardware performs the last step of the following algorithm). + + +

+0 < w
+-w <= x <= w (or arbitrarily wider range if implementation uses a guard band to reduce clipping burden)
+-w <= y <= w (or arbitrarily wider range if implementation uses a guard band to reduce clipping burden)
+0 <= z <= w
+
+When you set DepthClipEnable to FALSE, the hardware skips the z clipping (that is, the last step in the preceding algorithm). However, the hardware still performs the "0 < w" clipping. When z clipping is disabled, improper depth ordering at the pixel level might result. However, when z clipping is disabled, stencil shadow implementations are simplified. In other words, you can avoid complex special-case handling for geometry that goes beyond the back clipping plane.
+
+ + Enable scissor-rectangle culling. All pixels outside an active scissor rectangle are culled. + + + Specifies whether to use the quadrilateral or alpha line anti-aliasing algorithm on multisample antialiasing (MSAA) render targets. Set to TRUE to use the quadrilateral line anti-aliasing algorithm and to FALSE to use the alpha line anti-aliasing algorithm. For more info about this member, see Remarks. + + + Specifies whether to enable line antialiasing; only applies if doing line drawing and MultisampleEnable is FALSE. For more info about this member, see Remarks. + + + + Sets a private IUnknown pointer on the video device and associates that pointer with a GUID. + Microsoft Docs: + The GUID associated with the pointer. + A pointer to the IUnknown interface. + + + + + Get the type, name, units of measure, and a description of an existing counter. + Microsoft Docs: + Pointer to a counter description (see D3D11_COUNTER_DESC). Specifies which counter information is to be retrieved about. + Pointer to the data type of a counter (see D3D11_COUNTER_TYPE). Specifies the data type of the counter being retrieved. + Pointer to the number of hardware counters that are needed for this counter type to be created. All instances of the same counter type use the same hardware counters. + String to be filled with a brief name for the counter. May be NULL if the application is not interested in the name of the counter. + Length of the string returned to szName. Can be NULL. + Name of the units a counter measures, provided the memory the pointer points to has enough room to hold the string. Can be NULL. The returned string will always be in English. + Length of the string returned to szUnits. Can be NULL. + A description of the counter, provided the memory the pointer points to has enough room to hold the string. Can be NULL. The returned string will always be in English. + Length of the string returned to szDescription. Can be NULL. + + + + + Creates a view for accessing an unordered access resource. + Microsoft Docs: + Pointer to an ID3D11Resource that represents a resources that will serve as an input to a shader. + Pointer to an D3D11_UNORDERED_ACCESS_VIEW_DESC that represents a shader-resource view description. Set this parameter to NULL to create a view that accesses the entire resource (using the format the resource was created with). + Address of a pointer to an ID3D11UnorderedAccessView that represents an unordered-access view. Set this parameter to NULL to validate the other input parameters (the method will return S_FALSE if the other input parameters pass validation). + + + + + Describes an instance of a hull shader to trace. + Microsoft Docs: + + + + The invocation number of the instance of the hull shader. + + + + Determines the fill mode to use when rendering triangles. + Microsoft Docs: + + + + Draw lines connecting the vertices. Adjacent vertices are not drawn. + + + Fill the triangles formed by the vertices. Adjacent vertices are not drawn. + + + + Set a compute shader to the device. + Microsoft Docs: + Pointer to a compute shader (see ID3D11ComputeShader). Passing in NULL disables the shader for this pipeline stage. + A pointer to an array of class-instance interfaces (see ID3D11ClassInstance). Each interface used by a shader must have a corresponding class instance or the shader will get disabled. Set ppClassInstances to NULL if the shader does not use any interfaces. + The number of class-instance interfaces in the array. + + + + + Arguments for draw instanced indirect. + Microsoft Docs: + + + + The number of vertices to draw. + + + The number of instances to draw. + + + The index of the first vertex. + + + A value added to each index before reading per-instance data from a vertex buffer. + + + + Get a constant buffer by name. + Microsoft Docs: + The constant-buffer name. + + + + + Create a vertex-shader object from a compiled shader. + Microsoft Docs: + A pointer to the compiled shader. + Size of the compiled vertex shader. + A pointer to a class linkage interface (see ID3D11ClassLinkage); the value can be NULL. + Address of a pointer to a ID3D11VertexShader interface. If this is NULL, all other parameters will be validated, and if all parameters pass validation this API will return S_FALSE instead of S_OK. + + + + + Defines a 3D box. + Microsoft Docs: + + + + The x position of the left hand side of the box. + + + The y position of the top of the box. + + + The z position of the front of the box. + + + The x position of the right hand side of the box. + + + The y position of the bottom of the box. + + + The z position of the back of the box. + + + + Contains input data for a D3D11_AUTHENTICATED_QUERY_RESTRICTED_SHARED_RESOURCE_PROCESS query. + Microsoft Docs: + + + + A D3D11_AUTHENTICATED_QUERY_INPUT structure that contains the GUID for the query and other data. + + + The index of the process. + + + + Sets the background color for the video processor. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. To get this pointer, call ID3D11VideoDevice::CreateVideoProcessor. + If TRUE, the color is specified as a YCbCr value. Otherwise, the color is specified as an RGB value. + A pointer to a D3D11_VIDEO_COLOR structure that specifies the background color. + + + + + Set the rasterizer state for the rasterizer stage of the pipeline. + Microsoft Docs: + Pointer to a rasterizer-state interface (see ID3D11RasterizerState) to bind to the pipeline. + + + + + Describes an array of unordered-access 1D texture resources. + Microsoft Docs: + + + + The mipmap slice index. + + + The zero-based index of the first array slice to be accessed. + + + The number of slices in the array. + + + + Gets the cryptographic key to decrypt the data returned by the ID3D11VideoContext::EncryptionBlt method. + Microsoft Docs: + A pointer to the ID3D11CryptoSession interface. + The size of the pReadbackKey array, in bytes. The size should match the size of the session key. + A pointer to a byte array that receives the key. The key is encrypted using the session key. + + + + + Identifies how to perform a tile-mapping operation. + Microsoft Docs: + + + + Indicates that no overwriting of tiles occurs in the tile-mapping operation. + + + + A 1D texture interface accesses texel data, which is structured memory. + Microsoft Docs: + + + + + Gets the properties of the texture resource. + Microsoft Docs: + A pointer to a D3D11_TEXTURE2D_DESC1 structure that receives the description of the 2D texture. + + + + + Gets the color space information for the video processor input stream. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. + An index identifying the input stream. + A pointer to a DXGI_COLOR_SPACE_TYPE value that specifies the colorspace for the video processor input stream. + + + + + The ID3D11CommandList interface encapsulates a list of graphics commands for play back. + Microsoft Docs: + + + + + Report information about a device object's lifetime. + Microsoft Docs: + A value from the + D3D11_RLDO_FLAGS enumeration. + + + + + Get pointers to the resources bound to the output-merger stage. + Microsoft Docs: + Number of render targets to retrieve. + Pointer to an array of ID3D11RenderTargetViews which represent render target views. Specify NULL for this parameter when retrieval of a render target is not needed. + Pointer to a ID3D11DepthStencilView, which represents a depth-stencil view. Specify NULL for this parameter when retrieval of the depth-stencil view is not needed. + + + + + Specifies the subresources from an array of 2D textures to use in a render-target view. + Microsoft Docs: + + + + The index of the mipmap level to use mip slice. + + + The index of the first texture to use in an array of textures. + + + Number of textures in the array to use in the render target view, starting from FirstArraySlice. + + + + Specifies an RGB color value. + Microsoft Docs: + + + + The red value. + + + The green value. + + + The blue value. + + + The alpha value. Values range from 0 (transparent) to 1 (opaque). + + + + Create a sampler-state object that encapsulates sampling information for a texture. + Microsoft Docs: + Pointer to a sampler state description (see D3D11_SAMPLER_DESC). + Address of a pointer to the sampler state object created (see ID3D11SamplerState). + + + + + Specifies the layout in memory of a stereo 3D video frame. + Microsoft Docs: + + + + The sample does not contain stereo data. If the stereo format is not specified, this value is the default. + + + Frame 0 and frame 1 are packed side-by-side, as shown in the following diagram. + +Side-by-side packing + +All drivers that support stereo video must support this format. + + + Frame 0 and frame 1 are packed top-to-bottom, as shown in the following diagram. + +Top-to-bottom packing + +All drivers that support stereo video must support this format. + + + Frame 0 and frame 1 are placed in separate resources or in separate texture array elements within the same resource. + +All drivers that support stereo video must support this format. + + + The sample contains non-stereo data. However, the driver should create a left/right output of this sample using a specified offset. The offset is specified in the MonoOffset parameter of the ID3D11VideoContext::VideoProcessorSetStreamStereoFormat method. + +This format is primarily intended for subtitles and other subpicture data, where the entire sample is presented on the same plane. + +Support for this stereo format is optional. + + + Frame 0 and frame 1 are packed into interleaved rows, as shown in the following diagram. + +Interleaved rows + +Support for this stereo format is optional. + + + Frame 0 and frame 1 are packed into interleaved columns, as shown in the following diagram. + +Interleaved columns + +Support for this stereo format is optional. + + + Frame 0 and frame 1 are packed in a checkerboard format, as shown in the following diagram. + +Checkerboard packing + +Support for this stereo format is optional. + + + + Give a device access to a shared resource created on a different device. + Microsoft Docs: + A resource handle. See remarks. + The globally unique identifier (GUID) for the resource interface. See remarks. + Address of a pointer to the resource we are gaining access to. + + + + + Contains input data for a D3D11_AUTHENTICATED_QUERY_CRYPTO_SESSION query. + Microsoft Docs: + + + + A D3D11_AUTHENTICATED_QUERY_INPUT structure that contains the GUID for the query and other data. + + + A handle to a decoder device. + + + + Describes a video stream for a Microsoft Direct3D 11 video decoder or video processor. + Microsoft Docs: + + + + The decoding profile. To get the list of profiles supported by the device, call the ID3D11VideoDevice::GetVideoDecoderProfile method. + + + The width of the video frame, in pixels. + + + The height of the video frame, in pixels. + + + The output surface format, specified as a DXGI_FORMAT value. + + + + Creates a shader-trace interface for a shader-trace information object. + Microsoft Docs: + A pointer to the interface of the shader to create the shader-trace interface for. For example, pShader can be an instance of ID3D11VertexShader, ID3D11PixelShader, and so on. + A pointer to a D3D11_SHADER_TRACE_DESC structure that describes the shader-trace object to create. This parameter cannot be NULL. + A pointer to a variable that receives a pointer to the ID3D11ShaderTrace interface for the shader-trace object that CreateShaderTrace creates. + + + + + Describes the level of support for shader caching in the current graphics driver. + Microsoft Docs: + + + + Indicates that the driver does not support shader caching. + + + Indicates that the driver supports an OS-managed shader cache that stores compiled shaders in memory during the current run of the application. + + + Indicates that the driver supports an OS-managed shader cache that stores compiled shaders on disk to accelerate future runs of the application. + + + + Sets the luma key for an input stream on the video processor. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. To get this pointer, call ID3D11VideoDevice::CreateVideoProcessor. + The zero-based index of the input stream. To get the maximum number of streams, call ID3D11VideoProcessorEnumerator::GetVideoProcessorCaps and check the MaxStreamStates structure member. + Specifies whether luma keying is enabled. + The lower bound for the luma key. The valid range is [0…1]. If Enable is FALSE, this parameter is ignored. + The upper bound for the luma key. The valid range is [0…1]. If Enable is FALSE, this parameter is ignored. + + + + + Describes the subresources from an array of 2D textures to use in a render-target view. + Microsoft Docs: + + + + The index of the mipmap level to use mip slice. + + + The index of the first texture to use in an array of textures. + + + Number of textures in the array to use in the render-target view, starting from FirstArraySlice. + + + The index (plane slice number) of the plane to use in an array of textures. + + + + Describes the level of shader caching supported in the current graphics driver. + Microsoft Docs: + + + + Indicates the level of caching supported. + + + + Gets info about how a tiled resource is broken into tiles. + Microsoft Docs: + A pointer to the tiled resource to get info about. + A pointer to a variable that receives the number of tiles needed to store the entire tiled resource. + A pointer to a D3D11_PACKED_MIP_DESC structure that GetResourceTiling fills with info about how the tiled resource's mipmaps are packed. + A pointer to a D3D11_TILE_SHAPE structure that GetResourceTiling fills with info about the tile shape. This is info about how pixels fit in the tiles, independent of tiled resource's dimensions, + not including packed mipmaps. If the entire tiled resource is packed, this parameter is meaningless because the tiled resource has no defined layout + for packed mipmaps. + In this situation, GetResourceTiling sets the members of D3D11_TILE_SHAPE to zeros. + A pointer to a variable that contains the number of tiles in the subresource. On input, this is the number of subresources to query tilings for; on output, this is the number that was actually retrieved at pSubresourceTilingsForNonPackedMips (clamped to what's available). + The number of the first subresource tile to get. GetResourceTiling ignores this parameter if the number that pNumSubresourceTilings points to is 0. + A pointer to a D3D11_SUBRESOURCE_TILING structure that GetResourceTiling fills with info about subresource tiles. + + +If subresource tiles are part of packed mipmaps, GetResourceTiling sets the members of D3D11_SUBRESOURCE_TILING to zeros, except the StartTileIndexInOverallResource member, which GetResourceTiling sets to D3D11_PACKED_TILE (0xffffffff). The D3D11_PACKED_TILE constant indicates that the whole + D3D11_SUBRESOURCE_TILING structure is meaningless for this situation, and the info that the pPackedMipDesc parameter points to applies. + + + + + Creates a buffer (vertex buffer, index buffer, or shader-constant buffer). + Microsoft Docs: + A pointer to a D3D11_BUFFER_DESC structure that describes the buffer. + A pointer to a D3D11_SUBRESOURCE_DATA structure that describes the initialization data; + use NULL to allocate space only (with the exception that it cannot be NULL if the usage flag is D3D11_USAGE_IMMUTABLE). + + +If you don't pass anything to pInitialData, the initial content of the memory for the buffer is undefined. + In this case, you need to write the buffer content some other way before the resource is read. + Address of a pointer to the ID3D11Buffer interface for the buffer object created. + Set this parameter to NULL to validate the other input parameters (S_FALSE indicates a pass). + + + + + The device interface represents a virtual adapter; it is used to create resources. ID3D11Device4 adds new methods to those in ID3D11Device3, such as RegisterDeviceRemovedEvent and UnregisterDeviceRemoved. + Microsoft Docs: + + + + + Specifies the subresources of a texture that are accessible from a depth-stencil view. + Microsoft Docs: + + + + Resource data format (see DXGI_FORMAT). See remarks for allowable formats. + + + Type of resource (see D3D11_DSV_DIMENSION). Specifies how a depth-stencil resource will be accessed; the value is stored in the + union in this structure. + + + A value that describes whether the texture is read only. Pass 0 to specify that it is not read only; otherwise, pass one of the members of + the D3D11_DSV_FLAG enumerated type. + + + Specifies a 1D texture subresource (see D3D11_TEX1D_DSV). + + + Specifies an array of 1D texture subresources (see D3D11_TEX1D_ARRAY_DSV). + + + Specifies a 2D texture subresource (see D3D11_TEX2D_DSV). + + + Specifies an array of 2D texture subresources (see D3D11_TEX2D_ARRAY_DSV). + + + Specifies a multisampled 2D texture (see D3D11_TEX2DMS_DSV). + + + Specifies an array of multisampled 2D textures (see D3D11_TEX2DMS_ARRAY_DSV). + + + + Clears an unordered access resource with a float value. + Microsoft Docs: + The ID3D11UnorderedAccessView to clear. + Values to copy to corresponding channels, see remarks. + + + + + Get the vertex shader resources. + Microsoft Docs: + Index into the device's zero-based array to begin getting shader resources from (ranges from 0 to D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1). + The number of resources to get from the device. Up to a maximum of 128 slots are available for shader resources (ranges from 0 to D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot). + Array of shader resource view interfaces to be returned by the device. + + + + + Gets the constant buffers that the compute-shader stage uses. + Microsoft Docs: + Index into the device's zero-based array to begin retrieving constant buffers from (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1). + Number of buffers to retrieve (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot). + Array of constant buffer interface pointers to be returned by the method. + A pointer to an array that receives the offsets into the buffers that ppConstantBuffers specifies. Each offset specifies where, from the shader's point of view, each constant buffer starts. Each offset is measured in shader constants, which are 16 bytes (4*32-bit components). Therefore, an offset of 2 indicates that the start of the associated constant buffer is 32 bytes into the constant buffer. The runtime sets pFirstConstant to NULL if the buffers do not have offsets. + A pointer to an array that receives the numbers of constants in the buffers that ppConstantBuffers specifies. Each number specifies the number of constants that are contained in the constant buffer that the shader uses. Each number of constants starts from its respective offset that is specified in the pFirstConstant array. The runtime sets pNumConstants to NULL if it doesn't specify the numbers of constants in each buffer. + + + + + Gets the color-palette entries for an input stream on the video processor. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. To get this pointer, call ID3D11VideoDevice::CreateVideoProcessor. + The zero-based index of the input stream. To get the maximum number of streams, call ID3D11VideoProcessorEnumerator::GetVideoProcessorCaps and check the MaxStreamStates structure member. + The number of entries in the pEntries array. + A pointer to a UINT array allocated by the caller. The method fills the array with the palette entries. For RGB streams, the palette entries use the DXGI_FORMAT_B8G8R8A8 representation. For YCbCr streams, the palette entries use the DXGI_FORMAT_AYUV representation. + + + + + Specifies the type of sampler filter reduction. + Microsoft Docs: + + + + Indicates standard (default) filter reduction. + + + Indicates a comparison filter reduction. + + + Indicates minimum filter reduction. + + + Indicates maximum filter reduction. + + + + Specifies the subresources from a 3D texture to use in a render-target view. + Microsoft Docs: + + + + The index of the mipmap level to use mip slice. + + + First depth level to use. + + + Number of depth levels to use in the render-target view, starting from FirstWSlice. A value of -1 indicates all of the slices along the w axis, starting from FirstWSlice. + + + + Rebinds a sampler from source slot to destination slot. + Microsoft Docs: + The first source slot number for rebinding. + The first destination slot number for rebinding. + The number of slots for rebinding. + + + + + Creates a shared handle to a fence object. + Microsoft Docs: + A pointer to a SECURITY_ATTRIBUTESstructure that contains two separate but related data members: an optional security descriptor, and a Booleanvalue that determines whether child processes can inherit the returned handle. + + +Set this parameter to NULL if you want child processes that the + application might create to not inherit the handle returned by + CreateSharedHandle, and if you want the resource that is associated with the returned handle to get a default security + descriptor. + + +The lpSecurityDescriptor member of the structure specifies a + SECURITY_DESCRIPTOR for the resource. + Set this member to NULL if you want the runtime to assign a default security descriptor to the resource that is associated with the returned handle. + The ACLs in the default security descriptor for the resource come from the primary or impersonation token of the creator. + For more info, see Synchronization Object Security and Access Rights. + Currently the only value this parameter accepts is GENERIC_ALL. + A NULL-terminated UNICODE string that contains the name to associate with the shared heap. + The name is limited to MAX_PATH characters. + Name comparison is case-sensitive. + + +If Name matches the name of an existing resource, CreateSharedHandle fails with DXGI_ERROR_NAME_ALREADY_EXISTS. + This occurs because these objects share the same namespace. + + +The name can have a "Global\" or "Local\" prefix to explicitly create the object in the global or session namespace. + The remainder of the name can contain any character except the backslash character (\\). + For more information, see + Kernel Object Namespaces. + Fast user switching is implemented using Terminal Services sessions. + Kernel object names must follow the guidelines outlined for Terminal Services so that applications can support multiple users. + + +The object can be created in a private namespace. + For more information, see Object Namespaces. + A pointer to a variable that receives the NT HANDLE value to the resource to share. + You can use this handle in calls to access the resource. + + + + + Query information about the amount of data streamed out to the stream-output buffers in between ID3D11DeviceContext::Begin and ID3D11DeviceContext::End. + Microsoft Docs: + + + + Number of primitives (that is, points, lines, and triangles) written to the stream-output buffers. + + + Number of primitives that would have been written to the stream-output buffers if there had been enough space for them all. + + + + Describes the blend state that you use in a call to ID3D11Device::CreateBlendState to create a blend-state object. + Microsoft Docs: + + + + Specifies whether to use alpha-to-coverage as a multisampling technique when setting a pixel to a render target. For more info about using alpha-to-coverage, see Alpha-To-Coverage. + + + Specifies whether to enable independent blending in simultaneous render targets. Set to TRUE to enable independent blending. If set to FALSE, only the RenderTarget[0] members are used; RenderTarget[1..7] are ignored. + + + An array of D3D11_RENDER_TARGET_BLEND_DESC structures that describe the blend states for render targets; these correspond to the eight render targets + that can be bound to the output-merger stage at one time. + + + + Contains the response to a D3D11_AUTHENTICATED_QUERY_CRYPTO_SESSION query. + Microsoft Docs: + + + + A D3D11_AUTHENTICATED_QUERY_OUTPUT structure that contains a Message Authentication Code (MAC) and other data. + + + A handle to a decoder device. + + + A handle to the cryptographic session that is associated with the decoder device. + + + A handle to the Direct3D device that is associated with the decoder device. + + + + Describes a sampler state. + Microsoft Docs: + + + + Filtering method to use when sampling a texture (see D3D11_FILTER). + + + Method to use for resolving a u texture coordinate that is outside the 0 to 1 range (see D3D11_TEXTURE_ADDRESS_MODE). + + + Method to use for resolving a v texture coordinate that is outside the 0 to 1 range. + + + Method to use for resolving a w texture coordinate that is outside the 0 to 1 range. + + + Offset from the calculated mipmap level. For example, if Direct3D calculates that a texture should be sampled at mipmap level 3 and MipLODBias is 2, then the texture will be sampled at mipmap level 5. + + + Clamping value used if D3D11_FILTER_ANISOTROPIC or D3D11_FILTER_COMPARISON_ANISOTROPIC is specified in Filter. Valid values are between 1 and 16. + + + A function that compares sampled data against existing sampled data. The function options are listed in D3D11_COMPARISON_FUNC. + + + Border color to use if D3D11_TEXTURE_ADDRESS_BORDER is specified for AddressU, AddressV, or AddressW. Range must be between 0.0 and 1.0 inclusive. + + + Lower end of the mipmap range to clamp access to, where 0 is the largest and most detailed mipmap level and any level higher than that is less detailed. + + + Upper end of the mipmap range to clamp access to, where 0 is the largest and most detailed mipmap level and any level higher than that is less detailed. This value must be greater than or equal to MinLOD. To have no upper limit on LOD set this to a large value such as D3D11_FLOAT32_MAX. + + + + Leave a device's critical section. + Microsoft Docs: + + + + + Contains stream-level data for the ID3D11VideoContext::VideoProcessorBlt method. + Microsoft Docs: + + + + Specifies whether this input stream is enabled. If the value is TRUE, the VideoProcessorBlt method blits this stream to the output surface. Otherwise, this stream is not blitted. + +The maximum number of streams that can be enabled at one time is given in the MaxInputStreams member of the D3D11_VIDEO_PROCESSOR_CAPS structure. + + + The zero-based index number of the output frame. + + + The zero-based index number of the input frame or field. + + + The number of past reference frames. + + + The number of future reference frames. + + + A pointer to an array of ID3D11VideoProcessorInputView pointers, allocated by the caller. This array contains the past reference frames for the video processing operation. The number of elements in the array is equal to PastFrames. + + + A pointer to the ID3D11VideoProcessorInputView interface of the surface that contains the current input frame. + + + A pointer to an array of ID3D11VideoProcessorInputView pointers, allocated by the caller. This array contains the future reference frames for the video processing operation. The number of elements in the array is equal to FutureFrames. + + + If the stereo 3D format is D3D11_VIDEO_PROCESSOR_STEREO_FORMAT_SEPARATE, this member points to an array that contains the past reference frames for the right view. The number of elements in the array is equal to PastFrames. + +For any other stereo 3D format, set this member to NULL. For more information, see ID3D11VideoContext::VideoProcessorSetStreamStereoFormat. + + + If the stereo 3D format is D3D11_VIDEO_PROCESSOR_STEREO_FORMAT_SEPARATE, this member contains a pointer to the current input frame for the right view. + +For any other stereo 3D format, set this member to NULL. + + + If the stereo 3D format is D3D11_VIDEO_PROCESSOR_STEREO_FORMAT_SEPARATE, this member points to an array that contains the future reference frames for the right view. The number of elements in the array is equal to FutureFrames. + +For any other stereo 3D format, set this member to NULL. + + + + Gets the decoding profile of the session. + Microsoft Docs: + Receives the decoding profile. For a list of possible values, see ID3D11VideoDevice::GetVideoDecoderProfile. + + + + + Get the properties of a render target view. + Microsoft Docs: + Pointer to the description of a render target view (see D3D11_RENDER_TARGET_VIEW_DESC). + + + + + Enables or disables stereo 3D video for an input stream on the video processor. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. To get this pointer, call ID3D11VideoDevice::CreateVideoProcessor. + The zero-based index of the input stream. To get the maximum number of streams, call ID3D11VideoProcessorEnumerator::GetVideoProcessorCaps and check the MaxStreamStates structure member. + Specifies whether stereo 3D is enabled for this stream. If the value is FALSE, the remaining parameters of this method are ignored. + Specifies the layout of the two stereo views in memory, as a D3D11_VIDEO_PROCESSOR_STEREO_FORMAT value. + If TRUE, frame 0 contains the left view. Otherwise, frame 0 contains the right view. + +This parameter is ignored for the following stereo formats: + +
    +
  • D3D11_VIDEO_PROCESSOR_STEREO_FORMAT_MONO
  • +
  • D3D11_VIDEO_PROCESSOR_STEREO_FORMAT_MONO_OFFSET
  • +
+ If TRUE, frame 0 contains the base view. Otherwise, frame 1 contains the base view. + +This parameter is ignored for the following stereo formats: + +
    +
  • D3D11_VIDEO_PROCESSOR_STEREO_FORMAT_MONO
  • +
  • D3D11_VIDEO_PROCESSOR_STEREO_FORMAT_MONO_OFFSET
  • +
  • When D3D11_VIDEO_PROCESSOR_STEREO_FORMAT_SEPARATE is used and the application wants to convert the stereo data to mono, it can either:
      +
    • Specify the base view as a mono input.
    • +
    • Specify both resources and allow the driver to do the conversion from the base view. In this case, D3D11_VIDEO_PROCESSOR_STREAM.hInputSurface is considered frame 0 and D3D11_VIDEO_PROCESSOR_STREAM.hInputSurfaceRight is considered frame 1.
    • +
    +
  • +
+ A flag from the D3D11_VIDEO_PROCESSOR_STEREO_FLIP_MODE enumeration, specifying whether one of the views is flipped. + For D3D11_VIDEO_PROCESSOR_STEREO_FORMAT_MONO_OFFSET format, this parameter specifies how to generate the left and right views: + +
    +
  • If MonoOffset is positive, the right view is shifted to the right by that many pixels, and the left view is shifted to the left by the same amount.
  • +
  • If MonoOffset is negative, the right view is shifted to the left by that many pixels, and the left view is shifted to right by the same amount.
  • +
+If Format is not D3D11_VIDEO_PROCESSOR_STEREO_FORMAT_MONO_OFFSET, this parameter must be zero. +
+
+ + + Sets the color space information for the video processor input stream. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. + An index identifying the input stream. + A DXGI_COLOR_SPACE_TYPE value that specifies the colorspace for the video processor input stream. + + + + + Get the hull shader currently set on the device. + Microsoft Docs: + Address of a pointer to a hull shader (see ID3D11HullShader) to be returned by the method. + Pointer to an array of class instance interfaces (see ID3D11ClassInstance). + The number of class-instance elements in the array. + + + + + Specifies the parts of the depth stencil to clear. + Microsoft Docs: + + + + Clear the depth buffer, using fast clear if possible, then place the resource in a compressed state. + + + Clear the stencil buffer, using fast clear if possible, then place the resource in a compressed state. + + + + Create an input-layout object to describe the input-buffer data for the input-assembler stage. + Microsoft Docs: + An array of the input-assembler stage input data types; each type is described by an element description (see D3D11_INPUT_ELEMENT_DESC). + The number of input-data types in the array of input-elements. + A pointer to the compiled shader. The compiled shader code contains a input signature which is validated against the array of elements. See remarks. + Size of the compiled shader. + A pointer to the input-layout object created (see ID3D11InputLayout). To validate the other input parameters, set this pointer to be NULL and verify that the method returns S_FALSE. + + + + + Creates a device that represents the display adapter. + Microsoft Docs: + A pointer to the video adapter to use when creating a device. Pass NULL to use the default adapter, which is the first adapter that is enumerated by IDXGIFactory1::EnumAdapters. + +
Note  Do not mix the use of DXGI 1.0 (IDXGIFactory) and DXGI 1.1 (IDXGIFactory1) in an application. Use IDXGIFactory or IDXGIFactory1, but not both in an application. +
+
 
+ The D3D_DRIVER_TYPE, which represents the driver type to create. + A handle to a DLL that implements a software rasterizer. + If DriverType is D3D_DRIVER_TYPE_SOFTWARE, + Software must not be NULL. Get the handle by + calling LoadLibrary, + LoadLibraryEx , + or GetModuleHandle. + The runtime layers to enable (see D3D11_CREATE_DEVICE_FLAG); + values can be bitwise OR'd together. + A pointer to an array of D3D_FEATURE_LEVELs, which determine the order of feature levels to attempt to create. + If pFeatureLevels is set to NULL, + this function uses the following array of feature levels: + + + + +{ + D3D_FEATURE_LEVEL_11_0, + D3D_FEATURE_LEVEL_10_1, + D3D_FEATURE_LEVEL_10_0, + D3D_FEATURE_LEVEL_9_3, + D3D_FEATURE_LEVEL_9_2, + D3D_FEATURE_LEVEL_9_1, +}; + + + +
Note  If the Direct3D 11.1 runtime is present on the computer and pFeatureLevels is set to NULL, this function won't create a D3D_FEATURE_LEVEL_11_1 device. To create a D3D_FEATURE_LEVEL_11_1 device, you must explicitly provide a D3D_FEATURE_LEVEL array that includes D3D_FEATURE_LEVEL_11_1. If you provide a D3D_FEATURE_LEVEL array that contains D3D_FEATURE_LEVEL_11_1 on a computer that doesn't have the Direct3D 11.1 runtime installed, this function immediately fails with E_INVALIDARG. +
+
 
+ The number of elements in pFeatureLevels. + The SDK version; use D3D11_SDK_VERSION. + Returns the address of a pointer to an ID3D11Device object that represents the device created. If this parameter is NULL, no ID3D11Device will be returned. + If successful, returns the first D3D_FEATURE_LEVEL from the pFeatureLevels array which succeeded. Supply NULL as an input if you don't need to determine which feature level is supported. + Returns the address of a pointer to an ID3D11DeviceContext object that represents the device context. If this parameter is NULL, no ID3D11DeviceContext will be returned. +
+
+ + + Get a description of how a resource is bound to a shader. + Microsoft Docs: + The constant-buffer name of the resource. + A pointer to an input-binding description. See D3D11_SHADER_INPUT_BIND_DESC. + + + + + Allows the driver to return IHV specific information used when initializing the new hardware key. + Microsoft Docs: + A pointer to the ID3D11CryptoSession interface. To get this pointer, call ID3D11VideoDevice1::CreateCryptoSession. + The size of the memory referenced by the pPrivateInputData parameter. + The private input data. The contents of this parameter is defined by the implementation of the secure execution environment. It may contain data about the license or about the stream properties. + A pointer to the private output data. The return data is defined by the implementation of the secure execution environment. It may contain graphics-specific data to be associated with the underlying hardware key. + + + + + Gets the minimum level-of-detail (LOD). + Microsoft Docs: + A pointer to an ID3D11Resource which represents the resource. + + + + + Gets the description for depth-stencil state that you used to create the depth-stencil-state object. + Microsoft Docs: + A pointer to a D3D11_DEPTH_STENCIL_DESC structure that receives a description of the depth-stencil state. + + + + + Get the array of scissor rectangles bound to the rasterizer stage. + Microsoft Docs: + The number of scissor rectangles (ranges between 0 and D3D11_VIEWPORT_AND_SCISSORRECT_OBJECT_COUNT_PER_PIPELINE) bound; set pRects to NULL to use pNumRects to see how many rectangles would be returned. + An array of scissor rectangles (see D3D11_RECT). If NumRects is greater than the number of scissor rects currently bound, then unused members of the array will contain 0. + + + + + Get a pointer to the index buffer that is bound to the input-assembler stage. + Microsoft Docs: + A pointer to an index buffer returned by the method (see ID3D11Buffer). + Specifies format of the data in the index buffer (see DXGI_FORMAT). These formats provide the size and type of + the data in the buffer. The only formats allowed for index buffer data are 16-bit (DXGI_FORMAT_R16_UINT) and 32-bit (DXGI_FORMAT_R32_UINT) + integers. + Offset (in bytes) from the start of the index buffer, to the first index to use. + + + + + A vertex-shader interface manages an executable program (a vertex shader) that controls the vertex-shader stage. + Microsoft Docs: + + + + + Describes a trace step, which is an instruction. + Microsoft Docs: + + + + A number that identifies the instruction, as an offset into the executable instructions that are present in the shader. + +HLSL debugging information uses the same convention. Therefore, HLSL instructions are matched to a set of IDs. You can then map an ID to a disassembled string that can be displayed to the user. + + + A value that specifies whether the instruction is active. This value is TRUE if something happened; therefore, you should parse other data in this structure. Otherwise, nothing happened; for example, if an instruction is disabled due to flow control even though other pixels in the stamp execute it. + + + The number of registers for the instruction that are written to. The range of registers is [0...NumRegistersWritten-1]. You can pass a register number to the writtenRegisterIndex parameter of ID3D11ShaderTrace::GetWrittenRegister to retrieve individual write-register information. + + + The number of registers for the instruction that are read from. The range of registers is [0...NumRegistersRead-1]. You can pass a register number to the readRegisterIndex parameter of ID3D11ShaderTrace::GetReadRegister to retrieve individual read-register information. + + + A number that specifies the type of instruction (for example, add, mul, and so on). You can ignore this member if you do not know the number for the instruction type. This member offers a minor convenience at the cost of bloating the trace slightly. You can use the ID member and map back to the original shader code to retrieve the full information about the instruction. + + + The global cycle count for this step. You can use this member to correlate parallel thread execution via multiple simultaneous traces, for example, for the compute shader. + + +
Note  Multiple threads at the same point in execution might log the same CurrentGlobalCycle. +
+
 
+
+ + + Gets information about the features that are supported by the current graphics driver. + Microsoft Docs: + A member of the D3D11_FEATURE enumerated type that describes which feature to query for support. + Upon completion of the method, the passed structure is filled with data that describes the feature support. + The size of the structure passed to the pFeatureSupportData parameter. + + + + + Sets a swap chain that the runtime will use for automatically calling IDXGISwapChain::Present. + Microsoft Docs: + Swap chain that the runtime will use for automatically calling IDXGISwapChain::Present; must have been created with the DXGI_SWAP_EFFECT_SEQUENTIAL swap-effect flag. + + + + + Get a shader-reflection-variable type by name. + Microsoft Docs: + Member name. + + + + + Gets a handle to the driver. + Microsoft Docs: + Receives a handle to the driver. + + + + + Specifies a YCbCr color value. + Microsoft Docs: + + + + The Y luma value. + + + The Cb chroma value. + + + The Cr chroma value. + + + The alpha value. Values range from 0 (transparent) to 1 (opaque). + + + + Gets the description for rasterizer state that you used to create the rasterizer-state object. + Microsoft Docs: + A pointer to a D3D11_RASTERIZER_DESC1 structure that receives a description of the rasterizer state. This rasterizer state can specify forced sample count. + + + + + Opens a handle for a shared fence by using HANDLE and REFIID. + Microsoft Docs: + The handle that was returned by a call to ID3D11Fence::CreateSharedHandle or ID3D12Device::CreateSharedHandle. + The globally unique identifier (GUID) for the ID3D11Fence interface. The REFIID, or GUID, of the interface can be obtained by using the __uuidof() macro. For example, __uuidof(ID3D11Fence) will get the GUID of the interface to the fence. + A pointer to a memory block that receives a pointer to the ID3D11Fence interface. + + + + + A shader-reflection interface accesses shader information. + Microsoft Docs: + + + + + A 3D texture interface represents texel data, which is structured memory. + Microsoft Docs: + + + + + A geometry-shader interface manages an executable program (a geometry shader) that controls the geometry-shader stage. + Microsoft Docs: + + + + + A view interface specifies the parts of a resource the pipeline can access during rendering. + Microsoft Docs: + + + + + Describes a trace value. + Microsoft Docs: + + + + An array of bits that make up the trace value. The [0] element is X. + + +
Note  This member can hold float, UINT, or INT data. + The elements are specified as UINT rather than using a union to minimize the risk of x86 SNaN->QNaN quashing during float assignment. + If the bits are displayed, they can be interpreted as float at the last moment. +
+
 
+
+ + A combination of the following component values that are combined by using a bitwise OR operation. + The resulting value specifies the component trace mask. + + + + + + + + + + + + + + + + + + + + + + + +
FlagDescription
D3D11_TRACE_COMPONENT_X (0x1)The x component of the trace mask.
D3D11_TRACE_COMPONENT_Y (0x2)The y component of the trace mask.
D3D11_TRACE_COMPONENT_Z (0x4)The depth z component of the trace mask.
D3D11_TRACE_COMPONENT_W (0x8)The depth w component of the trace mask.
+  + +Ignore unmasked values, particularly if deltas are accumulated.
+
+ + + Get the target output buffers for the stream-output stage of the pipeline. + Microsoft Docs: + Number of buffers to get. + An array of output buffers (see ID3D11Buffer) to be retrieved from the device. + + + + + Clears an unordered access resource with bit-precise values. + Microsoft Docs: + The ID3D11UnorderedAccessView to clear. + Values to copy to corresponding channels, see remarks. + + + + + Get an array of sampler state interfaces from the geometry shader pipeline stage. + Microsoft Docs: + Index into a zero-based array to begin getting samplers from (ranges from 0 to D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - 1). + Number of samplers to get from a device context. Each pipeline stage has a total of 16 sampler slots available (ranges from 0 to D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot). + Pointer to an array of sampler-state interfaces (see ID3D11SamplerState). + + + + + Describes a sub sample mapping block. + Microsoft Docs: + + + + The number of clear (non-encrypted) bytes at the start of the block. + + + The number of encrypted bytes following the clear bytes. + + + + Get the number of messages that were discarded due to the message count limit. + Microsoft Docs: + + + + + Gets the number of decoder configurations that the driver supports for a specified video description. + Microsoft Docs: + A pointer to a D3D11_VIDEO_DECODER_DESC structure that describes the video stream. + Receives the number of decoder configurations. + + + + + Gets a description of how a resource is bound to a function. + Microsoft Docs: + A zero-based resource index. + A pointer to a D3D11_SHADER_INPUT_BIND_DESC structure that describes input binding of the resource. + + + + + Identifies the output surfaces that can be accessed during video processing. + Microsoft Docs: + + + + + Blend factors, which modulate values for the pixel shader and render target. + Microsoft Docs: + + + + The blend factor is (0, 0, 0, 0). No pre-blend operation. + + + The blend factor is (1, 1, 1, 1). No pre-blend operation. + + + The blend factor is (Rₛ, Gₛ, Bₛ, Aₛ), that is color data (RGB) from a pixel shader. No pre-blend operation. + + + The blend factor is (1 - Rₛ, 1 - Gₛ, 1 - Bₛ, 1 - Aₛ), that is color data (RGB) from a pixel shader. The pre-blend operation inverts the data, generating 1 - RGB. + + + The blend factor is (Aₛ, Aₛ, Aₛ, Aₛ), that is alpha data (A) from a pixel shader. No pre-blend operation. + + + The blend factor is ( 1 - Aₛ, 1 - Aₛ, 1 - Aₛ, 1 - Aₛ), that is alpha data (A) from a pixel shader. The pre-blend operation inverts the data, generating 1 - A. + + + The blend factor is (Ad Ad Ad Ad), that is alpha data from a render target. No pre-blend operation. + + + The blend factor is (1 - Ad 1 - Ad 1 - Ad 1 - Ad), that is alpha data from a render target. The pre-blend operation inverts the data, generating 1 - A. + + + The blend factor is (Rd, Gd, Bd, Ad), that is color data from a render target. No pre-blend operation. + + + The blend factor is (1 - Rd, 1 - Gd, 1 - Bd, 1 - Ad), that is color data from a render target. The pre-blend operation inverts the data, generating 1 - RGB. + + + The blend factor is (f, f, f, 1); where f = min(Aₛ, 1 + - Ad). The pre-blend operation clamps the data to 1 or less. + + + The blend factor is the blend factor set with ID3D11DeviceContext::OMSetBlendState. No pre-blend operation. + + + The blend factor is the blend factor set with ID3D11DeviceContext::OMSetBlendState. The pre-blend operation inverts the blend factor, generating 1 - blend_factor. + + + The blend factor is data sources both as color data output by a pixel shader. There is no pre-blend operation. This blend factor supports dual-source color blending. + + + The blend factor is data sources both as color data output by a pixel shader. The pre-blend operation inverts the data, generating 1 - RGB. This blend factor supports dual-source color blending. + + + The blend factor is data sources as alpha data output by a pixel shader. There is no pre-blend operation. This blend factor supports dual-source color blending. + + + The blend factor is data sources as alpha data output by a pixel shader. The pre-blend operation inverts the data, generating 1 - A. This blend factor supports dual-source color blending. + + + + Rebinds a constant buffer by name to a destination slot. + Microsoft Docs: + The name of the constant buffer for rebinding. + The destination slot number for rebinding. + The offset in bytes of the destination slot for rebinding. The offset must have 16-byte alignment. + + + + + Sets all the elements in a resource view to one value. + Microsoft Docs: + A pointer to the ID3D11View interface that represents the resource view to clear. + A 4-component array that represents the color to use to clear the resource view. + An array of D3D11_RECT structures for the rectangles in the resource view to clear. If NULL, ClearView clears the entire surface. + Number of rectangles in the array that the pRect parameter specifies. + + + + + Creates a render-target view for accessing resource data. + Microsoft Docs: + Pointer to a ID3D11Resource that represents a render target. This resource must have been created with the D3D11_BIND_RENDER_TARGET flag. + Pointer to a D3D11_RENDER_TARGET_VIEW_DESC1 that represents a render-target view description. Set this parameter to NULL to create a view that accesses all of the subresources in mipmap level 0. + A pointer to a memory block that receives a pointer to a ID3D11RenderTargetView1 interface for the created render-target view. Set this parameter to NULL to validate the other input parameters (the method will return S_FALSE if the other input parameters pass validation). + + + + + Get a query description. + Microsoft Docs: + Pointer to a query description (see D3D11_QUERY_DESC). + + + + + Get the rendering predicate state. + Microsoft Docs: + Address of a pointer to a predicate (see ID3D11Predicate). Value stored here will be NULL upon device creation. + Address of a boolean to fill with the predicate comparison value. FALSE upon device creation. + + + + + Sends a query to an authenticated channel. + Microsoft Docs: + A pointer to the ID3D11AuthenticatedChannel interface. + The size of the pInput array, in bytes. + A pointer to a byte array that contains input data for the query. This array always starts with a D3D11_AUTHENTICATED_QUERY_INPUT structure. The QueryType member of the structure specifies the query and defines the meaning of the rest of the array. + The size of the pOutput array, in bytes. + A pointer to a byte array that receives the result of the query. This array always starts with a D3D11_AUTHENTICATED_QUERY_OUTPUT structure. The meaning of the rest of the array depends on the query. + + + + + Provides the video decoding and video processing capabilities of a Microsoft Direct3D 11 device. + Microsoft Docs: + + + + + Gets the size of the driver's certificate chain. + Microsoft Docs: + Receives the size of the certificate chain, in bytes. + + + + + Identify a technique for resolving texture coordinates that are outside of the boundaries of a texture. + Microsoft Docs: + + + + Tile the texture at every (u,v) integer junction. For example, for u values between 0 and 3, the texture is repeated three times. + + + Flip the texture at every (u,v) integer junction. For u values between 0 and 1, for example, the texture is addressed normally; between 1 and 2, the texture is flipped (mirrored); between 2 and 3, the texture is normal again; and so on. + + + Texture coordinates outside the range [0.0, 1.0] are set to the texture color at 0.0 or 1.0, respectively. + + + Texture coordinates outside the range [0.0, 1.0] are set to the border color specified in D3D11_SAMPLER_DESC or HLSL code. + + + Similar to D3D11_TEXTURE_ADDRESS_MIRROR and D3D11_TEXTURE_ADDRESS_CLAMP. Takes the absolute value of the texture coordinate (thus, mirroring around 0), and then clamps to the maximum value. + + + + Gives a device access to a shared resource that is referenced by a handle and that was created on a different device. + Microsoft Docs: + A handle to the resource to open. For more info about this parameter, see Remarks. + The globally unique identifier (GUID) for the resource interface. For more info about this parameter, see Remarks. + A pointer to a variable that receives a pointer to the interface for the shared resource object to access. + + + + + Creates a query object for querying information from the graphics processing unit (GPU). + Microsoft Docs: + Pointer to a D3D11_QUERY_DESC1 structure that represents a query description. + A pointer to a memory block that receives a pointer to a ID3D11Query1 interface for the created query object. Set this parameter to NULL to validate the other input parameters (the method will return S_FALSE if the other input parameters pass validation). + + + + + Describes information about Direct3D 11.1 adapter architecture. + Microsoft Docs: + + + + Specifies whether a rendering device batches rendering commands and performs multipass rendering into tiles or bins over a render area. Certain API usage patterns that are fine for TileBasedDefferredRenderers (TBDRs) can perform worse on non-TBDRs and vice versa. Applications that are careful about rendering can be friendly to both TBDR and non-TBDR architectures. TRUE if the rendering device batches rendering commands and FALSE otherwise. + + + + Device context options. + Microsoft Docs: + + + + The device context is an immediate context. + + + The device context is a deferred context. + + + + Indicates the tier level at which tiled resources are supported. + Microsoft Docs: + + + + Tiled resources are not supported. + + + Tier_1 tiled resources are supported. + +The device supports calls to CreateTexture2D and so on with the D3D11_RESOURCE_MISC_TILED flag. + + +The device supports calls to CreateBuffer with the D3D11_RESOURCE_MISC_TILE_POOL flag. + + +If you access tiles (read or write) that are NULL-mapped, you get undefined behavior, which includes device-removed. Apps can map all tiles to a single "default" tile to avoid this condition. + + + Tier_2 tiled resources are supported. + + +Superset of Tier_1 functionality, which includes this additional support: + + +
    +
  • On Tier_1, if the size of a texture mipmap level is an integer multiple of the standard tile shape for its format, it is guaranteed to be nonpacked. On Tier_2, this guarantee is expanded to include mipmap levels whose size is at least one standard tile shape. + For more info, see D3D11_PACKED_MIP_DESC. +
  • +
  • Shader instructions are available for clamping level-of-detail (LOD) and for obtaining status about the shader operation. For info about one of these shader instructions, see Sample(S,float,int,float,uint). +
  • +
  • Reading from NULL-mapped tiles treat that sampled value as zero. Writes to NULL-mapped tiles are discarded. +
  • +
+
+ + Tier_3 tiled resources are supported. + + +Superset of Tier_2 functionality, Tier 3 is essentially Tier 2 but with the additional support of Texture3D for Tiled Resources. + + + + Specifies the subresources from an array of multisampled 2D textures for a depth-stencil view. + Microsoft Docs: + + + + The index of the first texture to use in an array of textures. + + + Number of textures to use. + + + + Describes a counter. + Microsoft Docs: + + + + Type of counter (see D3D11_COUNTER). + + + Reserved. + + + + Provides access to subresource data. + Microsoft Docs: + + + + Pointer to the data. When ID3D11DeviceContext::Map provides the pointer, the runtime ensures that the pointer has a specific alignment, depending on the following feature levels: + + + + + The row pitch, or width, or physical size (in bytes) of the data. + + + The depth pitch, or width, or physical size (in bytes)of the data. + + + + Set a bit field of flags that will turn debug features on and off. + Microsoft Docs: + A combination of feature-mask flags that are combined by using a bitwise OR operation. If a flag is present, that feature will be set to on, otherwise the feature will be set to off. For descriptions of the feature-mask flags, see Remarks. + + + + + Debug message filter; contains a lists of message types to allow or deny. + Microsoft Docs: + + + + Types of messages that you want to allow. See D3D11_INFO_QUEUE_FILTER_DESC. + + + Types of messages that you want to deny. + + + + Adds a clip plane with the plane coefficients taken from a cbuffer entry for 10Level9 shaders. + Microsoft Docs: + The cbuffer slot number. + The cbuffer entry number. + + + + + Allows applications to annotate graphics commands. + Microsoft Docs: + An optional string that will be logged to ETW when ETW logging is active. If ‘#d’ appears in the string, it will be replaced by the value of the Data parameter similar to the way printf works. + A signed data value that will be logged to ETW when ETW logging is active. + + + + + Describes Direct3D 11.3 feature options in the current graphics driver. + Microsoft Docs: + + + + Whether to use the VP and RT array index from any shader feeding the rasterizer. + + + + Describes whether simple instancing is supported. + Microsoft Docs: + + + + Specifies whether the hardware and driver support simple instancing. The runtime sets this member to TRUE if the hardware and driver support simple instancing. + + + + Initializes a class-instance object that represents an HLSL class instance. + Microsoft Docs: + The type name of a class to initialize. + Identifies the constant buffer that contains the class data. + The four-component vector offset from the start of the constant buffer where the class data will begin. Consequently, this is not a byte offset. + The texture slot for the first texture; there may be multiple textures following the offset. + The sampler slot for the first sampler; there may be multiple samplers following the offset. + The address of a pointer to an ID3D11ClassInstance interface to initialize. + + + + + Queries whether the video processor supports a specified video format. + Microsoft Docs: + The video format to query, specified as a DXGI_FORMAT value. + Receives a bitwise OR of zero or more flags from the D3D11_VIDEO_PROCESSOR_FORMAT_SUPPORT enumeration. + + + + + A debug message in the Information Queue. + Microsoft Docs: + + + + The category of the message. See D3D11_MESSAGE_CATEGORY. + + + The severity of the message. See D3D11_MESSAGE_SEVERITY. + + + The ID of the message. See D3D11_MESSAGE_ID. + + + The message string. + + + The length of pDescription in bytes. + + + + Retrieves optional sizes for private driver data. + Microsoft Docs: + Indicates the crypto type for which the private input and output size is queried. + Indicates the decoder profile for which the private input and output size is queried. + Indicates the key exchange type for which the private input and output size is queried. + Returns the size of private data that the driver needs for input commands. + Returns the size of private data that the driver needs for output commands. + + + + + Sets the specified pixel-shader stamp. + Microsoft Docs: + The index of the stamp to select. + + + + + Describes the subresource from a 2D texture to use in a shader-resource view. + Microsoft Docs: + + + + Index of the most detailed mipmap level to use; this number is between 0 and (MipLevels (from the original Texture2D for which + ID3D11Device3::CreateShaderResourceView1creates a view) - 1 ). + + + The maximum number of mipmap levels for the view of the texture. See the remarks in D3D11_TEX1D_SRV. + + +Set to -1 to indicate all the mipmap levels from MostDetailedMip on down to least detailed. + + + The index (plane slice number) of the plane to use in the texture. + + + + Set the eviction priority of a resource. + Microsoft Docs: + + + + + + Get the compute shader currently set on the device. + Microsoft Docs: + Address of a pointer to a Compute shader (see ID3D11ComputeShader) to be returned by the method. + Pointer to an array of class instance interfaces (see ID3D11ClassInstance). + The number of class-instance elements in the array. + + + + + Creates a channel to communicate with the Microsoft Direct3D device or the graphics driver. + Microsoft Docs: + Specifies the type of channel, as a member of the D3D11_AUTHENTICATED_CHANNEL_TYPE enumeration. + Receives a pointer to the ID3D11AuthenticatedChannel interface. The caller must release the interface. + + + + + Add storage filters to the top of the storage-filter stack. + Microsoft Docs: + Array of storage filters (see D3D11_INFO_QUEUE_FILTER). + + + + + Sets the constant buffers that the geometry shader pipeline stage uses. + Microsoft Docs: + Index into the device's zero-based array to begin setting constant buffers to (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1). + Number of buffers to set (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot). + Array of constant buffers (see ID3D11Buffer) being given to the device. + An array that holds the offsets into the buffers that ppConstantBuffers specifies. Each offset specifies where, from the shader's point of view, each constant buffer starts. Each offset is measured in shader constants, which are 16 bytes (4*32-bit components). Therefore, an offset of 16 indicates that the start of the associated constant buffer is 256 bytes into the constant buffer. Each offset must be a multiple of 16 constants. + An array that holds the numbers of constants in the buffers that ppConstantBuffers specifies. Each number specifies the number of constants that are contained in the constant buffer that the shader uses. Each number of constants starts from its respective offset that is specified in the pFirstConstant array. Each number of constants must be a multiple of 16 constants, in the range [0..4096]. + + + + + Passes a value with swizzle from a source linking node to a destination linking node. + Microsoft Docs: + A pointer to the ID3D11LinkingNode interface for the source linking node. + The zero-based index of the source parameter. + The name of the source swizzle. + A pointer to the ID3D11LinkingNode interface for the destination linking node. + The zero-based index of the destination parameter. + The name of the destination swizzle. + + + + + Data type of a performance counter. + Microsoft Docs: + + + + 32-bit floating point. + + + 16-bit unsigned integer. + + + 32-bit unsigned integer. + + + 64-bit unsigned integer. + + + + Specifies the protection level for video content. + Microsoft Docs: + + + + If 1, video content protection is enabled. + + + If 1, the application requires video to be displayed using either a hardware overlay or full-screen exclusive mode. + + + Reserved. Set all bits to zero. + + + Use this member to access all of the bits in the union. + + + + Specifies whether the video processor produces stereo video frames. + Microsoft Docs: + A pointer to the ID3D11VideoProcessor interface. To get this pointer, call ID3D11VideoDevice::CreateVideoProcessor. + If TRUE, stereo output is enabled. Otherwise, the video processor produces mono video frames. + + + + + Execute a command list over one or more thread groups. + Microsoft Docs: + A pointer to an ID3D11Buffer, which must be loaded with data that matches the argument list for ID3D11DeviceContext::Dispatch. + A byte-aligned offset between the start of the buffer and the arguments. + + + + + Get a boolean that turns the debug output on or off. + Microsoft Docs: + + + + + Get the geometry shader currently set on the device. + Microsoft Docs: + Address of a pointer to a geometry shader (see ID3D11GeometryShader) to be returned by the method. + Pointer to an array of class instance interfaces (see ID3D11ClassInstance). + The number of class-instance elements in the array. + + + + + Set the constant buffers used by the hull-shader stage. + Microsoft Docs: + Index into the device's zero-based array to begin setting constant buffers to (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1). + Number of buffers to set (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot). + Array of constant buffers (see ID3D11Buffer) being given to the device. + + + + + Unregisters the "device removed" event. + Microsoft Docs: + Information about the "device removed" event, + retrieved during a successful RegisterDeviceRemovedEvent call. + + + + + Set an array of sampler states to the geometry shader pipeline stage. + Microsoft Docs: + Index into the device's zero-based array to begin setting samplers to (ranges from 0 to D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - 1). + Number of samplers in the array. Each pipeline stage has a total of 16 sampler slots available (ranges from 0 to D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot). + Pointer to an array of sampler-state interfaces (see ID3D11SamplerState). See Remarks. + + + + + Bind an array of shader resources to the compute-shader stage. + Microsoft Docs: + Index into the device's zero-based array to begin setting shader resources to (ranges from 0 to D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1). + Number of shader resources to set. Up to a maximum of 128 slots are available for shader resources(ranges from 0 to D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot). + Array of shader resource view interfaces to set to the device. + + + + + Identifies the output surfaces that can be accessed during video decoding. + Microsoft Docs: + + + + + Bind information about the primitive type, and data order that describes input data for the input assembler stage. + Microsoft Docs: + The type of primitive and ordering of the primitive data (see D3D11_PRIMITIVE_TOPOLOGY). + + + + + Identifies expected resource use during rendering. The usage directly reflects whether a resource is accessible by the CPU and/or the graphics processing unit (GPU). + Microsoft Docs: + + + + A resource that requires read and write access by the GPU. This is likely to be the most common usage choice. + + + A resource that can only be read by the GPU. It cannot be written by the GPU, and cannot be accessed at all by the CPU. This type of resource must be initialized when it is created, since it cannot be changed after creation. + + + A resource that is accessible by both the GPU (read only) and the CPU (write only). A dynamic resource is a good choice for a resource that will be updated by the CPU at least once per frame. To update a dynamic resource, use a Map method. + +For info about how to use dynamic resources, see How to: Use dynamic resources. + + + A resource that supports data transfer (copy) from the GPU to the CPU. + + + + Describes Direct3D 11.1 feature options in the current graphics driver. + Microsoft Docs: + + + + Specifies whether logic operations are available in blend state. The runtime sets this member to TRUE if logic operations are available in blend state and FALSE otherwise. This member is FALSE for feature level 9.1, 9.2, and 9.3. This member is optional for feature level 10, 10.1, and 11. This member is TRUE for feature level 11.1. + + + Specifies whether the driver can render with no render target views (RTVs) or depth stencil views (DSVs), and only unordered access views (UAVs) bound. The runtime sets this member to TRUE if the driver can render with no RTVs or DSVs and only UAVs bound and FALSE otherwise. If TRUE, you can set the ForcedSampleCount member of D3D11_RASTERIZER_DESC1 to 1, 4, or 8 when you render with no RTVs or DSV and only UAVs bound. For feature level 11.1, this member is always TRUE and you can also set ForcedSampleCount to 16 in addition to 1, 4, or 8. The default value of ForcedSampleCount is 0, which means the same as if the value is set to 1. You can always set ForcedSampleCount to 0 or 1 for UAV-only rendering independently of how this member is set. + + + Specifies whether the driver supports the ID3D11DeviceContext1::DiscardView and ID3D11DeviceContext1::DiscardResource methods. The runtime sets this member to TRUE if the driver supports these methods and FALSE otherwise. How this member is set does not indicate whether the driver actually uses these methods; that is, the driver might ignore these methods if they are not useful to the hardware. If FALSE, the runtime does not expose these methods to the driver because the driver does not support them. You can monitor this member during development to rule out legacy drivers on hardware where these methods might have otherwise been beneficial. You are not required to write separate code paths based on whether this member is TRUE or FALSE; you can call these methods whenever applicable. + + + Specifies whether the driver supports new semantics for copy and update that are exposed by the ID3D11DeviceContext1::CopySubresourceRegion1 and ID3D11DeviceContext1::UpdateSubresource1 methods. The runtime sets this member to TRUE if the driver supports new semantics for copy and update. The runtime sets this member to FALSE only for legacy drivers. The runtime handles this member similarly to the DiscardAPIsSeenByDriver member. + + + Specifies whether the driver supports the ID3D11DeviceContext1::ClearView method. The runtime sets this member to TRUE if the driver supports this method and FALSE otherwise. If FALSE, the runtime does not expose this method to the driver because the driver does not support it. + +
Note  For feature level 9.1, 9.2, and 9.3, this member is always TRUE because the option is emulated by the runtime.
+
 
+
+ + Specifies whether you can call ID3D11DeviceContext1::CopySubresourceRegion1 with overlapping source and destination rectangles. The runtime sets this member to TRUE if you can call CopySubresourceRegion1 with overlapping source and destination rectangles and FALSE otherwise. If FALSE, the runtime does not expose this method to the driver because the driver does not support it. + +
Note  For feature level 9.1, 9.2, and 9.3, this member is always TRUE because drivers already support the option for these feature levels.
+
 
+
+ + Specifies whether the driver supports partial updates of constant buffers. The runtime sets this member to TRUE if the driver supports partial updates of constant buffers and FALSE otherwise. If FALSE, the runtime does not expose this operation to the driver because the driver does not support it. + +
Note  For feature level 9.1, 9.2, and 9.3, this member is always TRUE because the option is emulated by the runtime.
+
 
+
+ + Specifies whether the driver supports new semantics for setting offsets in constant buffers for a shader. The runtime sets this member to TRUE if the driver supports allowing you to specify offsets when you call new methods like the ID3D11DeviceContext1::VSSetConstantBuffers1 method and FALSE otherwise. If FALSE, the runtime does not expose this operation to the driver because the driver does not support it. + +
Note  For feature level 9.1, 9.2, and 9.3, this member is always TRUE because the option is emulated by the runtime.
+
 
+
+ + Specifies whether you can call ID3D11DeviceContext::Map with D3D11_MAP_WRITE_NO_OVERWRITE on a dynamic constant buffer (that is, whether the driver supports this operation). The runtime sets this member to TRUE if the driver supports this operation and FALSE otherwise. If FALSE, the runtime fails this method because the driver does not support the operation. + +
Note  For feature level 9.1, 9.2, and 9.3, this member is always TRUE because the option is emulated by the runtime.
+
 
+
+ + Specifies whether you can call ID3D11DeviceContext::Map with D3D11_MAP_WRITE_NO_OVERWRITE on a dynamic buffer SRV (that is, whether the driver supports this operation). The runtime sets this member to TRUE if the driver supports this operation and FALSE otherwise. If FALSE, the runtime fails this method because the driver does not support the operation. + + + Specifies whether the driver supports multisample rendering when you render with RTVs bound. If TRUE, you can set the ForcedSampleCount member of D3D11_RASTERIZER_DESC1 to 1 with a multisample RTV bound. The driver can support this option on feature level 10 and higher. If FALSE, the rasterizer-state creation will fail because the driver is legacy or the feature level is too low. + + + Specifies whether the hardware and driver support the msad4 intrinsic function in shaders. The runtime sets this member to TRUE if the hardware and driver support calls to msad4 intrinsic functions in shaders. If FALSE, the driver is legacy or the hardware does not support the option; the runtime will fail shader creation for shaders that use msad4. + + + Specifies whether the hardware and driver support the fma intrinsic function and other extended doubles instructions (DDIV and DRCP) in shaders. The fma intrinsic function emits an extended doubles DFMA instruction. The runtime sets this member to TRUE if the hardware and driver support extended doubles instructions in shaders (shader model 5 and higher). Support of this option implies support of basic double-precision shader instructions as well. You can use the D3D11_FEATURE_DOUBLES value to query for support of double-precision shaders. If FALSE, the hardware and driver do not support the option; the runtime will fail shader creation for shaders that use extended doubles instructions. + + + Specifies whether the hardware and driver have [extended support for shared Texture2D resource types and formats](/windows/win32/direct3d11/direct3d-11-1-features#extended-support-for-shared-texture2d-resources). The runtime sets this member to TRUE if the hardware and driver support extended Texture2D resource sharing. + + + + Describes the blend state for a render target. + Microsoft Docs: + + + + Enable (or disable) blending. + +> [!NOTE] +> It's not valid for LogicOpEnable and BlendEnable to both be TRUE. + + + Enable (or disable) a logical operation. + +> [!NOTE] +> If you set LogicOpEnable to TRUE, then BlendEnable must be FALSE, and the system's [D3D11_FEATURE_DATA_D3D11_OPTIONS::OutputMergerLogicOp](../d3d11/ns-d3d11-d3d11_feature_data_d3d11_options.md) option must be TRUE. + + + This blend option specifies the operation to perform on the RGB value that the pixel shader outputs. The BlendOp member defines how to combine the SrcBlend and DestBlend operations. + + + This blend option specifies the operation to perform on the current RGB value in the render target. The BlendOp member defines how to combine the SrcBlend and DestBlend operations. + + + This blend operation defines how to combine the SrcBlend and DestBlend operations. + + + This blend option specifies the operation to perform on the alpha value that the pixel shader outputs. Blend options that end in _COLOR are not allowed. The BlendOpAlpha member defines how to combine the SrcBlendAlpha and DestBlendAlpha operations. + + + This blend option specifies the operation to perform on the current alpha value in the render target. Blend options that end in _COLOR are not allowed. The BlendOpAlpha member defines how to combine the SrcBlendAlpha and DestBlendAlpha operations. + + + This blend operation defines how to combine the SrcBlendAlpha and DestBlendAlpha operations. + + + A D3D11_LOGIC_OP-typed value that specifies the logical operation to configure for the render target. + + + A write mask. + + + + Information about the video card's performance counter capabilities. + Microsoft Docs: + + + + Largest device-dependent counter ID that the device supports. If none are supported, this value will be 0. Otherwise it will be greater than or equal to D3D11_COUNTER_DEVICE_DEPENDENT_0. See D3D11_COUNTER. + + + Number of counters that can be simultaneously supported. + + + Number of detectable parallel units that the counter is able to discern. Values are 1 ~ 4. Use NumDetectableParallelUnits to interpret the values of the VERTEX_PROCESSING, GEOMETRY_PROCESSING, PIXEL_PROCESSING, and OTHER_GPU_PROCESSING counters. + + + + Get the retrieval filter at the top of the retrieval-filter stack. + Microsoft Docs: + Retrieval filter at the top of the retrieval-filter stack. + Size of the retrieval filter in bytes. If pFilter is NULL, the size of the retrieval filter will be output to this parameter. + + + + + Get the storage filter at the top of the storage-filter stack. + Microsoft Docs: + Storage filter at the top of the storage-filter stack. + Size of the storage filter in bytes. If pFilter is NULL, the size of the storage filter will be output to this parameter. + + + + + Create a depth-stencil view for accessing resource data. + Microsoft Docs: + Pointer to the resource that will serve as the depth-stencil surface. This resource must have been created with the D3D11_BIND_DEPTH_STENCIL flag. + Pointer to a depth-stencil-view description (see D3D11_DEPTH_STENCIL_VIEW_DESC). Set this parameter to NULL to create a view that accesses mipmap level 0 of the entire resource (using the format the resource was created with). + Address of a pointer to an ID3D11DepthStencilView. Set this parameter to NULL to validate the other input parameters (the method will return S_FALSE if the other input parameters pass validation). + + + + + Remove a retrieval filter from the top of the retrieval-filter stack. + Microsoft Docs: + + + + + Describes Direct3D 11.3 feature options in the current graphics driver. + Microsoft Docs: + + + + Specifies whether the hardware and driver support PSSpecifiedStencilRef. + The runtime sets this member to TRUE if the hardware and driver support this option. + + + Specifies whether the hardware and driver support TypedUAVLoadAdditionalFormats. + The runtime sets this member to TRUE if the hardware and driver support this option. + + + Specifies whether the hardware and driver support ROVs. + The runtime sets this member to TRUE if the hardware and driver support this option. + + + Specifies whether the hardware and driver support conservative rasterization. + The runtime sets this member to a D3D11_CONSERVATIVE_RASTERIZATION_TIER-typed value that indicates if the hardware and driver support conservative rasterization and at what tier level. + + + Specifies whether the hardware and driver support tiled resources. + The runtime sets this member to a D3D11_TILED_RESOURCES_TIER-typed value that indicates if the hardware and driver support tiled resources and at what tier level. + + + Specifies whether the hardware and driver support mapping on default textures. + The runtime sets this member to TRUE if the hardware and driver support this option. + + + Specifies whether the hardware and driver support standard swizzle. + The runtime sets this member to TRUE if the hardware and driver support this option. + + + Specifies whether the hardware and driver support Unified Memory Architecture. + The runtime sets this member to TRUE if the hardware and driver support this option. + + + + Describes a 2D texture. + Microsoft Docs: + + + + Texture width (in texels). The range is from 1 to D3D11_REQ_TEXTURE2D_U_OR_V_DIMENSION (16384). For a texture cube-map, the range is from 1 to D3D11_REQ_TEXTURECUBE_DIMENSION (16384). However, the range is actually constrained by the feature level at which you create the rendering device. For more information about restrictions, see Remarks. + + + Texture height (in texels). The range is from 1 to D3D11_REQ_TEXTURE2D_U_OR_V_DIMENSION (16384). For a texture cube-map, the range is from 1 to D3D11_REQ_TEXTURECUBE_DIMENSION (16384). However, the range is actually constrained by the feature level at which you create the rendering device. For more information about restrictions, see Remarks. + + + The maximum number of mipmap levels in the texture. See the remarks in D3D11_TEX1D_SRV. Use 1 for a multisampled texture; or 0 to generate a full set of subtextures. + + + Number of textures in the texture array. The range is from 1 to D3D11_REQ_TEXTURE2D_ARRAY_AXIS_DIMENSION (2048). For a texture cube-map, this value is a multiple of 6 (that is, 6 times the value in the NumCubes member of D3D11_TEXCUBE_ARRAY_SRV), and the range is from 6 to 2046. The range is actually constrained by the feature level at which you create the rendering device. For more information about restrictions, see Remarks. + + + Texture format (see DXGI_FORMAT). + + + Structure that specifies multisampling parameters for the texture. See DXGI_SAMPLE_DESC. + + + Value that identifies how the texture is to be read from and written to. The most common value is D3D11_USAGE_DEFAULT; see D3D11_USAGE for all possible values. + + + Flags (see D3D11_BIND_FLAG) for binding to pipeline stages. The flags can be combined by a logical OR. + + + Flags (see D3D11_CPU_ACCESS_FLAG) to specify the types of CPU access allowed. Use 0 if CPU access is not required. These flags can be combined with a logical OR. + + + Flags (see D3D11_RESOURCE_MISC_FLAG) that identify other, less common resource options. Use 0 if none of these flags apply. These flags can be combined by using a logical OR. For a texture cube-map, set the D3D11_RESOURCE_MISC_TEXTURECUBE flag. Cube-map arrays (that is, ArraySize > 6) require feature level D3D_FEATURE_LEVEL_10_1 or higher. + + + A D3D11_TEXTURE_LAYOUT-typed value that identifies the layout of the texture. + +The TextureLayout parameter selects both the actual layout of the texture in memory and the layout visible to the application while the texture is mapped. These flags may not be requested without CPU access also requested. + +It is illegal to set CPU access flags on default textures without also setting TextureLayout to a value other than D3D11_TEXTURE_LAYOUT_UNDEFINED. + +D3D11_TEXTURE_LAYOUT_ROW_MAJOR may only be used to create non-multisampled, textures with a single subresource (Planar YUV textures are supported). These textures may only be used as a source and destination of copy operations, and BindFlags must be zero. + + +D3D11_TEXTURE_LAYOUT_64K_STANDARD_SWIZZLE may only be used to create non-multisampled, non-depth-stencil textures. + + + + Get the number of messages that were denied passage through a storage filter. + Microsoft Docs: + + + + + Verifies whether the dispatch pipeline state is valid. + Microsoft Docs: + A pointer to the ID3D11DeviceContext that represents a device context. + + + + + Specifies the subresources from a an array of multisampled 2D textures to use in a render-target view. + Microsoft Docs: + + + + The index of the first texture to use in an array of textures. + + + Number of textures to use. + + + + Describes the capabilities of a Microsoft Direct3D 11 video processor. + Microsoft Docs: + + + + A bitwise OR of zero or more flags from the D3D11_VIDEO_PROCESSOR_DEVICE_CAPS enumeration. + + + A bitwise OR of zero or more flags from the D3D11_VIDEO_PROCESSOR_FEATURE_CAPS enumeration. + + + A bitwise OR of zero or more flags from the D3D11_VIDEO_PROCESSPR_FILTER_CAPS enumeration. + + + A bitwise OR of zero or more flags from the D3D11_VIDEO_PROCESSOR_FORMAT_CAPS enumeration. + + + A bitwise OR of zero or more flags from the D3D11_VIDEO_PROCESSOR_AUTO_STREAM_CAPS enumeration. + + + A bitwise OR of zero or more flags from the D3D11_VIDEO_PROCESSOR_STEREO_CAPS enumeration. + + + The number of frame-rate conversion capabilities. To enumerate the frame-rate conversion capabilities, call the ID3D11VideoProcessorEnumerator::GetVideoProcessorRateConversionCaps method. + + + The maximum number of input streams that can be enabled at the same time. + + + The maximum number of input streams for which the device can store state data. + + + + Waits until the specified fence reaches or exceeds the specified value before future work can begin. + Microsoft Docs: + A pointer to the ID3D11Fence object. + The value that the device context is waiting for the fence to reach or exceed. So when ID3D11Fence::GetCompletedValue is greater than or equal to Value, the wait is terminated. + + + + + A linking-node interface is used for shader linking. + Microsoft Docs: + + + + + Gets the depth-stencil state of the output-merger stage. + Microsoft Docs: + Address of a pointer to a depth-stencil state interface (see ID3D11DepthStencilState) to be filled with information from the device. + Pointer to the stencil reference value used in the depth-stencil test. + + + + + Gets a profile that is supported by the driver. + Microsoft Docs: + The zero-based index of the profile. To get the number of profiles that the driver supports, call ID3D11VideoDevice::GetVideoDecoderProfileCount. + Receives a GUID that identifies the profile. + + + + + Specifies the subresource from a multisampled 2D texture that is accessible to a depth-stencil view. + Microsoft Docs: + + + + Unused. + + + + The tracing device interface sets shader tracking information, which enables accurate logging and playback of shader execution. + Microsoft Docs: + + + + + Specifies the subresource from a cube texture to use in a shader-resource view. + Microsoft Docs: + + + + Index of the most detailed mipmap level to use; this number is between 0 and MipLevels (from the original TextureCube for which ID3D11Device::CreateShaderResourceView creates a view) -1. + + + The maximum number of mipmap levels for the view of the texture. See the remarks in D3D11_TEX1D_SRV. + +Set to -1 to indicate all the mipmap levels from MostDetailedMip on down to least detailed. + + + + Create a domain shader. + Microsoft Docs: + A pointer to a compiled shader. + Size of the compiled shader. + A pointer to a class linkage interface (see ID3D11ClassLinkage); the value can be NULL. + Address of a pointer to a ID3D11DomainShader interface. If this is NULL, all other parameters will be validated, and if all parameters pass validation this API will return S_FALSE instead of S_OK. + + + + + Gets the driver's certificate chain. + Microsoft Docs: + The size of the pCertificate array, in bytes. To get the size of the certificate chain, call ID3D11CryptoSession::GetCertificateSize. + A pointer to a byte array that receives the driver's certificate chain. The caller must allocate the array. + + + + + Specifies how to access a resource that is used in a video decoding output view. + Microsoft Docs: + + + + Not a valid value. + + + The resource will be accessed as a 2D texture. + + + + Generates Microsoft High Level Shader Language (HLSL) shader code that represents the function-linking-graph. + Microsoft Docs: + Reserved + An pointer to a variable that receives a pointer to the ID3DBlob interface that you can use to access the HLSL shader source code that represents the function-linking-graph. You can compile this HLSL code, but first you must add code or include statements for the functions called in the function-linking-graph. + + + + + Represents key exchange input data for hardware content protection. + Microsoft Docs: + + + + The size of the private data reserved for IHV usage. This size is determined from the pPrivateInputSize parameter returned by the ID3D11VideoDevice1::GetCryptoSessionPrivateDataSize function. + + + The size of the DRM command data. + + + If PrivateDataSize is greater than 0, pbInput[0] – pbInput[PrivateDataSize - 1] is reserved for IHV use. + +pbInput[PrivateDataSize] – pbInput[HWProtectionDataSize + PrivateDataSize - 1] contains the input data for the DRM command. The format and size of the DRM command is defined by the DRM specification. + + + + A device-child interface accesses data used by a device. + Microsoft Docs: + + + + + Options for the amount of information to report about a device object's lifetime. + Microsoft Docs: + + + + Specifies to obtain a summary about a device object's lifetime. + + + Specifies to obtain detailed information about a device object's lifetime. + + + This flag indicates to ignore objects which have no external refcounts keeping them alive. D3D objects are printed using an external refcount and an internal refcount. Typically, all objects are printed. This flag means ignore the objects whose external refcount is 0, because the application is not responsible for keeping them alive. + + + + Describes a video stream for a video processor. + Microsoft Docs: + + + + A member of the D3D11_VIDEO_FRAME_FORMAT enumeration that describes how the video stream is interlaced. + + + The frame rate of the input video stream, specified as a DXGI_RATIONAL structure. + + + The width of the input frames, in pixels. + + + The height of the input frames, in pixels. + + + The frame rate of the output video stream, specified as a DXGI_RATIONAL structure. + + + The width of the output frames, in pixels. + + + The height of the output frames, in pixels. + + + A member of the D3D11_VIDEO_USAGE enumeration that describes how the video processor will be used. The value indicates the desired trade-off between speed and video quality. The driver uses this flag as a hint when it creates the video processor. + + + + Sets the constant buffers used by the vertex shader pipeline stage. + Microsoft Docs: + Index into the device's zero-based array to begin setting constant buffers to (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1). + Number of buffers to set (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot). + Array of constant buffers (see ID3D11Buffer) being given to the device. + + + + + Creates a video processor device for Microsoft Direct3D 11. + Microsoft Docs: + A pointer to the ID3D11VideoProcessorEnumerator interface. To get this pointer, call ID3D11VideoDevice::CreateVideoProcessorEnumerator. + Specifies the frame-rate conversion capabilities for the video processor. The value is a zero-based index that corresponds to the TypeIndex parameter of the ID3D11VideoProcessorEnumerator::GetVideoProcessorRateConversionCaps method. + Receives a pointer to the ID3D11VideoProcessor interface. The caller must release the interface. + + + + + Creates a view for accessing an unordered access resource. + Microsoft Docs: + Pointer to an ID3D11Resource that represents a resources that will serve as an input to a shader. + Pointer to a D3D11_UNORDERED_ACCESS_VIEW_DESC1 structure that represents an unordered-access view description. Set this parameter to NULL to create a view that accesses the entire resource (using the format the resource was created with). + A pointer to a memory block that receives a pointer to a ID3D11UnorderedAccessView1 interface for the created unordered-access view. Set this parameter to NULL to validate the other input parameters (the method will return S_FALSE if the other input parameters pass validation). + + + + + Describes a shader-resource view. + Microsoft Docs: + + + + A DXGI_FORMAT specifying the viewing format. See remarks. + + + The resource type of the view. See D3D11_SRV_DIMENSION. You must set ViewDimension to the same resource type as that of the underlying resource. This parameter also determines which _SRV to use in the union below. + + + View the resource as a buffer using information from a shader-resource view (see D3D11_BUFFER_SRV). + + + View the resource as a 1D texture using information from a shader-resource view (see D3D11_TEX1D_SRV). + + + View the resource as a 1D-texture array using information from a shader-resource view (see D3D11_TEX1D_ARRAY_SRV). + + + View the resource as a 2D-texture using information from a shader-resource view (see D3D11_TEX2D_SRV). + + + View the resource as a 2D-texture array using information from a shader-resource view (see D3D11_TEX2D_ARRAY_SRV). + + + View the resource as a 2D-multisampled texture using information from a shader-resource view (see D3D11_TEX2DMS_SRV). + + + View the resource as a 2D-multisampled-texture array using information from a shader-resource view (see D3D11_TEX2DMS_ARRAY_SRV). + + + View the resource as a 3D texture using information from a shader-resource view (see D3D11_TEX3D_SRV). + + + View the resource as a 3D-cube texture using information from a shader-resource view (see D3D11_TEXCUBE_SRV). + + + View the resource as a 3D-cube-texture array using information from a shader-resource view (see D3D11_TEXCUBE_ARRAY_SRV). + + + View the resource as a raw buffer using information from a shader-resource view (see D3D11_BUFFEREX_SRV). For more info about raw viewing of buffers, see Raw Views of Buffers. + + + + Describes Direct3D 9 feature options in the current graphics driver. + Microsoft Docs: + + + + Specifies whether the driver supports the nonpowers-of-2-unconditionally feature. For more info about this feature, see feature level. The runtime sets this member to TRUE for hardware at Direct3D 10 and higher feature levels. For hardware at Direct3D 9.3 and lower feature levels, the runtime sets this member to FALSE if the hardware and driver support the powers-of-2 (2D textures must have widths and heights specified as powers of two) feature or the nonpowers-of-2-conditionally feature. + + + Specifies whether the driver supports the shadowing feature with the comparison-filtering mode set to less than or equal to. The runtime sets this member to TRUE for hardware at Direct3D 10 and higher feature levels. For hardware at Direct3D 9.3 and lower feature levels, the runtime sets this member to TRUE only if the hardware and driver support the shadowing feature; otherwise FALSE. + + + Specifies whether the hardware and driver support simple instancing. The runtime sets this member to TRUE if the hardware and driver support simple instancing. + + + Specifies whether the hardware and driver support setting a single face of a TextureCube as a render target while the depth stencil surface that is bound alongside can be a Texture2D (as opposed to TextureCube). The runtime sets this member to TRUE if the hardware and driver support this feature; otherwise FALSE. + +If the hardware and driver don't support this feature, the app must match the render target surface type with the depth stencil surface type. Because hardware at Direct3D 9.3 and lower feature levels doesn't allow TextureCube depth surfaces, the only way to render a scene into a TextureCube while having depth buffering enabled is to render each TextureCube face separately to a Texture2D render target first (because that can be matched with a Texture2D depth), and then copy the results into the TextureCube. If the hardware and driver support this feature, the app can just render to the TextureCube faces directly while getting depth buffering out of a Texture2D depth buffer. + +You only need to query this feature from hardware at Direct3D 9.3 and lower feature levels because hardware at Direct3D 10.0 and higher feature levels allow TextureCube depth surfaces. + + + + Get the geometry shader resources. + Microsoft Docs: + Index into the device's zero-based array to begin getting shader resources from (ranges from 0 to D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1). + The number of resources to get from the device. Up to a maximum of 128 slots are available for shader resources (ranges from 0 to D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot). + Array of shader resource view interfaces to be returned by the device. + + + + + Set an array of sampler states to the compute-shader stage. + Microsoft Docs: + Index into the device's zero-based array to begin setting samplers to (ranges from 0 to D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - 1). + Number of samplers in the array. Each pipeline stage has a total of 16 sampler slots available (ranges from 0 to D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot). + Pointer to an array of sampler-state interfaces (see ID3D11SamplerState). See Remarks. + + + + + Sets the constant buffers used by the pixel shader pipeline stage. + Microsoft Docs: + Index into the device's zero-based array to begin setting constant buffers to (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1). + Number of buffers to set (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot). + Array of constant buffers (see ID3D11Buffer) being given to the device. + + + + + Bind an array of shader resources to the hull-shader stage. + Microsoft Docs: + Index into the device's zero-based array to begin setting shader resources to (ranges from 0 to D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1). + Number of shader resources to set. Up to a maximum of 128 slots are available for shader resources(ranges from 0 to D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot). + Array of shader resource view interfaces to set to the device. + + + + + Flags for indicating a subset of components used with video decode histogram. + Microsoft Docs: + + + + No associated component. + + + If the format is a YUV format, indicates the Y component. + + + If the format is a YUV format, indicates the U component. + + + If the format is a YUV format, indicates the V component. + + + If the format is an RGB/BGR format, indicates the R component. + + + If the format is an RGB/BGR format, indicates the G component. + + + If the format is an RGB/BGR format, indicates the B component. + + + If the format is an RGB/BGR format, indicates the A component. + + + + Specifies the rate at which the video processor produces output frames from an input stream. + Microsoft Docs: + + + + The output is the normal frame rate. + + + The output is half the frame rate. + + + The output is a custom frame rate. + + + + This shader-reflection interface provides access to variable type. + Microsoft Docs: + + + + + Get a patch-constant parameter description for a shader. + Microsoft Docs: + A zero-based parameter index. + A pointer to a shader-input-signature description. See D3D11_SIGNATURE_PARAMETER_DESC. + + + + + Contains a Message Authentication Code (MAC). + Microsoft Docs: + + + + A byte array that contains the cryptographic MAC value of the message. + + + + The blend-state interface holds a description for blending state that you can bind to the output-merger stage. This blend-state interface supports logical operations as well as blending operations. + Microsoft Docs: + + + + + Enumerates the video processor capabilities of a Microsoft Direct3D 11 device. + Microsoft Docs: + + + + + Rebinds a resource as an unordered access view (UAV) from source slot to destination slot. + Microsoft Docs: + The first source slot number for rebinding. + The first destination slot number for rebinding. + The number of slots for rebinding. + + + + + A library-reflection interface accesses library info. + Microsoft Docs: + + + + + Debug message severity levels for an information queue. + Microsoft Docs: + + + + Defines some type of corruption which has occurred. + + + Defines an error message. + + + Defines a warning message. + + + Defines an information message. + + + Defines a message other than corruption, error, warning, or information. + +Direct3D 11:  This value is not supported until Direct3D 11.1. + + + + Allows applications to annotate the beginning of a range of graphics commands. + Microsoft Docs: + An optional string that will be logged to ETW when ETW logging is active. If ‘#d’ appears in the string, it will be replaced by the value of the Data parameter similar to the way printf works. + A signed data value that will be logged to ETW when ETW logging is active. + + + + + Gets a random number that can be used to refresh the session key. + Microsoft Docs: + A pointer to the ID3D11CryptoSession interface. + The size of the pRandomNumber array, in bytes. The size should match the size of the session key. + A pointer to a byte array that receives a random number. + + + + + RGB or alpha blending operation. + Microsoft Docs: + + + + Add source 1 and source 2. + + + Subtract source 1 from source 2. + + + Subtract source 2 from source 1. + + + Find the minimum of source 1 and source 2. + + + Find the maximum of source 1 and source 2. + + + + Specifies the types of CPU access allowed for a resource. + Microsoft Docs: + + + + The resource is to be mappable so that the CPU can change its contents. Resources created with this flag cannot be set as outputs of the pipeline and must be created with either dynamic or staging usage (see D3D11_USAGE). + + + The resource is to be mappable so that the CPU can read its contents. Resources created with this flag cannot be set as either inputs or outputs to the pipeline and must be created with staging usage (see D3D11_USAGE). + + + + Get the constant buffers used by the hull-shader stage. + Microsoft Docs: + Index into the device's zero-based array to begin retrieving constant buffers from (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1). + Number of buffers to retrieve (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot). + Array of constant buffer interface pointers (see ID3D11Buffer) to be returned by the method. + + + + + Updates mappings of tile locations in tiled resources to memory locations in a tile pool. + Microsoft Docs: + A pointer to the tiled resource. + The number of tiled resource regions. + An array of D3D11_TILED_RESOURCE_COORDINATE structures that describe the starting coordinates of the tiled resource regions. The NumTiledResourceRegions parameter specifies the number of D3D11_TILED_RESOURCE_COORDINATE structures in the array. + An array of D3D11_TILE_REGION_SIZE structures that describe the sizes of the tiled resource regions. The NumTiledResourceRegions parameter specifies the number of D3D11_TILE_REGION_SIZE structures in the array. + A pointer to the tile pool. + The number of tile-pool ranges. + An array of D3D11_TILE_RANGE_FLAG values that describe each tile-pool range. The NumRanges parameter specifies the number of values in the array. + An array of offsets into the tile pool. These are 0-based tile offsets, counting in tiles (not bytes). + An array of tiles. + +An array of values that specify the number of tiles in each tile-pool range. The NumRanges parameter specifies the number of values in the array. + A combination of D3D11_TILE_MAPPING_FLAGS values that are combined by using a bitwise OR operation. + + + + + Gets a list of custom frame rates that a video processor supports. + Microsoft Docs: + The zero-based index of the frame-rate capability group. To get the maxmum index, call ID3D11VideoProcessorEnumerator::GetVideoProcessorCaps and check the RateConversionCapsCount member of the D3D11_VIDEO_PROCESSOR_CAPS structure. + The zero-based index of the custom rate to retrieve. To get the maximum index, call ID3D11VideoProcessorEnumerator::GetVideoProcessorRateConversionCaps and check the CustomRateCount member of the D3D11_VIDEO_PROCESSOR_RATE_CONVERSION_CAPS structure. + +This index value is always relative to the capability group specified in the TypeIndex parameter. + A pointer to a D3D11_VIDEO_PROCESSOR_CUSTOM_RATE structure that receives the custom rate. + + + + + The blend-state interface holds a description for blending state that you can bind to the output-merger stage. + Microsoft Docs: + + + + + Describes a video processor input view. + Microsoft Docs: + + + + The surface format. If zero, the driver uses the DXGI format that was used to create the resource. If you are using feature level 9, the value must be zero. + + + The resource type of the view, specified as a member of the D3D11_VPIV_DIMENSION enumeration. + + + A D3D11_TEX2D_VPIV structure that identifies the texture resource. + + + + Bind an array of vertex buffers to the input-assembler stage. + Microsoft Docs: + The first input slot for binding. The first vertex buffer is explicitly bound to the start slot; this causes each additional vertex buffer in the array to be implicitly bound to each subsequent input slot. The maximum of 16 or 32 input slots (ranges from 0 to D3D11_IA_VERTEX_INPUT_RESOURCE_SLOT_COUNT - 1) are available; the maximum number of input slots depends on the feature level. + The number of vertex buffers in the array. The number of buffers (plus the starting slot) can't exceed the total number of IA-stage input slots (ranges from 0 to D3D11_IA_VERTEX_INPUT_RESOURCE_SLOT_COUNT - StartSlot). + A pointer to an array of vertex buffers (see ID3D11Buffer). The vertex buffers must have been created with the D3D11_BIND_VERTEX_BUFFER flag. + Pointer to an array of stride values; one stride value for each buffer in the vertex-buffer array. Each stride is the size (in bytes) of the elements that are to be used from that vertex buffer. + Pointer to an array of offset values; one offset value for each buffer in the vertex-buffer array. Each offset is the number of bytes between the first element of a vertex buffer and the first element that will be used. + + + + + Submits one or more buffers for decoding. + Microsoft Docs: + A pointer to the ID3D11VideoDecoder interface. To get this pointer, call the ID3D11VideoDevice::CreateVideoDecoder method. + The number of buffers submitted for decoding. + A pointer to an array of D3D11_VIDEO_DECODER_BUFFER_DESC1 structures. The NumBuffers parameter specifies the number of elements in the array. Each element in the array describes a compressed buffer for decoding. + + + + + Describes a query. + Microsoft Docs: + + + + A D3D11_QUERY-typed value that specifies the type of query. + + + A combination of D3D11_QUERY_MISC_FLAG-typed values that are combined by using a bitwise OR operation. The resulting value specifies query behavior. + + + A D3D11_CONTEXT_TYPE-typed value that specifies the context for the query. + + + + An ID3D11ShaderTraceFactory interface implements a method for generating shader trace information objects. + Microsoft Docs: + + + + + Get a constant-buffer description. + Microsoft Docs: + A pointer to a D3D11_SHADER_BUFFER_DESC, which represents a shader-buffer description. + + + + + Bind an array of shader resources to the geometry shader stage. + Microsoft Docs: + Index into the device's zero-based array to begin setting shader resources to (ranges from 0 to D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1). + Number of shader resources to set. Up to a maximum of 128 slots are available for shader resources(ranges from 0 to D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot). + Array of shader resource view interfaces to set to the device. + + + + + Describes rasterizer state. + Microsoft Docs: + + + + A D3D11_FILL_MODE-typed value that determines the fill mode to use when rendering. + + + A D3D11_CULL_MODE-typed value that indicates that triangles facing the specified direction are not drawn. + + + Specifies whether a triangle is front- or back-facing. If TRUE, a triangle will be considered front-facing if its vertices are counter-clockwise on the render target and considered back-facing if they are clockwise. If FALSE, the opposite is true. + + + Depth value added to a given pixel. For info about depth bias, see Depth Bias. + + + Maximum depth bias of a pixel. For info about depth bias, see Depth Bias. + + + Scalar on a given pixel's slope. For info about depth bias, see Depth Bias. + + + Specifies whether to enable clipping based on distance. + +The hardware always performs x and y clipping of rasterized coordinates. When DepthClipEnable is set to the default–TRUE, the hardware also clips the z value (that is, the hardware performs the last step of the following algorithm). + +

+0 < w
+-w <= x <= w (or arbitrarily wider range if implementation uses a guard band to reduce clipping burden)
+-w <= y <= w (or arbitrarily wider range if implementation uses a guard band to reduce clipping burden)
+0 <= z <= w
+
+When you set DepthClipEnable to FALSE, the hardware skips the z clipping (that is, the last step in the preceding algorithm). However, the hardware still performs the "0 < w" clipping. When z clipping is disabled, improper depth ordering at the pixel level might result. However, when z clipping is disabled, stencil shadow implementations are simplified. In other words, you can avoid complex special-case handling for geometry that goes beyond the back clipping plane.
+
+ + Specifies whether to enable scissor-rectangle culling. All pixels outside an active scissor rectangle are culled. + + + Specifies whether to use the quadrilateral or alpha line anti-aliasing algorithm on multisample antialiasing (MSAA) render targets. Set to TRUE to use the quadrilateral line anti-aliasing algorithm and to FALSE to use the alpha line anti-aliasing algorithm. For more info about this member, see Remarks. + + + Specifies whether to enable line antialiasing; only applies if doing line drawing and MultisampleEnable is FALSE. For more info about this member, see Remarks. + + + The sample count that is forced while UAV rendering or rasterizing. Valid values are 0, 1, 2, 4, 8, and optionally 16. 0 indicates that the sample count is not forced. + +
Note  If you want to render with ForcedSampleCount set to 1 or greater, you must follow these guidelines: + +
    +
  • Don't bind depth-stencil views.
  • +
  • Disable depth testing.
  • +
  • Ensure the shader doesn't output depth.
  • +
  • If you have any render-target views bound (D3D11_BIND_RENDER_TARGET) and ForcedSampleCount is greater than 1, ensure that every render target has only a single sample.
  • +
  • Don't operate the shader at sample frequency. Therefore, ID3D11ShaderReflection::IsSampleFrequencyShader returns FALSE.
  • +
Otherwise, rendering behavior is undefined. For info about how to configure depth-stencil, see Configuring Depth-Stencil Functionality.
+
 
+
+ + A D3D11_CONSERVATIVE_RASTERIZATION_MODE-typed value that identifies whether conservative rasterization is on or off. + + + + Get a message category to break on when a message with that category passes through the storage filter. + Microsoft Docs: + Message category to break on (see D3D11_MESSAGE_CATEGORY). + + + + + Identifies the type of geometry shader input primitive. + Microsoft Docs: + + + + Identifies the geometry shader input primitive as undefined. + + + Identifies the geometry shader input primitive as a point. + + + Identifies the geometry shader input primitive as a line. + + + Identifies the geometry shader input primitive as a triangle. + + + Identifies the geometry shader input primitive as an adjacent line. + + + Identifies the geometry shader input primitive as an adjacent triangle. + + + + The device context interface represents a device context; it is used to render commands. ID3D11DeviceContext3 adds new methods to those in ID3D11DeviceContext2. + Microsoft Docs: + + + + + Set a message severity level to break on when a message with that severity level passes through the storage filter. + Microsoft Docs: + A D3D11_MESSAGE_SEVERITY, which represents a message severity level to break on. + Turns this breaking condition on or off (true for on, false for off). + + + + + Rebinds an unordered access view (UAV) by name to destination slots. + Microsoft Docs: + The name of the UAV for rebinding. + The first destination slot number for rebinding. + The number of slots for rebinding. + + + + + Describes rasterizer state. + Microsoft Docs: + + + + Determines the fill mode to use when rendering. + + + Indicates that triangles facing the specified direction are not drawn. + + + Specifies whether a triangle is front- or back-facing. If TRUE, a triangle will be considered front-facing if its vertices are counter-clockwise on the render target and considered back-facing if they are clockwise. If FALSE, the opposite is true. + + + Depth value added to a given pixel. For info about depth bias, see Depth Bias. + + + Maximum depth bias of a pixel. For info about depth bias, see Depth Bias. + + + Scalar on a given pixel's slope. For info about depth bias, see Depth Bias. + + + Specifies whether to enable clipping based on distance. + +The hardware always performs x and y clipping of rasterized coordinates. When DepthClipEnable is set to the default–TRUE, the hardware also clips the z value (that is, the hardware performs the last step of the following algorithm). + + +

+0 < w
+-w <= x <= w (or arbitrarily wider range if implementation uses a guard band to reduce clipping burden)
+-w <= y <= w (or arbitrarily wider range if implementation uses a guard band to reduce clipping burden)
+0 <= z <= w
+
+When you set DepthClipEnable to FALSE, the hardware skips the z clipping (that is, the last step in the preceding algorithm). However, the hardware still performs the "0 < w" clipping. When z clipping is disabled, improper depth ordering at the pixel level might result. However, when z clipping is disabled, stencil shadow implementations are simplified. In other words, you can avoid complex special-case handling for geometry that goes beyond the back clipping plane.
+
+ + Specifies whether to enable scissor-rectangle culling. All pixels outside an active scissor rectangle are culled. + + + Specifies whether to use the quadrilateral or alpha line anti-aliasing algorithm on multisample antialiasing (MSAA) render targets. Set to TRUE to use the quadrilateral line anti-aliasing algorithm and to FALSE to use the alpha line anti-aliasing algorithm. For more info about this member, see Remarks. + + + Specifies whether to enable line antialiasing; only applies if doing line drawing and MultisampleEnable is FALSE. For more info about this member, see Remarks. + + + The sample count that is forced while UAV rendering or rasterizing. Valid values are 0, 1, 2, 4, 8, and optionally 16. 0 indicates that the sample count is not forced. + +
Note  If you want to render with ForcedSampleCount set to 1 or greater, you must follow these guidelines: + +
    +
  • Don't bind depth-stencil views.
  • +
  • Disable depth testing.
  • +
  • Ensure the shader doesn't output depth.
  • +
  • If you have any render-target views bound (D3D11_BIND_RENDER_TARGET) and ForcedSampleCount is greater than 1, ensure that every render target has only a single sample.
  • +
  • Don't operate the shader at sample frequency. Therefore, ID3D11ShaderReflection::IsSampleFrequencyShader returns FALSE.
  • +
Otherwise, rendering behavior is undefined. For info about how to configure depth-stencil, see Configuring Depth-Stencil Functionality.
+
 
+
+ + + Add a user-defined message to the message queue and send that message to debug output. + Microsoft Docs: + Severity of a message (see D3D11_MESSAGE_SEVERITY). + Message string. + + +
diff --git a/src/Vortice.Win32.Direct3D11/Generated/AesCtrIv.cs b/src/Vortice.Win32.Direct3D11/Generated/AesCtrIv.cs index 6a948e3..689227f 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/AesCtrIv.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/AesCtrIv.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_AES_CTR_IV public partial struct AesCtrIv { - /// + /// public ulong IV; - /// + /// public ulong Count; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/AsyncGetDataFlags.cs b/src/Vortice.Win32.Direct3D11/Generated/AsyncGetDataFlags.cs index 45ef320..7bec12c 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/AsyncGetDataFlags.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/AsyncGetDataFlags.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_ASYNC_GETDATA_FLAG [Flags] public enum AsyncGetDataFlags : int { None = 0, - /// + /// /// D3D11_ASYNC_GETDATA_DONOTFLUSH DoNotFlush = 1, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedChannelType.cs b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedChannelType.cs index f35fd4e..c210814 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedChannelType.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedChannelType.cs @@ -9,17 +9,17 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_AUTHENTICATED_CHANNEL_TYPE public enum AuthenticatedChannelType : int { - /// + /// /// D3D11_AUTHENTICATED_CHANNEL_D3D11 D3D11 = 1, - /// + /// /// D3D11_AUTHENTICATED_CHANNEL_DRIVER_SOFTWARE DriverSoftware = 2, - /// + /// /// D3D11_AUTHENTICATED_CHANNEL_DRIVER_HARDWARE DriverHardware = 3, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedConfigureAccessibleEncryptionInput.cs b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedConfigureAccessibleEncryptionInput.cs index 4d41eac..0187851 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedConfigureAccessibleEncryptionInput.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedConfigureAccessibleEncryptionInput.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_AUTHENTICATED_CONFIGURE_ACCESSIBLE_ENCRYPTION_INPUT public partial struct AuthenticatedConfigureAccessibleEncryptionInput { - /// + /// public AuthenticatedConfigureInput Parameters; - /// + /// public Guid EncryptionGuid; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedConfigureCryptoSessionInput.cs b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedConfigureCryptoSessionInput.cs index b7cef83..7fa8361 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedConfigureCryptoSessionInput.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedConfigureCryptoSessionInput.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_AUTHENTICATED_CONFIGURE_CRYPTO_SESSION_INPUT public partial struct AuthenticatedConfigureCryptoSessionInput { - /// + /// public AuthenticatedConfigureInput Parameters; - /// + /// public Handle DecoderHandle; - /// + /// public Handle CryptoSessionHandle; - /// + /// public Handle DeviceHandle; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedConfigureInitializeInput.cs b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedConfigureInitializeInput.cs index e591b9c..b7583af 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedConfigureInitializeInput.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedConfigureInitializeInput.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_AUTHENTICATED_CONFIGURE_INITIALIZE_INPUT public partial struct AuthenticatedConfigureInitializeInput { - /// + /// public AuthenticatedConfigureInput Parameters; - /// + /// public uint StartSequenceQuery; - /// + /// public uint StartSequenceConfigure; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedConfigureInput.cs b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedConfigureInput.cs index bb838a0..8da1d79 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedConfigureInput.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedConfigureInput.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_AUTHENTICATED_CONFIGURE_INPUT public partial struct AuthenticatedConfigureInput { - /// + /// public Omac omac; - /// + /// public Guid ConfigureType; - /// + /// public Handle hChannel; - /// + /// public uint SequenceNumber; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedConfigureOutput.cs b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedConfigureOutput.cs index 15396a3..4fec1a0 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedConfigureOutput.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedConfigureOutput.cs @@ -9,22 +9,22 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_AUTHENTICATED_CONFIGURE_OUTPUT public partial struct AuthenticatedConfigureOutput { - /// + /// public Omac omac; - /// + /// public Guid ConfigureType; - /// + /// public Handle hChannel; - /// + /// public uint SequenceNumber; - /// + /// public HResult ReturnCode; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedConfigureProtectionInput.cs b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedConfigureProtectionInput.cs index 3cd1855..9fdad42 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedConfigureProtectionInput.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedConfigureProtectionInput.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_AUTHENTICATED_CONFIGURE_PROTECTION_INPUT public partial struct AuthenticatedConfigureProtectionInput { - /// + /// public AuthenticatedConfigureInput Parameters; - /// + /// public AuthenticatedProtectionFlags Protections; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedConfigureSharedResourceInput.cs b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedConfigureSharedResourceInput.cs index 749ba23..870b998 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedConfigureSharedResourceInput.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedConfigureSharedResourceInput.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_AUTHENTICATED_CONFIGURE_SHARED_RESOURCE_INPUT public partial struct AuthenticatedConfigureSharedResourceInput { - /// + /// public AuthenticatedConfigureInput Parameters; - /// + /// public AuthenticatedProcessIdentifierType ProcessType; - /// + /// public Handle ProcessHandle; - /// + /// public Bool32 AllowAccess; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedProcessIdentifierType.cs b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedProcessIdentifierType.cs index 28d2195..ca739bc 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedProcessIdentifierType.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedProcessIdentifierType.cs @@ -9,17 +9,17 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_AUTHENTICATED_PROCESS_IDENTIFIER_TYPE public enum AuthenticatedProcessIdentifierType : int { - /// + /// /// D3D11_PROCESSIDTYPE_UNKNOWN Unknown = 0, - /// + /// /// D3D11_PROCESSIDTYPE_DWM Dwm = 1, - /// + /// /// D3D11_PROCESSIDTYPE_HANDLE Handle = 2, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedProtectionFlags.cs b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedProtectionFlags.cs index 8e323c5..bebf2b3 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedProtectionFlags.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedProtectionFlags.cs @@ -9,22 +9,22 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_AUTHENTICATED_PROTECTION_FLAGS [StructLayout(LayoutKind.Explicit)] public partial struct AuthenticatedProtectionFlags { - /// + /// [FieldOffset(0)] public _Flags_e__Struct Flags; - /// + /// [FieldOffset(0)] public uint Value; public partial struct _Flags_e__Struct { - /// + /// public uint _bitfield; } } diff --git a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryAccessibilityEncryptionGuidCountOutput.cs b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryAccessibilityEncryptionGuidCountOutput.cs index 79643c4..94805d5 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryAccessibilityEncryptionGuidCountOutput.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryAccessibilityEncryptionGuidCountOutput.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_AUTHENTICATED_QUERY_ACCESSIBILITY_ENCRYPTION_GUID_COUNT_OUTPUT public partial struct AuthenticatedQueryAccessibilityEncryptionGuidCountOutput { - /// + /// public AuthenticatedQueryOutput Output; - /// + /// public uint EncryptionGuidCount; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryAccessibilityEncryptionGuidInput.cs b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryAccessibilityEncryptionGuidInput.cs index c0ef7ef..2cefe44 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryAccessibilityEncryptionGuidInput.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryAccessibilityEncryptionGuidInput.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_AUTHENTICATED_QUERY_ACCESSIBILITY_ENCRYPTION_GUID_INPUT public partial struct AuthenticatedQueryAccessibilityEncryptionGuidInput { - /// + /// public AuthenticatedQueryInput Input; - /// + /// public uint EncryptionGuidIndex; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryAccessibilityEncryptionGuidOutput.cs b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryAccessibilityEncryptionGuidOutput.cs index 422e4ab..0dad199 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryAccessibilityEncryptionGuidOutput.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryAccessibilityEncryptionGuidOutput.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_AUTHENTICATED_QUERY_ACCESSIBILITY_ENCRYPTION_GUID_OUTPUT public partial struct AuthenticatedQueryAccessibilityEncryptionGuidOutput { - /// + /// public AuthenticatedQueryOutput Output; - /// + /// public uint EncryptionGuidIndex; - /// + /// public Guid EncryptionGuid; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryAccessibilityOutput.cs b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryAccessibilityOutput.cs index 85659e3..ddd961d 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryAccessibilityOutput.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryAccessibilityOutput.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_AUTHENTICATED_QUERY_ACCESSIBILITY_OUTPUT public partial struct AuthenticatedQueryAccessibilityOutput { - /// + /// public AuthenticatedQueryOutput Output; - /// + /// public BusType BusType; - /// + /// public Bool32 AccessibleInContiguousBlocks; - /// + /// public Bool32 AccessibleInNonContiguousBlocks; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryChannelTypeOutput.cs b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryChannelTypeOutput.cs index 0ba532d..ab5465d 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryChannelTypeOutput.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryChannelTypeOutput.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_AUTHENTICATED_QUERY_CHANNEL_TYPE_OUTPUT public partial struct AuthenticatedQueryChannelTypeOutput { - /// + /// public AuthenticatedQueryOutput Output; - /// + /// public AuthenticatedChannelType ChannelType; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryCryptoSessionInput.cs b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryCryptoSessionInput.cs index 18e9cae..feba559 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryCryptoSessionInput.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryCryptoSessionInput.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_AUTHENTICATED_QUERY_CRYPTO_SESSION_INPUT public partial struct AuthenticatedQueryCryptoSessionInput { - /// + /// public AuthenticatedQueryInput Input; - /// + /// public Handle DecoderHandle; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryCryptoSessionOutput.cs b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryCryptoSessionOutput.cs index 358ff44..88f12c9 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryCryptoSessionOutput.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryCryptoSessionOutput.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_AUTHENTICATED_QUERY_CRYPTO_SESSION_OUTPUT public partial struct AuthenticatedQueryCryptoSessionOutput { - /// + /// public AuthenticatedQueryOutput Output; - /// + /// public Handle DecoderHandle; - /// + /// public Handle CryptoSessionHandle; - /// + /// public Handle DeviceHandle; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryCurrentAccessibilityEncryptionOutput.cs b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryCurrentAccessibilityEncryptionOutput.cs index d74e1ee..5b97720 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryCurrentAccessibilityEncryptionOutput.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryCurrentAccessibilityEncryptionOutput.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_AUTHENTICATED_QUERY_CURRENT_ACCESSIBILITY_ENCRYPTION_OUTPUT public partial struct AuthenticatedQueryCurrentAccessibilityEncryptionOutput { - /// + /// public AuthenticatedQueryOutput Output; - /// + /// public Guid EncryptionGuid; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryDeviceHandleOutput.cs b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryDeviceHandleOutput.cs index b75bdee..40b536c 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryDeviceHandleOutput.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryDeviceHandleOutput.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_AUTHENTICATED_QUERY_DEVICE_HANDLE_OUTPUT public partial struct AuthenticatedQueryDeviceHandleOutput { - /// + /// public AuthenticatedQueryOutput Output; - /// + /// public Handle DeviceHandle; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryInput.cs b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryInput.cs index d8bdeeb..d07f7d8 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryInput.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryInput.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_AUTHENTICATED_QUERY_INPUT public partial struct AuthenticatedQueryInput { - /// + /// public Guid QueryType; - /// + /// public Handle hChannel; - /// + /// public uint SequenceNumber; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryOutput.cs b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryOutput.cs index 20c0c74..d23e05f 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryOutput.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryOutput.cs @@ -9,22 +9,22 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_AUTHENTICATED_QUERY_OUTPUT public partial struct AuthenticatedQueryOutput { - /// + /// public Omac omac; - /// + /// public Guid QueryType; - /// + /// public Handle hChannel; - /// + /// public uint SequenceNumber; - /// + /// public HResult ReturnCode; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryOutputIdCountInput.cs b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryOutputIdCountInput.cs index 76973b7..bb12b4b 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryOutputIdCountInput.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryOutputIdCountInput.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_AUTHENTICATED_QUERY_OUTPUT_ID_COUNT_INPUT public partial struct AuthenticatedQueryOutputIdCountInput { - /// + /// public AuthenticatedQueryInput Input; - /// + /// public Handle DeviceHandle; - /// + /// public Handle CryptoSessionHandle; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryOutputIdCountOutput.cs b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryOutputIdCountOutput.cs index cf84c7f..a788a1c 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryOutputIdCountOutput.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryOutputIdCountOutput.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_AUTHENTICATED_QUERY_OUTPUT_ID_COUNT_OUTPUT public partial struct AuthenticatedQueryOutputIdCountOutput { - /// + /// public AuthenticatedQueryOutput Output; - /// + /// public Handle DeviceHandle; - /// + /// public Handle CryptoSessionHandle; - /// + /// public uint OutputIDCount; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryOutputIdInput.cs b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryOutputIdInput.cs index 188d1c8..9e5f690 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryOutputIdInput.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryOutputIdInput.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_AUTHENTICATED_QUERY_OUTPUT_ID_INPUT public partial struct AuthenticatedQueryOutputIdInput { - /// + /// public AuthenticatedQueryInput Input; - /// + /// public Handle DeviceHandle; - /// + /// public Handle CryptoSessionHandle; - /// + /// public uint OutputIDIndex; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryOutputIdOutput.cs b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryOutputIdOutput.cs index e714a82..35674bb 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryOutputIdOutput.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryOutputIdOutput.cs @@ -9,22 +9,22 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_AUTHENTICATED_QUERY_OUTPUT_ID_OUTPUT public partial struct AuthenticatedQueryOutputIdOutput { - /// + /// public AuthenticatedQueryOutput Output; - /// + /// public Handle DeviceHandle; - /// + /// public Handle CryptoSessionHandle; - /// + /// public uint OutputIDIndex; - /// + /// public ulong OutputID; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryProtectionOutput.cs b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryProtectionOutput.cs index a38e733..f759c99 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryProtectionOutput.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryProtectionOutput.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_AUTHENTICATED_QUERY_PROTECTION_OUTPUT public partial struct AuthenticatedQueryProtectionOutput { - /// + /// public AuthenticatedQueryOutput Output; - /// + /// public AuthenticatedProtectionFlags ProtectionFlags; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryRestrictedSharedResourceProcessCountOutput.cs b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryRestrictedSharedResourceProcessCountOutput.cs index 61dc18f..743974d 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryRestrictedSharedResourceProcessCountOutput.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryRestrictedSharedResourceProcessCountOutput.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_AUTHENTICATED_QUERY_RESTRICTED_SHARED_RESOURCE_PROCESS_COUNT_OUTPUT public partial struct AuthenticatedQueryRestrictedSharedResourceProcessCountOutput { - /// + /// public AuthenticatedQueryOutput Output; - /// + /// public uint RestrictedSharedResourceProcessCount; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryRestrictedSharedResourceProcessInput.cs b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryRestrictedSharedResourceProcessInput.cs index 7420e9b..86e2185 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryRestrictedSharedResourceProcessInput.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryRestrictedSharedResourceProcessInput.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_AUTHENTICATED_QUERY_RESTRICTED_SHARED_RESOURCE_PROCESS_INPUT public partial struct AuthenticatedQueryRestrictedSharedResourceProcessInput { - /// + /// public AuthenticatedQueryInput Input; - /// + /// public uint ProcessIndex; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryRestrictedSharedResourceProcessOutput.cs b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryRestrictedSharedResourceProcessOutput.cs index c64423e..f1cf49a 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryRestrictedSharedResourceProcessOutput.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryRestrictedSharedResourceProcessOutput.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_AUTHENTICATED_QUERY_RESTRICTED_SHARED_RESOURCE_PROCESS_OUTPUT public partial struct AuthenticatedQueryRestrictedSharedResourceProcessOutput { - /// + /// public AuthenticatedQueryOutput Output; - /// + /// public uint ProcessIndex; - /// + /// public AuthenticatedProcessIdentifierType ProcessIdentifier; - /// + /// public Handle ProcessHandle; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryUnrestrictedProtectedSharedResourceCountOutput.cs b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryUnrestrictedProtectedSharedResourceCountOutput.cs index e84522f..a06b384 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryUnrestrictedProtectedSharedResourceCountOutput.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/AuthenticatedQueryUnrestrictedProtectedSharedResourceCountOutput.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_AUTHENTICATED_QUERY_UNRESTRICTED_PROTECTED_SHARED_RESOURCE_COUNT_OUTPUT public partial struct AuthenticatedQueryUnrestrictedProtectedSharedResourceCountOutput { - /// + /// public AuthenticatedQueryOutput Output; - /// + /// public uint UnrestrictedProtectedSharedResourceCount; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/BindFlags.cs b/src/Vortice.Win32.Direct3D11/Generated/BindFlags.cs index 32d310b..a741075 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/BindFlags.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/BindFlags.cs @@ -9,40 +9,40 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_BIND_FLAG [Flags] public enum BindFlags : uint { None = 0, - /// + /// /// D3D11_BIND_VERTEX_BUFFER VertexBuffer = 1, - /// + /// /// D3D11_BIND_INDEX_BUFFER IndexBuffer = 2, - /// + /// /// D3D11_BIND_CONSTANT_BUFFER ConstantBuffer = 4, - /// + /// /// D3D11_BIND_SHADER_RESOURCE ShaderResource = 8, - /// + /// /// D3D11_BIND_STREAM_OUTPUT StreamOutput = 16, - /// + /// /// D3D11_BIND_RENDER_TARGET RenderTarget = 32, - /// + /// /// D3D11_BIND_DEPTH_STENCIL DepthStencil = 64, - /// + /// /// D3D11_BIND_UNORDERED_ACCESS UnorderedAccess = 128, - /// + /// /// D3D11_BIND_DECODER Decoder = 512, - /// + /// /// D3D11_BIND_VIDEO_ENCODER VideoEncoder = 1024, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/Blend.cs b/src/Vortice.Win32.Direct3D11/Generated/Blend.cs index 168538a..9f1fa85 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/Blend.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/Blend.cs @@ -9,59 +9,59 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_BLEND public enum Blend : int { - /// + /// /// D3D11_BLEND_ZERO Zero = 1, - /// + /// /// D3D11_BLEND_ONE One = 2, - /// + /// /// D3D11_BLEND_SRC_COLOR SrcColor = 3, - /// + /// /// D3D11_BLEND_INV_SRC_COLOR InvSrcColor = 4, - /// + /// /// D3D11_BLEND_SRC_ALPHA SrcAlpha = 5, - /// + /// /// D3D11_BLEND_INV_SRC_ALPHA InvSrcAlpha = 6, - /// + /// /// D3D11_BLEND_DEST_ALPHA DestAlpha = 7, - /// + /// /// D3D11_BLEND_INV_DEST_ALPHA InvDestAlpha = 8, - /// + /// /// D3D11_BLEND_DEST_COLOR DestColor = 9, - /// + /// /// D3D11_BLEND_INV_DEST_COLOR InvDestColor = 10, - /// + /// /// D3D11_BLEND_SRC_ALPHA_SAT SrcAlphaSat = 11, - /// + /// /// D3D11_BLEND_BLEND_FACTOR BlendFactor = 14, - /// + /// /// D3D11_BLEND_INV_BLEND_FACTOR InvBlendFactor = 15, - /// + /// /// D3D11_BLEND_SRC1_COLOR Src1Color = 16, - /// + /// /// D3D11_BLEND_INV_SRC1_COLOR InvSrc1Color = 17, - /// + /// /// D3D11_BLEND_SRC1_ALPHA Src1Alpha = 18, - /// + /// /// D3D11_BLEND_INV_SRC1_ALPHA InvSrc1Alpha = 19, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/BlendDescription.cs b/src/Vortice.Win32.Direct3D11/Generated/BlendDescription.cs index e3f0ae1..34429f5 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/BlendDescription.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/BlendDescription.cs @@ -9,17 +9,17 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_BLEND_DESC public partial struct BlendDescription { - /// + /// public Bool32 AlphaToCoverageEnable; - /// + /// public Bool32 IndependentBlendEnable; - /// + /// public RenderTarget__FixedBuffer RenderTarget; public unsafe struct RenderTarget__FixedBuffer diff --git a/src/Vortice.Win32.Direct3D11/Generated/BlendDescription1.cs b/src/Vortice.Win32.Direct3D11/Generated/BlendDescription1.cs index b8b2c47..a5a35a2 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/BlendDescription1.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/BlendDescription1.cs @@ -9,17 +9,17 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_BLEND_DESC1 public partial struct BlendDescription1 { - /// + /// public Bool32 AlphaToCoverageEnable; - /// + /// public Bool32 IndependentBlendEnable; - /// + /// public RenderTarget__FixedBuffer RenderTarget; public unsafe struct RenderTarget__FixedBuffer diff --git a/src/Vortice.Win32.Direct3D11/Generated/BlendOperation.cs b/src/Vortice.Win32.Direct3D11/Generated/BlendOperation.cs index d162585..0c3c012 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/BlendOperation.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/BlendOperation.cs @@ -9,23 +9,23 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_BLEND_OP public enum BlendOperation : int { - /// + /// /// D3D11_BLEND_OP_ADD Add = 1, - /// + /// /// D3D11_BLEND_OP_SUBTRACT Subtract = 2, - /// + /// /// D3D11_BLEND_OP_REV_SUBTRACT RevSubtract = 3, - /// + /// /// D3D11_BLEND_OP_MIN Min = 4, - /// + /// /// D3D11_BLEND_OP_MAX Max = 5, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/Box.cs b/src/Vortice.Win32.Direct3D11/Generated/Box.cs index f2f6109..a5ff7c3 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/Box.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/Box.cs @@ -9,25 +9,25 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_BOX public partial struct Box { - /// + /// public uint left; - /// + /// public uint top; - /// + /// public uint front; - /// + /// public uint right; - /// + /// public uint bottom; - /// + /// public uint back; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/BufferDescription.cs b/src/Vortice.Win32.Direct3D11/Generated/BufferDescription.cs index f936f25..682cb0f 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/BufferDescription.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/BufferDescription.cs @@ -9,25 +9,25 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_BUFFER_DESC public partial struct BufferDescription { - /// + /// public uint ByteWidth; - /// + /// public Usage Usage; - /// + /// public BindFlags BindFlags; - /// + /// public CpuAccessFlags CPUAccessFlags; - /// + /// public ResourceMiscFlags MiscFlags; - /// + /// public uint StructureByteStride; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/BufferExtendedSrv.cs b/src/Vortice.Win32.Direct3D11/Generated/BufferExtendedSrv.cs index d36f8e6..c6d795d 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/BufferExtendedSrv.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/BufferExtendedSrv.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_BUFFEREX_SRV public partial struct BufferExtendedSrv { - /// + /// public uint FirstElement; - /// + /// public uint NumElements; - /// + /// public BufferExtendedSrvFlags Flags; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/BufferExtendedSrvFlags.cs b/src/Vortice.Win32.Direct3D11/Generated/BufferExtendedSrvFlags.cs index 6c381b1..6f48bfe 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/BufferExtendedSrvFlags.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/BufferExtendedSrvFlags.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_BUFFEREX_SRV_FLAG [Flags] public enum BufferExtendedSrvFlags : int { None = 0, - /// + /// /// D3D11_BUFFEREX_SRV_FLAG_RAW Raw = 1, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/BufferRtv.cs b/src/Vortice.Win32.Direct3D11/Generated/BufferRtv.cs index a5b1431..01ae846 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/BufferRtv.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/BufferRtv.cs @@ -9,14 +9,14 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_BUFFER_RTV public partial struct BufferRtv { - /// + /// public _Anonymous1_e__Union Anonymous1; - /// + /// public _Anonymous2_e__Union Anonymous2; [UnscopedRef] @@ -62,22 +62,22 @@ public partial struct BufferRtv [StructLayout(LayoutKind.Explicit)] public partial struct _Anonymous2_e__Union { - /// + /// [FieldOffset(0)] public uint NumElements; - /// + /// [FieldOffset(0)] public uint ElementWidth; } [StructLayout(LayoutKind.Explicit)] public partial struct _Anonymous1_e__Union { - /// + /// [FieldOffset(0)] public uint FirstElement; - /// + /// [FieldOffset(0)] public uint ElementOffset; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/BufferSrv.cs b/src/Vortice.Win32.Direct3D11/Generated/BufferSrv.cs index abc0863..864e25c 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/BufferSrv.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/BufferSrv.cs @@ -9,14 +9,14 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_BUFFER_SRV public partial struct BufferSrv { - /// + /// public _Anonymous1_e__Union Anonymous1; - /// + /// public _Anonymous2_e__Union Anonymous2; [UnscopedRef] @@ -62,22 +62,22 @@ public partial struct BufferSrv [StructLayout(LayoutKind.Explicit)] public partial struct _Anonymous1_e__Union { - /// + /// [FieldOffset(0)] public uint FirstElement; - /// + /// [FieldOffset(0)] public uint ElementOffset; } [StructLayout(LayoutKind.Explicit)] public partial struct _Anonymous2_e__Union { - /// + /// [FieldOffset(0)] public uint NumElements; - /// + /// [FieldOffset(0)] public uint ElementWidth; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/BufferUav.cs b/src/Vortice.Win32.Direct3D11/Generated/BufferUav.cs index d5574de..a9f5b77 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/BufferUav.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/BufferUav.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_BUFFER_UAV public partial struct BufferUav { - /// + /// public uint FirstElement; - /// + /// public uint NumElements; - /// + /// public BufferUavFlags Flags; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/BufferUavFlags.cs b/src/Vortice.Win32.Direct3D11/Generated/BufferUavFlags.cs index 32025ca..56a51d2 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/BufferUavFlags.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/BufferUavFlags.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_BUFFER_UAV_FLAG [Flags] public enum BufferUavFlags : int { None = 0, - /// + /// /// D3D11_BUFFER_UAV_FLAG_RAW Raw = 1, - /// + /// /// D3D11_BUFFER_UAV_FLAG_APPEND Append = 2, - /// + /// /// D3D11_BUFFER_UAV_FLAG_COUNTER Counter = 4, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/BusType.cs b/src/Vortice.Win32.Direct3D11/Generated/BusType.cs index 0c5e29f..4e8dba0 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/BusType.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/BusType.cs @@ -9,41 +9,41 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_BUS_TYPE public enum BusType : int { - /// + /// /// D3D11_BUS_TYPE_OTHER Other = 0, - /// + /// /// D3D11_BUS_TYPE_PCI Pci = 1, - /// + /// /// D3D11_BUS_TYPE_PCIX Pcix = 2, - /// + /// /// D3D11_BUS_TYPE_PCIEXPRESS Pciexpress = 3, - /// + /// /// D3D11_BUS_TYPE_AGP Agp = 4, - /// + /// /// D3D11_BUS_IMPL_MODIFIER_INSIDE_OF_CHIPSET ImplModifierInsideOfChipset = 65536, - /// + /// /// D3D11_BUS_IMPL_MODIFIER_TRACKS_ON_MOTHER_BOARD_TO_CHIP ImplModifierTracksOnMotherBoardToChip = 131072, - /// + /// /// D3D11_BUS_IMPL_MODIFIER_TRACKS_ON_MOTHER_BOARD_TO_SOCKET ImplModifierTracksOnMotherBoardToSocket = 196608, - /// + /// /// D3D11_BUS_IMPL_MODIFIER_DAUGHTER_BOARD_CONNECTOR ImplModifierDaughterBoardConnector = 262144, - /// + /// /// D3D11_BUS_IMPL_MODIFIER_DAUGHTER_BOARD_CONNECTOR_INSIDE_OF_NUAE ImplModifierDaughterBoardConnectorInsideOfNuae = 327680, - /// + /// /// D3D11_BUS_IMPL_MODIFIER_NON_STANDARD ImplModifierNonStandard = -2147483648, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/CheckMultisampleQualityLevelsFlags.cs b/src/Vortice.Win32.Direct3D11/Generated/CheckMultisampleQualityLevelsFlags.cs index 73fbc93..8698bfd 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/CheckMultisampleQualityLevelsFlags.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/CheckMultisampleQualityLevelsFlags.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_CHECK_MULTISAMPLE_QUALITY_LEVELS_FLAG [Flags] public enum CheckMultisampleQualityLevelsFlags : int { None = 0, - /// + /// /// D3D11_CHECK_MULTISAMPLE_QUALITY_LEVELS_TILED_RESOURCE TiledResource = 1, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/ClassInstanceDescription.cs b/src/Vortice.Win32.Direct3D11/Generated/ClassInstanceDescription.cs index 178fadf..698c47f 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ClassInstanceDescription.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ClassInstanceDescription.cs @@ -9,31 +9,31 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_CLASS_INSTANCE_DESC public partial struct ClassInstanceDescription { - /// + /// public uint InstanceId; - /// + /// public uint InstanceIndex; - /// + /// public uint TypeId; - /// + /// public uint ConstantBuffer; - /// + /// public uint BaseConstantBufferOffset; - /// + /// public uint BaseTexture; - /// + /// public uint BaseSampler; - /// + /// public Bool32 Created; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/ClearFlags.cs b/src/Vortice.Win32.Direct3D11/Generated/ClearFlags.cs index 1a7637b..2f162e3 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ClearFlags.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ClearFlags.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_CLEAR_FLAG [Flags] public enum ClearFlags : int { None = 0, - /// + /// /// D3D11_CLEAR_DEPTH Depth = 1, - /// + /// /// D3D11_CLEAR_STENCIL Stencil = 2, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/ColorWriteEnable.cs b/src/Vortice.Win32.Direct3D11/Generated/ColorWriteEnable.cs index 7938a47..0c74aad 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ColorWriteEnable.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ColorWriteEnable.cs @@ -9,25 +9,25 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_COLOR_WRITE_ENABLE [Flags] public enum ColorWriteEnable : byte { None = 0, - /// + /// /// D3D11_COLOR_WRITE_ENABLE_RED Red = 1, - /// + /// /// D3D11_COLOR_WRITE_ENABLE_GREEN Green = 2, - /// + /// /// D3D11_COLOR_WRITE_ENABLE_BLUE Blue = 4, - /// + /// /// D3D11_COLOR_WRITE_ENABLE_ALPHA Alpha = 8, - /// + /// /// D3D11_COLOR_WRITE_ENABLE_ALL All = 15, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/ComparisonFunction.cs b/src/Vortice.Win32.Direct3D11/Generated/ComparisonFunction.cs index 31e4bfc..16a1462 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ComparisonFunction.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ComparisonFunction.cs @@ -9,32 +9,32 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_COMPARISON_FUNC public enum ComparisonFunction : int { - /// + /// /// D3D11_COMPARISON_NEVER Never = 1, - /// + /// /// D3D11_COMPARISON_LESS Less = 2, - /// + /// /// D3D11_COMPARISON_EQUAL Equal = 3, - /// + /// /// D3D11_COMPARISON_LESS_EQUAL LessEqual = 4, - /// + /// /// D3D11_COMPARISON_GREATER Greater = 5, - /// + /// /// D3D11_COMPARISON_NOT_EQUAL NotEqual = 6, - /// + /// /// D3D11_COMPARISON_GREATER_EQUAL GreaterEqual = 7, - /// + /// /// D3D11_COMPARISON_ALWAYS Always = 8, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/ComputeShaderTraceDescription.cs b/src/Vortice.Win32.Direct3D11/Generated/ComputeShaderTraceDescription.cs index 6313281..4c794f7 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ComputeShaderTraceDescription.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ComputeShaderTraceDescription.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_COMPUTE_SHADER_TRACE_DESC public partial struct ComputeShaderTraceDescription { - /// + /// public ulong Invocation; - /// + /// public unsafe fixed uint ThreadIDInGroup[3]; - /// + /// public unsafe fixed uint ThreadGroupID[3]; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/ConservativeRasterizationMode.cs b/src/Vortice.Win32.Direct3D11/Generated/ConservativeRasterizationMode.cs index 224469b..3d93514 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ConservativeRasterizationMode.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ConservativeRasterizationMode.cs @@ -9,14 +9,14 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_CONSERVATIVE_RASTERIZATION_MODE public enum ConservativeRasterizationMode : int { - /// + /// /// D3D11_CONSERVATIVE_RASTERIZATION_MODE_OFF Off = 0, - /// + /// /// D3D11_CONSERVATIVE_RASTERIZATION_MODE_ON On = 1, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/ConservativeRasterizationTier.cs b/src/Vortice.Win32.Direct3D11/Generated/ConservativeRasterizationTier.cs index 052b41c..f45afcf 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ConservativeRasterizationTier.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ConservativeRasterizationTier.cs @@ -9,20 +9,20 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_CONSERVATIVE_RASTERIZATION_TIER public enum ConservativeRasterizationTier : int { - /// + /// /// D3D11_CONSERVATIVE_RASTERIZATION_NOT_SUPPORTED NotSupported = 0, - /// + /// /// D3D11_CONSERVATIVE_RASTERIZATION_TIER_1 Tier1 = 1, - /// + /// /// D3D11_CONSERVATIVE_RASTERIZATION_TIER_2 Tier2 = 2, - /// + /// /// D3D11_CONSERVATIVE_RASTERIZATION_TIER_3 Tier3 = 3, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/ContentProtectionCaps.cs b/src/Vortice.Win32.Direct3D11/Generated/ContentProtectionCaps.cs index 42d8ab4..b61a23e 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ContentProtectionCaps.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ContentProtectionCaps.cs @@ -9,56 +9,56 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_CONTENT_PROTECTION_CAPS public enum ContentProtectionCaps : int { - /// + /// /// D3D11_CONTENT_PROTECTION_CAPS_SOFTWARE Software = 1, - /// + /// /// D3D11_CONTENT_PROTECTION_CAPS_HARDWARE Hardware = 2, - /// + /// /// D3D11_CONTENT_PROTECTION_CAPS_PROTECTION_ALWAYS_ON ProtectionAlwaysOn = 4, - /// + /// /// D3D11_CONTENT_PROTECTION_CAPS_PARTIAL_DECRYPTION PartialDecryption = 8, - /// + /// /// D3D11_CONTENT_PROTECTION_CAPS_CONTENT_KEY ContentKey = 16, - /// + /// /// D3D11_CONTENT_PROTECTION_CAPS_FRESHEN_SESSION_KEY FreshenSessionKey = 32, - /// + /// /// D3D11_CONTENT_PROTECTION_CAPS_ENCRYPTED_READ_BACK EncryptedReadBack = 64, - /// + /// /// D3D11_CONTENT_PROTECTION_CAPS_ENCRYPTED_READ_BACK_KEY EncryptedReadBackKey = 128, - /// + /// /// D3D11_CONTENT_PROTECTION_CAPS_SEQUENTIAL_CTR_IV SequentialCtrIv = 256, - /// + /// /// D3D11_CONTENT_PROTECTION_CAPS_ENCRYPT_SLICEDATA_ONLY EncryptSlicedataOnly = 512, - /// + /// /// D3D11_CONTENT_PROTECTION_CAPS_DECRYPTION_BLT DecryptionBlt = 1024, - /// + /// /// D3D11_CONTENT_PROTECTION_CAPS_HARDWARE_PROTECT_UNCOMPRESSED HardwareProtectUncompressed = 2048, - /// + /// /// D3D11_CONTENT_PROTECTION_CAPS_HARDWARE_PROTECTED_MEMORY_PAGEABLE HardwareProtectedMemoryPageable = 4096, - /// + /// /// D3D11_CONTENT_PROTECTION_CAPS_HARDWARE_TEARDOWN HardwareTeardown = 8192, - /// + /// /// D3D11_CONTENT_PROTECTION_CAPS_HARDWARE_DRM_COMMUNICATION HardwareDrmCommunication = 16384, - /// + /// /// D3D11_CONTENT_PROTECTION_CAPS_HARDWARE_DRM_COMMUNICATION_MULTI_THREADED HardwareDrmCommunicationMultiThreaded = 32768, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/ContextType.cs b/src/Vortice.Win32.Direct3D11/Generated/ContextType.cs index 26363d1..617fb45 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ContextType.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ContextType.cs @@ -9,23 +9,23 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_CONTEXT_TYPE public enum ContextType : int { - /// + /// /// D3D11_CONTEXT_TYPE_ALL All = 0, - /// + /// /// D3D11_CONTEXT_TYPE_3D _3D = 1, - /// + /// /// D3D11_CONTEXT_TYPE_COMPUTE Compute = 2, - /// + /// /// D3D11_CONTEXT_TYPE_COPY Copy = 3, - /// + /// /// D3D11_CONTEXT_TYPE_VIDEO Video = 4, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/CopyFlags.cs b/src/Vortice.Win32.Direct3D11/Generated/CopyFlags.cs index 57ffe88..295250d 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/CopyFlags.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/CopyFlags.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_COPY_FLAGS [Flags] public enum CopyFlags : int { None = 0, - /// + /// /// D3D11_COPY_NO_OVERWRITE NoOverwrite = 1, - /// + /// /// D3D11_COPY_DISCARD Discard = 2, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/Counter.cs b/src/Vortice.Win32.Direct3D11/Generated/Counter.cs index 2f22674..dbff17c 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/Counter.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/Counter.cs @@ -9,11 +9,11 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_COUNTER public enum Counter : int { - /// + /// /// D3D11_COUNTER_DEVICE_DEPENDENT_0 DeviceDependent0 = 1073741824, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/CounterDescription.cs b/src/Vortice.Win32.Direct3D11/Generated/CounterDescription.cs index c76443a..d2cfaaf 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/CounterDescription.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/CounterDescription.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_COUNTER_DESC public partial struct CounterDescription { - /// + /// public Counter Counter; - /// + /// public uint MiscFlags; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/CounterInfo.cs b/src/Vortice.Win32.Direct3D11/Generated/CounterInfo.cs index 4063817..56352a3 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/CounterInfo.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/CounterInfo.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_COUNTER_INFO public partial struct CounterInfo { - /// + /// public Counter LastDeviceDependentCounter; - /// + /// public uint NumSimultaneousCounters; - /// + /// public byte NumDetectableParallelUnits; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/CounterType.cs b/src/Vortice.Win32.Direct3D11/Generated/CounterType.cs index 7c1b4a2..370cf4c 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/CounterType.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/CounterType.cs @@ -9,20 +9,20 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_COUNTER_TYPE public enum CounterType : int { - /// + /// /// D3D11_COUNTER_TYPE_FLOAT32 Float32 = 0, - /// + /// /// D3D11_COUNTER_TYPE_UINT16 UInt16 = 1, - /// + /// /// D3D11_COUNTER_TYPE_UINT32 UInt32 = 2, - /// + /// /// D3D11_COUNTER_TYPE_UINT64 UInt64 = 3, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/CpuAccessFlags.cs b/src/Vortice.Win32.Direct3D11/Generated/CpuAccessFlags.cs index c01dbb0..5ad7ae1 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/CpuAccessFlags.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/CpuAccessFlags.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_CPU_ACCESS_FLAG [Flags] public enum CpuAccessFlags : uint { None = 0, - /// + /// /// D3D11_CPU_ACCESS_WRITE Write = 65536, - /// + /// /// D3D11_CPU_ACCESS_READ Read = 131072, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/CreateDeviceContextStateFlags.cs b/src/Vortice.Win32.Direct3D11/Generated/CreateDeviceContextStateFlags.cs index 331a285..5baff38 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/CreateDeviceContextStateFlags.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/CreateDeviceContextStateFlags.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_1_CREATE_DEVICE_CONTEXT_STATE_FLAG [Flags] public enum CreateDeviceContextStateFlags : int { None = 0, - /// + /// /// D3D11_1_CREATE_DEVICE_CONTEXT_STATE_SINGLETHREADED SingleThreaded = 1, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/CreateDeviceFlags.cs b/src/Vortice.Win32.Direct3D11/Generated/CreateDeviceFlags.cs index cf2fa20..e34530e 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/CreateDeviceFlags.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/CreateDeviceFlags.cs @@ -9,37 +9,37 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_CREATE_DEVICE_FLAG [Flags] public enum CreateDeviceFlags : uint { None = 0, - /// + /// /// D3D11_CREATE_DEVICE_SINGLETHREADED SingleThreaded = 1, - /// + /// /// D3D11_CREATE_DEVICE_DEBUG Debug = 2, - /// + /// /// D3D11_CREATE_DEVICE_SWITCH_TO_REF SwitchToRef = 4, - /// + /// /// D3D11_CREATE_DEVICE_PREVENT_INTERNAL_THREADING_OPTIMIZATIONS PreventInternalThreadingOptimizations = 8, - /// + /// /// D3D11_CREATE_DEVICE_BGRA_SUPPORT BgraSupport = 32, - /// + /// /// D3D11_CREATE_DEVICE_DEBUGGABLE Debuggable = 64, - /// + /// /// D3D11_CREATE_DEVICE_PREVENT_ALTERING_LAYER_SETTINGS_FROM_REGISTRY PreventAlteringLayerSettingsFromRegistry = 128, - /// + /// /// D3D11_CREATE_DEVICE_DISABLE_GPU_TIMEOUT DisableGpuTimeout = 256, - /// + /// /// D3D11_CREATE_DEVICE_VIDEO_SUPPORT VideoSupport = 2048, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/CryptoSessionKeyExchangeFlags.cs b/src/Vortice.Win32.Direct3D11/Generated/CryptoSessionKeyExchangeFlags.cs index bc1a31d..e1a573a 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/CryptoSessionKeyExchangeFlags.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/CryptoSessionKeyExchangeFlags.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_CRYPTO_SESSION_KEY_EXCHANGE_FLAGS [Flags] public enum CryptoSessionKeyExchangeFlags : uint { None = 0, - /// + /// /// D3D11_CRYPTO_SESSION_KEY_EXCHANGE_FLAG_NONE FlagNone = 0, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/CryptoSessionStatus.cs b/src/Vortice.Win32.Direct3D11/Generated/CryptoSessionStatus.cs index 128a44e..71569e8 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/CryptoSessionStatus.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/CryptoSessionStatus.cs @@ -9,17 +9,17 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_CRYPTO_SESSION_STATUS public enum CryptoSessionStatus : int { - /// + /// /// D3D11_CRYPTO_SESSION_STATUS_OK Ok = 0, - /// + /// /// D3D11_CRYPTO_SESSION_STATUS_KEY_LOST KeyLost = 1, - /// + /// /// D3D11_CRYPTO_SESSION_STATUS_KEY_AND_CONTENT_LOST KeyAndContentLost = 2, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/CullMode.cs b/src/Vortice.Win32.Direct3D11/Generated/CullMode.cs index 6d524cc..192154c 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/CullMode.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/CullMode.cs @@ -9,17 +9,17 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_CULL_MODE public enum CullMode : int { - /// + /// /// D3D11_CULL_NONE None = 1, - /// + /// /// D3D11_CULL_FRONT Front = 2, - /// + /// /// D3D11_CULL_BACK Back = 3, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/DepthStencilDescription.cs b/src/Vortice.Win32.Direct3D11/Generated/DepthStencilDescription.cs index b53fcbf..f47df8d 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/DepthStencilDescription.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/DepthStencilDescription.cs @@ -9,31 +9,31 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_DEPTH_STENCIL_DESC public partial struct DepthStencilDescription { - /// + /// public Bool32 DepthEnable; - /// + /// public DepthWriteMask DepthWriteMask; - /// + /// public ComparisonFunction DepthFunc; - /// + /// public Bool32 StencilEnable; - /// + /// public byte StencilReadMask; - /// + /// public byte StencilWriteMask; - /// + /// public DepthStencilOperationDescription FrontFace; - /// + /// public DepthStencilOperationDescription BackFace; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/DepthStencilOperationDescription.cs b/src/Vortice.Win32.Direct3D11/Generated/DepthStencilOperationDescription.cs index 8896f36..6f972ae 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/DepthStencilOperationDescription.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/DepthStencilOperationDescription.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_DEPTH_STENCILOP_DESC public partial struct DepthStencilOperationDescription { - /// + /// public StencilOperation StencilFailOp; - /// + /// public StencilOperation StencilDepthFailOp; - /// + /// public StencilOperation StencilPassOp; - /// + /// public ComparisonFunction StencilFunc; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/DepthStencilViewDescription.cs b/src/Vortice.Win32.Direct3D11/Generated/DepthStencilViewDescription.cs index 79080fb..2cd7a8f 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/DepthStencilViewDescription.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/DepthStencilViewDescription.cs @@ -9,20 +9,20 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_DEPTH_STENCIL_VIEW_DESC public partial struct DepthStencilViewDescription { - /// + /// public Graphics.Dxgi.Common.Format Format; - /// + /// public DsvDimension ViewDimension; - /// + /// public DsvFlags Flags; - /// + /// public _Anonymous_e__Union Anonymous; [UnscopedRef] @@ -88,27 +88,27 @@ public partial struct DepthStencilViewDescription [StructLayout(LayoutKind.Explicit)] public partial struct _Anonymous_e__Union { - /// + /// [FieldOffset(0)] public Texture1DDsv Texture1D; - /// + /// [FieldOffset(0)] public Texture1DArrayDsv Texture1DArray; - /// + /// [FieldOffset(0)] public Texture2DDsv Texture2D; - /// + /// [FieldOffset(0)] public Texture2DArrayDsv Texture2DArray; - /// + /// [FieldOffset(0)] public Texture2DMsDsv Texture2DMS; - /// + /// [FieldOffset(0)] public Texture2DMsArrayDsv Texture2DMSArray; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/DepthWriteMask.cs b/src/Vortice.Win32.Direct3D11/Generated/DepthWriteMask.cs index af67e79..f313d8f 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/DepthWriteMask.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/DepthWriteMask.cs @@ -9,14 +9,14 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_DEPTH_WRITE_MASK public enum DepthWriteMask : int { - /// + /// /// D3D11_DEPTH_WRITE_MASK_ZERO Zero = 0, - /// + /// /// D3D11_DEPTH_WRITE_MASK_ALL All = 1, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/DeviceContextType.cs b/src/Vortice.Win32.Direct3D11/Generated/DeviceContextType.cs index 985bc7f..a725502 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/DeviceContextType.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/DeviceContextType.cs @@ -9,14 +9,14 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_DEVICE_CONTEXT_TYPE public enum DeviceContextType : int { - /// + /// /// D3D11_DEVICE_CONTEXT_IMMEDIATE Immediate = 0, - /// + /// /// D3D11_DEVICE_CONTEXT_DEFERRED Deferred = 1, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/DomainShaderTraceDescription.cs b/src/Vortice.Win32.Direct3D11/Generated/DomainShaderTraceDescription.cs index 717671b..7c134a8 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/DomainShaderTraceDescription.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/DomainShaderTraceDescription.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_DOMAIN_SHADER_TRACE_DESC public partial struct DomainShaderTraceDescription { - /// + /// public ulong Invocation; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/DrawIndexedInstancedIndirectArgs.cs b/src/Vortice.Win32.Direct3D11/Generated/DrawIndexedInstancedIndirectArgs.cs index dc8877e..a1a361f 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/DrawIndexedInstancedIndirectArgs.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/DrawIndexedInstancedIndirectArgs.cs @@ -9,22 +9,22 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_DRAW_INDEXED_INSTANCED_INDIRECT_ARGS public partial struct DrawIndexedInstancedIndirectArgs { - /// + /// public uint IndexCountPerInstance; - /// + /// public uint InstanceCount; - /// + /// public uint StartIndexLocation; - /// + /// public int BaseVertexLocation; - /// + /// public uint StartInstanceLocation; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/DrawInstancedIndirectArgs.cs b/src/Vortice.Win32.Direct3D11/Generated/DrawInstancedIndirectArgs.cs index 4ea1569..7ceb4ed 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/DrawInstancedIndirectArgs.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/DrawInstancedIndirectArgs.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_DRAW_INSTANCED_INDIRECT_ARGS public partial struct DrawInstancedIndirectArgs { - /// + /// public uint VertexCountPerInstance; - /// + /// public uint InstanceCount; - /// + /// public uint StartVertexLocation; - /// + /// public uint StartInstanceLocation; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/DsvDimension.cs b/src/Vortice.Win32.Direct3D11/Generated/DsvDimension.cs index 95f6b5f..dbd768d 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/DsvDimension.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/DsvDimension.cs @@ -9,29 +9,29 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_DSV_DIMENSION public enum DsvDimension : int { - /// + /// /// D3D11_DSV_DIMENSION_UNKNOWN Unknown = 0, - /// + /// /// D3D11_DSV_DIMENSION_TEXTURE1D Texture1D = 1, - /// + /// /// D3D11_DSV_DIMENSION_TEXTURE1DARRAY Texture1DArray = 2, - /// + /// /// D3D11_DSV_DIMENSION_TEXTURE2D Texture2D = 3, - /// + /// /// D3D11_DSV_DIMENSION_TEXTURE2DARRAY Texture2DArray = 4, - /// + /// /// D3D11_DSV_DIMENSION_TEXTURE2DMS Texture2DMs = 5, - /// + /// /// D3D11_DSV_DIMENSION_TEXTURE2DMSARRAY Texture2DMsArray = 6, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/DsvFlags.cs b/src/Vortice.Win32.Direct3D11/Generated/DsvFlags.cs index c98b3a5..184c63f 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/DsvFlags.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/DsvFlags.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_DSV_FLAG [Flags] public enum DsvFlags : int { None = 0, - /// + /// /// D3D11_DSV_READ_ONLY_DEPTH ReadOnlyDepth = 1, - /// + /// /// D3D11_DSV_READ_ONLY_STENCIL ReadOnlyStencil = 2, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/EncryptedBlockInfo.cs b/src/Vortice.Win32.Direct3D11/Generated/EncryptedBlockInfo.cs index 9c5ce1e..3756b36 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/EncryptedBlockInfo.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/EncryptedBlockInfo.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_ENCRYPTED_BLOCK_INFO public partial struct EncryptedBlockInfo { - /// + /// public uint NumEncryptedBytesAtBeginning; - /// + /// public uint NumBytesInSkipPattern; - /// + /// public uint NumBytesInEncryptPattern; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/Feature.cs b/src/Vortice.Win32.Direct3D11/Generated/Feature.cs index cff4f50..f87a1b8 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/Feature.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/Feature.cs @@ -9,71 +9,71 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_FEATURE public enum Feature : int { - /// + /// /// D3D11_FEATURE_THREADING Threading = 0, - /// + /// /// D3D11_FEATURE_DOUBLES Doubles = 1, - /// + /// /// D3D11_FEATURE_FORMAT_SUPPORT FormatSupport = 2, - /// + /// /// D3D11_FEATURE_FORMAT_SUPPORT2 FormatSupport2 = 3, - /// + /// /// D3D11_FEATURE_D3D10_X_HARDWARE_OPTIONS XHardwareOptions = 4, - /// + /// /// D3D11_FEATURE_D3D11_OPTIONS Options = 5, - /// + /// /// D3D11_FEATURE_ARCHITECTURE_INFO ArchitectureInfo = 6, - /// + /// /// D3D11_FEATURE_D3D9_OPTIONS D3d9Options = 7, - /// + /// /// D3D11_FEATURE_SHADER_MIN_PRECISION_SUPPORT ShaderMinPrecisionSupport = 8, - /// + /// /// D3D11_FEATURE_D3D9_SHADOW_SUPPORT D3d9ShadowSupport = 9, - /// + /// /// D3D11_FEATURE_D3D11_OPTIONS1 Options1 = 10, - /// + /// /// D3D11_FEATURE_D3D9_SIMPLE_INSTANCING_SUPPORT D3d9SimpleInstancingSupport = 11, - /// + /// /// D3D11_FEATURE_MARKER_SUPPORT MarkerSupport = 12, - /// + /// /// D3D11_FEATURE_D3D9_OPTIONS1 D3d9Options1 = 13, - /// + /// /// D3D11_FEATURE_D3D11_OPTIONS2 Options2 = 14, - /// + /// /// D3D11_FEATURE_D3D11_OPTIONS3 Options3 = 15, - /// + /// /// D3D11_FEATURE_GPU_VIRTUAL_ADDRESS_SUPPORT GpuVirtualAddressSupport = 16, - /// + /// /// D3D11_FEATURE_D3D11_OPTIONS4 Options4 = 17, - /// + /// /// D3D11_FEATURE_SHADER_CACHE ShaderCache = 18, - /// + /// /// D3D11_FEATURE_D3D11_OPTIONS5 Options5 = 19, - /// + /// /// D3D11_FEATURE_DISPLAYABLE Displayable = 20, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/FeatureDataArchitectureInfo.cs b/src/Vortice.Win32.Direct3D11/Generated/FeatureDataArchitectureInfo.cs index 3962829..178db02 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/FeatureDataArchitectureInfo.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/FeatureDataArchitectureInfo.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_FEATURE_DATA_ARCHITECTURE_INFO public partial struct FeatureDataArchitectureInfo { - /// + /// public Bool32 TileBasedDeferredRenderer; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/FeatureDataD3D10XHardwareOptions.cs b/src/Vortice.Win32.Direct3D11/Generated/FeatureDataD3D10XHardwareOptions.cs index 7c0de3c..d87ddaa 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/FeatureDataD3D10XHardwareOptions.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/FeatureDataD3D10XHardwareOptions.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_FEATURE_DATA_D3D10_X_HARDWARE_OPTIONS public partial struct FeatureDataD3D10XHardwareOptions { - /// + /// public Bool32 ComputeShaders_Plus_RawAndStructuredBuffers_Via_Shader_4_x; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/FeatureDataD3D11Options.cs b/src/Vortice.Win32.Direct3D11/Generated/FeatureDataD3D11Options.cs index a17132c..3ec07ab 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/FeatureDataD3D11Options.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/FeatureDataD3D11Options.cs @@ -9,49 +9,49 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_FEATURE_DATA_D3D11_OPTIONS public partial struct FeatureDataD3D11Options { - /// + /// public Bool32 OutputMergerLogicOp; - /// + /// public Bool32 UAVOnlyRenderingForcedSampleCount; - /// + /// public Bool32 DiscardAPIsSeenByDriver; - /// + /// public Bool32 FlagsForUpdateAndCopySeenByDriver; - /// + /// public Bool32 ClearView; - /// + /// public Bool32 CopyWithOverlap; - /// + /// public Bool32 ConstantBufferPartialUpdate; - /// + /// public Bool32 ConstantBufferOffsetting; - /// + /// public Bool32 MapNoOverwriteOnDynamicConstantBuffer; - /// + /// public Bool32 MapNoOverwriteOnDynamicBufferSRV; - /// + /// public Bool32 MultisampleRTVWithForcedSampleCountOne; - /// + /// public Bool32 SAD4ShaderInstructions; - /// + /// public Bool32 ExtendedDoublesShaderInstructions; - /// + /// public Bool32 ExtendedResourceSharing; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/FeatureDataD3D11Options1.cs b/src/Vortice.Win32.Direct3D11/Generated/FeatureDataD3D11Options1.cs index 0564d13..5c65bba 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/FeatureDataD3D11Options1.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/FeatureDataD3D11Options1.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_FEATURE_DATA_D3D11_OPTIONS1 public partial struct FeatureDataD3D11Options1 { - /// + /// public TiledResourcesTier TiledResourcesTier; - /// + /// public Bool32 MinMaxFiltering; - /// + /// public Bool32 ClearViewAlsoSupportsDepthOnlyFormats; - /// + /// public Bool32 MapOnDefaultBuffers; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/FeatureDataD3D11Options2.cs b/src/Vortice.Win32.Direct3D11/Generated/FeatureDataD3D11Options2.cs index f64de25..be70130 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/FeatureDataD3D11Options2.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/FeatureDataD3D11Options2.cs @@ -9,31 +9,31 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_FEATURE_DATA_D3D11_OPTIONS2 public partial struct FeatureDataD3D11Options2 { - /// + /// public Bool32 PSSpecifiedStencilRefSupported; - /// + /// public Bool32 TypedUAVLoadAdditionalFormats; - /// + /// public Bool32 ROVsSupported; - /// + /// public ConservativeRasterizationTier ConservativeRasterizationTier; - /// + /// public TiledResourcesTier TiledResourcesTier; - /// + /// public Bool32 MapOnDefaultTextures; - /// + /// public Bool32 StandardSwizzle; - /// + /// public Bool32 UnifiedMemoryArchitecture; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/FeatureDataD3D11Options3.cs b/src/Vortice.Win32.Direct3D11/Generated/FeatureDataD3D11Options3.cs index 7f82d8e..2f4ac2c 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/FeatureDataD3D11Options3.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/FeatureDataD3D11Options3.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_FEATURE_DATA_D3D11_OPTIONS3 public partial struct FeatureDataD3D11Options3 { - /// + /// public Bool32 VPAndRTArrayIndexFromAnyShaderFeedingRasterizer; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/FeatureDataD3D11Options4.cs b/src/Vortice.Win32.Direct3D11/Generated/FeatureDataD3D11Options4.cs index bf7e42a..b70b658 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/FeatureDataD3D11Options4.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/FeatureDataD3D11Options4.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_FEATURE_DATA_D3D11_OPTIONS4 public partial struct FeatureDataD3D11Options4 { - /// + /// public Bool32 ExtendedNV12SharedTextureSupported; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/FeatureDataD3D11Options5.cs b/src/Vortice.Win32.Direct3D11/Generated/FeatureDataD3D11Options5.cs index 44f2440..f9a3233 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/FeatureDataD3D11Options5.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/FeatureDataD3D11Options5.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_FEATURE_DATA_D3D11_OPTIONS5 public partial struct FeatureDataD3D11Options5 { - /// + /// public SharedResourceTier SharedResourceTier; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/FeatureDataD3d9Options.cs b/src/Vortice.Win32.Direct3D11/Generated/FeatureDataD3d9Options.cs index f0d2530..ddebd6b 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/FeatureDataD3d9Options.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/FeatureDataD3d9Options.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_FEATURE_DATA_D3D9_OPTIONS public partial struct FeatureDataD3d9Options { - /// + /// public Bool32 FullNonPow2TextureSupport; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/FeatureDataD3d9Options1.cs b/src/Vortice.Win32.Direct3D11/Generated/FeatureDataD3d9Options1.cs index d964934..058fea8 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/FeatureDataD3d9Options1.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/FeatureDataD3d9Options1.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_FEATURE_DATA_D3D9_OPTIONS1 public partial struct FeatureDataD3d9Options1 { - /// + /// public Bool32 FullNonPow2TextureSupported; - /// + /// public Bool32 DepthAsTextureWithLessEqualComparisonFilterSupported; - /// + /// public Bool32 SimpleInstancingSupported; - /// + /// public Bool32 TextureCubeFaceRenderTargetWithNonCubeDepthStencilSupported; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/FeatureDataD3d9ShadowSupport.cs b/src/Vortice.Win32.Direct3D11/Generated/FeatureDataD3d9ShadowSupport.cs index e817384..ceec46b 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/FeatureDataD3d9ShadowSupport.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/FeatureDataD3d9ShadowSupport.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_FEATURE_DATA_D3D9_SHADOW_SUPPORT public partial struct FeatureDataD3d9ShadowSupport { - /// + /// public Bool32 SupportsDepthAsTextureWithLessEqualComparisonFilter; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/FeatureDataD3d9SimpleInstancingSupport.cs b/src/Vortice.Win32.Direct3D11/Generated/FeatureDataD3d9SimpleInstancingSupport.cs index 2c3039c..887cefc 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/FeatureDataD3d9SimpleInstancingSupport.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/FeatureDataD3d9SimpleInstancingSupport.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_FEATURE_DATA_D3D9_SIMPLE_INSTANCING_SUPPORT public partial struct FeatureDataD3d9SimpleInstancingSupport { - /// + /// public Bool32 SimpleInstancingSupported; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/FeatureDataDisplayable.cs b/src/Vortice.Win32.Direct3D11/Generated/FeatureDataDisplayable.cs index dd5f782..e0e7082 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/FeatureDataDisplayable.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/FeatureDataDisplayable.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_FEATURE_DATA_DISPLAYABLE public partial struct FeatureDataDisplayable { - /// + /// public Bool32 DisplayableTexture; - /// + /// public SharedResourceTier SharedResourceTier; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/FeatureDataDoubles.cs b/src/Vortice.Win32.Direct3D11/Generated/FeatureDataDoubles.cs index 3375364..cdc0bd1 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/FeatureDataDoubles.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/FeatureDataDoubles.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_FEATURE_DATA_DOUBLES public partial struct FeatureDataDoubles { - /// + /// public Bool32 DoublePrecisionFloatShaderOps; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/FeatureDataFormatSupport.cs b/src/Vortice.Win32.Direct3D11/Generated/FeatureDataFormatSupport.cs index db91d50..a41ce76 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/FeatureDataFormatSupport.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/FeatureDataFormatSupport.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_FEATURE_DATA_FORMAT_SUPPORT public partial struct FeatureDataFormatSupport { - /// + /// public Graphics.Dxgi.Common.Format InFormat; - /// + /// public FormatSupport OutFormatSupport; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/FeatureDataFormatSupport2.cs b/src/Vortice.Win32.Direct3D11/Generated/FeatureDataFormatSupport2.cs index 1326f83..3978e88 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/FeatureDataFormatSupport2.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/FeatureDataFormatSupport2.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_FEATURE_DATA_FORMAT_SUPPORT2 public partial struct FeatureDataFormatSupport2 { - /// + /// public Graphics.Dxgi.Common.Format InFormat; - /// + /// public FormatSupport2 OutFormatSupport2; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/FeatureDataGpuVirtualAddressSupport.cs b/src/Vortice.Win32.Direct3D11/Generated/FeatureDataGpuVirtualAddressSupport.cs index 09d7766..4b886ae 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/FeatureDataGpuVirtualAddressSupport.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/FeatureDataGpuVirtualAddressSupport.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_FEATURE_DATA_GPU_VIRTUAL_ADDRESS_SUPPORT public partial struct FeatureDataGpuVirtualAddressSupport { - /// + /// public uint MaxGPUVirtualAddressBitsPerResource; - /// + /// public uint MaxGPUVirtualAddressBitsPerProcess; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/FeatureDataMarkerSupport.cs b/src/Vortice.Win32.Direct3D11/Generated/FeatureDataMarkerSupport.cs index 26d492a..7757392 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/FeatureDataMarkerSupport.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/FeatureDataMarkerSupport.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_FEATURE_DATA_MARKER_SUPPORT public partial struct FeatureDataMarkerSupport { - /// + /// public Bool32 Profile; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/FeatureDataShaderCache.cs b/src/Vortice.Win32.Direct3D11/Generated/FeatureDataShaderCache.cs index 23e5053..2a19836 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/FeatureDataShaderCache.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/FeatureDataShaderCache.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_FEATURE_DATA_SHADER_CACHE public partial struct FeatureDataShaderCache { - /// + /// public uint SupportFlags; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/FeatureDataShaderMinPrecisionSupport.cs b/src/Vortice.Win32.Direct3D11/Generated/FeatureDataShaderMinPrecisionSupport.cs index 5aaa92f..619fbf2 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/FeatureDataShaderMinPrecisionSupport.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/FeatureDataShaderMinPrecisionSupport.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_FEATURE_DATA_SHADER_MIN_PRECISION_SUPPORT public partial struct FeatureDataShaderMinPrecisionSupport { - /// + /// public uint PixelShaderMinPrecision; - /// + /// public uint AllOtherShaderStagesMinPrecision; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/FeatureDataThreading.cs b/src/Vortice.Win32.Direct3D11/Generated/FeatureDataThreading.cs index bb3db5a..cc27a5d 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/FeatureDataThreading.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/FeatureDataThreading.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_FEATURE_DATA_THREADING public partial struct FeatureDataThreading { - /// + /// public Bool32 DriverConcurrentCreates; - /// + /// public Bool32 DriverCommandLists; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/FeatureDataVideoDecoderHistogram.cs b/src/Vortice.Win32.Direct3D11/Generated/FeatureDataVideoDecoderHistogram.cs index c9f2514..6ba0a34 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/FeatureDataVideoDecoderHistogram.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/FeatureDataVideoDecoderHistogram.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_FEATURE_DATA_VIDEO_DECODER_HISTOGRAM public partial struct FeatureDataVideoDecoderHistogram { - /// + /// public VideoDecoderDescription DecoderDesc; - /// + /// public VideoDecoderHistogramComponentFlags Components; - /// + /// public uint BinCount; - /// + /// public uint CounterBitDepth; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/FeatureVideo.cs b/src/Vortice.Win32.Direct3D11/Generated/FeatureVideo.cs index 2fb0a36..eb5fb9b 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/FeatureVideo.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/FeatureVideo.cs @@ -9,11 +9,11 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_FEATURE_VIDEO public enum FeatureVideo : int { - /// + /// /// D3D11_FEATURE_VIDEO_DECODER_HISTOGRAM DecoderHistogram = 0, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/FenceFlags.cs b/src/Vortice.Win32.Direct3D11/Generated/FenceFlags.cs index 3f4a120..62dd326 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/FenceFlags.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/FenceFlags.cs @@ -9,21 +9,21 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_FENCE_FLAG [Flags] public enum FenceFlags : uint { - /// + /// /// D3D11_FENCE_FLAG_NONE None = 0, - /// + /// /// D3D11_FENCE_FLAG_SHARED Shared = 2, - /// + /// /// D3D11_FENCE_FLAG_SHARED_CROSS_ADAPTER SharedCrossAdapter = 4, - /// + /// /// D3D11_FENCE_FLAG_NON_MONITORED NonMonitored = 8, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/FillMode.cs b/src/Vortice.Win32.Direct3D11/Generated/FillMode.cs index eed6190..ff9577d 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/FillMode.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/FillMode.cs @@ -9,14 +9,14 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_FILL_MODE public enum FillMode : int { - /// + /// /// D3D11_FILL_WIREFRAME Wireframe = 2, - /// + /// /// D3D11_FILL_SOLID Solid = 3, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/Filter.cs b/src/Vortice.Win32.Direct3D11/Generated/Filter.cs index 54ae98b..83b9728 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/Filter.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/Filter.cs @@ -9,116 +9,116 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_FILTER public enum Filter : int { - /// + /// /// D3D11_FILTER_MIN_MAG_MIP_POINT MinMagMipPoint = 0, - /// + /// /// D3D11_FILTER_MIN_MAG_POINT_MIP_LINEAR MinMagPointMipLinear = 1, - /// + /// /// D3D11_FILTER_MIN_POINT_MAG_LINEAR_MIP_POINT MinPointMagLinearMipPoint = 4, - /// + /// /// D3D11_FILTER_MIN_POINT_MAG_MIP_LINEAR MinPointMagMipLinear = 5, - /// + /// /// D3D11_FILTER_MIN_LINEAR_MAG_MIP_POINT MinLinearMagMipPoint = 16, - /// + /// /// D3D11_FILTER_MIN_LINEAR_MAG_POINT_MIP_LINEAR MinLinearMagPointMipLinear = 17, - /// + /// /// D3D11_FILTER_MIN_MAG_LINEAR_MIP_POINT MinMagLinearMipPoint = 20, - /// + /// /// D3D11_FILTER_MIN_MAG_MIP_LINEAR MinMagMipLinear = 21, - /// + /// /// D3D11_FILTER_ANISOTROPIC Anisotropic = 85, - /// + /// /// D3D11_FILTER_COMPARISON_MIN_MAG_MIP_POINT ComparisonMinMagMipPoint = 128, - /// + /// /// D3D11_FILTER_COMPARISON_MIN_MAG_POINT_MIP_LINEAR ComparisonMinMagPointMipLinear = 129, - /// + /// /// D3D11_FILTER_COMPARISON_MIN_POINT_MAG_LINEAR_MIP_POINT ComparisonMinPointMagLinearMipPoint = 132, - /// + /// /// D3D11_FILTER_COMPARISON_MIN_POINT_MAG_MIP_LINEAR ComparisonMinPointMagMipLinear = 133, - /// + /// /// D3D11_FILTER_COMPARISON_MIN_LINEAR_MAG_MIP_POINT ComparisonMinLinearMagMipPoint = 144, - /// + /// /// D3D11_FILTER_COMPARISON_MIN_LINEAR_MAG_POINT_MIP_LINEAR ComparisonMinLinearMagPointMipLinear = 145, - /// + /// /// D3D11_FILTER_COMPARISON_MIN_MAG_LINEAR_MIP_POINT ComparisonMinMagLinearMipPoint = 148, - /// + /// /// D3D11_FILTER_COMPARISON_MIN_MAG_MIP_LINEAR ComparisonMinMagMipLinear = 149, - /// + /// /// D3D11_FILTER_COMPARISON_ANISOTROPIC ComparisonAnisotropic = 213, - /// + /// /// D3D11_FILTER_MINIMUM_MIN_MAG_MIP_POINT MinimumMinMagMipPoint = 256, - /// + /// /// D3D11_FILTER_MINIMUM_MIN_MAG_POINT_MIP_LINEAR MinimumMinMagPointMipLinear = 257, - /// + /// /// D3D11_FILTER_MINIMUM_MIN_POINT_MAG_LINEAR_MIP_POINT MinimumMinPointMagLinearMipPoint = 260, - /// + /// /// D3D11_FILTER_MINIMUM_MIN_POINT_MAG_MIP_LINEAR MinimumMinPointMagMipLinear = 261, - /// + /// /// D3D11_FILTER_MINIMUM_MIN_LINEAR_MAG_MIP_POINT MinimumMinLinearMagMipPoint = 272, - /// + /// /// D3D11_FILTER_MINIMUM_MIN_LINEAR_MAG_POINT_MIP_LINEAR MinimumMinLinearMagPointMipLinear = 273, - /// + /// /// D3D11_FILTER_MINIMUM_MIN_MAG_LINEAR_MIP_POINT MinimumMinMagLinearMipPoint = 276, - /// + /// /// D3D11_FILTER_MINIMUM_MIN_MAG_MIP_LINEAR MinimumMinMagMipLinear = 277, - /// + /// /// D3D11_FILTER_MINIMUM_ANISOTROPIC MinimumAnisotropic = 341, - /// + /// /// D3D11_FILTER_MAXIMUM_MIN_MAG_MIP_POINT MaximumMinMagMipPoint = 384, - /// + /// /// D3D11_FILTER_MAXIMUM_MIN_MAG_POINT_MIP_LINEAR MaximumMinMagPointMipLinear = 385, - /// + /// /// D3D11_FILTER_MAXIMUM_MIN_POINT_MAG_LINEAR_MIP_POINT MaximumMinPointMagLinearMipPoint = 388, - /// + /// /// D3D11_FILTER_MAXIMUM_MIN_POINT_MAG_MIP_LINEAR MaximumMinPointMagMipLinear = 389, - /// + /// /// D3D11_FILTER_MAXIMUM_MIN_LINEAR_MAG_MIP_POINT MaximumMinLinearMagMipPoint = 400, - /// + /// /// D3D11_FILTER_MAXIMUM_MIN_LINEAR_MAG_POINT_MIP_LINEAR MaximumMinLinearMagPointMipLinear = 401, - /// + /// /// D3D11_FILTER_MAXIMUM_MIN_MAG_LINEAR_MIP_POINT MaximumMinMagLinearMipPoint = 404, - /// + /// /// D3D11_FILTER_MAXIMUM_MIN_MAG_MIP_LINEAR MaximumMinMagMipLinear = 405, - /// + /// /// D3D11_FILTER_MAXIMUM_ANISOTROPIC MaximumAnisotropic = 469, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/FilterReductionType.cs b/src/Vortice.Win32.Direct3D11/Generated/FilterReductionType.cs index 7371701..292877b 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/FilterReductionType.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/FilterReductionType.cs @@ -9,20 +9,20 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_FILTER_REDUCTION_TYPE public enum FilterReductionType : int { - /// + /// /// D3D11_FILTER_REDUCTION_TYPE_STANDARD Standard = 0, - /// + /// /// D3D11_FILTER_REDUCTION_TYPE_COMPARISON Comparison = 1, - /// + /// /// D3D11_FILTER_REDUCTION_TYPE_MINIMUM Minimum = 2, - /// + /// /// D3D11_FILTER_REDUCTION_TYPE_MAXIMUM Maximum = 3, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/FilterType.cs b/src/Vortice.Win32.Direct3D11/Generated/FilterType.cs index 5887cdb..b0be7c3 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/FilterType.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/FilterType.cs @@ -9,14 +9,14 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_FILTER_TYPE public enum FilterType : int { - /// + /// /// D3D11_FILTER_TYPE_POINT Point = 0, - /// + /// /// D3D11_FILTER_TYPE_LINEAR Linear = 1, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/FormatSupport.cs b/src/Vortice.Win32.Direct3D11/Generated/FormatSupport.cs index 7796355..bf83e00 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/FormatSupport.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/FormatSupport.cs @@ -9,103 +9,103 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_FORMAT_SUPPORT [Flags] public enum FormatSupport : int { None = 0, - /// + /// /// D3D11_FORMAT_SUPPORT_BUFFER Buffer = 1, - /// + /// /// D3D11_FORMAT_SUPPORT_IA_VERTEX_BUFFER IAVertexBuffer = 2, - /// + /// /// D3D11_FORMAT_SUPPORT_IA_INDEX_BUFFER IAIndexBuffer = 4, - /// + /// /// D3D11_FORMAT_SUPPORT_SO_BUFFER SOBuffer = 8, - /// + /// /// D3D11_FORMAT_SUPPORT_TEXTURE1D Texture1D = 16, - /// + /// /// D3D11_FORMAT_SUPPORT_TEXTURE2D Texture2D = 32, - /// + /// /// D3D11_FORMAT_SUPPORT_TEXTURE3D Texture3D = 64, - /// + /// /// D3D11_FORMAT_SUPPORT_TEXTURECUBE TextureCube = 128, - /// + /// /// D3D11_FORMAT_SUPPORT_SHADER_LOAD ShaderLoad = 256, - /// + /// /// D3D11_FORMAT_SUPPORT_SHADER_SAMPLE ShaderSample = 512, - /// + /// /// D3D11_FORMAT_SUPPORT_SHADER_SAMPLE_COMPARISON ShaderSampleComparison = 1024, - /// + /// /// D3D11_FORMAT_SUPPORT_SHADER_SAMPLE_MONO_TEXT ShaderSampleMonoText = 2048, - /// + /// /// D3D11_FORMAT_SUPPORT_MIP Mip = 4096, - /// + /// /// D3D11_FORMAT_SUPPORT_MIP_AUTOGEN MipAutogen = 8192, - /// + /// /// D3D11_FORMAT_SUPPORT_RENDER_TARGET RenderTarget = 16384, - /// + /// /// D3D11_FORMAT_SUPPORT_BLENDABLE Blendable = 32768, - /// + /// /// D3D11_FORMAT_SUPPORT_DEPTH_STENCIL DepthStencil = 65536, - /// + /// /// D3D11_FORMAT_SUPPORT_CPU_LOCKABLE CpuLockable = 131072, - /// + /// /// D3D11_FORMAT_SUPPORT_MULTISAMPLE_RESOLVE MultisampleResolve = 262144, - /// + /// /// D3D11_FORMAT_SUPPORT_DISPLAY Display = 524288, - /// + /// /// D3D11_FORMAT_SUPPORT_CAST_WITHIN_BIT_LAYOUT CastWithinBitLayout = 1048576, - /// + /// /// D3D11_FORMAT_SUPPORT_MULTISAMPLE_RENDERTARGET MultisampleRendertarget = 2097152, - /// + /// /// D3D11_FORMAT_SUPPORT_MULTISAMPLE_LOAD MultisampleLoad = 4194304, - /// + /// /// D3D11_FORMAT_SUPPORT_SHADER_GATHER ShaderGather = 8388608, - /// + /// /// D3D11_FORMAT_SUPPORT_BACK_BUFFER_CAST BackBufferCast = 16777216, - /// + /// /// D3D11_FORMAT_SUPPORT_TYPED_UNORDERED_ACCESS_VIEW TypedUnorderedAccessView = 33554432, - /// + /// /// D3D11_FORMAT_SUPPORT_SHADER_GATHER_COMPARISON ShaderGatherComparison = 67108864, - /// + /// /// D3D11_FORMAT_SUPPORT_DECODER_OUTPUT DecoderOutput = 134217728, - /// + /// /// D3D11_FORMAT_SUPPORT_VIDEO_PROCESSOR_OUTPUT VideoProcessorOutput = 268435456, - /// + /// /// D3D11_FORMAT_SUPPORT_VIDEO_PROCESSOR_INPUT VideoProcessorInput = 536870912, - /// + /// /// D3D11_FORMAT_SUPPORT_VIDEO_ENCODER VideoEncoder = 1073741824, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/FormatSupport2.cs b/src/Vortice.Win32.Direct3D11/Generated/FormatSupport2.cs index 668d554..63449d4 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/FormatSupport2.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/FormatSupport2.cs @@ -9,46 +9,46 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_FORMAT_SUPPORT2 [Flags] public enum FormatSupport2 : int { None = 0, - /// + /// /// D3D11_FORMAT_SUPPORT2_UAV_ATOMIC_ADD UavAtomicAdd = 1, - /// + /// /// D3D11_FORMAT_SUPPORT2_UAV_ATOMIC_BITWISE_OPS UavAtomicBitwiseOps = 2, - /// + /// /// D3D11_FORMAT_SUPPORT2_UAV_ATOMIC_COMPARE_STORE_OR_COMPARE_EXCHANGE UavAtomicCompareStoreOrCompareExchange = 4, - /// + /// /// D3D11_FORMAT_SUPPORT2_UAV_ATOMIC_EXCHANGE UavAtomicExchange = 8, - /// + /// /// D3D11_FORMAT_SUPPORT2_UAV_ATOMIC_SIGNED_MIN_OR_MAX UavAtomicSignedMinOrMax = 16, - /// + /// /// D3D11_FORMAT_SUPPORT2_UAV_ATOMIC_UNSIGNED_MIN_OR_MAX UavAtomicUnsignedMinOrMax = 32, - /// + /// /// D3D11_FORMAT_SUPPORT2_UAV_TYPED_LOAD UavTypedLoad = 64, - /// + /// /// D3D11_FORMAT_SUPPORT2_UAV_TYPED_STORE UavTypedStore = 128, - /// + /// /// D3D11_FORMAT_SUPPORT2_OUTPUT_MERGER_LOGIC_OP OutputMergerLogicOp = 256, - /// + /// /// D3D11_FORMAT_SUPPORT2_TILED Tiled = 512, - /// + /// /// D3D11_FORMAT_SUPPORT2_SHAREABLE Shareable = 1024, - /// + /// /// D3D11_FORMAT_SUPPORT2_MULTIPLANE_OVERLAY MultiplaneOverlay = 16384, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/FunctionDescription.cs b/src/Vortice.Win32.Direct3D11/Generated/FunctionDescription.cs index 25c9c84..9072035 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/FunctionDescription.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/FunctionDescription.cs @@ -9,106 +9,106 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_FUNCTION_DESC public partial struct FunctionDescription { - /// + /// public uint Version; - /// + /// public unsafe sbyte* Creator; - /// + /// public uint Flags; - /// + /// public uint ConstantBuffers; - /// + /// public uint BoundResources; - /// + /// public uint InstructionCount; - /// + /// public uint TempRegisterCount; - /// + /// public uint TempArrayCount; - /// + /// public uint DefCount; - /// + /// public uint DclCount; - /// + /// public uint TextureNormalInstructions; - /// + /// public uint TextureLoadInstructions; - /// + /// public uint TextureCompInstructions; - /// + /// public uint TextureBiasInstructions; - /// + /// public uint TextureGradientInstructions; - /// + /// public uint FloatInstructionCount; - /// + /// public uint IntInstructionCount; - /// + /// public uint UintInstructionCount; - /// + /// public uint StaticFlowControlCount; - /// + /// public uint DynamicFlowControlCount; - /// + /// public uint MacroInstructionCount; - /// + /// public uint ArrayInstructionCount; - /// + /// public uint MovInstructionCount; - /// + /// public uint MovcInstructionCount; - /// + /// public uint ConversionInstructionCount; - /// + /// public uint BitwiseInstructionCount; - /// + /// public Graphics.Direct3D.FeatureLevel MinFeatureLevel; - /// + /// public ulong RequiredFeatureFlags; - /// + /// public unsafe sbyte* Name; - /// + /// public int FunctionParameterCount; - /// + /// public Bool32 HasReturn; - /// + /// public Bool32 Has10Level9VertexShader; - /// + /// public Bool32 Has10Level9PixelShader; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/GeometryShaderTraceDescription.cs b/src/Vortice.Win32.Direct3D11/Generated/GeometryShaderTraceDescription.cs index b949be5..1c1dedd 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/GeometryShaderTraceDescription.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/GeometryShaderTraceDescription.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_GEOMETRY_SHADER_TRACE_DESC public partial struct GeometryShaderTraceDescription { - /// + /// public ulong Invocation; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/HullShaderTraceDescription.cs b/src/Vortice.Win32.Direct3D11/Generated/HullShaderTraceDescription.cs index 46a4839..592f3d5 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/HullShaderTraceDescription.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/HullShaderTraceDescription.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_HULL_SHADER_TRACE_DESC public partial struct HullShaderTraceDescription { - /// + /// public ulong Invocation; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11Asynchronous.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11Asynchronous.cs index 3046031..7474c22 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11Asynchronous.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11Asynchronous.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11Asynchronous [Guid("4b35d0cd-1e15-4258-9c98-1b1333f6dd3b")] [NativeTypeName("struct ID3D11Asynchronous : ID3D11DeviceChild")] @@ -106,7 +106,7 @@ public unsafe partial struct ID3D11Asynchronous : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[6]))((ID3D11Asynchronous*)Unsafe.AsPointer(ref this), guid, pData); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(7)] public uint GetDataSize() diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11AuthenticatedChannel.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11AuthenticatedChannel.cs index adb4be8..cfe1bd4 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11AuthenticatedChannel.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11AuthenticatedChannel.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11AuthenticatedChannel [Guid("3015a308-dcbd-47aa-a747-192486d14d4a")] [NativeTypeName("struct ID3D11AuthenticatedChannel : ID3D11DeviceChild")] @@ -106,7 +106,7 @@ public unsafe partial struct ID3D11AuthenticatedChannel : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[6]))((ID3D11AuthenticatedChannel*)Unsafe.AsPointer(ref this), guid, pData); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(7)] public HResult GetCertificateSize(uint* pCertificateSize) @@ -114,7 +114,7 @@ public unsafe partial struct ID3D11AuthenticatedChannel : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D11AuthenticatedChannel*)Unsafe.AsPointer(ref this), pCertificateSize); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public HResult GetCertificate(uint CertificateSize, byte* pCertificate) @@ -122,7 +122,7 @@ public unsafe partial struct ID3D11AuthenticatedChannel : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[8]))((ID3D11AuthenticatedChannel*)Unsafe.AsPointer(ref this), CertificateSize, pCertificate); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(9)] public void GetChannelHandle(Handle* pChannelHandle) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11BlendState.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11BlendState.cs index 10b52ed..76b1a98 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11BlendState.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11BlendState.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11BlendState [Guid("75b68faa-347d-4159-8f45-a0640f01cd9a")] [NativeTypeName("struct ID3D11BlendState : ID3D11DeviceChild")] @@ -106,7 +106,7 @@ public unsafe partial struct ID3D11BlendState : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[6]))((ID3D11BlendState*)Unsafe.AsPointer(ref this), guid, pData); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(7)] public void GetDesc(BlendDescription* pDesc) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11BlendState1.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11BlendState1.cs index facdf7e..5f7c4ff 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11BlendState1.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11BlendState1.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11BlendState1 [Guid("cc86fabe-da55-401d-85e7-e3c9de2877e9")] [NativeTypeName("struct ID3D11BlendState1 : ID3D11BlendState")] @@ -114,7 +114,7 @@ public unsafe partial struct ID3D11BlendState1 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D11BlendState1*)Unsafe.AsPointer(ref this), pDesc); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public void GetDesc1(BlendDescription1* pDesc) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11Buffer.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11Buffer.cs index d0f4b33..92fe2a8 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11Buffer.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11Buffer.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11Buffer [Guid("48570b85-d1ee-4fcd-a250-eb350722b037")] [NativeTypeName("struct ID3D11Buffer : ID3D11Resource")] @@ -130,7 +130,7 @@ public unsafe partial struct ID3D11Buffer : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[9]))((ID3D11Buffer*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(10)] public void GetDesc(BufferDescription* pDesc) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11ClassInstance.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11ClassInstance.cs index 1070d67..c4f7a7d 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11ClassInstance.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11ClassInstance.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11ClassInstance [Guid("a6cd7faa-b0b7-4a2f-9436-8662a65797cb")] [NativeTypeName("struct ID3D11ClassInstance : ID3D11DeviceChild")] @@ -106,7 +106,7 @@ public unsafe partial struct ID3D11ClassInstance : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[6]))((ID3D11ClassInstance*)Unsafe.AsPointer(ref this), guid, pData); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(7)] public void GetClassLinkage(ID3D11ClassLinkage** ppLinkage) @@ -114,7 +114,7 @@ public unsafe partial struct ID3D11ClassInstance : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D11ClassInstance*)Unsafe.AsPointer(ref this), ppLinkage); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public void GetDesc(ClassInstanceDescription* pDesc) @@ -122,7 +122,7 @@ public unsafe partial struct ID3D11ClassInstance : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[8]))((ID3D11ClassInstance*)Unsafe.AsPointer(ref this), pDesc); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(9)] public void GetInstanceName(byte* pInstanceName, nuint* pBufferLength) @@ -130,7 +130,7 @@ public unsafe partial struct ID3D11ClassInstance : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[9]))((ID3D11ClassInstance*)Unsafe.AsPointer(ref this), pInstanceName, pBufferLength); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(10)] public void GetTypeName(byte* pTypeName, nuint* pBufferLength) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11ClassLinkage.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11ClassLinkage.cs index dd48023..7a050d5 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11ClassLinkage.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11ClassLinkage.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11ClassLinkage [Guid("ddf57cba-9543-46e4-a12b-f207a0fe7fed")] [NativeTypeName("struct ID3D11ClassLinkage : ID3D11DeviceChild")] @@ -106,7 +106,7 @@ public unsafe partial struct ID3D11ClassLinkage : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[6]))((ID3D11ClassLinkage*)Unsafe.AsPointer(ref this), guid, pData); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(7)] public HResult GetClassInstance(sbyte* pClassInstanceName, uint InstanceIndex, ID3D11ClassInstance** ppInstance) @@ -114,7 +114,7 @@ public unsafe partial struct ID3D11ClassLinkage : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D11ClassLinkage*)Unsafe.AsPointer(ref this), pClassInstanceName, InstanceIndex, ppInstance); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public HResult CreateClassInstance(sbyte* pClassTypeName, uint ConstantBufferOffset, uint ConstantVectorOffset, uint TextureOffset, uint SamplerOffset, ID3D11ClassInstance** ppInstance) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11CommandList.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11CommandList.cs index a5b37aa..841f17f 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11CommandList.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11CommandList.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11CommandList [Guid("a24bc4d1-769e-43f7-8013-98ff566c18e2")] [NativeTypeName("struct ID3D11CommandList : ID3D11DeviceChild")] @@ -106,7 +106,7 @@ public unsafe partial struct ID3D11CommandList : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[6]))((ID3D11CommandList*)Unsafe.AsPointer(ref this), guid, pData); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(7)] public uint GetContextFlags() diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11ComputeShader.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11ComputeShader.cs index aeee312..4ad2142 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11ComputeShader.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11ComputeShader.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11ComputeShader [Guid("4f5b196e-c2bd-495e-bd01-1fded38e4969")] [NativeTypeName("struct ID3D11ComputeShader : ID3D11DeviceChild")] diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11Counter.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11Counter.cs index 3ad4898..f072d6b 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11Counter.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11Counter.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11Counter [Guid("6e8c49fb-a371-4770-b440-29086022b741")] [NativeTypeName("struct ID3D11Counter : ID3D11Asynchronous")] @@ -114,7 +114,7 @@ public unsafe partial struct ID3D11Counter : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D11Counter*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public void GetDesc(CounterDescription* pDesc) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11CryptoSession.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11CryptoSession.cs index 257090e..07e73ef 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11CryptoSession.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11CryptoSession.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11CryptoSession [Guid("9b32f9ad-bdcc-40a6-a39d-d5c865845720")] [NativeTypeName("struct ID3D11CryptoSession : ID3D11DeviceChild")] @@ -106,7 +106,7 @@ public unsafe partial struct ID3D11CryptoSession : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[6]))((ID3D11CryptoSession*)Unsafe.AsPointer(ref this), guid, pData); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(7)] public void GetCryptoType(Guid* pCryptoType) @@ -114,7 +114,7 @@ public unsafe partial struct ID3D11CryptoSession : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D11CryptoSession*)Unsafe.AsPointer(ref this), pCryptoType); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public void GetDecoderProfile(Guid* pDecoderProfile) @@ -122,7 +122,7 @@ public unsafe partial struct ID3D11CryptoSession : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[8]))((ID3D11CryptoSession*)Unsafe.AsPointer(ref this), pDecoderProfile); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(9)] public HResult GetCertificateSize(uint* pCertificateSize) @@ -130,7 +130,7 @@ public unsafe partial struct ID3D11CryptoSession : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[9]))((ID3D11CryptoSession*)Unsafe.AsPointer(ref this), pCertificateSize); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(10)] public HResult GetCertificate(uint CertificateSize, byte* pCertificate) @@ -138,7 +138,7 @@ public unsafe partial struct ID3D11CryptoSession : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[10]))((ID3D11CryptoSession*)Unsafe.AsPointer(ref this), CertificateSize, pCertificate); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(11)] public void GetCryptoSessionHandle(Handle* pCryptoSessionHandle) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11Debug.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11Debug.cs index 3fb5fd0..3b0d733 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11Debug.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11Debug.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11Debug [Guid("79cf2233-7536-4948-9d36-1e4692dc5760")] [NativeTypeName("struct ID3D11Debug : IUnknown")] @@ -74,7 +74,7 @@ public unsafe partial struct ID3D11Debug : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[2]))((IUnknown*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(3)] public HResult SetFeatureMask(uint Mask) @@ -82,7 +82,7 @@ public unsafe partial struct ID3D11Debug : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[3]))((ID3D11Debug*)Unsafe.AsPointer(ref this), Mask); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(4)] public uint GetFeatureMask() @@ -90,7 +90,7 @@ public unsafe partial struct ID3D11Debug : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[4]))((ID3D11Debug*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(5)] public HResult SetPresentPerRenderOpDelay(uint Milliseconds) @@ -98,7 +98,7 @@ public unsafe partial struct ID3D11Debug : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[5]))((ID3D11Debug*)Unsafe.AsPointer(ref this), Milliseconds); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(6)] public uint GetPresentPerRenderOpDelay() @@ -106,7 +106,7 @@ public unsafe partial struct ID3D11Debug : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[6]))((ID3D11Debug*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(7)] public HResult SetSwapChain(Graphics.Dxgi.IDXGISwapChain* pSwapChain) @@ -114,7 +114,7 @@ public unsafe partial struct ID3D11Debug : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D11Debug*)Unsafe.AsPointer(ref this), pSwapChain); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public HResult GetSwapChain(Graphics.Dxgi.IDXGISwapChain** ppSwapChain) @@ -122,7 +122,7 @@ public unsafe partial struct ID3D11Debug : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[8]))((ID3D11Debug*)Unsafe.AsPointer(ref this), ppSwapChain); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(9)] public HResult ValidateContext(ID3D11DeviceContext* pContext) @@ -130,7 +130,7 @@ public unsafe partial struct ID3D11Debug : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[9]))((ID3D11Debug*)Unsafe.AsPointer(ref this), pContext); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(10)] public HResult ReportLiveDeviceObjects(ReportLiveDeviceObjectFlags Flags) @@ -138,7 +138,7 @@ public unsafe partial struct ID3D11Debug : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[10]))((ID3D11Debug*)Unsafe.AsPointer(ref this), Flags); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(11)] public HResult ValidateContextForDispatch(ID3D11DeviceContext* pContext) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11DepthStencilState.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11DepthStencilState.cs index badd7d7..9c1e1c8 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11DepthStencilState.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11DepthStencilState.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11DepthStencilState [Guid("03823efb-8d8f-4e1c-9aa2-f64bb2cbfdf1")] [NativeTypeName("struct ID3D11DepthStencilState : ID3D11DeviceChild")] @@ -106,7 +106,7 @@ public unsafe partial struct ID3D11DepthStencilState : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[6]))((ID3D11DepthStencilState*)Unsafe.AsPointer(ref this), guid, pData); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(7)] public void GetDesc(DepthStencilDescription* pDesc) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11DepthStencilView.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11DepthStencilView.cs index f3184bd..90f9d28 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11DepthStencilView.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11DepthStencilView.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11DepthStencilView [Guid("9fdac92a-1876-48c3-afad-25b94f84a9b6")] [NativeTypeName("struct ID3D11DepthStencilView : ID3D11View")] @@ -114,7 +114,7 @@ public unsafe partial struct ID3D11DepthStencilView : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D11DepthStencilView*)Unsafe.AsPointer(ref this), ppResource); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public void GetDesc(DepthStencilViewDescription* pDesc) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11Device.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11Device.cs index 07ca9d3..1b413ee 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11Device.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11Device.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11Device [Guid("db6f6ddb-ac77-4e88-8253-819df9bbf140")] [NativeTypeName("struct ID3D11Device : IUnknown")] @@ -74,7 +74,7 @@ public unsafe partial struct ID3D11Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[2]))((IUnknown*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(3)] public HResult CreateBuffer(BufferDescription* pDesc, SubresourceData* pInitialData, ID3D11Buffer** ppBuffer) @@ -82,7 +82,7 @@ public unsafe partial struct ID3D11Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[3]))((ID3D11Device*)Unsafe.AsPointer(ref this), pDesc, pInitialData, ppBuffer); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(4)] public HResult CreateTexture1D(Texture1DDescription* pDesc, SubresourceData* pInitialData, ID3D11Texture1D** ppTexture1D) @@ -90,7 +90,7 @@ public unsafe partial struct ID3D11Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[4]))((ID3D11Device*)Unsafe.AsPointer(ref this), pDesc, pInitialData, ppTexture1D); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(5)] public HResult CreateTexture2D(Texture2DDescription* pDesc, SubresourceData* pInitialData, ID3D11Texture2D** ppTexture2D) @@ -98,7 +98,7 @@ public unsafe partial struct ID3D11Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[5]))((ID3D11Device*)Unsafe.AsPointer(ref this), pDesc, pInitialData, ppTexture2D); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(6)] public HResult CreateTexture3D(Texture3DDescription* pDesc, SubresourceData* pInitialData, ID3D11Texture3D** ppTexture3D) @@ -106,7 +106,7 @@ public unsafe partial struct ID3D11Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[6]))((ID3D11Device*)Unsafe.AsPointer(ref this), pDesc, pInitialData, ppTexture3D); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(7)] public HResult CreateShaderResourceView(ID3D11Resource* pResource, ShaderResourceViewDescription* pDesc, ID3D11ShaderResourceView** ppSRView) @@ -114,7 +114,7 @@ public unsafe partial struct ID3D11Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D11Device*)Unsafe.AsPointer(ref this), pResource, pDesc, ppSRView); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public HResult CreateUnorderedAccessView(ID3D11Resource* pResource, UnorderedAccessViewDescription* pDesc, ID3D11UnorderedAccessView** ppUAView) @@ -122,7 +122,7 @@ public unsafe partial struct ID3D11Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[8]))((ID3D11Device*)Unsafe.AsPointer(ref this), pResource, pDesc, ppUAView); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(9)] public HResult CreateRenderTargetView(ID3D11Resource* pResource, RenderTargetViewDescription* pDesc, ID3D11RenderTargetView** ppRTView) @@ -130,7 +130,7 @@ public unsafe partial struct ID3D11Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[9]))((ID3D11Device*)Unsafe.AsPointer(ref this), pResource, pDesc, ppRTView); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(10)] public HResult CreateDepthStencilView(ID3D11Resource* pResource, DepthStencilViewDescription* pDesc, ID3D11DepthStencilView** ppDepthStencilView) @@ -138,7 +138,7 @@ public unsafe partial struct ID3D11Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[10]))((ID3D11Device*)Unsafe.AsPointer(ref this), pResource, pDesc, ppDepthStencilView); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(11)] public HResult CreateInputLayout(InputElementDescription* pInputElementDescs, uint NumElements, void* pShaderBytecodeWithInputSignature, nuint BytecodeLength, ID3D11InputLayout** ppInputLayout) @@ -146,7 +146,7 @@ public unsafe partial struct ID3D11Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[11]))((ID3D11Device*)Unsafe.AsPointer(ref this), pInputElementDescs, NumElements, pShaderBytecodeWithInputSignature, BytecodeLength, ppInputLayout); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(12)] public HResult CreateVertexShader(void* pShaderBytecode, nuint BytecodeLength, ID3D11ClassLinkage* pClassLinkage, ID3D11VertexShader** ppVertexShader) @@ -154,7 +154,7 @@ public unsafe partial struct ID3D11Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[12]))((ID3D11Device*)Unsafe.AsPointer(ref this), pShaderBytecode, BytecodeLength, pClassLinkage, ppVertexShader); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(13)] public HResult CreateGeometryShader(void* pShaderBytecode, nuint BytecodeLength, ID3D11ClassLinkage* pClassLinkage, ID3D11GeometryShader** ppGeometryShader) @@ -162,7 +162,7 @@ public unsafe partial struct ID3D11Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[13]))((ID3D11Device*)Unsafe.AsPointer(ref this), pShaderBytecode, BytecodeLength, pClassLinkage, ppGeometryShader); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(14)] public HResult CreateGeometryShaderWithStreamOutput(void* pShaderBytecode, nuint BytecodeLength, SODeclarationEntry* pSODeclaration, uint NumEntries, uint* pBufferStrides, uint NumStrides, uint RasterizedStream, ID3D11ClassLinkage* pClassLinkage, ID3D11GeometryShader** ppGeometryShader) @@ -170,7 +170,7 @@ public unsafe partial struct ID3D11Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[14]))((ID3D11Device*)Unsafe.AsPointer(ref this), pShaderBytecode, BytecodeLength, pSODeclaration, NumEntries, pBufferStrides, NumStrides, RasterizedStream, pClassLinkage, ppGeometryShader); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(15)] public HResult CreatePixelShader(void* pShaderBytecode, nuint BytecodeLength, ID3D11ClassLinkage* pClassLinkage, ID3D11PixelShader** ppPixelShader) @@ -178,7 +178,7 @@ public unsafe partial struct ID3D11Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[15]))((ID3D11Device*)Unsafe.AsPointer(ref this), pShaderBytecode, BytecodeLength, pClassLinkage, ppPixelShader); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(16)] public HResult CreateHullShader(void* pShaderBytecode, nuint BytecodeLength, ID3D11ClassLinkage* pClassLinkage, ID3D11HullShader** ppHullShader) @@ -186,7 +186,7 @@ public unsafe partial struct ID3D11Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[16]))((ID3D11Device*)Unsafe.AsPointer(ref this), pShaderBytecode, BytecodeLength, pClassLinkage, ppHullShader); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(17)] public HResult CreateDomainShader(void* pShaderBytecode, nuint BytecodeLength, ID3D11ClassLinkage* pClassLinkage, ID3D11DomainShader** ppDomainShader) @@ -194,7 +194,7 @@ public unsafe partial struct ID3D11Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[17]))((ID3D11Device*)Unsafe.AsPointer(ref this), pShaderBytecode, BytecodeLength, pClassLinkage, ppDomainShader); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(18)] public HResult CreateComputeShader(void* pShaderBytecode, nuint BytecodeLength, ID3D11ClassLinkage* pClassLinkage, ID3D11ComputeShader** ppComputeShader) @@ -202,7 +202,7 @@ public unsafe partial struct ID3D11Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[18]))((ID3D11Device*)Unsafe.AsPointer(ref this), pShaderBytecode, BytecodeLength, pClassLinkage, ppComputeShader); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(19)] public HResult CreateClassLinkage(ID3D11ClassLinkage** ppLinkage) @@ -210,7 +210,7 @@ public unsafe partial struct ID3D11Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[19]))((ID3D11Device*)Unsafe.AsPointer(ref this), ppLinkage); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(20)] public HResult CreateBlendState(BlendDescription* pBlendStateDesc, ID3D11BlendState** ppBlendState) @@ -218,7 +218,7 @@ public unsafe partial struct ID3D11Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[20]))((ID3D11Device*)Unsafe.AsPointer(ref this), pBlendStateDesc, ppBlendState); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(21)] public HResult CreateDepthStencilState(DepthStencilDescription* pDepthStencilDesc, ID3D11DepthStencilState** ppDepthStencilState) @@ -226,7 +226,7 @@ public unsafe partial struct ID3D11Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[21]))((ID3D11Device*)Unsafe.AsPointer(ref this), pDepthStencilDesc, ppDepthStencilState); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(22)] public HResult CreateRasterizerState(RasterizerDescription* pRasterizerDesc, ID3D11RasterizerState** ppRasterizerState) @@ -234,7 +234,7 @@ public unsafe partial struct ID3D11Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[22]))((ID3D11Device*)Unsafe.AsPointer(ref this), pRasterizerDesc, ppRasterizerState); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(23)] public HResult CreateSamplerState(SamplerDescription* pSamplerDesc, ID3D11SamplerState** ppSamplerState) @@ -242,7 +242,7 @@ public unsafe partial struct ID3D11Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[23]))((ID3D11Device*)Unsafe.AsPointer(ref this), pSamplerDesc, ppSamplerState); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(24)] public HResult CreateQuery(QueryDescription* pQueryDesc, ID3D11Query** ppQuery) @@ -250,7 +250,7 @@ public unsafe partial struct ID3D11Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[24]))((ID3D11Device*)Unsafe.AsPointer(ref this), pQueryDesc, ppQuery); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(25)] public HResult CreatePredicate(QueryDescription* pPredicateDesc, ID3D11Predicate** ppPredicate) @@ -258,7 +258,7 @@ public unsafe partial struct ID3D11Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[25]))((ID3D11Device*)Unsafe.AsPointer(ref this), pPredicateDesc, ppPredicate); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(26)] public HResult CreateCounter(CounterDescription* pCounterDesc, ID3D11Counter** ppCounter) @@ -266,7 +266,7 @@ public unsafe partial struct ID3D11Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[26]))((ID3D11Device*)Unsafe.AsPointer(ref this), pCounterDesc, ppCounter); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(27)] public HResult CreateDeferredContext(uint ContextFlags, ID3D11DeviceContext** ppDeferredContext) @@ -274,7 +274,7 @@ public unsafe partial struct ID3D11Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[27]))((ID3D11Device*)Unsafe.AsPointer(ref this), ContextFlags, ppDeferredContext); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(28)] public HResult OpenSharedResource(Handle hResource, Guid* ReturnedInterface, void** ppResource) @@ -282,7 +282,7 @@ public unsafe partial struct ID3D11Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[28]))((ID3D11Device*)Unsafe.AsPointer(ref this), hResource, ReturnedInterface, ppResource); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(29)] public HResult CheckFormatSupport(Graphics.Dxgi.Common.Format Format, uint* pFormatSupport) @@ -290,7 +290,7 @@ public unsafe partial struct ID3D11Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[29]))((ID3D11Device*)Unsafe.AsPointer(ref this), Format, pFormatSupport); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(30)] public HResult CheckMultisampleQualityLevels(Graphics.Dxgi.Common.Format Format, uint SampleCount, uint* pNumQualityLevels) @@ -298,7 +298,7 @@ public unsafe partial struct ID3D11Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[30]))((ID3D11Device*)Unsafe.AsPointer(ref this), Format, SampleCount, pNumQualityLevels); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(31)] public void CheckCounterInfo(CounterInfo* pCounterInfo) @@ -306,7 +306,7 @@ public unsafe partial struct ID3D11Device : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[31]))((ID3D11Device*)Unsafe.AsPointer(ref this), pCounterInfo); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(32)] public HResult CheckCounter(CounterDescription* pDesc, CounterType* pType, uint* pActiveCounters, byte* szName, uint* pNameLength, byte* szUnits, uint* pUnitsLength, byte* szDescription, uint* pDescriptionLength) @@ -314,7 +314,7 @@ public unsafe partial struct ID3D11Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[32]))((ID3D11Device*)Unsafe.AsPointer(ref this), pDesc, pType, pActiveCounters, szName, pNameLength, szUnits, pUnitsLength, szDescription, pDescriptionLength); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(33)] public HResult CheckFeatureSupport(Feature Feature, void* pFeatureSupportData, uint FeatureSupportDataSize) @@ -322,7 +322,7 @@ public unsafe partial struct ID3D11Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[33]))((ID3D11Device*)Unsafe.AsPointer(ref this), Feature, pFeatureSupportData, FeatureSupportDataSize); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(34)] public HResult GetPrivateData(Guid* guid, uint* pDataSize, void* pData) @@ -330,7 +330,7 @@ public unsafe partial struct ID3D11Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[34]))((ID3D11Device*)Unsafe.AsPointer(ref this), guid, pDataSize, pData); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(35)] public HResult SetPrivateData(Guid* guid, uint DataSize, void* pData) @@ -338,7 +338,7 @@ public unsafe partial struct ID3D11Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[35]))((ID3D11Device*)Unsafe.AsPointer(ref this), guid, DataSize, pData); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(36)] public HResult SetPrivateDataInterface(Guid* guid, IUnknown* pData) @@ -346,7 +346,7 @@ public unsafe partial struct ID3D11Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[36]))((ID3D11Device*)Unsafe.AsPointer(ref this), guid, pData); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(37)] public Graphics.Direct3D.FeatureLevel GetFeatureLevel() @@ -354,7 +354,7 @@ public unsafe partial struct ID3D11Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[37]))((ID3D11Device*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(38)] public uint GetCreationFlags() @@ -362,7 +362,7 @@ public unsafe partial struct ID3D11Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[38]))((ID3D11Device*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(39)] public HResult GetDeviceRemovedReason() @@ -370,7 +370,7 @@ public unsafe partial struct ID3D11Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[39]))((ID3D11Device*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(40)] public void GetImmediateContext(ID3D11DeviceContext** ppImmediateContext) @@ -378,7 +378,7 @@ public unsafe partial struct ID3D11Device : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[40]))((ID3D11Device*)Unsafe.AsPointer(ref this), ppImmediateContext); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(41)] public HResult SetExceptionMode(uint RaiseFlags) @@ -386,7 +386,7 @@ public unsafe partial struct ID3D11Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[41]))((ID3D11Device*)Unsafe.AsPointer(ref this), RaiseFlags); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(42)] public uint GetExceptionMode() diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11Device1.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11Device1.cs index ee4ef40..024f25a 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11Device1.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11Device1.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11Device1 [Guid("a04bfb29-08ef-43d6-a49c-a9bdbdcbe686")] [NativeTypeName("struct ID3D11Device1 : ID3D11Device")] @@ -394,7 +394,7 @@ public unsafe partial struct ID3D11Device1 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[42]))((ID3D11Device1*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(43)] public void GetImmediateContext1(ID3D11DeviceContext1** ppImmediateContext) @@ -402,7 +402,7 @@ public unsafe partial struct ID3D11Device1 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[43]))((ID3D11Device1*)Unsafe.AsPointer(ref this), ppImmediateContext); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(44)] public HResult CreateDeferredContext1(uint ContextFlags, ID3D11DeviceContext1** ppDeferredContext) @@ -410,7 +410,7 @@ public unsafe partial struct ID3D11Device1 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[44]))((ID3D11Device1*)Unsafe.AsPointer(ref this), ContextFlags, ppDeferredContext); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(45)] public HResult CreateBlendState1(BlendDescription1* pBlendStateDesc, ID3D11BlendState1** ppBlendState) @@ -418,7 +418,7 @@ public unsafe partial struct ID3D11Device1 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[45]))((ID3D11Device1*)Unsafe.AsPointer(ref this), pBlendStateDesc, ppBlendState); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(46)] public HResult CreateRasterizerState1(RasterizerDescription1* pRasterizerDesc, ID3D11RasterizerState1** ppRasterizerState) @@ -426,7 +426,7 @@ public unsafe partial struct ID3D11Device1 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[46]))((ID3D11Device1*)Unsafe.AsPointer(ref this), pRasterizerDesc, ppRasterizerState); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(47)] public HResult CreateDeviceContextState(uint Flags, Graphics.Direct3D.FeatureLevel* pFeatureLevels, uint FeatureLevels, uint SDKVersion, Guid* EmulatedInterface, Graphics.Direct3D.FeatureLevel* pChosenFeatureLevel, ID3DDeviceContextState** ppContextState) @@ -434,7 +434,7 @@ public unsafe partial struct ID3D11Device1 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[47]))((ID3D11Device1*)Unsafe.AsPointer(ref this), Flags, pFeatureLevels, FeatureLevels, SDKVersion, EmulatedInterface, pChosenFeatureLevel, ppContextState); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(48)] public HResult OpenSharedResource1(Handle hResource, Guid* returnedInterface, void** ppResource) @@ -442,7 +442,7 @@ public unsafe partial struct ID3D11Device1 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[48]))((ID3D11Device1*)Unsafe.AsPointer(ref this), hResource, returnedInterface, ppResource); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(49)] public HResult OpenSharedResourceByName(ushort* lpName, uint dwDesiredAccess, Guid* returnedInterface, void** ppResource) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11Device2.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11Device2.cs index 1be0d47..c45f63c 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11Device2.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11Device2.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11Device2 [Guid("9d06dffa-d1e5-4d07-83a8-1bb123f2f841")] [NativeTypeName("struct ID3D11Device2 : ID3D11Device1")] @@ -450,7 +450,7 @@ public unsafe partial struct ID3D11Device2 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[49]))((ID3D11Device2*)Unsafe.AsPointer(ref this), lpName, dwDesiredAccess, returnedInterface, ppResource); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(50)] public void GetImmediateContext2(ID3D11DeviceContext2** ppImmediateContext) @@ -458,7 +458,7 @@ public unsafe partial struct ID3D11Device2 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[50]))((ID3D11Device2*)Unsafe.AsPointer(ref this), ppImmediateContext); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(51)] public HResult CreateDeferredContext2(uint ContextFlags, ID3D11DeviceContext2** ppDeferredContext) @@ -466,7 +466,7 @@ public unsafe partial struct ID3D11Device2 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[51]))((ID3D11Device2*)Unsafe.AsPointer(ref this), ContextFlags, ppDeferredContext); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(52)] public void GetResourceTiling(ID3D11Resource* pTiledResource, uint* pNumTilesForEntireResource, PackedMipDescription* pPackedMipDesc, TileShape* pStandardTileShapeForNonPackedMips, uint* pNumSubresourceTilings, uint FirstSubresourceTilingToGet, SubresourceTiling* pSubresourceTilingsForNonPackedMips) @@ -474,7 +474,7 @@ public unsafe partial struct ID3D11Device2 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[52]))((ID3D11Device2*)Unsafe.AsPointer(ref this), pTiledResource, pNumTilesForEntireResource, pPackedMipDesc, pStandardTileShapeForNonPackedMips, pNumSubresourceTilings, FirstSubresourceTilingToGet, pSubresourceTilingsForNonPackedMips); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(53)] public HResult CheckMultisampleQualityLevels1(Graphics.Dxgi.Common.Format Format, uint SampleCount, uint Flags, uint* pNumQualityLevels) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11Device3.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11Device3.cs index 49d87bf..d2278b1 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11Device3.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11Device3.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11Device3 [Guid("a05c8c37-d2c6-4732-b3a0-9ce0b0dc9ae6")] [NativeTypeName("struct ID3D11Device3 : ID3D11Device2")] @@ -482,7 +482,7 @@ public unsafe partial struct ID3D11Device3 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[53]))((ID3D11Device3*)Unsafe.AsPointer(ref this), Format, SampleCount, Flags, pNumQualityLevels); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(54)] public HResult CreateTexture2D1(Texture2DDescription1* pDesc1, SubresourceData* pInitialData, ID3D11Texture2D1** ppTexture2D) @@ -490,7 +490,7 @@ public unsafe partial struct ID3D11Device3 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[54]))((ID3D11Device3*)Unsafe.AsPointer(ref this), pDesc1, pInitialData, ppTexture2D); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(55)] public HResult CreateTexture3D1(Texture3DDescription1* pDesc1, SubresourceData* pInitialData, ID3D11Texture3D1** ppTexture3D) @@ -498,7 +498,7 @@ public unsafe partial struct ID3D11Device3 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[55]))((ID3D11Device3*)Unsafe.AsPointer(ref this), pDesc1, pInitialData, ppTexture3D); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(56)] public HResult CreateRasterizerState2(RasterizerDescription2* pRasterizerDesc, ID3D11RasterizerState2** ppRasterizerState) @@ -506,7 +506,7 @@ public unsafe partial struct ID3D11Device3 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[56]))((ID3D11Device3*)Unsafe.AsPointer(ref this), pRasterizerDesc, ppRasterizerState); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(57)] public HResult CreateShaderResourceView1(ID3D11Resource* pResource, ShaderResourceViewDescription1* pDesc1, ID3D11ShaderResourceView1** ppSRView1) @@ -514,7 +514,7 @@ public unsafe partial struct ID3D11Device3 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[57]))((ID3D11Device3*)Unsafe.AsPointer(ref this), pResource, pDesc1, ppSRView1); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(58)] public HResult CreateUnorderedAccessView1(ID3D11Resource* pResource, UnorderedAccessViewDescription1* pDesc1, ID3D11UnorderedAccessView1** ppUAView1) @@ -522,7 +522,7 @@ public unsafe partial struct ID3D11Device3 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[58]))((ID3D11Device3*)Unsafe.AsPointer(ref this), pResource, pDesc1, ppUAView1); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(59)] public HResult CreateRenderTargetView1(ID3D11Resource* pResource, RenderTargetViewDescription1* pDesc1, ID3D11RenderTargetView1** ppRTView1) @@ -530,7 +530,7 @@ public unsafe partial struct ID3D11Device3 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[59]))((ID3D11Device3*)Unsafe.AsPointer(ref this), pResource, pDesc1, ppRTView1); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(60)] public HResult CreateQuery1(QueryDescription1* pQueryDesc1, ID3D11Query1** ppQuery1) @@ -538,7 +538,7 @@ public unsafe partial struct ID3D11Device3 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[60]))((ID3D11Device3*)Unsafe.AsPointer(ref this), pQueryDesc1, ppQuery1); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(61)] public void GetImmediateContext3(ID3D11DeviceContext3** ppImmediateContext) @@ -546,7 +546,7 @@ public unsafe partial struct ID3D11Device3 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[61]))((ID3D11Device3*)Unsafe.AsPointer(ref this), ppImmediateContext); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(62)] public HResult CreateDeferredContext3(uint ContextFlags, ID3D11DeviceContext3** ppDeferredContext) @@ -554,7 +554,7 @@ public unsafe partial struct ID3D11Device3 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[62]))((ID3D11Device3*)Unsafe.AsPointer(ref this), ContextFlags, ppDeferredContext); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(63)] public void WriteToSubresource(ID3D11Resource* pDstResource, uint DstSubresource, Box* pDstBox, void* pSrcData, uint SrcRowPitch, uint SrcDepthPitch) @@ -562,7 +562,7 @@ public unsafe partial struct ID3D11Device3 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[63]))((ID3D11Device3*)Unsafe.AsPointer(ref this), pDstResource, DstSubresource, pDstBox, pSrcData, SrcRowPitch, SrcDepthPitch); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(64)] public void ReadFromSubresource(void* pDstData, uint DstRowPitch, uint DstDepthPitch, ID3D11Resource* pSrcResource, uint SrcSubresource, Box* pSrcBox) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11Device4.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11Device4.cs index f4d7c6c..c7d8d4c 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11Device4.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11Device4.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11Device4 [Guid("8992ab71-02e6-4b8d-ba48-b056dcda42c4")] [NativeTypeName("struct ID3D11Device4 : ID3D11Device3")] @@ -570,7 +570,7 @@ public unsafe partial struct ID3D11Device4 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[64]))((ID3D11Device4*)Unsafe.AsPointer(ref this), pDstData, DstRowPitch, DstDepthPitch, pSrcResource, SrcSubresource, pSrcBox); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(65)] public HResult RegisterDeviceRemovedEvent(Handle hEvent, uint* pdwCookie) @@ -578,7 +578,7 @@ public unsafe partial struct ID3D11Device4 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[65]))((ID3D11Device4*)Unsafe.AsPointer(ref this), hEvent, pdwCookie); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(66)] public void UnregisterDeviceRemoved(uint dwCookie) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11Device5.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11Device5.cs index c9592ca..9d0684c 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11Device5.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11Device5.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11Device5 [Guid("8ffde202-a0e7-45df-9e01-e837801b5ea0")] [NativeTypeName("struct ID3D11Device5 : ID3D11Device4")] @@ -586,7 +586,7 @@ public unsafe partial struct ID3D11Device5 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[66]))((ID3D11Device5*)Unsafe.AsPointer(ref this), dwCookie); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(67)] public HResult OpenSharedFence(Handle hFence, Guid* ReturnedInterface, void** ppFence) @@ -594,7 +594,7 @@ public unsafe partial struct ID3D11Device5 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[67]))((ID3D11Device5*)Unsafe.AsPointer(ref this), hFence, ReturnedInterface, ppFence); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(68)] public HResult CreateFence(ulong InitialValue, FenceFlags Flags, Guid* ReturnedInterface, void** ppFence) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11DeviceChild.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11DeviceChild.cs index 3778a08..a39f820 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11DeviceChild.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11DeviceChild.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11DeviceChild [Guid("1841e5c8-16b0-489b-bcc8-44cfb0d5deae")] [NativeTypeName("struct ID3D11DeviceChild : IUnknown")] @@ -74,7 +74,7 @@ public unsafe partial struct ID3D11DeviceChild : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[2]))((IUnknown*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(3)] public void GetDevice(ID3D11Device** ppDevice) @@ -82,7 +82,7 @@ public unsafe partial struct ID3D11DeviceChild : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[3]))((ID3D11DeviceChild*)Unsafe.AsPointer(ref this), ppDevice); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(4)] public HResult GetPrivateData(Guid* guid, uint* pDataSize, void* pData) @@ -90,7 +90,7 @@ public unsafe partial struct ID3D11DeviceChild : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[4]))((ID3D11DeviceChild*)Unsafe.AsPointer(ref this), guid, pDataSize, pData); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(5)] public HResult SetPrivateData(Guid* guid, uint DataSize, void* pData) @@ -98,7 +98,7 @@ public unsafe partial struct ID3D11DeviceChild : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[5]))((ID3D11DeviceChild*)Unsafe.AsPointer(ref this), guid, DataSize, pData); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(6)] public HResult SetPrivateDataInterface(Guid* guid, IUnknown* pData) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11DeviceContext.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11DeviceContext.cs index b08731c..b9631c0 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11DeviceContext.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11DeviceContext.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11DeviceContext [Guid("c0bfa96c-e089-44fb-8eaf-26f8796190da")] [NativeTypeName("struct ID3D11DeviceContext : ID3D11DeviceChild")] @@ -106,7 +106,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[6]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), guid, pData); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(7)] public void VSSetConstantBuffers(uint StartSlot, uint NumBuffers, ID3D11Buffer** ppConstantBuffers) @@ -114,7 +114,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), StartSlot, NumBuffers, ppConstantBuffers); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public void PSSetShaderResources(uint StartSlot, uint NumViews, ID3D11ShaderResourceView** ppShaderResourceViews) @@ -122,7 +122,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[8]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), StartSlot, NumViews, ppShaderResourceViews); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(9)] public void PSSetShader(ID3D11PixelShader* pPixelShader, ID3D11ClassInstance** ppClassInstances, uint NumClassInstances) @@ -130,7 +130,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[9]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), pPixelShader, ppClassInstances, NumClassInstances); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(10)] public void PSSetSamplers(uint StartSlot, uint NumSamplers, ID3D11SamplerState** ppSamplers) @@ -138,7 +138,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[10]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), StartSlot, NumSamplers, ppSamplers); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(11)] public void VSSetShader(ID3D11VertexShader* pVertexShader, ID3D11ClassInstance** ppClassInstances, uint NumClassInstances) @@ -146,7 +146,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[11]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), pVertexShader, ppClassInstances, NumClassInstances); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(12)] public void DrawIndexed(uint IndexCount, uint StartIndexLocation, int BaseVertexLocation) @@ -154,7 +154,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[12]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), IndexCount, StartIndexLocation, BaseVertexLocation); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(13)] public void Draw(uint VertexCount, uint StartVertexLocation) @@ -162,7 +162,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[13]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), VertexCount, StartVertexLocation); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(14)] public HResult Map(ID3D11Resource* pResource, uint Subresource, MapMode MapType, MapFlags MapFlags, MappedSubresource* pMappedResource) @@ -170,7 +170,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[14]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), pResource, Subresource, MapType, MapFlags, pMappedResource); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(15)] public void Unmap(ID3D11Resource* pResource, uint Subresource) @@ -178,7 +178,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[15]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), pResource, Subresource); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(16)] public void PSSetConstantBuffers(uint StartSlot, uint NumBuffers, ID3D11Buffer** ppConstantBuffers) @@ -186,7 +186,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[16]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), StartSlot, NumBuffers, ppConstantBuffers); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(17)] public void IASetInputLayout(ID3D11InputLayout* pInputLayout) @@ -194,7 +194,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[17]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), pInputLayout); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(18)] public void IASetVertexBuffers(uint StartSlot, uint NumBuffers, ID3D11Buffer** ppVertexBuffers, uint* pStrides, uint* pOffsets) @@ -202,7 +202,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[18]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), StartSlot, NumBuffers, ppVertexBuffers, pStrides, pOffsets); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(19)] public void IASetIndexBuffer(ID3D11Buffer* pIndexBuffer, Graphics.Dxgi.Common.Format Format, uint Offset) @@ -210,7 +210,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[19]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), pIndexBuffer, Format, Offset); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(20)] public void DrawIndexedInstanced(uint IndexCountPerInstance, uint InstanceCount, uint StartIndexLocation, int BaseVertexLocation, uint StartInstanceLocation) @@ -218,7 +218,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[20]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), IndexCountPerInstance, InstanceCount, StartIndexLocation, BaseVertexLocation, StartInstanceLocation); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(21)] public void DrawInstanced(uint VertexCountPerInstance, uint InstanceCount, uint StartVertexLocation, uint StartInstanceLocation) @@ -226,7 +226,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[21]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), VertexCountPerInstance, InstanceCount, StartVertexLocation, StartInstanceLocation); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(22)] public void GSSetConstantBuffers(uint StartSlot, uint NumBuffers, ID3D11Buffer** ppConstantBuffers) @@ -234,7 +234,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[22]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), StartSlot, NumBuffers, ppConstantBuffers); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(23)] public void GSSetShader(ID3D11GeometryShader* pShader, ID3D11ClassInstance** ppClassInstances, uint NumClassInstances) @@ -242,7 +242,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[23]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), pShader, ppClassInstances, NumClassInstances); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(24)] public void IASetPrimitiveTopology(Graphics.Direct3D.PrimitiveTopology Topology) @@ -250,7 +250,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[24]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), Topology); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(25)] public void VSSetShaderResources(uint StartSlot, uint NumViews, ID3D11ShaderResourceView** ppShaderResourceViews) @@ -258,7 +258,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[25]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), StartSlot, NumViews, ppShaderResourceViews); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(26)] public void VSSetSamplers(uint StartSlot, uint NumSamplers, ID3D11SamplerState** ppSamplers) @@ -266,7 +266,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[26]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), StartSlot, NumSamplers, ppSamplers); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(27)] public void Begin(ID3D11Asynchronous* pAsync) @@ -274,7 +274,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[27]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), pAsync); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(28)] public void End(ID3D11Asynchronous* pAsync) @@ -282,7 +282,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[28]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), pAsync); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(29)] public HResult GetData(ID3D11Asynchronous* pAsync, void* pData, uint DataSize, uint GetDataFlags) @@ -290,7 +290,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[29]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), pAsync, pData, DataSize, GetDataFlags); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(30)] public void SetPredication(ID3D11Predicate* pPredicate, Bool32 PredicateValue) @@ -298,7 +298,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[30]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), pPredicate, PredicateValue); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(31)] public void GSSetShaderResources(uint StartSlot, uint NumViews, ID3D11ShaderResourceView** ppShaderResourceViews) @@ -306,7 +306,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[31]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), StartSlot, NumViews, ppShaderResourceViews); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(32)] public void GSSetSamplers(uint StartSlot, uint NumSamplers, ID3D11SamplerState** ppSamplers) @@ -314,7 +314,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[32]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), StartSlot, NumSamplers, ppSamplers); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(33)] public void OMSetRenderTargets(uint NumViews, ID3D11RenderTargetView** ppRenderTargetViews, ID3D11DepthStencilView* pDepthStencilView) @@ -322,7 +322,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[33]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), NumViews, ppRenderTargetViews, pDepthStencilView); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(34)] public void OMSetRenderTargetsAndUnorderedAccessViews(uint NumRTVs, ID3D11RenderTargetView** ppRenderTargetViews, ID3D11DepthStencilView* pDepthStencilView, uint UAVStartSlot, uint NumUAVs, ID3D11UnorderedAccessView** ppUnorderedAccessViews, uint* pUAVInitialCounts) @@ -330,7 +330,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[34]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), NumRTVs, ppRenderTargetViews, pDepthStencilView, UAVStartSlot, NumUAVs, ppUnorderedAccessViews, pUAVInitialCounts); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(35)] public void OMSetBlendState(ID3D11BlendState* pBlendState, float* BlendFactor, uint SampleMask) @@ -338,7 +338,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[35]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), pBlendState, BlendFactor, SampleMask); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(36)] public void OMSetDepthStencilState(ID3D11DepthStencilState* pDepthStencilState, uint StencilRef) @@ -346,7 +346,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[36]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), pDepthStencilState, StencilRef); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(37)] public void SOSetTargets(uint NumBuffers, ID3D11Buffer** ppSOTargets, uint* pOffsets) @@ -354,7 +354,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[37]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), NumBuffers, ppSOTargets, pOffsets); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(38)] public void DrawAuto() @@ -362,7 +362,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[38]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(39)] public void DrawIndexedInstancedIndirect(ID3D11Buffer* pBufferForArgs, uint AlignedByteOffsetForArgs) @@ -370,7 +370,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[39]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), pBufferForArgs, AlignedByteOffsetForArgs); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(40)] public void DrawInstancedIndirect(ID3D11Buffer* pBufferForArgs, uint AlignedByteOffsetForArgs) @@ -378,7 +378,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[40]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), pBufferForArgs, AlignedByteOffsetForArgs); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(41)] public void Dispatch(uint ThreadGroupCountX, uint ThreadGroupCountY, uint ThreadGroupCountZ) @@ -386,7 +386,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[41]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), ThreadGroupCountX, ThreadGroupCountY, ThreadGroupCountZ); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(42)] public void DispatchIndirect(ID3D11Buffer* pBufferForArgs, uint AlignedByteOffsetForArgs) @@ -394,7 +394,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[42]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), pBufferForArgs, AlignedByteOffsetForArgs); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(43)] public void RSSetState(ID3D11RasterizerState* pRasterizerState) @@ -402,7 +402,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[43]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), pRasterizerState); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(44)] public void RSSetViewports(uint NumViewports, Viewport* pViewports) @@ -410,7 +410,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[44]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), NumViewports, pViewports); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(45)] public void RSSetScissorRects(uint NumRects, RawRect* pRects) @@ -418,7 +418,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[45]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), NumRects, pRects); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(46)] public void CopySubresourceRegion(ID3D11Resource* pDstResource, uint DstSubresource, uint DstX, uint DstY, uint DstZ, ID3D11Resource* pSrcResource, uint SrcSubresource, Box* pSrcBox) @@ -426,7 +426,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[46]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), pDstResource, DstSubresource, DstX, DstY, DstZ, pSrcResource, SrcSubresource, pSrcBox); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(47)] public void CopyResource(ID3D11Resource* pDstResource, ID3D11Resource* pSrcResource) @@ -434,7 +434,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[47]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), pDstResource, pSrcResource); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(48)] public void UpdateSubresource(ID3D11Resource* pDstResource, uint DstSubresource, Box* pDstBox, void* pSrcData, uint SrcRowPitch, uint SrcDepthPitch) @@ -442,7 +442,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[48]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), pDstResource, DstSubresource, pDstBox, pSrcData, SrcRowPitch, SrcDepthPitch); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(49)] public void CopyStructureCount(ID3D11Buffer* pDstBuffer, uint DstAlignedByteOffset, ID3D11UnorderedAccessView* pSrcView) @@ -450,7 +450,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[49]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), pDstBuffer, DstAlignedByteOffset, pSrcView); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(50)] public void ClearRenderTargetView(ID3D11RenderTargetView* pRenderTargetView, float* ColorRGBA) @@ -458,7 +458,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[50]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), pRenderTargetView, ColorRGBA); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(51)] public void ClearUnorderedAccessViewUint(ID3D11UnorderedAccessView* pUnorderedAccessView, uint* Values) @@ -466,7 +466,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[51]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), pUnorderedAccessView, Values); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(52)] public void ClearUnorderedAccessViewFloat(ID3D11UnorderedAccessView* pUnorderedAccessView, float* Values) @@ -474,7 +474,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[52]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), pUnorderedAccessView, Values); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(53)] public void ClearDepthStencilView(ID3D11DepthStencilView* pDepthStencilView, ClearFlags ClearFlags, float Depth, byte Stencil) @@ -482,7 +482,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[53]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), pDepthStencilView, ClearFlags, Depth, Stencil); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(54)] public void GenerateMips(ID3D11ShaderResourceView* pShaderResourceView) @@ -490,7 +490,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[54]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), pShaderResourceView); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(55)] public void SetResourceMinLOD(ID3D11Resource* pResource, float MinLOD) @@ -498,7 +498,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[55]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), pResource, MinLOD); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(56)] public float GetResourceMinLOD(ID3D11Resource* pResource) @@ -506,7 +506,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[56]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), pResource); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(57)] public void ResolveSubresource(ID3D11Resource* pDstResource, uint DstSubresource, ID3D11Resource* pSrcResource, uint SrcSubresource, Graphics.Dxgi.Common.Format Format) @@ -514,7 +514,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[57]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), pDstResource, DstSubresource, pSrcResource, SrcSubresource, Format); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(58)] public void ExecuteCommandList(ID3D11CommandList* pCommandList, Bool32 RestoreContextState) @@ -522,7 +522,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[58]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), pCommandList, RestoreContextState); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(59)] public void HSSetShaderResources(uint StartSlot, uint NumViews, ID3D11ShaderResourceView** ppShaderResourceViews) @@ -530,7 +530,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[59]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), StartSlot, NumViews, ppShaderResourceViews); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(60)] public void HSSetShader(ID3D11HullShader* pHullShader, ID3D11ClassInstance** ppClassInstances, uint NumClassInstances) @@ -538,7 +538,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[60]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), pHullShader, ppClassInstances, NumClassInstances); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(61)] public void HSSetSamplers(uint StartSlot, uint NumSamplers, ID3D11SamplerState** ppSamplers) @@ -546,7 +546,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[61]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), StartSlot, NumSamplers, ppSamplers); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(62)] public void HSSetConstantBuffers(uint StartSlot, uint NumBuffers, ID3D11Buffer** ppConstantBuffers) @@ -554,7 +554,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[62]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), StartSlot, NumBuffers, ppConstantBuffers); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(63)] public void DSSetShaderResources(uint StartSlot, uint NumViews, ID3D11ShaderResourceView** ppShaderResourceViews) @@ -562,7 +562,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[63]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), StartSlot, NumViews, ppShaderResourceViews); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(64)] public void DSSetShader(ID3D11DomainShader* pDomainShader, ID3D11ClassInstance** ppClassInstances, uint NumClassInstances) @@ -570,7 +570,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[64]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), pDomainShader, ppClassInstances, NumClassInstances); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(65)] public void DSSetSamplers(uint StartSlot, uint NumSamplers, ID3D11SamplerState** ppSamplers) @@ -578,7 +578,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[65]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), StartSlot, NumSamplers, ppSamplers); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(66)] public void DSSetConstantBuffers(uint StartSlot, uint NumBuffers, ID3D11Buffer** ppConstantBuffers) @@ -586,7 +586,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[66]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), StartSlot, NumBuffers, ppConstantBuffers); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(67)] public void CSSetShaderResources(uint StartSlot, uint NumViews, ID3D11ShaderResourceView** ppShaderResourceViews) @@ -594,7 +594,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[67]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), StartSlot, NumViews, ppShaderResourceViews); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(68)] public void CSSetUnorderedAccessViews(uint StartSlot, uint NumUAVs, ID3D11UnorderedAccessView** ppUnorderedAccessViews, uint* pUAVInitialCounts) @@ -602,7 +602,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[68]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), StartSlot, NumUAVs, ppUnorderedAccessViews, pUAVInitialCounts); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(69)] public void CSSetShader(ID3D11ComputeShader* pComputeShader, ID3D11ClassInstance** ppClassInstances, uint NumClassInstances) @@ -610,7 +610,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[69]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), pComputeShader, ppClassInstances, NumClassInstances); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(70)] public void CSSetSamplers(uint StartSlot, uint NumSamplers, ID3D11SamplerState** ppSamplers) @@ -618,7 +618,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[70]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), StartSlot, NumSamplers, ppSamplers); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(71)] public void CSSetConstantBuffers(uint StartSlot, uint NumBuffers, ID3D11Buffer** ppConstantBuffers) @@ -626,7 +626,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[71]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), StartSlot, NumBuffers, ppConstantBuffers); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(72)] public void VSGetConstantBuffers(uint StartSlot, uint NumBuffers, ID3D11Buffer** ppConstantBuffers) @@ -634,7 +634,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[72]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), StartSlot, NumBuffers, ppConstantBuffers); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(73)] public void PSGetShaderResources(uint StartSlot, uint NumViews, ID3D11ShaderResourceView** ppShaderResourceViews) @@ -642,7 +642,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[73]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), StartSlot, NumViews, ppShaderResourceViews); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(74)] public void PSGetShader(ID3D11PixelShader** ppPixelShader, ID3D11ClassInstance** ppClassInstances, uint* pNumClassInstances) @@ -650,7 +650,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[74]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), ppPixelShader, ppClassInstances, pNumClassInstances); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(75)] public void PSGetSamplers(uint StartSlot, uint NumSamplers, ID3D11SamplerState** ppSamplers) @@ -658,7 +658,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[75]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), StartSlot, NumSamplers, ppSamplers); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(76)] public void VSGetShader(ID3D11VertexShader** ppVertexShader, ID3D11ClassInstance** ppClassInstances, uint* pNumClassInstances) @@ -666,7 +666,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[76]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), ppVertexShader, ppClassInstances, pNumClassInstances); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(77)] public void PSGetConstantBuffers(uint StartSlot, uint NumBuffers, ID3D11Buffer** ppConstantBuffers) @@ -674,7 +674,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[77]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), StartSlot, NumBuffers, ppConstantBuffers); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(78)] public void IAGetInputLayout(ID3D11InputLayout** ppInputLayout) @@ -682,7 +682,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[78]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), ppInputLayout); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(79)] public void IAGetVertexBuffers(uint StartSlot, uint NumBuffers, ID3D11Buffer** ppVertexBuffers, uint* pStrides, uint* pOffsets) @@ -690,7 +690,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[79]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), StartSlot, NumBuffers, ppVertexBuffers, pStrides, pOffsets); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(80)] public void IAGetIndexBuffer(ID3D11Buffer** pIndexBuffer, Graphics.Dxgi.Common.Format* Format, uint* Offset) @@ -698,7 +698,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[80]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), pIndexBuffer, Format, Offset); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(81)] public void GSGetConstantBuffers(uint StartSlot, uint NumBuffers, ID3D11Buffer** ppConstantBuffers) @@ -706,7 +706,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[81]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), StartSlot, NumBuffers, ppConstantBuffers); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(82)] public void GSGetShader(ID3D11GeometryShader** ppGeometryShader, ID3D11ClassInstance** ppClassInstances, uint* pNumClassInstances) @@ -714,7 +714,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[82]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), ppGeometryShader, ppClassInstances, pNumClassInstances); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(83)] public void IAGetPrimitiveTopology(Graphics.Direct3D.PrimitiveTopology* pTopology) @@ -722,7 +722,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[83]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), pTopology); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(84)] public void VSGetShaderResources(uint StartSlot, uint NumViews, ID3D11ShaderResourceView** ppShaderResourceViews) @@ -730,7 +730,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[84]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), StartSlot, NumViews, ppShaderResourceViews); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(85)] public void VSGetSamplers(uint StartSlot, uint NumSamplers, ID3D11SamplerState** ppSamplers) @@ -738,7 +738,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[85]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), StartSlot, NumSamplers, ppSamplers); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(86)] public void GetPredication(ID3D11Predicate** ppPredicate, Bool32* pPredicateValue) @@ -746,7 +746,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[86]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), ppPredicate, pPredicateValue); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(87)] public void GSGetShaderResources(uint StartSlot, uint NumViews, ID3D11ShaderResourceView** ppShaderResourceViews) @@ -754,7 +754,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[87]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), StartSlot, NumViews, ppShaderResourceViews); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(88)] public void GSGetSamplers(uint StartSlot, uint NumSamplers, ID3D11SamplerState** ppSamplers) @@ -762,7 +762,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[88]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), StartSlot, NumSamplers, ppSamplers); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(89)] public void OMGetRenderTargets(uint NumViews, ID3D11RenderTargetView** ppRenderTargetViews, ID3D11DepthStencilView** ppDepthStencilView) @@ -770,7 +770,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[89]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), NumViews, ppRenderTargetViews, ppDepthStencilView); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(90)] public void OMGetRenderTargetsAndUnorderedAccessViews(uint NumRTVs, ID3D11RenderTargetView** ppRenderTargetViews, ID3D11DepthStencilView** ppDepthStencilView, uint UAVStartSlot, uint NumUAVs, ID3D11UnorderedAccessView** ppUnorderedAccessViews) @@ -778,7 +778,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[90]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), NumRTVs, ppRenderTargetViews, ppDepthStencilView, UAVStartSlot, NumUAVs, ppUnorderedAccessViews); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(91)] public void OMGetBlendState(ID3D11BlendState** ppBlendState, float* BlendFactor, uint* pSampleMask) @@ -786,7 +786,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[91]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), ppBlendState, BlendFactor, pSampleMask); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(92)] public void OMGetDepthStencilState(ID3D11DepthStencilState** ppDepthStencilState, uint* pStencilRef) @@ -794,7 +794,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[92]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), ppDepthStencilState, pStencilRef); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(93)] public void SOGetTargets(uint NumBuffers, ID3D11Buffer** ppSOTargets) @@ -802,7 +802,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[93]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), NumBuffers, ppSOTargets); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(94)] public void RSGetState(ID3D11RasterizerState** ppRasterizerState) @@ -810,7 +810,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[94]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), ppRasterizerState); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(95)] public void RSGetViewports(uint* pNumViewports, Viewport* pViewports) @@ -818,7 +818,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[95]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), pNumViewports, pViewports); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(96)] public void RSGetScissorRects(uint* pNumRects, RawRect* pRects) @@ -826,7 +826,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[96]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), pNumRects, pRects); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(97)] public void HSGetShaderResources(uint StartSlot, uint NumViews, ID3D11ShaderResourceView** ppShaderResourceViews) @@ -834,7 +834,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[97]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), StartSlot, NumViews, ppShaderResourceViews); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(98)] public void HSGetShader(ID3D11HullShader** ppHullShader, ID3D11ClassInstance** ppClassInstances, uint* pNumClassInstances) @@ -842,7 +842,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[98]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), ppHullShader, ppClassInstances, pNumClassInstances); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(99)] public void HSGetSamplers(uint StartSlot, uint NumSamplers, ID3D11SamplerState** ppSamplers) @@ -850,7 +850,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[99]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), StartSlot, NumSamplers, ppSamplers); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(100)] public void HSGetConstantBuffers(uint StartSlot, uint NumBuffers, ID3D11Buffer** ppConstantBuffers) @@ -858,7 +858,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[100]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), StartSlot, NumBuffers, ppConstantBuffers); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(101)] public void DSGetShaderResources(uint StartSlot, uint NumViews, ID3D11ShaderResourceView** ppShaderResourceViews) @@ -866,7 +866,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[101]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), StartSlot, NumViews, ppShaderResourceViews); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(102)] public void DSGetShader(ID3D11DomainShader** ppDomainShader, ID3D11ClassInstance** ppClassInstances, uint* pNumClassInstances) @@ -874,7 +874,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[102]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), ppDomainShader, ppClassInstances, pNumClassInstances); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(103)] public void DSGetSamplers(uint StartSlot, uint NumSamplers, ID3D11SamplerState** ppSamplers) @@ -882,7 +882,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[103]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), StartSlot, NumSamplers, ppSamplers); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(104)] public void DSGetConstantBuffers(uint StartSlot, uint NumBuffers, ID3D11Buffer** ppConstantBuffers) @@ -890,7 +890,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[104]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), StartSlot, NumBuffers, ppConstantBuffers); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(105)] public void CSGetShaderResources(uint StartSlot, uint NumViews, ID3D11ShaderResourceView** ppShaderResourceViews) @@ -898,7 +898,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[105]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), StartSlot, NumViews, ppShaderResourceViews); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(106)] public void CSGetUnorderedAccessViews(uint StartSlot, uint NumUAVs, ID3D11UnorderedAccessView** ppUnorderedAccessViews) @@ -906,7 +906,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[106]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), StartSlot, NumUAVs, ppUnorderedAccessViews); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(107)] public void CSGetShader(ID3D11ComputeShader** ppComputeShader, ID3D11ClassInstance** ppClassInstances, uint* pNumClassInstances) @@ -914,7 +914,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[107]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), ppComputeShader, ppClassInstances, pNumClassInstances); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(108)] public void CSGetSamplers(uint StartSlot, uint NumSamplers, ID3D11SamplerState** ppSamplers) @@ -922,7 +922,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[108]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), StartSlot, NumSamplers, ppSamplers); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(109)] public void CSGetConstantBuffers(uint StartSlot, uint NumBuffers, ID3D11Buffer** ppConstantBuffers) @@ -930,7 +930,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[109]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this), StartSlot, NumBuffers, ppConstantBuffers); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(110)] public void ClearState() @@ -938,7 +938,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[110]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(111)] public void Flush() @@ -946,7 +946,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[111]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(112)] public new DeviceContextType GetType() @@ -954,7 +954,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[112]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(113)] public uint GetContextFlags() @@ -962,7 +962,7 @@ public unsafe partial struct ID3D11DeviceContext : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[113]))((ID3D11DeviceContext*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(114)] public HResult FinishCommandList(Bool32 RestoreDeferredContextState, ID3D11CommandList** ppCommandList) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11DeviceContext1.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11DeviceContext1.cs index a112150..7adbb2a 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11DeviceContext1.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11DeviceContext1.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11DeviceContext1 [Guid("bb2c6faa-b5fb-4082-8e6b-388b8cfa90e1")] [NativeTypeName("struct ID3D11DeviceContext1 : ID3D11DeviceContext")] @@ -970,7 +970,7 @@ public unsafe partial struct ID3D11DeviceContext1 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[114]))((ID3D11DeviceContext1*)Unsafe.AsPointer(ref this), RestoreDeferredContextState, ppCommandList); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(115)] public void CopySubresourceRegion1(ID3D11Resource* pDstResource, uint DstSubresource, uint DstX, uint DstY, uint DstZ, ID3D11Resource* pSrcResource, uint SrcSubresource, Box* pSrcBox, uint CopyFlags) @@ -978,7 +978,7 @@ public unsafe partial struct ID3D11DeviceContext1 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[115]))((ID3D11DeviceContext1*)Unsafe.AsPointer(ref this), pDstResource, DstSubresource, DstX, DstY, DstZ, pSrcResource, SrcSubresource, pSrcBox, CopyFlags); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(116)] public void UpdateSubresource1(ID3D11Resource* pDstResource, uint DstSubresource, Box* pDstBox, void* pSrcData, uint SrcRowPitch, uint SrcDepthPitch, uint CopyFlags) @@ -986,7 +986,7 @@ public unsafe partial struct ID3D11DeviceContext1 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[116]))((ID3D11DeviceContext1*)Unsafe.AsPointer(ref this), pDstResource, DstSubresource, pDstBox, pSrcData, SrcRowPitch, SrcDepthPitch, CopyFlags); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(117)] public void DiscardResource(ID3D11Resource* pResource) @@ -994,7 +994,7 @@ public unsafe partial struct ID3D11DeviceContext1 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[117]))((ID3D11DeviceContext1*)Unsafe.AsPointer(ref this), pResource); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(118)] public void DiscardView(ID3D11View* pResourceView) @@ -1002,7 +1002,7 @@ public unsafe partial struct ID3D11DeviceContext1 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[118]))((ID3D11DeviceContext1*)Unsafe.AsPointer(ref this), pResourceView); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(119)] public void VSSetConstantBuffers1(uint StartSlot, uint NumBuffers, ID3D11Buffer** ppConstantBuffers, uint* pFirstConstant, uint* pNumConstants) @@ -1010,7 +1010,7 @@ public unsafe partial struct ID3D11DeviceContext1 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[119]))((ID3D11DeviceContext1*)Unsafe.AsPointer(ref this), StartSlot, NumBuffers, ppConstantBuffers, pFirstConstant, pNumConstants); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(120)] public void HSSetConstantBuffers1(uint StartSlot, uint NumBuffers, ID3D11Buffer** ppConstantBuffers, uint* pFirstConstant, uint* pNumConstants) @@ -1018,7 +1018,7 @@ public unsafe partial struct ID3D11DeviceContext1 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[120]))((ID3D11DeviceContext1*)Unsafe.AsPointer(ref this), StartSlot, NumBuffers, ppConstantBuffers, pFirstConstant, pNumConstants); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(121)] public void DSSetConstantBuffers1(uint StartSlot, uint NumBuffers, ID3D11Buffer** ppConstantBuffers, uint* pFirstConstant, uint* pNumConstants) @@ -1026,7 +1026,7 @@ public unsafe partial struct ID3D11DeviceContext1 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[121]))((ID3D11DeviceContext1*)Unsafe.AsPointer(ref this), StartSlot, NumBuffers, ppConstantBuffers, pFirstConstant, pNumConstants); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(122)] public void GSSetConstantBuffers1(uint StartSlot, uint NumBuffers, ID3D11Buffer** ppConstantBuffers, uint* pFirstConstant, uint* pNumConstants) @@ -1034,7 +1034,7 @@ public unsafe partial struct ID3D11DeviceContext1 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[122]))((ID3D11DeviceContext1*)Unsafe.AsPointer(ref this), StartSlot, NumBuffers, ppConstantBuffers, pFirstConstant, pNumConstants); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(123)] public void PSSetConstantBuffers1(uint StartSlot, uint NumBuffers, ID3D11Buffer** ppConstantBuffers, uint* pFirstConstant, uint* pNumConstants) @@ -1042,7 +1042,7 @@ public unsafe partial struct ID3D11DeviceContext1 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[123]))((ID3D11DeviceContext1*)Unsafe.AsPointer(ref this), StartSlot, NumBuffers, ppConstantBuffers, pFirstConstant, pNumConstants); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(124)] public void CSSetConstantBuffers1(uint StartSlot, uint NumBuffers, ID3D11Buffer** ppConstantBuffers, uint* pFirstConstant, uint* pNumConstants) @@ -1050,7 +1050,7 @@ public unsafe partial struct ID3D11DeviceContext1 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[124]))((ID3D11DeviceContext1*)Unsafe.AsPointer(ref this), StartSlot, NumBuffers, ppConstantBuffers, pFirstConstant, pNumConstants); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(125)] public void VSGetConstantBuffers1(uint StartSlot, uint NumBuffers, ID3D11Buffer** ppConstantBuffers, uint* pFirstConstant, uint* pNumConstants) @@ -1058,7 +1058,7 @@ public unsafe partial struct ID3D11DeviceContext1 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[125]))((ID3D11DeviceContext1*)Unsafe.AsPointer(ref this), StartSlot, NumBuffers, ppConstantBuffers, pFirstConstant, pNumConstants); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(126)] public void HSGetConstantBuffers1(uint StartSlot, uint NumBuffers, ID3D11Buffer** ppConstantBuffers, uint* pFirstConstant, uint* pNumConstants) @@ -1066,7 +1066,7 @@ public unsafe partial struct ID3D11DeviceContext1 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[126]))((ID3D11DeviceContext1*)Unsafe.AsPointer(ref this), StartSlot, NumBuffers, ppConstantBuffers, pFirstConstant, pNumConstants); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(127)] public void DSGetConstantBuffers1(uint StartSlot, uint NumBuffers, ID3D11Buffer** ppConstantBuffers, uint* pFirstConstant, uint* pNumConstants) @@ -1074,7 +1074,7 @@ public unsafe partial struct ID3D11DeviceContext1 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[127]))((ID3D11DeviceContext1*)Unsafe.AsPointer(ref this), StartSlot, NumBuffers, ppConstantBuffers, pFirstConstant, pNumConstants); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(128)] public void GSGetConstantBuffers1(uint StartSlot, uint NumBuffers, ID3D11Buffer** ppConstantBuffers, uint* pFirstConstant, uint* pNumConstants) @@ -1082,7 +1082,7 @@ public unsafe partial struct ID3D11DeviceContext1 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[128]))((ID3D11DeviceContext1*)Unsafe.AsPointer(ref this), StartSlot, NumBuffers, ppConstantBuffers, pFirstConstant, pNumConstants); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(129)] public void PSGetConstantBuffers1(uint StartSlot, uint NumBuffers, ID3D11Buffer** ppConstantBuffers, uint* pFirstConstant, uint* pNumConstants) @@ -1090,7 +1090,7 @@ public unsafe partial struct ID3D11DeviceContext1 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[129]))((ID3D11DeviceContext1*)Unsafe.AsPointer(ref this), StartSlot, NumBuffers, ppConstantBuffers, pFirstConstant, pNumConstants); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(130)] public void CSGetConstantBuffers1(uint StartSlot, uint NumBuffers, ID3D11Buffer** ppConstantBuffers, uint* pFirstConstant, uint* pNumConstants) @@ -1098,7 +1098,7 @@ public unsafe partial struct ID3D11DeviceContext1 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[130]))((ID3D11DeviceContext1*)Unsafe.AsPointer(ref this), StartSlot, NumBuffers, ppConstantBuffers, pFirstConstant, pNumConstants); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(131)] public void SwapDeviceContextState(ID3DDeviceContextState* pState, ID3DDeviceContextState** ppPreviousState) @@ -1106,7 +1106,7 @@ public unsafe partial struct ID3D11DeviceContext1 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[131]))((ID3D11DeviceContext1*)Unsafe.AsPointer(ref this), pState, ppPreviousState); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(132)] public void ClearView(ID3D11View* pView, float* Color, RawRect* pRect, uint NumRects) @@ -1114,7 +1114,7 @@ public unsafe partial struct ID3D11DeviceContext1 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[132]))((ID3D11DeviceContext1*)Unsafe.AsPointer(ref this), pView, Color, pRect, NumRects); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(133)] public void DiscardView1(ID3D11View* pResourceView, RawRect* pRects, uint NumRects) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11DeviceContext2.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11DeviceContext2.cs index 5658190..c862695 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11DeviceContext2.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11DeviceContext2.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11DeviceContext2 [Guid("420d5b32-b90c-4da4-bef0-359f6a24a83a")] [NativeTypeName("struct ID3D11DeviceContext2 : ID3D11DeviceContext1")] @@ -1122,7 +1122,7 @@ public unsafe partial struct ID3D11DeviceContext2 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[133]))((ID3D11DeviceContext2*)Unsafe.AsPointer(ref this), pResourceView, pRects, NumRects); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(134)] public HResult UpdateTileMappings(ID3D11Resource* pTiledResource, uint NumTiledResourceRegions, TiledResourceCoordinate* pTiledResourceRegionStartCoordinates, TileRegionSize* pTiledResourceRegionSizes, ID3D11Buffer* pTilePool, uint NumRanges, uint* pRangeFlags, uint* pTilePoolStartOffsets, uint* pRangeTileCounts, uint Flags) @@ -1130,7 +1130,7 @@ public unsafe partial struct ID3D11DeviceContext2 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[134]))((ID3D11DeviceContext2*)Unsafe.AsPointer(ref this), pTiledResource, NumTiledResourceRegions, pTiledResourceRegionStartCoordinates, pTiledResourceRegionSizes, pTilePool, NumRanges, pRangeFlags, pTilePoolStartOffsets, pRangeTileCounts, Flags); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(135)] public HResult CopyTileMappings(ID3D11Resource* pDestTiledResource, TiledResourceCoordinate* pDestRegionStartCoordinate, ID3D11Resource* pSourceTiledResource, TiledResourceCoordinate* pSourceRegionStartCoordinate, TileRegionSize* pTileRegionSize, uint Flags) @@ -1138,7 +1138,7 @@ public unsafe partial struct ID3D11DeviceContext2 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[135]))((ID3D11DeviceContext2*)Unsafe.AsPointer(ref this), pDestTiledResource, pDestRegionStartCoordinate, pSourceTiledResource, pSourceRegionStartCoordinate, pTileRegionSize, Flags); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(136)] public void CopyTiles(ID3D11Resource* pTiledResource, TiledResourceCoordinate* pTileRegionStartCoordinate, TileRegionSize* pTileRegionSize, ID3D11Buffer* pBuffer, ulong BufferStartOffsetInBytes, uint Flags) @@ -1146,7 +1146,7 @@ public unsafe partial struct ID3D11DeviceContext2 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[136]))((ID3D11DeviceContext2*)Unsafe.AsPointer(ref this), pTiledResource, pTileRegionStartCoordinate, pTileRegionSize, pBuffer, BufferStartOffsetInBytes, Flags); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(137)] public void UpdateTiles(ID3D11Resource* pDestTiledResource, TiledResourceCoordinate* pDestTileRegionStartCoordinate, TileRegionSize* pDestTileRegionSize, void* pSourceTileData, uint Flags) @@ -1154,7 +1154,7 @@ public unsafe partial struct ID3D11DeviceContext2 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[137]))((ID3D11DeviceContext2*)Unsafe.AsPointer(ref this), pDestTiledResource, pDestTileRegionStartCoordinate, pDestTileRegionSize, pSourceTileData, Flags); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(138)] public HResult ResizeTilePool(ID3D11Buffer* pTilePool, ulong NewSizeInBytes) @@ -1162,7 +1162,7 @@ public unsafe partial struct ID3D11DeviceContext2 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[138]))((ID3D11DeviceContext2*)Unsafe.AsPointer(ref this), pTilePool, NewSizeInBytes); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(139)] public void TiledResourceBarrier(ID3D11DeviceChild* pTiledResourceOrViewAccessBeforeBarrier, ID3D11DeviceChild* pTiledResourceOrViewAccessAfterBarrier) @@ -1170,7 +1170,7 @@ public unsafe partial struct ID3D11DeviceContext2 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[139]))((ID3D11DeviceContext2*)Unsafe.AsPointer(ref this), pTiledResourceOrViewAccessBeforeBarrier, pTiledResourceOrViewAccessAfterBarrier); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(140)] public Bool32 IsAnnotationEnabled() @@ -1178,7 +1178,7 @@ public unsafe partial struct ID3D11DeviceContext2 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[140]))((ID3D11DeviceContext2*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(141)] public void SetMarkerInt(ushort* pLabel, int Data) @@ -1186,7 +1186,7 @@ public unsafe partial struct ID3D11DeviceContext2 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[141]))((ID3D11DeviceContext2*)Unsafe.AsPointer(ref this), pLabel, Data); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(142)] public void BeginEventInt(ushort* pLabel, int Data) @@ -1194,7 +1194,7 @@ public unsafe partial struct ID3D11DeviceContext2 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[142]))((ID3D11DeviceContext2*)Unsafe.AsPointer(ref this), pLabel, Data); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(143)] public void EndEvent() diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11DeviceContext3.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11DeviceContext3.cs index 08f20a9..05fe4cb 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11DeviceContext3.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11DeviceContext3.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11DeviceContext3 [Guid("b4e3c01d-e79e-4637-91b2-510e9f4c9b8f")] [NativeTypeName("struct ID3D11DeviceContext3 : ID3D11DeviceContext2")] @@ -1202,7 +1202,7 @@ public unsafe partial struct ID3D11DeviceContext3 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[143]))((ID3D11DeviceContext3*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(144)] public void Flush1(ContextType ContextType, Handle hEvent) @@ -1210,7 +1210,7 @@ public unsafe partial struct ID3D11DeviceContext3 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[144]))((ID3D11DeviceContext3*)Unsafe.AsPointer(ref this), ContextType, hEvent); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(145)] public void SetHardwareProtectionState(Bool32 HwProtectionEnable) @@ -1218,7 +1218,7 @@ public unsafe partial struct ID3D11DeviceContext3 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[145]))((ID3D11DeviceContext3*)Unsafe.AsPointer(ref this), HwProtectionEnable); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(146)] public void GetHardwareProtectionState(Bool32* pHwProtectionEnable) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11DeviceContext4.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11DeviceContext4.cs index 6bee9f2..5877a09 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11DeviceContext4.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11DeviceContext4.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11DeviceContext4 [Guid("917600da-f58c-4c33-98d8-3e15b390fa24")] [NativeTypeName("struct ID3D11DeviceContext4 : ID3D11DeviceContext3")] @@ -1226,7 +1226,7 @@ public unsafe partial struct ID3D11DeviceContext4 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[146]))((ID3D11DeviceContext4*)Unsafe.AsPointer(ref this), pHwProtectionEnable); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(147)] public HResult Signal(ID3D11Fence* pFence, ulong Value) @@ -1234,7 +1234,7 @@ public unsafe partial struct ID3D11DeviceContext4 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[147]))((ID3D11DeviceContext4*)Unsafe.AsPointer(ref this), pFence, Value); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(148)] public HResult Wait(ID3D11Fence* pFence, ulong Value) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11DomainShader.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11DomainShader.cs index c1c3a3c..9a03d02 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11DomainShader.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11DomainShader.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11DomainShader [Guid("f582c508-0f36-490c-9977-31eece268cfa")] [NativeTypeName("struct ID3D11DomainShader : ID3D11DeviceChild")] diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11Fence.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11Fence.cs index f80f047..5852a7d 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11Fence.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11Fence.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11Fence [Guid("affde9d1-1df7-4bb7-8a34-0f46251dab80")] [NativeTypeName("struct ID3D11Fence : ID3D11DeviceChild")] @@ -106,7 +106,7 @@ public unsafe partial struct ID3D11Fence : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[6]))((ID3D11Fence*)Unsafe.AsPointer(ref this), guid, pData); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(7)] public HResult CreateSharedHandle(Security.SECURITY_ATTRIBUTES* pAttributes, uint dwAccess, ushort* lpName, Handle* pHandle) @@ -114,7 +114,7 @@ public unsafe partial struct ID3D11Fence : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D11Fence*)Unsafe.AsPointer(ref this), pAttributes, dwAccess, lpName, pHandle); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public ulong GetCompletedValue() @@ -122,7 +122,7 @@ public unsafe partial struct ID3D11Fence : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[8]))((ID3D11Fence*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(9)] public HResult SetEventOnCompletion(ulong Value, Handle hEvent) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11FunctionLinkingGraph.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11FunctionLinkingGraph.cs index 922c3e5..eb5abeb 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11FunctionLinkingGraph.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11FunctionLinkingGraph.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11FunctionLinkingGraph [Guid("54133220-1ce8-43d3-8236-9855c5ceecff")] [NativeTypeName("struct ID3D11FunctionLinkingGraph : IUnknown")] @@ -74,7 +74,7 @@ public unsafe partial struct ID3D11FunctionLinkingGraph : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[2]))((IUnknown*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(3)] public HResult CreateModuleInstance(ID3D11ModuleInstance** ppModuleInstance, Graphics.Direct3D.ID3DBlob** ppErrorBuffer) @@ -82,7 +82,7 @@ public unsafe partial struct ID3D11FunctionLinkingGraph : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[3]))((ID3D11FunctionLinkingGraph*)Unsafe.AsPointer(ref this), ppModuleInstance, ppErrorBuffer); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(4)] public HResult SetInputSignature(ParameterDescription* pInputParameters, uint cInputParameters, ID3D11LinkingNode** ppInputNode) @@ -90,7 +90,7 @@ public unsafe partial struct ID3D11FunctionLinkingGraph : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[4]))((ID3D11FunctionLinkingGraph*)Unsafe.AsPointer(ref this), pInputParameters, cInputParameters, ppInputNode); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(5)] public HResult SetOutputSignature(ParameterDescription* pOutputParameters, uint cOutputParameters, ID3D11LinkingNode** ppOutputNode) @@ -98,7 +98,7 @@ public unsafe partial struct ID3D11FunctionLinkingGraph : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[5]))((ID3D11FunctionLinkingGraph*)Unsafe.AsPointer(ref this), pOutputParameters, cOutputParameters, ppOutputNode); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(6)] public HResult CallFunction(sbyte* pModuleInstanceNamespace, ID3D11Module* pModuleWithFunctionPrototype, sbyte* pFunctionName, ID3D11LinkingNode** ppCallNode) @@ -106,7 +106,7 @@ public unsafe partial struct ID3D11FunctionLinkingGraph : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[6]))((ID3D11FunctionLinkingGraph*)Unsafe.AsPointer(ref this), pModuleInstanceNamespace, pModuleWithFunctionPrototype, pFunctionName, ppCallNode); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(7)] public HResult PassValue(ID3D11LinkingNode* pSrcNode, int SrcParameterIndex, ID3D11LinkingNode* pDstNode, int DstParameterIndex) @@ -114,7 +114,7 @@ public unsafe partial struct ID3D11FunctionLinkingGraph : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D11FunctionLinkingGraph*)Unsafe.AsPointer(ref this), pSrcNode, SrcParameterIndex, pDstNode, DstParameterIndex); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public HResult PassValueWithSwizzle(ID3D11LinkingNode* pSrcNode, int SrcParameterIndex, sbyte* pSrcSwizzle, ID3D11LinkingNode* pDstNode, int DstParameterIndex, sbyte* pDstSwizzle) @@ -122,7 +122,7 @@ public unsafe partial struct ID3D11FunctionLinkingGraph : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[8]))((ID3D11FunctionLinkingGraph*)Unsafe.AsPointer(ref this), pSrcNode, SrcParameterIndex, pSrcSwizzle, pDstNode, DstParameterIndex, pDstSwizzle); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(9)] public HResult GetLastError(Graphics.Direct3D.ID3DBlob** ppErrorBuffer) @@ -130,7 +130,7 @@ public unsafe partial struct ID3D11FunctionLinkingGraph : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[9]))((ID3D11FunctionLinkingGraph*)Unsafe.AsPointer(ref this), ppErrorBuffer); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(10)] public HResult GenerateHlsl(uint uFlags, Graphics.Direct3D.ID3DBlob** ppBuffer) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11FunctionParameterReflection.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11FunctionParameterReflection.cs index ff414ae..5418e4b 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11FunctionParameterReflection.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11FunctionParameterReflection.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11FunctionParameterReflection [Guid("42757488-334f-47fe-982e-1a65d08cc462")] public unsafe partial struct ID3D11FunctionParameterReflection : INativeGuid @@ -46,7 +46,7 @@ public unsafe partial struct ID3D11FunctionParameterReflection : INativeGuid public void** lpVtbl; - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(0)] public HResult GetDesc(ParameterDescription* pDesc) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11FunctionReflection.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11FunctionReflection.cs index 9da968d..b150739 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11FunctionReflection.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11FunctionReflection.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11FunctionReflection [Guid("207bcecb-d683-4a06-a8a3-9b149b9f73a4")] public unsafe partial struct ID3D11FunctionReflection : INativeGuid @@ -46,7 +46,7 @@ public unsafe partial struct ID3D11FunctionReflection : INativeGuid public void** lpVtbl; - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(0)] public HResult GetDesc(FunctionDescription* pDesc) @@ -54,7 +54,7 @@ public unsafe partial struct ID3D11FunctionReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[0]))((ID3D11FunctionReflection*)Unsafe.AsPointer(ref this), pDesc); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(1)] public ID3D11ShaderReflectionConstantBuffer GetConstantBufferByIndex(uint BufferIndex) @@ -62,7 +62,7 @@ public unsafe partial struct ID3D11FunctionReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[1]))((ID3D11FunctionReflection*)Unsafe.AsPointer(ref this), BufferIndex); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(2)] public ID3D11ShaderReflectionConstantBuffer GetConstantBufferByName(sbyte* Name) @@ -70,7 +70,7 @@ public unsafe partial struct ID3D11FunctionReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[2]))((ID3D11FunctionReflection*)Unsafe.AsPointer(ref this), Name); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(3)] public HResult GetResourceBindingDesc(uint ResourceIndex, ShaderInputBindDescription* pDesc) @@ -78,7 +78,7 @@ public unsafe partial struct ID3D11FunctionReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[3]))((ID3D11FunctionReflection*)Unsafe.AsPointer(ref this), ResourceIndex, pDesc); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(4)] public ID3D11ShaderReflectionVariable GetVariableByName(sbyte* Name) @@ -86,7 +86,7 @@ public unsafe partial struct ID3D11FunctionReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[4]))((ID3D11FunctionReflection*)Unsafe.AsPointer(ref this), Name); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(5)] public HResult GetResourceBindingDescByName(sbyte* Name, ShaderInputBindDescription* pDesc) @@ -94,7 +94,7 @@ public unsafe partial struct ID3D11FunctionReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[5]))((ID3D11FunctionReflection*)Unsafe.AsPointer(ref this), Name, pDesc); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(6)] public ID3D11FunctionParameterReflection GetFunctionParameter(int ParameterIndex) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11GeometryShader.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11GeometryShader.cs index 27a90c6..b557ccd 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11GeometryShader.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11GeometryShader.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11GeometryShader [Guid("38325b96-effb-4022-ba02-2e795b70275c")] [NativeTypeName("struct ID3D11GeometryShader : ID3D11DeviceChild")] diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11HullShader.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11HullShader.cs index 6f5dbb0..562342b 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11HullShader.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11HullShader.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11HullShader [Guid("8e5c6061-628a-4c8e-8264-bbe45cb3d5dd")] [NativeTypeName("struct ID3D11HullShader : ID3D11DeviceChild")] diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11InfoQueue.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11InfoQueue.cs index 8876bdb..0ca6ebd 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11InfoQueue.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11InfoQueue.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11InfoQueue [Guid("6543dbb6-1b48-42f5-ab82-e97ec74326f6")] [NativeTypeName("struct ID3D11InfoQueue : IUnknown")] @@ -74,7 +74,7 @@ public unsafe partial struct ID3D11InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[2]))((IUnknown*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(3)] public HResult SetMessageCountLimit(ulong MessageCountLimit) @@ -82,7 +82,7 @@ public unsafe partial struct ID3D11InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[3]))((ID3D11InfoQueue*)Unsafe.AsPointer(ref this), MessageCountLimit); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(4)] public void ClearStoredMessages() @@ -90,7 +90,7 @@ public unsafe partial struct ID3D11InfoQueue : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[4]))((ID3D11InfoQueue*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(5)] public HResult GetMessage(ulong MessageIndex, Message* pMessage, nuint* pMessageByteLength) @@ -98,7 +98,7 @@ public unsafe partial struct ID3D11InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[5]))((ID3D11InfoQueue*)Unsafe.AsPointer(ref this), MessageIndex, pMessage, pMessageByteLength); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(6)] public ulong GetNumMessagesAllowedByStorageFilter() @@ -106,7 +106,7 @@ public unsafe partial struct ID3D11InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[6]))((ID3D11InfoQueue*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(7)] public ulong GetNumMessagesDeniedByStorageFilter() @@ -114,7 +114,7 @@ public unsafe partial struct ID3D11InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D11InfoQueue*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public ulong GetNumStoredMessages() @@ -122,7 +122,7 @@ public unsafe partial struct ID3D11InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[8]))((ID3D11InfoQueue*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(9)] public ulong GetNumStoredMessagesAllowedByRetrievalFilter() @@ -130,7 +130,7 @@ public unsafe partial struct ID3D11InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[9]))((ID3D11InfoQueue*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(10)] public ulong GetNumMessagesDiscardedByMessageCountLimit() @@ -138,7 +138,7 @@ public unsafe partial struct ID3D11InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[10]))((ID3D11InfoQueue*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(11)] public ulong GetMessageCountLimit() @@ -146,7 +146,7 @@ public unsafe partial struct ID3D11InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[11]))((ID3D11InfoQueue*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(12)] public HResult AddStorageFilterEntries(InfoQueueFilter* pFilter) @@ -154,7 +154,7 @@ public unsafe partial struct ID3D11InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[12]))((ID3D11InfoQueue*)Unsafe.AsPointer(ref this), pFilter); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(13)] public HResult GetStorageFilter(InfoQueueFilter* pFilter, nuint* pFilterByteLength) @@ -162,7 +162,7 @@ public unsafe partial struct ID3D11InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[13]))((ID3D11InfoQueue*)Unsafe.AsPointer(ref this), pFilter, pFilterByteLength); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(14)] public void ClearStorageFilter() @@ -170,7 +170,7 @@ public unsafe partial struct ID3D11InfoQueue : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[14]))((ID3D11InfoQueue*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(15)] public HResult PushEmptyStorageFilter() @@ -178,7 +178,7 @@ public unsafe partial struct ID3D11InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[15]))((ID3D11InfoQueue*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(16)] public HResult PushCopyOfStorageFilter() @@ -186,7 +186,7 @@ public unsafe partial struct ID3D11InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[16]))((ID3D11InfoQueue*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(17)] public HResult PushStorageFilter(InfoQueueFilter* pFilter) @@ -194,7 +194,7 @@ public unsafe partial struct ID3D11InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[17]))((ID3D11InfoQueue*)Unsafe.AsPointer(ref this), pFilter); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(18)] public void PopStorageFilter() @@ -202,7 +202,7 @@ public unsafe partial struct ID3D11InfoQueue : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[18]))((ID3D11InfoQueue*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(19)] public uint GetStorageFilterStackSize() @@ -210,7 +210,7 @@ public unsafe partial struct ID3D11InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[19]))((ID3D11InfoQueue*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(20)] public HResult AddRetrievalFilterEntries(InfoQueueFilter* pFilter) @@ -218,7 +218,7 @@ public unsafe partial struct ID3D11InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[20]))((ID3D11InfoQueue*)Unsafe.AsPointer(ref this), pFilter); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(21)] public HResult GetRetrievalFilter(InfoQueueFilter* pFilter, nuint* pFilterByteLength) @@ -226,7 +226,7 @@ public unsafe partial struct ID3D11InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[21]))((ID3D11InfoQueue*)Unsafe.AsPointer(ref this), pFilter, pFilterByteLength); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(22)] public void ClearRetrievalFilter() @@ -234,7 +234,7 @@ public unsafe partial struct ID3D11InfoQueue : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[22]))((ID3D11InfoQueue*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(23)] public HResult PushEmptyRetrievalFilter() @@ -242,7 +242,7 @@ public unsafe partial struct ID3D11InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[23]))((ID3D11InfoQueue*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(24)] public HResult PushCopyOfRetrievalFilter() @@ -250,7 +250,7 @@ public unsafe partial struct ID3D11InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[24]))((ID3D11InfoQueue*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(25)] public HResult PushRetrievalFilter(InfoQueueFilter* pFilter) @@ -258,7 +258,7 @@ public unsafe partial struct ID3D11InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[25]))((ID3D11InfoQueue*)Unsafe.AsPointer(ref this), pFilter); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(26)] public void PopRetrievalFilter() @@ -266,7 +266,7 @@ public unsafe partial struct ID3D11InfoQueue : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[26]))((ID3D11InfoQueue*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(27)] public uint GetRetrievalFilterStackSize() @@ -274,7 +274,7 @@ public unsafe partial struct ID3D11InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[27]))((ID3D11InfoQueue*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(28)] public HResult AddMessage(MessageCategory Category, MessageSeverity Severity, MessageId ID, sbyte* pDescription) @@ -282,7 +282,7 @@ public unsafe partial struct ID3D11InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[28]))((ID3D11InfoQueue*)Unsafe.AsPointer(ref this), Category, Severity, ID, pDescription); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(29)] public HResult AddApplicationMessage(MessageSeverity Severity, sbyte* pDescription) @@ -290,7 +290,7 @@ public unsafe partial struct ID3D11InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[29]))((ID3D11InfoQueue*)Unsafe.AsPointer(ref this), Severity, pDescription); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(30)] public HResult SetBreakOnCategory(MessageCategory Category, Bool32 bEnable) @@ -298,7 +298,7 @@ public unsafe partial struct ID3D11InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[30]))((ID3D11InfoQueue*)Unsafe.AsPointer(ref this), Category, bEnable); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(31)] public HResult SetBreakOnSeverity(MessageSeverity Severity, Bool32 bEnable) @@ -306,7 +306,7 @@ public unsafe partial struct ID3D11InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[31]))((ID3D11InfoQueue*)Unsafe.AsPointer(ref this), Severity, bEnable); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(32)] public HResult SetBreakOnID(MessageId ID, Bool32 bEnable) @@ -314,7 +314,7 @@ public unsafe partial struct ID3D11InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[32]))((ID3D11InfoQueue*)Unsafe.AsPointer(ref this), ID, bEnable); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(33)] public Bool32 GetBreakOnCategory(MessageCategory Category) @@ -322,7 +322,7 @@ public unsafe partial struct ID3D11InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[33]))((ID3D11InfoQueue*)Unsafe.AsPointer(ref this), Category); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(34)] public Bool32 GetBreakOnSeverity(MessageSeverity Severity) @@ -330,7 +330,7 @@ public unsafe partial struct ID3D11InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[34]))((ID3D11InfoQueue*)Unsafe.AsPointer(ref this), Severity); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(35)] public Bool32 GetBreakOnID(MessageId ID) @@ -338,7 +338,7 @@ public unsafe partial struct ID3D11InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[35]))((ID3D11InfoQueue*)Unsafe.AsPointer(ref this), ID); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(36)] public void SetMuteDebugOutput(Bool32 bMute) @@ -346,7 +346,7 @@ public unsafe partial struct ID3D11InfoQueue : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[36]))((ID3D11InfoQueue*)Unsafe.AsPointer(ref this), bMute); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(37)] public Bool32 GetMuteDebugOutput() diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11InputLayout.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11InputLayout.cs index 0e4ac4a..98b3157 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11InputLayout.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11InputLayout.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11InputLayout [Guid("e4819ddc-4cf0-4025-bd26-5de82a3e07b7")] [NativeTypeName("struct ID3D11InputLayout : ID3D11DeviceChild")] diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11LibraryReflection.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11LibraryReflection.cs index 5b59fbd..1df1628 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11LibraryReflection.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11LibraryReflection.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11LibraryReflection [Guid("54384f1b-5b3e-4bb7-ae01-60ba3097cbb6")] [NativeTypeName("struct ID3D11LibraryReflection : IUnknown")] @@ -74,7 +74,7 @@ public unsafe partial struct ID3D11LibraryReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[2]))((IUnknown*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(3)] public HResult GetDesc(LibraryDescription* pDesc) @@ -82,7 +82,7 @@ public unsafe partial struct ID3D11LibraryReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[3]))((ID3D11LibraryReflection*)Unsafe.AsPointer(ref this), pDesc); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(4)] public ID3D11FunctionReflection GetFunctionByIndex(int FunctionIndex) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11Linker.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11Linker.cs index 95d4251..27bedf2 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11Linker.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11Linker.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11Linker [Guid("59a6cd0e-e10d-4c1f-88c0-63aba1daf30e")] [NativeTypeName("struct ID3D11Linker : IUnknown")] @@ -74,7 +74,7 @@ public unsafe partial struct ID3D11Linker : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[2]))((IUnknown*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(3)] public HResult Link(ID3D11ModuleInstance* pEntry, sbyte* pEntryName, sbyte* pTargetName, uint uFlags, Graphics.Direct3D.ID3DBlob** ppShaderBlob, Graphics.Direct3D.ID3DBlob** ppErrorBuffer) @@ -82,7 +82,7 @@ public unsafe partial struct ID3D11Linker : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[3]))((ID3D11Linker*)Unsafe.AsPointer(ref this), pEntry, pEntryName, pTargetName, uFlags, ppShaderBlob, ppErrorBuffer); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(4)] public HResult UseLibrary(ID3D11ModuleInstance* pLibraryMI) @@ -90,7 +90,7 @@ public unsafe partial struct ID3D11Linker : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[4]))((ID3D11Linker*)Unsafe.AsPointer(ref this), pLibraryMI); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(5)] public HResult AddClipPlaneFromCBuffer(uint uCBufferSlot, uint uCBufferEntry) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11LinkingNode.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11LinkingNode.cs index 524ab06..1133ecf 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11LinkingNode.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11LinkingNode.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11LinkingNode [Guid("d80dd70c-8d2f-4751-94a1-03c79b3556db")] [NativeTypeName("struct ID3D11LinkingNode : IUnknown")] diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11Module.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11Module.cs index addf963..8f0d22a 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11Module.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11Module.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11Module [Guid("cac701ee-80fc-4122-8242-10b39c8cec34")] [NativeTypeName("struct ID3D11Module : IUnknown")] @@ -74,7 +74,7 @@ public unsafe partial struct ID3D11Module : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[2]))((IUnknown*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(3)] public HResult CreateInstance(sbyte* pNamespace, ID3D11ModuleInstance** ppModuleInstance) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11ModuleInstance.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11ModuleInstance.cs index 133db3e..2053282 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11ModuleInstance.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11ModuleInstance.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11ModuleInstance [Guid("469e07f7-045a-48d5-aa12-68a478cdf75d")] [NativeTypeName("struct ID3D11ModuleInstance : IUnknown")] @@ -74,7 +74,7 @@ public unsafe partial struct ID3D11ModuleInstance : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[2]))((IUnknown*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(3)] public HResult BindConstantBuffer(uint uSrcSlot, uint uDstSlot, uint cbDstOffset) @@ -82,7 +82,7 @@ public unsafe partial struct ID3D11ModuleInstance : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[3]))((ID3D11ModuleInstance*)Unsafe.AsPointer(ref this), uSrcSlot, uDstSlot, cbDstOffset); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(4)] public HResult BindConstantBufferByName(sbyte* pName, uint uDstSlot, uint cbDstOffset) @@ -90,7 +90,7 @@ public unsafe partial struct ID3D11ModuleInstance : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[4]))((ID3D11ModuleInstance*)Unsafe.AsPointer(ref this), pName, uDstSlot, cbDstOffset); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(5)] public HResult BindResource(uint uSrcSlot, uint uDstSlot, uint uCount) @@ -98,7 +98,7 @@ public unsafe partial struct ID3D11ModuleInstance : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[5]))((ID3D11ModuleInstance*)Unsafe.AsPointer(ref this), uSrcSlot, uDstSlot, uCount); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(6)] public HResult BindResourceByName(sbyte* pName, uint uDstSlot, uint uCount) @@ -106,7 +106,7 @@ public unsafe partial struct ID3D11ModuleInstance : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[6]))((ID3D11ModuleInstance*)Unsafe.AsPointer(ref this), pName, uDstSlot, uCount); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(7)] public HResult BindSampler(uint uSrcSlot, uint uDstSlot, uint uCount) @@ -114,7 +114,7 @@ public unsafe partial struct ID3D11ModuleInstance : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D11ModuleInstance*)Unsafe.AsPointer(ref this), uSrcSlot, uDstSlot, uCount); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public HResult BindSamplerByName(sbyte* pName, uint uDstSlot, uint uCount) @@ -122,7 +122,7 @@ public unsafe partial struct ID3D11ModuleInstance : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[8]))((ID3D11ModuleInstance*)Unsafe.AsPointer(ref this), pName, uDstSlot, uCount); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(9)] public HResult BindUnorderedAccessView(uint uSrcSlot, uint uDstSlot, uint uCount) @@ -130,7 +130,7 @@ public unsafe partial struct ID3D11ModuleInstance : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[9]))((ID3D11ModuleInstance*)Unsafe.AsPointer(ref this), uSrcSlot, uDstSlot, uCount); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(10)] public HResult BindUnorderedAccessViewByName(sbyte* pName, uint uDstSlot, uint uCount) @@ -138,7 +138,7 @@ public unsafe partial struct ID3D11ModuleInstance : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[10]))((ID3D11ModuleInstance*)Unsafe.AsPointer(ref this), pName, uDstSlot, uCount); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(11)] public HResult BindResourceAsUnorderedAccessView(uint uSrcSrvSlot, uint uDstUavSlot, uint uCount) @@ -146,7 +146,7 @@ public unsafe partial struct ID3D11ModuleInstance : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[11]))((ID3D11ModuleInstance*)Unsafe.AsPointer(ref this), uSrcSrvSlot, uDstUavSlot, uCount); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(12)] public HResult BindResourceAsUnorderedAccessViewByName(sbyte* pSrvName, uint uDstUavSlot, uint uCount) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11Multithread.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11Multithread.cs index 279b12a..5f6421d 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11Multithread.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11Multithread.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11Multithread [Guid("9b7e4e00-342c-4106-a19f-4f2704f689f0")] [NativeTypeName("struct ID3D11Multithread : IUnknown")] @@ -74,7 +74,7 @@ public unsafe partial struct ID3D11Multithread : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[2]))((IUnknown*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(3)] public void Enter() @@ -82,7 +82,7 @@ public unsafe partial struct ID3D11Multithread : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[3]))((ID3D11Multithread*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(4)] public void Leave() @@ -90,7 +90,7 @@ public unsafe partial struct ID3D11Multithread : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[4]))((ID3D11Multithread*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(5)] public Bool32 SetMultithreadProtected(Bool32 bMTProtect) @@ -98,7 +98,7 @@ public unsafe partial struct ID3D11Multithread : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[5]))((ID3D11Multithread*)Unsafe.AsPointer(ref this), bMTProtect); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(6)] public Bool32 GetMultithreadProtected() diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11PixelShader.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11PixelShader.cs index 7d39356..654079e 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11PixelShader.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11PixelShader.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11PixelShader [Guid("ea82e40d-51dc-4f33-93d4-db7c9125ae8c")] [NativeTypeName("struct ID3D11PixelShader : ID3D11DeviceChild")] diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11Predicate.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11Predicate.cs index f4b6305..98d98fe 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11Predicate.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11Predicate.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11Predicate [Guid("9eb576dd-9f77-4d86-81aa-8bab5fe490e2")] [NativeTypeName("struct ID3D11Predicate : ID3D11Query")] diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11Query.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11Query.cs index 6ea4fd4..4a59959 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11Query.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11Query.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11Query [Guid("d6c00747-87b7-425e-b84d-44d108560afd")] [NativeTypeName("struct ID3D11Query : ID3D11Asynchronous")] @@ -114,7 +114,7 @@ public unsafe partial struct ID3D11Query : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D11Query*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public void GetDesc(QueryDescription* pDesc) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11Query1.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11Query1.cs index d5b6c06..b7db2d8 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11Query1.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11Query1.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11Query1 [Guid("631b4766-36dc-461d-8db6-c47e13e60916")] [NativeTypeName("struct ID3D11Query1 : ID3D11Query")] @@ -122,7 +122,7 @@ public unsafe partial struct ID3D11Query1 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[8]))((ID3D11Query1*)Unsafe.AsPointer(ref this), pDesc); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(9)] public void GetDesc1(QueryDescription1* pDesc1) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11RasterizerState.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11RasterizerState.cs index a6fd9fe..890c3a1 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11RasterizerState.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11RasterizerState.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11RasterizerState [Guid("9bb4ab81-ab1a-4d8f-b506-fc04200b6ee7")] [NativeTypeName("struct ID3D11RasterizerState : ID3D11DeviceChild")] @@ -106,7 +106,7 @@ public unsafe partial struct ID3D11RasterizerState : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[6]))((ID3D11RasterizerState*)Unsafe.AsPointer(ref this), guid, pData); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(7)] public void GetDesc(RasterizerDescription* pDesc) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11RasterizerState1.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11RasterizerState1.cs index 5395796..e6c627d 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11RasterizerState1.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11RasterizerState1.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11RasterizerState1 [Guid("1217d7a6-5039-418c-b042-9cbe256afd6e")] [NativeTypeName("struct ID3D11RasterizerState1 : ID3D11RasterizerState")] @@ -114,7 +114,7 @@ public unsafe partial struct ID3D11RasterizerState1 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D11RasterizerState1*)Unsafe.AsPointer(ref this), pDesc); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public void GetDesc1(RasterizerDescription1* pDesc) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11RasterizerState2.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11RasterizerState2.cs index 3a36af9..044f591 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11RasterizerState2.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11RasterizerState2.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11RasterizerState2 [Guid("6fbd02fb-209f-46c4-b059-2ed15586a6ac")] [NativeTypeName("struct ID3D11RasterizerState2 : ID3D11RasterizerState1")] @@ -122,7 +122,7 @@ public unsafe partial struct ID3D11RasterizerState2 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[8]))((ID3D11RasterizerState2*)Unsafe.AsPointer(ref this), pDesc); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(9)] public void GetDesc2(RasterizerDescription2* pDesc) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11RefDefaultTrackingOptions.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11RefDefaultTrackingOptions.cs index 49079ff..be03eef 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11RefDefaultTrackingOptions.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11RefDefaultTrackingOptions.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11RefDefaultTrackingOptions [Guid("03916615-c644-418c-9bf4-75db5be63ca0")] [NativeTypeName("struct ID3D11RefDefaultTrackingOptions : IUnknown")] @@ -74,7 +74,7 @@ public unsafe partial struct ID3D11RefDefaultTrackingOptions : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[2]))((IUnknown*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(3)] public HResult SetTrackingOptions(uint ResourceTypeFlags, uint Options) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11RefTrackingOptions.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11RefTrackingOptions.cs index ab5881d..8208feb 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11RefTrackingOptions.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11RefTrackingOptions.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11RefTrackingOptions [Guid("193dacdf-0db2-4c05-a55c-ef06cac56fd9")] [NativeTypeName("struct ID3D11RefTrackingOptions : IUnknown")] @@ -74,7 +74,7 @@ public unsafe partial struct ID3D11RefTrackingOptions : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[2]))((IUnknown*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(3)] public HResult SetTrackingOptions(uint uOptions) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11RenderTargetView.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11RenderTargetView.cs index 8e81d2b..910b585 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11RenderTargetView.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11RenderTargetView.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11RenderTargetView [Guid("dfdba067-0b8d-4865-875b-d7b4516cc164")] [NativeTypeName("struct ID3D11RenderTargetView : ID3D11View")] @@ -114,7 +114,7 @@ public unsafe partial struct ID3D11RenderTargetView : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D11RenderTargetView*)Unsafe.AsPointer(ref this), ppResource); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public void GetDesc(RenderTargetViewDescription* pDesc) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11RenderTargetView1.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11RenderTargetView1.cs index 67a21e9..64380bd 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11RenderTargetView1.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11RenderTargetView1.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11RenderTargetView1 [Guid("ffbe2e23-f011-418a-ac56-5ceed7c5b94b")] [NativeTypeName("struct ID3D11RenderTargetView1 : ID3D11RenderTargetView")] @@ -122,7 +122,7 @@ public unsafe partial struct ID3D11RenderTargetView1 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[8]))((ID3D11RenderTargetView1*)Unsafe.AsPointer(ref this), pDesc); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(9)] public void GetDesc1(RenderTargetViewDescription1* pDesc1) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11Resource.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11Resource.cs index 13e9acc..5f00a47 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11Resource.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11Resource.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11Resource [Guid("dc8e63f3-d12b-4952-b47b-5e45026a862d")] [NativeTypeName("struct ID3D11Resource : ID3D11DeviceChild")] @@ -106,7 +106,7 @@ public unsafe partial struct ID3D11Resource : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[6]))((ID3D11Resource*)Unsafe.AsPointer(ref this), guid, pData); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(7)] public void GetType(ResourceDimension* pResourceDimension) @@ -114,7 +114,7 @@ public unsafe partial struct ID3D11Resource : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D11Resource*)Unsafe.AsPointer(ref this), pResourceDimension); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public void SetEvictionPriority(uint EvictionPriority) @@ -122,7 +122,7 @@ public unsafe partial struct ID3D11Resource : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[8]))((ID3D11Resource*)Unsafe.AsPointer(ref this), EvictionPriority); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(9)] public uint GetEvictionPriority() diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11SamplerState.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11SamplerState.cs index b421efc..38a20aa 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11SamplerState.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11SamplerState.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11SamplerState [Guid("da6fea51-564c-4487-9810-f0d0f9b4e3a5")] [NativeTypeName("struct ID3D11SamplerState : ID3D11DeviceChild")] @@ -106,7 +106,7 @@ public unsafe partial struct ID3D11SamplerState : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[6]))((ID3D11SamplerState*)Unsafe.AsPointer(ref this), guid, pData); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(7)] public void GetDesc(SamplerDescription* pDesc) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11ShaderReflection.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11ShaderReflection.cs index a7f143c..03a1136 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11ShaderReflection.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11ShaderReflection.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11ShaderReflection [Guid("8d536ca1-0cca-4956-a837-786963755584")] [NativeTypeName("struct ID3D11ShaderReflection : IUnknown")] @@ -74,7 +74,7 @@ public unsafe partial struct ID3D11ShaderReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[2]))((IUnknown*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(3)] public HResult GetDesc(ShaderDescription* pDesc) @@ -82,7 +82,7 @@ public unsafe partial struct ID3D11ShaderReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[3]))((ID3D11ShaderReflection*)Unsafe.AsPointer(ref this), pDesc); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(4)] public ID3D11ShaderReflectionConstantBuffer GetConstantBufferByIndex(uint Index) @@ -90,7 +90,7 @@ public unsafe partial struct ID3D11ShaderReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[4]))((ID3D11ShaderReflection*)Unsafe.AsPointer(ref this), Index); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(5)] public ID3D11ShaderReflectionConstantBuffer GetConstantBufferByName(sbyte* Name) @@ -98,7 +98,7 @@ public unsafe partial struct ID3D11ShaderReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[5]))((ID3D11ShaderReflection*)Unsafe.AsPointer(ref this), Name); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(6)] public HResult GetResourceBindingDesc(uint ResourceIndex, ShaderInputBindDescription* pDesc) @@ -106,7 +106,7 @@ public unsafe partial struct ID3D11ShaderReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[6]))((ID3D11ShaderReflection*)Unsafe.AsPointer(ref this), ResourceIndex, pDesc); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(7)] public HResult GetInputParameterDesc(uint ParameterIndex, SignatureParameterDescription* pDesc) @@ -114,7 +114,7 @@ public unsafe partial struct ID3D11ShaderReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D11ShaderReflection*)Unsafe.AsPointer(ref this), ParameterIndex, pDesc); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public HResult GetOutputParameterDesc(uint ParameterIndex, SignatureParameterDescription* pDesc) @@ -122,7 +122,7 @@ public unsafe partial struct ID3D11ShaderReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[8]))((ID3D11ShaderReflection*)Unsafe.AsPointer(ref this), ParameterIndex, pDesc); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(9)] public HResult GetPatchConstantParameterDesc(uint ParameterIndex, SignatureParameterDescription* pDesc) @@ -130,7 +130,7 @@ public unsafe partial struct ID3D11ShaderReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[9]))((ID3D11ShaderReflection*)Unsafe.AsPointer(ref this), ParameterIndex, pDesc); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(10)] public ID3D11ShaderReflectionVariable GetVariableByName(sbyte* Name) @@ -138,7 +138,7 @@ public unsafe partial struct ID3D11ShaderReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[10]))((ID3D11ShaderReflection*)Unsafe.AsPointer(ref this), Name); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(11)] public HResult GetResourceBindingDescByName(sbyte* Name, ShaderInputBindDescription* pDesc) @@ -146,7 +146,7 @@ public unsafe partial struct ID3D11ShaderReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[11]))((ID3D11ShaderReflection*)Unsafe.AsPointer(ref this), Name, pDesc); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(12)] public uint GetMovInstructionCount() @@ -154,7 +154,7 @@ public unsafe partial struct ID3D11ShaderReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[12]))((ID3D11ShaderReflection*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(13)] public uint GetMovcInstructionCount() @@ -162,7 +162,7 @@ public unsafe partial struct ID3D11ShaderReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[13]))((ID3D11ShaderReflection*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(14)] public uint GetConversionInstructionCount() @@ -170,7 +170,7 @@ public unsafe partial struct ID3D11ShaderReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[14]))((ID3D11ShaderReflection*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(15)] public uint GetBitwiseInstructionCount() @@ -178,7 +178,7 @@ public unsafe partial struct ID3D11ShaderReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[15]))((ID3D11ShaderReflection*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(16)] public Graphics.Direct3D.Primitive GetGSInputPrimitive() @@ -186,7 +186,7 @@ public unsafe partial struct ID3D11ShaderReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[16]))((ID3D11ShaderReflection*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(17)] public Bool32 IsSampleFrequencyShader() @@ -194,7 +194,7 @@ public unsafe partial struct ID3D11ShaderReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[17]))((ID3D11ShaderReflection*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(18)] public uint GetNumInterfaceSlots() @@ -202,7 +202,7 @@ public unsafe partial struct ID3D11ShaderReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[18]))((ID3D11ShaderReflection*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(19)] public HResult GetMinFeatureLevel(Graphics.Direct3D.FeatureLevel* pLevel) @@ -210,7 +210,7 @@ public unsafe partial struct ID3D11ShaderReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[19]))((ID3D11ShaderReflection*)Unsafe.AsPointer(ref this), pLevel); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(20)] public uint GetThreadGroupSize(uint* pSizeX, uint* pSizeY, uint* pSizeZ) @@ -218,7 +218,7 @@ public unsafe partial struct ID3D11ShaderReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[20]))((ID3D11ShaderReflection*)Unsafe.AsPointer(ref this), pSizeX, pSizeY, pSizeZ); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(21)] public ulong GetRequiresFlags() diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11ShaderReflectionConstantBuffer.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11ShaderReflectionConstantBuffer.cs index 9099325..d0e71f3 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11ShaderReflectionConstantBuffer.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11ShaderReflectionConstantBuffer.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11ShaderReflectionConstantBuffer [Guid("eb62d63d-93dd-4318-8ae8-c6f83ad371b8")] public unsafe partial struct ID3D11ShaderReflectionConstantBuffer : INativeGuid @@ -46,7 +46,7 @@ public unsafe partial struct ID3D11ShaderReflectionConstantBuffer : INativeGuid public void** lpVtbl; - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(0)] public HResult GetDesc(ShaderBufferDescription* pDesc) @@ -54,7 +54,7 @@ public unsafe partial struct ID3D11ShaderReflectionConstantBuffer : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[0]))((ID3D11ShaderReflectionConstantBuffer*)Unsafe.AsPointer(ref this), pDesc); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(1)] public ID3D11ShaderReflectionVariable GetVariableByIndex(uint Index) @@ -62,7 +62,7 @@ public unsafe partial struct ID3D11ShaderReflectionConstantBuffer : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[1]))((ID3D11ShaderReflectionConstantBuffer*)Unsafe.AsPointer(ref this), Index); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(2)] public ID3D11ShaderReflectionVariable GetVariableByName(sbyte* Name) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11ShaderReflectionType.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11ShaderReflectionType.cs index 0d67c7a..b485792 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11ShaderReflectionType.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11ShaderReflectionType.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11ShaderReflectionType [Guid("6e6ffa6a-9bae-4613-a51e-91652d508c21")] public unsafe partial struct ID3D11ShaderReflectionType : INativeGuid @@ -46,7 +46,7 @@ public unsafe partial struct ID3D11ShaderReflectionType : INativeGuid public void** lpVtbl; - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(0)] public HResult GetDesc(ShaderTypeDescription* pDesc) @@ -54,7 +54,7 @@ public unsafe partial struct ID3D11ShaderReflectionType : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[0]))((ID3D11ShaderReflectionType*)Unsafe.AsPointer(ref this), pDesc); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(1)] public ID3D11ShaderReflectionType GetMemberTypeByIndex(uint Index) @@ -62,7 +62,7 @@ public unsafe partial struct ID3D11ShaderReflectionType : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[1]))((ID3D11ShaderReflectionType*)Unsafe.AsPointer(ref this), Index); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(2)] public ID3D11ShaderReflectionType GetMemberTypeByName(sbyte* Name) @@ -70,7 +70,7 @@ public unsafe partial struct ID3D11ShaderReflectionType : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[2]))((ID3D11ShaderReflectionType*)Unsafe.AsPointer(ref this), Name); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(3)] public sbyte* GetMemberTypeName(uint Index) @@ -78,7 +78,7 @@ public unsafe partial struct ID3D11ShaderReflectionType : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[3]))((ID3D11ShaderReflectionType*)Unsafe.AsPointer(ref this), Index); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(4)] public HResult IsEqual(ID3D11ShaderReflectionType* pType) @@ -86,7 +86,7 @@ public unsafe partial struct ID3D11ShaderReflectionType : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[4]))((ID3D11ShaderReflectionType*)Unsafe.AsPointer(ref this), pType); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(5)] public ID3D11ShaderReflectionType GetSubType() @@ -94,7 +94,7 @@ public unsafe partial struct ID3D11ShaderReflectionType : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[5]))((ID3D11ShaderReflectionType*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(6)] public ID3D11ShaderReflectionType GetBaseClass() @@ -102,7 +102,7 @@ public unsafe partial struct ID3D11ShaderReflectionType : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[6]))((ID3D11ShaderReflectionType*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(7)] public uint GetNumInterfaces() @@ -110,7 +110,7 @@ public unsafe partial struct ID3D11ShaderReflectionType : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D11ShaderReflectionType*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public ID3D11ShaderReflectionType GetInterfaceByIndex(uint uIndex) @@ -118,7 +118,7 @@ public unsafe partial struct ID3D11ShaderReflectionType : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[8]))((ID3D11ShaderReflectionType*)Unsafe.AsPointer(ref this), uIndex); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(9)] public HResult IsOfType(ID3D11ShaderReflectionType* pType) @@ -126,7 +126,7 @@ public unsafe partial struct ID3D11ShaderReflectionType : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[9]))((ID3D11ShaderReflectionType*)Unsafe.AsPointer(ref this), pType); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(10)] public HResult ImplementsInterface(ID3D11ShaderReflectionType* pBase) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11ShaderReflectionVariable.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11ShaderReflectionVariable.cs index 23a0913..249c5c8 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11ShaderReflectionVariable.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11ShaderReflectionVariable.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11ShaderReflectionVariable [Guid("51f23923-f3e5-4bd1-91cb-606177d8db4c")] public unsafe partial struct ID3D11ShaderReflectionVariable : INativeGuid @@ -46,7 +46,7 @@ public unsafe partial struct ID3D11ShaderReflectionVariable : INativeGuid public void** lpVtbl; - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(0)] public HResult GetDesc(ShaderVariableDescription* pDesc) @@ -54,7 +54,7 @@ public unsafe partial struct ID3D11ShaderReflectionVariable : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[0]))((ID3D11ShaderReflectionVariable*)Unsafe.AsPointer(ref this), pDesc); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(1)] public new ID3D11ShaderReflectionType GetType() @@ -62,7 +62,7 @@ public unsafe partial struct ID3D11ShaderReflectionVariable : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[1]))((ID3D11ShaderReflectionVariable*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(2)] public ID3D11ShaderReflectionConstantBuffer GetBuffer() @@ -70,7 +70,7 @@ public unsafe partial struct ID3D11ShaderReflectionVariable : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[2]))((ID3D11ShaderReflectionVariable*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(3)] public uint GetInterfaceSlot(uint uArrayIndex) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11ShaderResourceView.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11ShaderResourceView.cs index 70b1202..8a5f23f 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11ShaderResourceView.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11ShaderResourceView.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11ShaderResourceView [Guid("b0e06fe0-8192-4e1a-b1ca-36d7414710b2")] [NativeTypeName("struct ID3D11ShaderResourceView : ID3D11View")] @@ -114,7 +114,7 @@ public unsafe partial struct ID3D11ShaderResourceView : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D11ShaderResourceView*)Unsafe.AsPointer(ref this), ppResource); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public void GetDesc(ShaderResourceViewDescription* pDesc) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11ShaderResourceView1.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11ShaderResourceView1.cs index b582e55..9b31a73 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11ShaderResourceView1.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11ShaderResourceView1.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11ShaderResourceView1 [Guid("91308b87-9040-411d-8c67-c39253ce3802")] [NativeTypeName("struct ID3D11ShaderResourceView1 : ID3D11ShaderResourceView")] @@ -122,7 +122,7 @@ public unsafe partial struct ID3D11ShaderResourceView1 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[8]))((ID3D11ShaderResourceView1*)Unsafe.AsPointer(ref this), pDesc); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(9)] public void GetDesc1(ShaderResourceViewDescription1* pDesc1) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11ShaderTrace.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11ShaderTrace.cs index 79b8e13..870dbef 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11ShaderTrace.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11ShaderTrace.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11ShaderTrace [Guid("36b013e6-2811-4845-baa7-d623fe0df104")] [NativeTypeName("struct ID3D11ShaderTrace : IUnknown")] @@ -74,7 +74,7 @@ public unsafe partial struct ID3D11ShaderTrace : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[2]))((IUnknown*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(3)] public HResult TraceReady(ulong* pTestCount) @@ -82,7 +82,7 @@ public unsafe partial struct ID3D11ShaderTrace : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[3]))((ID3D11ShaderTrace*)Unsafe.AsPointer(ref this), pTestCount); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(4)] public void ResetTrace() @@ -90,7 +90,7 @@ public unsafe partial struct ID3D11ShaderTrace : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[4]))((ID3D11ShaderTrace*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(5)] public HResult GetTraceStats(TraceStats* pTraceStats) @@ -98,7 +98,7 @@ public unsafe partial struct ID3D11ShaderTrace : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[5]))((ID3D11ShaderTrace*)Unsafe.AsPointer(ref this), pTraceStats); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(6)] public HResult PSSelectStamp(uint stampIndex) @@ -106,7 +106,7 @@ public unsafe partial struct ID3D11ShaderTrace : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[6]))((ID3D11ShaderTrace*)Unsafe.AsPointer(ref this), stampIndex); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(7)] public HResult GetInitialRegisterContents(TraceRegister* pRegister, TraceValue* pValue) @@ -114,7 +114,7 @@ public unsafe partial struct ID3D11ShaderTrace : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D11ShaderTrace*)Unsafe.AsPointer(ref this), pRegister, pValue); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public HResult GetStep(uint stepIndex, TraceStep* pTraceStep) @@ -122,7 +122,7 @@ public unsafe partial struct ID3D11ShaderTrace : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[8]))((ID3D11ShaderTrace*)Unsafe.AsPointer(ref this), stepIndex, pTraceStep); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(9)] public HResult GetWrittenRegister(uint stepIndex, uint writtenRegisterIndex, TraceRegister* pRegister, TraceValue* pValue) @@ -130,7 +130,7 @@ public unsafe partial struct ID3D11ShaderTrace : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[9]))((ID3D11ShaderTrace*)Unsafe.AsPointer(ref this), stepIndex, writtenRegisterIndex, pRegister, pValue); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(10)] public HResult GetReadRegister(uint stepIndex, uint readRegisterIndex, TraceRegister* pRegister, TraceValue* pValue) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11ShaderTraceFactory.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11ShaderTraceFactory.cs index 48de557..6e08b59 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11ShaderTraceFactory.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11ShaderTraceFactory.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11ShaderTraceFactory [Guid("1fbad429-66ab-41cc-9617-667ac10e4459")] [NativeTypeName("struct ID3D11ShaderTraceFactory : IUnknown")] @@ -74,7 +74,7 @@ public unsafe partial struct ID3D11ShaderTraceFactory : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[2]))((IUnknown*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(3)] public HResult CreateShaderTrace(IUnknown* pShader, ShaderTraceDescription* pTraceDesc, ID3D11ShaderTrace** ppShaderTrace) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11SwitchToRef.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11SwitchToRef.cs index 4814ecd..66ef7c3 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11SwitchToRef.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11SwitchToRef.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11SwitchToRef [Guid("1ef337e3-58e7-4f83-a692-db221f5ed47e")] [NativeTypeName("struct ID3D11SwitchToRef : IUnknown")] @@ -74,7 +74,7 @@ public unsafe partial struct ID3D11SwitchToRef : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[2]))((IUnknown*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(3)] public Bool32 SetUseRef(Bool32 UseRef) @@ -82,7 +82,7 @@ public unsafe partial struct ID3D11SwitchToRef : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[3]))((ID3D11SwitchToRef*)Unsafe.AsPointer(ref this), UseRef); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(4)] public Bool32 GetUseRef() diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11Texture1D.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11Texture1D.cs index 53e51ff..686c97e 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11Texture1D.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11Texture1D.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11Texture1D [Guid("f8fb5c27-c6b3-4f75-a4c8-439af2ef564c")] [NativeTypeName("struct ID3D11Texture1D : ID3D11Resource")] @@ -130,7 +130,7 @@ public unsafe partial struct ID3D11Texture1D : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[9]))((ID3D11Texture1D*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(10)] public void GetDesc(Texture1DDescription* pDesc) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11Texture2D.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11Texture2D.cs index b1e44db..353a8d9 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11Texture2D.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11Texture2D.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11Texture2D [Guid("6f15aaf2-d208-4e89-9ab4-489535d34f9c")] [NativeTypeName("struct ID3D11Texture2D : ID3D11Resource")] @@ -130,7 +130,7 @@ public unsafe partial struct ID3D11Texture2D : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[9]))((ID3D11Texture2D*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(10)] public void GetDesc(Texture2DDescription* pDesc) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11Texture2D1.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11Texture2D1.cs index 278ad24..3000b7c 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11Texture2D1.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11Texture2D1.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11Texture2D1 [Guid("51218251-1e33-4617-9ccb-4d3a4367e7bb")] [NativeTypeName("struct ID3D11Texture2D1 : ID3D11Texture2D")] @@ -138,7 +138,7 @@ public unsafe partial struct ID3D11Texture2D1 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[10]))((ID3D11Texture2D1*)Unsafe.AsPointer(ref this), pDesc); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(11)] public void GetDesc1(Texture2DDescription1* pDesc) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11Texture3D.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11Texture3D.cs index ce45d1f..fbc3caa 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11Texture3D.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11Texture3D.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11Texture3D [Guid("037e866e-f56d-4357-a8af-9dabbe6e250e")] [NativeTypeName("struct ID3D11Texture3D : ID3D11Resource")] @@ -130,7 +130,7 @@ public unsafe partial struct ID3D11Texture3D : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[9]))((ID3D11Texture3D*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(10)] public void GetDesc(Texture3DDescription* pDesc) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11Texture3D1.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11Texture3D1.cs index 82b1846..32f04f6 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11Texture3D1.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11Texture3D1.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11Texture3D1 [Guid("0c711683-2853-4846-9bb0-f3e60639e46a")] [NativeTypeName("struct ID3D11Texture3D1 : ID3D11Texture3D")] @@ -138,7 +138,7 @@ public unsafe partial struct ID3D11Texture3D1 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[10]))((ID3D11Texture3D1*)Unsafe.AsPointer(ref this), pDesc); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(11)] public void GetDesc1(Texture3DDescription1* pDesc) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11TracingDevice.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11TracingDevice.cs index dcb8553..f9b037b 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11TracingDevice.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11TracingDevice.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11TracingDevice [Guid("1911c771-1587-413e-a7e0-fb26c3de0268")] [NativeTypeName("struct ID3D11TracingDevice : IUnknown")] @@ -74,7 +74,7 @@ public unsafe partial struct ID3D11TracingDevice : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[2]))((IUnknown*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(3)] public HResult SetShaderTrackingOptionsByType(uint ResourceTypeFlags, uint Options) @@ -82,7 +82,7 @@ public unsafe partial struct ID3D11TracingDevice : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[3]))((ID3D11TracingDevice*)Unsafe.AsPointer(ref this), ResourceTypeFlags, Options); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(4)] public HResult SetShaderTrackingOptions(IUnknown* pShader, uint Options) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11UnorderedAccessView.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11UnorderedAccessView.cs index aa28a54..33f5879 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11UnorderedAccessView.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11UnorderedAccessView.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11UnorderedAccessView [Guid("28acf509-7f5c-48f6-8611-f316010a6380")] [NativeTypeName("struct ID3D11UnorderedAccessView : ID3D11View")] @@ -114,7 +114,7 @@ public unsafe partial struct ID3D11UnorderedAccessView : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D11UnorderedAccessView*)Unsafe.AsPointer(ref this), ppResource); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public void GetDesc(UnorderedAccessViewDescription* pDesc) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11UnorderedAccessView1.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11UnorderedAccessView1.cs index 02f4675..31594f3 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11UnorderedAccessView1.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11UnorderedAccessView1.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11UnorderedAccessView1 [Guid("7b3b6153-a886-4544-ab37-6537c8500403")] [NativeTypeName("struct ID3D11UnorderedAccessView1 : ID3D11UnorderedAccessView")] @@ -122,7 +122,7 @@ public unsafe partial struct ID3D11UnorderedAccessView1 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[8]))((ID3D11UnorderedAccessView1*)Unsafe.AsPointer(ref this), pDesc); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(9)] public void GetDesc1(UnorderedAccessViewDescription1* pDesc1) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11VertexShader.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11VertexShader.cs index 02c08c3..ace8a4d 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11VertexShader.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11VertexShader.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11VertexShader [Guid("3b301d64-d678-4289-8897-22f8928b72f3")] [NativeTypeName("struct ID3D11VertexShader : ID3D11DeviceChild")] diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoContext.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoContext.cs index 7225425..9f2d894 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoContext.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoContext.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11VideoContext [Guid("61f21c45-3c0e-4a74-9cea-67100d9ad5e4")] [NativeTypeName("struct ID3D11VideoContext : ID3D11DeviceChild")] @@ -106,7 +106,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[6]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), guid, pData); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(7)] public HResult GetDecoderBuffer(ID3D11VideoDecoder* pDecoder, VideoDecoderBufferType Type, uint* pBufferSize, void** ppBuffer) @@ -114,7 +114,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pDecoder, Type, pBufferSize, ppBuffer); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public HResult ReleaseDecoderBuffer(ID3D11VideoDecoder* pDecoder, VideoDecoderBufferType Type) @@ -122,7 +122,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[8]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pDecoder, Type); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(9)] public HResult DecoderBeginFrame(ID3D11VideoDecoder* pDecoder, ID3D11VideoDecoderOutputView* pView, uint ContentKeySize, void* pContentKey) @@ -130,7 +130,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[9]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pDecoder, pView, ContentKeySize, pContentKey); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(10)] public HResult DecoderEndFrame(ID3D11VideoDecoder* pDecoder) @@ -138,7 +138,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[10]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pDecoder); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(11)] public HResult SubmitDecoderBuffers(ID3D11VideoDecoder* pDecoder, uint NumBuffers, VideoDecoderBufferDescription* pBufferDesc) @@ -146,7 +146,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[11]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pDecoder, NumBuffers, pBufferDesc); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(12)] public int DecoderExtension(ID3D11VideoDecoder* pDecoder, VideoDecoderExtension* pExtensionData) @@ -154,7 +154,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[12]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pDecoder, pExtensionData); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(13)] public void VideoProcessorSetOutputTargetRect(ID3D11VideoProcessor* pVideoProcessor, Bool32 Enable, RawRect* pRect) @@ -162,7 +162,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[13]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pVideoProcessor, Enable, pRect); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(14)] public void VideoProcessorSetOutputBackgroundColor(ID3D11VideoProcessor* pVideoProcessor, Bool32 YCbCr, VideoColor* pColor) @@ -170,7 +170,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[14]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pVideoProcessor, YCbCr, pColor); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(15)] public void VideoProcessorSetOutputColorSpace(ID3D11VideoProcessor* pVideoProcessor, VideoProcessorColorSpace* pColorSpace) @@ -178,7 +178,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[15]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pVideoProcessor, pColorSpace); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(16)] public void VideoProcessorSetOutputAlphaFillMode(ID3D11VideoProcessor* pVideoProcessor, VideoProcessorAlphaFillMode AlphaFillMode, uint StreamIndex) @@ -186,7 +186,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[16]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pVideoProcessor, AlphaFillMode, StreamIndex); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(17)] public void VideoProcessorSetOutputConstriction(ID3D11VideoProcessor* pVideoProcessor, Bool32 Enable, System.Drawing.Size Size) @@ -194,7 +194,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[17]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pVideoProcessor, Enable, Size); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(18)] public void VideoProcessorSetOutputStereoMode(ID3D11VideoProcessor* pVideoProcessor, Bool32 Enable) @@ -202,7 +202,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[18]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pVideoProcessor, Enable); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(19)] public int VideoProcessorSetOutputExtension(ID3D11VideoProcessor* pVideoProcessor, Guid* pExtensionGuid, uint DataSize, void* pData) @@ -210,7 +210,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[19]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pVideoProcessor, pExtensionGuid, DataSize, pData); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(20)] public void VideoProcessorGetOutputTargetRect(ID3D11VideoProcessor* pVideoProcessor, Bool32* Enabled, RawRect* pRect) @@ -218,7 +218,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[20]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pVideoProcessor, Enabled, pRect); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(21)] public void VideoProcessorGetOutputBackgroundColor(ID3D11VideoProcessor* pVideoProcessor, Bool32* pYCbCr, VideoColor* pColor) @@ -226,7 +226,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[21]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pVideoProcessor, pYCbCr, pColor); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(22)] public void VideoProcessorGetOutputColorSpace(ID3D11VideoProcessor* pVideoProcessor, VideoProcessorColorSpace* pColorSpace) @@ -234,7 +234,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[22]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pVideoProcessor, pColorSpace); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(23)] public void VideoProcessorGetOutputAlphaFillMode(ID3D11VideoProcessor* pVideoProcessor, VideoProcessorAlphaFillMode* pAlphaFillMode, uint* pStreamIndex) @@ -242,7 +242,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[23]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pVideoProcessor, pAlphaFillMode, pStreamIndex); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(24)] public void VideoProcessorGetOutputConstriction(ID3D11VideoProcessor* pVideoProcessor, Bool32* pEnabled, System.Drawing.Size* pSize) @@ -250,7 +250,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[24]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pVideoProcessor, pEnabled, pSize); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(25)] public void VideoProcessorGetOutputStereoMode(ID3D11VideoProcessor* pVideoProcessor, Bool32* pEnabled) @@ -258,7 +258,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[25]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pVideoProcessor, pEnabled); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(26)] public int VideoProcessorGetOutputExtension(ID3D11VideoProcessor* pVideoProcessor, Guid* pExtensionGuid, uint DataSize, void* pData) @@ -266,7 +266,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[26]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pVideoProcessor, pExtensionGuid, DataSize, pData); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(27)] public void VideoProcessorSetStreamFrameFormat(ID3D11VideoProcessor* pVideoProcessor, uint StreamIndex, VideoFrameFormat FrameFormat) @@ -274,7 +274,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[27]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pVideoProcessor, StreamIndex, FrameFormat); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(28)] public void VideoProcessorSetStreamColorSpace(ID3D11VideoProcessor* pVideoProcessor, uint StreamIndex, VideoProcessorColorSpace* pColorSpace) @@ -282,7 +282,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[28]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pVideoProcessor, StreamIndex, pColorSpace); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(29)] public void VideoProcessorSetStreamOutputRate(ID3D11VideoProcessor* pVideoProcessor, uint StreamIndex, VideoProcessorOutputRate OutputRate, Bool32 RepeatFrame, Graphics.Dxgi.Common.Rational* pCustomRate) @@ -290,7 +290,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[29]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pVideoProcessor, StreamIndex, OutputRate, RepeatFrame, pCustomRate); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(30)] public void VideoProcessorSetStreamSourceRect(ID3D11VideoProcessor* pVideoProcessor, uint StreamIndex, Bool32 Enable, RawRect* pRect) @@ -298,7 +298,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[30]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pVideoProcessor, StreamIndex, Enable, pRect); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(31)] public void VideoProcessorSetStreamDestRect(ID3D11VideoProcessor* pVideoProcessor, uint StreamIndex, Bool32 Enable, RawRect* pRect) @@ -306,7 +306,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[31]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pVideoProcessor, StreamIndex, Enable, pRect); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(32)] public void VideoProcessorSetStreamAlpha(ID3D11VideoProcessor* pVideoProcessor, uint StreamIndex, Bool32 Enable, float Alpha) @@ -314,7 +314,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[32]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pVideoProcessor, StreamIndex, Enable, Alpha); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(33)] public void VideoProcessorSetStreamPalette(ID3D11VideoProcessor* pVideoProcessor, uint StreamIndex, uint Count, uint* pEntries) @@ -322,7 +322,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[33]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pVideoProcessor, StreamIndex, Count, pEntries); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(34)] public void VideoProcessorSetStreamPixelAspectRatio(ID3D11VideoProcessor* pVideoProcessor, uint StreamIndex, Bool32 Enable, Graphics.Dxgi.Common.Rational* pSourceAspectRatio, Graphics.Dxgi.Common.Rational* pDestinationAspectRatio) @@ -330,7 +330,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[34]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pVideoProcessor, StreamIndex, Enable, pSourceAspectRatio, pDestinationAspectRatio); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(35)] public void VideoProcessorSetStreamLumaKey(ID3D11VideoProcessor* pVideoProcessor, uint StreamIndex, Bool32 Enable, float Lower, float Upper) @@ -338,7 +338,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[35]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pVideoProcessor, StreamIndex, Enable, Lower, Upper); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(36)] public void VideoProcessorSetStreamStereoFormat(ID3D11VideoProcessor* pVideoProcessor, uint StreamIndex, Bool32 Enable, VideoProcessorStereoFormat Format, Bool32 LeftViewFrame0, Bool32 BaseViewFrame0, VideoProcessorStereoFlipMode FlipMode, int MonoOffset) @@ -346,7 +346,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[36]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pVideoProcessor, StreamIndex, Enable, Format, LeftViewFrame0, BaseViewFrame0, FlipMode, MonoOffset); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(37)] public void VideoProcessorSetStreamAutoProcessingMode(ID3D11VideoProcessor* pVideoProcessor, uint StreamIndex, Bool32 Enable) @@ -354,7 +354,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[37]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pVideoProcessor, StreamIndex, Enable); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(38)] public void VideoProcessorSetStreamFilter(ID3D11VideoProcessor* pVideoProcessor, uint StreamIndex, VideoProcessorFilter Filter, Bool32 Enable, int Level) @@ -362,7 +362,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[38]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pVideoProcessor, StreamIndex, Filter, Enable, Level); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(39)] public int VideoProcessorSetStreamExtension(ID3D11VideoProcessor* pVideoProcessor, uint StreamIndex, Guid* pExtensionGuid, uint DataSize, void* pData) @@ -370,7 +370,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[39]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pVideoProcessor, StreamIndex, pExtensionGuid, DataSize, pData); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(40)] public void VideoProcessorGetStreamFrameFormat(ID3D11VideoProcessor* pVideoProcessor, uint StreamIndex, VideoFrameFormat* pFrameFormat) @@ -378,7 +378,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[40]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pVideoProcessor, StreamIndex, pFrameFormat); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(41)] public void VideoProcessorGetStreamColorSpace(ID3D11VideoProcessor* pVideoProcessor, uint StreamIndex, VideoProcessorColorSpace* pColorSpace) @@ -386,7 +386,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[41]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pVideoProcessor, StreamIndex, pColorSpace); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(42)] public void VideoProcessorGetStreamOutputRate(ID3D11VideoProcessor* pVideoProcessor, uint StreamIndex, VideoProcessorOutputRate* pOutputRate, Bool32* pRepeatFrame, Graphics.Dxgi.Common.Rational* pCustomRate) @@ -394,7 +394,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[42]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pVideoProcessor, StreamIndex, pOutputRate, pRepeatFrame, pCustomRate); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(43)] public void VideoProcessorGetStreamSourceRect(ID3D11VideoProcessor* pVideoProcessor, uint StreamIndex, Bool32* pEnabled, RawRect* pRect) @@ -402,7 +402,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[43]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pVideoProcessor, StreamIndex, pEnabled, pRect); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(44)] public void VideoProcessorGetStreamDestRect(ID3D11VideoProcessor* pVideoProcessor, uint StreamIndex, Bool32* pEnabled, RawRect* pRect) @@ -410,7 +410,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[44]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pVideoProcessor, StreamIndex, pEnabled, pRect); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(45)] public void VideoProcessorGetStreamAlpha(ID3D11VideoProcessor* pVideoProcessor, uint StreamIndex, Bool32* pEnabled, float* pAlpha) @@ -418,7 +418,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[45]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pVideoProcessor, StreamIndex, pEnabled, pAlpha); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(46)] public void VideoProcessorGetStreamPalette(ID3D11VideoProcessor* pVideoProcessor, uint StreamIndex, uint Count, uint* pEntries) @@ -426,7 +426,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[46]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pVideoProcessor, StreamIndex, Count, pEntries); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(47)] public void VideoProcessorGetStreamPixelAspectRatio(ID3D11VideoProcessor* pVideoProcessor, uint StreamIndex, Bool32* pEnabled, Graphics.Dxgi.Common.Rational* pSourceAspectRatio, Graphics.Dxgi.Common.Rational* pDestinationAspectRatio) @@ -434,7 +434,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[47]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pVideoProcessor, StreamIndex, pEnabled, pSourceAspectRatio, pDestinationAspectRatio); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(48)] public void VideoProcessorGetStreamLumaKey(ID3D11VideoProcessor* pVideoProcessor, uint StreamIndex, Bool32* pEnabled, float* pLower, float* pUpper) @@ -442,7 +442,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[48]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pVideoProcessor, StreamIndex, pEnabled, pLower, pUpper); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(49)] public void VideoProcessorGetStreamStereoFormat(ID3D11VideoProcessor* pVideoProcessor, uint StreamIndex, Bool32* pEnable, VideoProcessorStereoFormat* pFormat, Bool32* pLeftViewFrame0, Bool32* pBaseViewFrame0, VideoProcessorStereoFlipMode* pFlipMode, int* MonoOffset) @@ -450,7 +450,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[49]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pVideoProcessor, StreamIndex, pEnable, pFormat, pLeftViewFrame0, pBaseViewFrame0, pFlipMode, MonoOffset); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(50)] public void VideoProcessorGetStreamAutoProcessingMode(ID3D11VideoProcessor* pVideoProcessor, uint StreamIndex, Bool32* pEnabled) @@ -458,7 +458,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[50]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pVideoProcessor, StreamIndex, pEnabled); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(51)] public void VideoProcessorGetStreamFilter(ID3D11VideoProcessor* pVideoProcessor, uint StreamIndex, VideoProcessorFilter Filter, Bool32* pEnabled, int* pLevel) @@ -466,7 +466,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[51]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pVideoProcessor, StreamIndex, Filter, pEnabled, pLevel); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(52)] public int VideoProcessorGetStreamExtension(ID3D11VideoProcessor* pVideoProcessor, uint StreamIndex, Guid* pExtensionGuid, uint DataSize, void* pData) @@ -474,7 +474,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[52]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pVideoProcessor, StreamIndex, pExtensionGuid, DataSize, pData); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(53)] public HResult VideoProcessorBlt(ID3D11VideoProcessor* pVideoProcessor, ID3D11VideoProcessorOutputView* pView, uint OutputFrame, uint StreamCount, VideoProcessorStream* pStreams) @@ -482,7 +482,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[53]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pVideoProcessor, pView, OutputFrame, StreamCount, pStreams); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(54)] public HResult NegotiateCryptoSessionKeyExchange(ID3D11CryptoSession* pCryptoSession, uint DataSize, void* pData) @@ -490,7 +490,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[54]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pCryptoSession, DataSize, pData); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(55)] public void EncryptionBlt(ID3D11CryptoSession* pCryptoSession, ID3D11Texture2D* pSrcSurface, ID3D11Texture2D* pDstSurface, uint IVSize, void* pIV) @@ -498,7 +498,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[55]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pCryptoSession, pSrcSurface, pDstSurface, IVSize, pIV); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(56)] public void DecryptionBlt(ID3D11CryptoSession* pCryptoSession, ID3D11Texture2D* pSrcSurface, ID3D11Texture2D* pDstSurface, EncryptedBlockInfo* pEncryptedBlockInfo, uint ContentKeySize, void* pContentKey, uint IVSize, void* pIV) @@ -506,7 +506,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[56]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pCryptoSession, pSrcSurface, pDstSurface, pEncryptedBlockInfo, ContentKeySize, pContentKey, IVSize, pIV); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(57)] public void StartSessionKeyRefresh(ID3D11CryptoSession* pCryptoSession, uint RandomNumberSize, void* pRandomNumber) @@ -514,7 +514,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[57]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pCryptoSession, RandomNumberSize, pRandomNumber); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(58)] public void FinishSessionKeyRefresh(ID3D11CryptoSession* pCryptoSession) @@ -522,7 +522,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[58]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pCryptoSession); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(59)] public HResult GetEncryptionBltKey(ID3D11CryptoSession* pCryptoSession, uint KeySize, void* pReadbackKey) @@ -530,7 +530,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[59]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pCryptoSession, KeySize, pReadbackKey); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(60)] public HResult NegotiateAuthenticatedChannelKeyExchange(ID3D11AuthenticatedChannel* pChannel, uint DataSize, void* pData) @@ -538,7 +538,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[60]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pChannel, DataSize, pData); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(61)] public HResult QueryAuthenticatedChannel(ID3D11AuthenticatedChannel* pChannel, uint InputSize, void* pInput, uint OutputSize, void* pOutput) @@ -546,7 +546,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[61]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pChannel, InputSize, pInput, OutputSize, pOutput); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(62)] public HResult ConfigureAuthenticatedChannel(ID3D11AuthenticatedChannel* pChannel, uint InputSize, void* pInput, AuthenticatedConfigureOutput* pOutput) @@ -554,7 +554,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[62]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pChannel, InputSize, pInput, pOutput); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(63)] public void VideoProcessorSetStreamRotation(ID3D11VideoProcessor* pVideoProcessor, uint StreamIndex, Bool32 Enable, VideoProcessorRotation Rotation) @@ -562,7 +562,7 @@ public unsafe partial struct ID3D11VideoContext : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[63]))((ID3D11VideoContext*)Unsafe.AsPointer(ref this), pVideoProcessor, StreamIndex, Enable, Rotation); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(64)] public void VideoProcessorGetStreamRotation(ID3D11VideoProcessor* pVideoProcessor, uint StreamIndex, Bool32* pEnable, VideoProcessorRotation* pRotation) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoContext1.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoContext1.cs index 9d7d6e2..0a64141 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoContext1.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoContext1.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11VideoContext1 [Guid("a7f026da-a5f8-4487-a564-15e34357651e")] [NativeTypeName("struct ID3D11VideoContext1 : ID3D11VideoContext")] @@ -570,7 +570,7 @@ public unsafe partial struct ID3D11VideoContext1 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[64]))((ID3D11VideoContext1*)Unsafe.AsPointer(ref this), pVideoProcessor, StreamIndex, pEnable, pRotation); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(65)] public HResult SubmitDecoderBuffers1(ID3D11VideoDecoder* pDecoder, uint NumBuffers, VideoDecoderBufferDescription1* pBufferDesc) @@ -578,7 +578,7 @@ public unsafe partial struct ID3D11VideoContext1 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[65]))((ID3D11VideoContext1*)Unsafe.AsPointer(ref this), pDecoder, NumBuffers, pBufferDesc); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(66)] public HResult GetDataForNewHardwareKey(ID3D11CryptoSession* pCryptoSession, uint PrivateInputSize, void* pPrivatInputData, ulong* pPrivateOutputData) @@ -586,7 +586,7 @@ public unsafe partial struct ID3D11VideoContext1 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[66]))((ID3D11VideoContext1*)Unsafe.AsPointer(ref this), pCryptoSession, PrivateInputSize, pPrivatInputData, pPrivateOutputData); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(67)] public HResult CheckCryptoSessionStatus(ID3D11CryptoSession* pCryptoSession, CryptoSessionStatus* pStatus) @@ -594,7 +594,7 @@ public unsafe partial struct ID3D11VideoContext1 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[67]))((ID3D11VideoContext1*)Unsafe.AsPointer(ref this), pCryptoSession, pStatus); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(68)] public HResult DecoderEnableDownsampling(ID3D11VideoDecoder* pDecoder, Graphics.Dxgi.Common.ColorSpaceType InputColorSpace, VideoSampleDescription* pOutputDesc, uint ReferenceFrameCount) @@ -602,7 +602,7 @@ public unsafe partial struct ID3D11VideoContext1 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[68]))((ID3D11VideoContext1*)Unsafe.AsPointer(ref this), pDecoder, InputColorSpace, pOutputDesc, ReferenceFrameCount); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(69)] public HResult DecoderUpdateDownsampling(ID3D11VideoDecoder* pDecoder, VideoSampleDescription* pOutputDesc) @@ -610,7 +610,7 @@ public unsafe partial struct ID3D11VideoContext1 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[69]))((ID3D11VideoContext1*)Unsafe.AsPointer(ref this), pDecoder, pOutputDesc); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(70)] public void VideoProcessorSetOutputColorSpace1(ID3D11VideoProcessor* pVideoProcessor, Graphics.Dxgi.Common.ColorSpaceType ColorSpace) @@ -618,7 +618,7 @@ public unsafe partial struct ID3D11VideoContext1 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[70]))((ID3D11VideoContext1*)Unsafe.AsPointer(ref this), pVideoProcessor, ColorSpace); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(71)] public void VideoProcessorSetOutputShaderUsage(ID3D11VideoProcessor* pVideoProcessor, Bool32 ShaderUsage) @@ -626,7 +626,7 @@ public unsafe partial struct ID3D11VideoContext1 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[71]))((ID3D11VideoContext1*)Unsafe.AsPointer(ref this), pVideoProcessor, ShaderUsage); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(72)] public void VideoProcessorGetOutputColorSpace1(ID3D11VideoProcessor* pVideoProcessor, Graphics.Dxgi.Common.ColorSpaceType* pColorSpace) @@ -634,7 +634,7 @@ public unsafe partial struct ID3D11VideoContext1 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[72]))((ID3D11VideoContext1*)Unsafe.AsPointer(ref this), pVideoProcessor, pColorSpace); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(73)] public void VideoProcessorGetOutputShaderUsage(ID3D11VideoProcessor* pVideoProcessor, Bool32* pShaderUsage) @@ -642,7 +642,7 @@ public unsafe partial struct ID3D11VideoContext1 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[73]))((ID3D11VideoContext1*)Unsafe.AsPointer(ref this), pVideoProcessor, pShaderUsage); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(74)] public void VideoProcessorSetStreamColorSpace1(ID3D11VideoProcessor* pVideoProcessor, uint StreamIndex, Graphics.Dxgi.Common.ColorSpaceType ColorSpace) @@ -650,7 +650,7 @@ public unsafe partial struct ID3D11VideoContext1 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[74]))((ID3D11VideoContext1*)Unsafe.AsPointer(ref this), pVideoProcessor, StreamIndex, ColorSpace); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(75)] public void VideoProcessorSetStreamMirror(ID3D11VideoProcessor* pVideoProcessor, uint StreamIndex, Bool32 Enable, Bool32 FlipHorizontal, Bool32 FlipVertical) @@ -658,7 +658,7 @@ public unsafe partial struct ID3D11VideoContext1 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[75]))((ID3D11VideoContext1*)Unsafe.AsPointer(ref this), pVideoProcessor, StreamIndex, Enable, FlipHorizontal, FlipVertical); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(76)] public void VideoProcessorGetStreamColorSpace1(ID3D11VideoProcessor* pVideoProcessor, uint StreamIndex, Graphics.Dxgi.Common.ColorSpaceType* pColorSpace) @@ -666,7 +666,7 @@ public unsafe partial struct ID3D11VideoContext1 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[76]))((ID3D11VideoContext1*)Unsafe.AsPointer(ref this), pVideoProcessor, StreamIndex, pColorSpace); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(77)] public void VideoProcessorGetStreamMirror(ID3D11VideoProcessor* pVideoProcessor, uint StreamIndex, Bool32* pEnable, Bool32* pFlipHorizontal, Bool32* pFlipVertical) @@ -674,7 +674,7 @@ public unsafe partial struct ID3D11VideoContext1 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[77]))((ID3D11VideoContext1*)Unsafe.AsPointer(ref this), pVideoProcessor, StreamIndex, pEnable, pFlipHorizontal, pFlipVertical); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(78)] public HResult VideoProcessorGetBehaviorHints(ID3D11VideoProcessor* pVideoProcessor, uint OutputWidth, uint OutputHeight, Graphics.Dxgi.Common.Format OutputFormat, uint StreamCount, VideoProcessorStreamBehaviorHint* pStreams, uint* pBehaviorHints) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoContext2.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoContext2.cs index 20f4c5d..589acc0 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoContext2.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoContext2.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11VideoContext2 [Guid("c4e7374c-6243-4d1b-ae87-52b4f740e261")] [NativeTypeName("struct ID3D11VideoContext2 : ID3D11VideoContext1")] @@ -682,7 +682,7 @@ public unsafe partial struct ID3D11VideoContext2 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[78]))((ID3D11VideoContext2*)Unsafe.AsPointer(ref this), pVideoProcessor, OutputWidth, OutputHeight, OutputFormat, StreamCount, pStreams, pBehaviorHints); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(79)] public void VideoProcessorSetOutputHDRMetaData(ID3D11VideoProcessor* pVideoProcessor, Graphics.Dxgi.HDRMetadataType Type, uint Size, void* pHDRMetaData) @@ -690,7 +690,7 @@ public unsafe partial struct ID3D11VideoContext2 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[79]))((ID3D11VideoContext2*)Unsafe.AsPointer(ref this), pVideoProcessor, Type, Size, pHDRMetaData); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(80)] public void VideoProcessorGetOutputHDRMetaData(ID3D11VideoProcessor* pVideoProcessor, Graphics.Dxgi.HDRMetadataType* pType, uint Size, void* pMetaData) @@ -698,7 +698,7 @@ public unsafe partial struct ID3D11VideoContext2 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[80]))((ID3D11VideoContext2*)Unsafe.AsPointer(ref this), pVideoProcessor, pType, Size, pMetaData); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(81)] public void VideoProcessorSetStreamHDRMetaData(ID3D11VideoProcessor* pVideoProcessor, uint StreamIndex, Graphics.Dxgi.HDRMetadataType Type, uint Size, void* pHDRMetaData) @@ -706,7 +706,7 @@ public unsafe partial struct ID3D11VideoContext2 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[81]))((ID3D11VideoContext2*)Unsafe.AsPointer(ref this), pVideoProcessor, StreamIndex, Type, Size, pHDRMetaData); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(82)] public void VideoProcessorGetStreamHDRMetaData(ID3D11VideoProcessor* pVideoProcessor, uint StreamIndex, Graphics.Dxgi.HDRMetadataType* pType, uint Size, void* pMetaData) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoContext3.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoContext3.cs index 3819b86..62740e1 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoContext3.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoContext3.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11VideoContext3 [Guid("a9e2faa0-cb39-418f-a0b7-d8aad4de672e")] [NativeTypeName("struct ID3D11VideoContext3 : ID3D11VideoContext2")] @@ -714,7 +714,7 @@ public unsafe partial struct ID3D11VideoContext3 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[82]))((ID3D11VideoContext3*)Unsafe.AsPointer(ref this), pVideoProcessor, StreamIndex, pType, Size, pMetaData); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(83)] public HResult DecoderBeginFrame1(ID3D11VideoDecoder* pDecoder, ID3D11VideoDecoderOutputView* pView, uint ContentKeySize, void* pContentKey, uint NumComponentHistograms, uint* pHistogramOffsets, ID3D11Buffer** ppHistogramBuffers) @@ -722,7 +722,7 @@ public unsafe partial struct ID3D11VideoContext3 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[83]))((ID3D11VideoContext3*)Unsafe.AsPointer(ref this), pDecoder, pView, ContentKeySize, pContentKey, NumComponentHistograms, pHistogramOffsets, ppHistogramBuffers); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(84)] public HResult SubmitDecoderBuffers2(ID3D11VideoDecoder* pDecoder, uint NumBuffers, VideoDecoderBufferDescription2* pBufferDesc) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoDecoder.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoDecoder.cs index c92f46b..3a4c85b 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoDecoder.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoDecoder.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11VideoDecoder [Guid("3c9c5b51-995d-48d1-9b8d-fa5caeded65c")] [NativeTypeName("struct ID3D11VideoDecoder : ID3D11DeviceChild")] @@ -106,7 +106,7 @@ public unsafe partial struct ID3D11VideoDecoder : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[6]))((ID3D11VideoDecoder*)Unsafe.AsPointer(ref this), guid, pData); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(7)] public HResult GetCreationParameters(VideoDecoderDescription* pVideoDesc, VideoDecoderConfig* pConfig) @@ -114,7 +114,7 @@ public unsafe partial struct ID3D11VideoDecoder : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D11VideoDecoder*)Unsafe.AsPointer(ref this), pVideoDesc, pConfig); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public HResult GetDriverHandle(Handle* pDriverHandle) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoDecoderOutputView.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoDecoderOutputView.cs index d8ea060..b341d77 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoDecoderOutputView.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoDecoderOutputView.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11VideoDecoderOutputView [Guid("c2931aea-2a85-4f20-860f-fba1fd256e18")] [NativeTypeName("struct ID3D11VideoDecoderOutputView : ID3D11View")] @@ -114,7 +114,7 @@ public unsafe partial struct ID3D11VideoDecoderOutputView : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D11VideoDecoderOutputView*)Unsafe.AsPointer(ref this), ppResource); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public void GetDesc(VideoDecoderOutputViewDescription* pDesc) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoDevice.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoDevice.cs index 5c3190d..86faa62 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoDevice.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoDevice.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11VideoDevice [Guid("10ec4d5b-975a-4689-b9e4-d0aac30fe333")] [NativeTypeName("struct ID3D11VideoDevice : IUnknown")] @@ -74,7 +74,7 @@ public unsafe partial struct ID3D11VideoDevice : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[2]))((IUnknown*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(3)] public HResult CreateVideoDecoder(VideoDecoderDescription* pVideoDesc, VideoDecoderConfig* pConfig, ID3D11VideoDecoder** ppDecoder) @@ -82,7 +82,7 @@ public unsafe partial struct ID3D11VideoDevice : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[3]))((ID3D11VideoDevice*)Unsafe.AsPointer(ref this), pVideoDesc, pConfig, ppDecoder); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(4)] public HResult CreateVideoProcessor(ID3D11VideoProcessorEnumerator* pEnum, uint RateConversionIndex, ID3D11VideoProcessor** ppVideoProcessor) @@ -90,7 +90,7 @@ public unsafe partial struct ID3D11VideoDevice : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[4]))((ID3D11VideoDevice*)Unsafe.AsPointer(ref this), pEnum, RateConversionIndex, ppVideoProcessor); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(5)] public HResult CreateAuthenticatedChannel(AuthenticatedChannelType ChannelType, ID3D11AuthenticatedChannel** ppAuthenticatedChannel) @@ -98,7 +98,7 @@ public unsafe partial struct ID3D11VideoDevice : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[5]))((ID3D11VideoDevice*)Unsafe.AsPointer(ref this), ChannelType, ppAuthenticatedChannel); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(6)] public HResult CreateCryptoSession(Guid* pCryptoType, Guid* pDecoderProfile, Guid* pKeyExchangeType, ID3D11CryptoSession** ppCryptoSession) @@ -106,7 +106,7 @@ public unsafe partial struct ID3D11VideoDevice : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[6]))((ID3D11VideoDevice*)Unsafe.AsPointer(ref this), pCryptoType, pDecoderProfile, pKeyExchangeType, ppCryptoSession); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(7)] public HResult CreateVideoDecoderOutputView(ID3D11Resource* pResource, VideoDecoderOutputViewDescription* pDesc, ID3D11VideoDecoderOutputView** ppVDOVView) @@ -114,7 +114,7 @@ public unsafe partial struct ID3D11VideoDevice : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D11VideoDevice*)Unsafe.AsPointer(ref this), pResource, pDesc, ppVDOVView); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public HResult CreateVideoProcessorInputView(ID3D11Resource* pResource, ID3D11VideoProcessorEnumerator* pEnum, VideoProcessorInputViewDescription* pDesc, ID3D11VideoProcessorInputView** ppVPIView) @@ -122,7 +122,7 @@ public unsafe partial struct ID3D11VideoDevice : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[8]))((ID3D11VideoDevice*)Unsafe.AsPointer(ref this), pResource, pEnum, pDesc, ppVPIView); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(9)] public HResult CreateVideoProcessorOutputView(ID3D11Resource* pResource, ID3D11VideoProcessorEnumerator* pEnum, VideoProcessorOutputViewDescription* pDesc, ID3D11VideoProcessorOutputView** ppVPOView) @@ -130,7 +130,7 @@ public unsafe partial struct ID3D11VideoDevice : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[9]))((ID3D11VideoDevice*)Unsafe.AsPointer(ref this), pResource, pEnum, pDesc, ppVPOView); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(10)] public HResult CreateVideoProcessorEnumerator(VideoProcessorContentDescription* pDesc, ID3D11VideoProcessorEnumerator** ppEnum) @@ -138,7 +138,7 @@ public unsafe partial struct ID3D11VideoDevice : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[10]))((ID3D11VideoDevice*)Unsafe.AsPointer(ref this), pDesc, ppEnum); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(11)] public uint GetVideoDecoderProfileCount() @@ -146,7 +146,7 @@ public unsafe partial struct ID3D11VideoDevice : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[11]))((ID3D11VideoDevice*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(12)] public HResult GetVideoDecoderProfile(uint Index, Guid* pDecoderProfile) @@ -154,7 +154,7 @@ public unsafe partial struct ID3D11VideoDevice : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[12]))((ID3D11VideoDevice*)Unsafe.AsPointer(ref this), Index, pDecoderProfile); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(13)] public HResult CheckVideoDecoderFormat(Guid* pDecoderProfile, Graphics.Dxgi.Common.Format Format, Bool32* pSupported) @@ -162,7 +162,7 @@ public unsafe partial struct ID3D11VideoDevice : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[13]))((ID3D11VideoDevice*)Unsafe.AsPointer(ref this), pDecoderProfile, Format, pSupported); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(14)] public HResult GetVideoDecoderConfigCount(VideoDecoderDescription* pDesc, uint* pCount) @@ -170,7 +170,7 @@ public unsafe partial struct ID3D11VideoDevice : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[14]))((ID3D11VideoDevice*)Unsafe.AsPointer(ref this), pDesc, pCount); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(15)] public HResult GetVideoDecoderConfig(VideoDecoderDescription* pDesc, uint Index, VideoDecoderConfig* pConfig) @@ -178,7 +178,7 @@ public unsafe partial struct ID3D11VideoDevice : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[15]))((ID3D11VideoDevice*)Unsafe.AsPointer(ref this), pDesc, Index, pConfig); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(16)] public HResult GetContentProtectionCaps(Guid* pCryptoType, Guid* pDecoderProfile, VideoContentProtectionCaps* pCaps) @@ -186,7 +186,7 @@ public unsafe partial struct ID3D11VideoDevice : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[16]))((ID3D11VideoDevice*)Unsafe.AsPointer(ref this), pCryptoType, pDecoderProfile, pCaps); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(17)] public HResult CheckCryptoKeyExchange(Guid* pCryptoType, Guid* pDecoderProfile, uint Index, Guid* pKeyExchangeType) @@ -194,7 +194,7 @@ public unsafe partial struct ID3D11VideoDevice : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[17]))((ID3D11VideoDevice*)Unsafe.AsPointer(ref this), pCryptoType, pDecoderProfile, Index, pKeyExchangeType); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(18)] public HResult SetPrivateData(Guid* guid, uint DataSize, void* pData) @@ -202,7 +202,7 @@ public unsafe partial struct ID3D11VideoDevice : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[18]))((ID3D11VideoDevice*)Unsafe.AsPointer(ref this), guid, DataSize, pData); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(19)] public HResult SetPrivateDataInterface(Guid* guid, IUnknown* pData) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoDevice1.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoDevice1.cs index b5964b4..642cd74 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoDevice1.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoDevice1.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11VideoDevice1 [Guid("29da1d51-1321-4454-804b-f5fc9f861f0f")] [NativeTypeName("struct ID3D11VideoDevice1 : ID3D11VideoDevice")] @@ -210,7 +210,7 @@ public unsafe partial struct ID3D11VideoDevice1 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[19]))((ID3D11VideoDevice1*)Unsafe.AsPointer(ref this), guid, pData); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(20)] public HResult GetCryptoSessionPrivateDataSize(Guid* pCryptoType, Guid* pDecoderProfile, Guid* pKeyExchangeType, uint* pPrivateInputSize, uint* pPrivateOutputSize) @@ -218,7 +218,7 @@ public unsafe partial struct ID3D11VideoDevice1 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[20]))((ID3D11VideoDevice1*)Unsafe.AsPointer(ref this), pCryptoType, pDecoderProfile, pKeyExchangeType, pPrivateInputSize, pPrivateOutputSize); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(21)] public HResult GetVideoDecoderCaps(Guid* pDecoderProfile, uint SampleWidth, uint SampleHeight, Graphics.Dxgi.Common.Rational* pFrameRate, uint BitRate, Guid* pCryptoType, uint* pDecoderCaps) @@ -226,7 +226,7 @@ public unsafe partial struct ID3D11VideoDevice1 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[21]))((ID3D11VideoDevice1*)Unsafe.AsPointer(ref this), pDecoderProfile, SampleWidth, SampleHeight, pFrameRate, BitRate, pCryptoType, pDecoderCaps); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(22)] public HResult CheckVideoDecoderDownsampling(VideoDecoderDescription* pInputDesc, Graphics.Dxgi.Common.ColorSpaceType InputColorSpace, VideoDecoderConfig* pInputConfig, Graphics.Dxgi.Common.Rational* pFrameRate, VideoSampleDescription* pOutputDesc, Bool32* pSupported, Bool32* pRealTimeHint) @@ -234,7 +234,7 @@ public unsafe partial struct ID3D11VideoDevice1 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[22]))((ID3D11VideoDevice1*)Unsafe.AsPointer(ref this), pInputDesc, InputColorSpace, pInputConfig, pFrameRate, pOutputDesc, pSupported, pRealTimeHint); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(23)] public HResult RecommendVideoDecoderDownsampleParameters(VideoDecoderDescription* pInputDesc, Graphics.Dxgi.Common.ColorSpaceType InputColorSpace, VideoDecoderConfig* pInputConfig, Graphics.Dxgi.Common.Rational* pFrameRate, VideoSampleDescription* pRecommendedOutputDesc) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoDevice2.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoDevice2.cs index 6dcb3c3..05fe565 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoDevice2.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoDevice2.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11VideoDevice2 [Guid("59c0cb01-35f0-4a70-8f67-87905c906a53")] [NativeTypeName("struct ID3D11VideoDevice2 : ID3D11VideoDevice1")] @@ -242,7 +242,7 @@ public unsafe partial struct ID3D11VideoDevice2 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[23]))((ID3D11VideoDevice2*)Unsafe.AsPointer(ref this), pInputDesc, InputColorSpace, pInputConfig, pFrameRate, pRecommendedOutputDesc); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(24)] public HResult CheckFeatureSupport(FeatureVideo Feature, void* pFeatureSupportData, uint FeatureSupportDataSize) @@ -250,7 +250,7 @@ public unsafe partial struct ID3D11VideoDevice2 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[24]))((ID3D11VideoDevice2*)Unsafe.AsPointer(ref this), Feature, pFeatureSupportData, FeatureSupportDataSize); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(25)] public HResult NegotiateCryptoSessionKeyExchangeMT(ID3D11CryptoSession* pCryptoSession, CryptoSessionKeyExchangeFlags flags, uint DataSize, void* pData) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoProcessor.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoProcessor.cs index aa02414..6f73ebe 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoProcessor.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoProcessor.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11VideoProcessor [Guid("1d7b0652-185f-41c6-85ce-0c5be3d4ae6c")] [NativeTypeName("struct ID3D11VideoProcessor : ID3D11DeviceChild")] @@ -106,7 +106,7 @@ public unsafe partial struct ID3D11VideoProcessor : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[6]))((ID3D11VideoProcessor*)Unsafe.AsPointer(ref this), guid, pData); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(7)] public void GetContentDesc(VideoProcessorContentDescription* pDesc) @@ -114,7 +114,7 @@ public unsafe partial struct ID3D11VideoProcessor : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D11VideoProcessor*)Unsafe.AsPointer(ref this), pDesc); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public void GetRateConversionCaps(VideoProcessorRateConversionCaps* pCaps) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoProcessorEnumerator.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoProcessorEnumerator.cs index c58aa85..a3e54b9 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoProcessorEnumerator.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoProcessorEnumerator.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11VideoProcessorEnumerator [Guid("31627037-53ab-4200-9061-05faa9ab45f9")] [NativeTypeName("struct ID3D11VideoProcessorEnumerator : ID3D11DeviceChild")] @@ -106,7 +106,7 @@ public unsafe partial struct ID3D11VideoProcessorEnumerator : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[6]))((ID3D11VideoProcessorEnumerator*)Unsafe.AsPointer(ref this), guid, pData); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(7)] public HResult GetVideoProcessorContentDesc(VideoProcessorContentDescription* pContentDesc) @@ -114,7 +114,7 @@ public unsafe partial struct ID3D11VideoProcessorEnumerator : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D11VideoProcessorEnumerator*)Unsafe.AsPointer(ref this), pContentDesc); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public HResult CheckVideoProcessorFormat(Graphics.Dxgi.Common.Format Format, uint* pFlags) @@ -122,7 +122,7 @@ public unsafe partial struct ID3D11VideoProcessorEnumerator : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[8]))((ID3D11VideoProcessorEnumerator*)Unsafe.AsPointer(ref this), Format, pFlags); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(9)] public HResult GetVideoProcessorCaps(VideoProcessorCaps* pCaps) @@ -130,7 +130,7 @@ public unsafe partial struct ID3D11VideoProcessorEnumerator : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[9]))((ID3D11VideoProcessorEnumerator*)Unsafe.AsPointer(ref this), pCaps); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(10)] public HResult GetVideoProcessorRateConversionCaps(uint TypeIndex, VideoProcessorRateConversionCaps* pCaps) @@ -138,7 +138,7 @@ public unsafe partial struct ID3D11VideoProcessorEnumerator : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[10]))((ID3D11VideoProcessorEnumerator*)Unsafe.AsPointer(ref this), TypeIndex, pCaps); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(11)] public HResult GetVideoProcessorCustomRate(uint TypeIndex, uint CustomRateIndex, VideoProcessorCustomRate* pRate) @@ -146,7 +146,7 @@ public unsafe partial struct ID3D11VideoProcessorEnumerator : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[11]))((ID3D11VideoProcessorEnumerator*)Unsafe.AsPointer(ref this), TypeIndex, CustomRateIndex, pRate); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(12)] public HResult GetVideoProcessorFilterRange(VideoProcessorFilter Filter, VideoProcessorFilterRange* pRange) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoProcessorEnumerator1.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoProcessorEnumerator1.cs index f8cddaf..9d4bfd9 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoProcessorEnumerator1.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoProcessorEnumerator1.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11VideoProcessorEnumerator1 [Guid("465217f2-5568-43cf-b5b9-f61d54531ca1")] [NativeTypeName("struct ID3D11VideoProcessorEnumerator1 : ID3D11VideoProcessorEnumerator")] @@ -154,7 +154,7 @@ public unsafe partial struct ID3D11VideoProcessorEnumerator1 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[12]))((ID3D11VideoProcessorEnumerator1*)Unsafe.AsPointer(ref this), Filter, pRange); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(13)] public HResult CheckVideoProcessorFormatConversion(Graphics.Dxgi.Common.Format InputFormat, Graphics.Dxgi.Common.ColorSpaceType InputColorSpace, Graphics.Dxgi.Common.Format OutputFormat, Graphics.Dxgi.Common.ColorSpaceType OutputColorSpace, Bool32* pSupported) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoProcessorInputView.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoProcessorInputView.cs index ddbac34..c36225a 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoProcessorInputView.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoProcessorInputView.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11VideoProcessorInputView [Guid("11ec5a5f-51dc-4945-ab34-6e8c21300ea5")] [NativeTypeName("struct ID3D11VideoProcessorInputView : ID3D11View")] @@ -114,7 +114,7 @@ public unsafe partial struct ID3D11VideoProcessorInputView : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D11VideoProcessorInputView*)Unsafe.AsPointer(ref this), ppResource); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public void GetDesc(VideoProcessorInputViewDescription* pDesc) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoProcessorOutputView.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoProcessorOutputView.cs index 2ab68fe..241f521 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoProcessorOutputView.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11VideoProcessorOutputView.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11VideoProcessorOutputView [Guid("a048285e-25a9-4527-bd93-d68b68c44254")] [NativeTypeName("struct ID3D11VideoProcessorOutputView : ID3D11View")] @@ -114,7 +114,7 @@ public unsafe partial struct ID3D11VideoProcessorOutputView : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D11VideoProcessorOutputView*)Unsafe.AsPointer(ref this), ppResource); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public void GetDesc(VideoProcessorOutputViewDescription* pDesc) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3D11View.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3D11View.cs index 35cefb3..5465268 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3D11View.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3D11View.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3D11View [Guid("839d1216-bb2e-412b-b7f4-a9dbebe08ed1")] [NativeTypeName("struct ID3D11View : ID3D11DeviceChild")] @@ -106,7 +106,7 @@ public unsafe partial struct ID3D11View : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[6]))((ID3D11View*)Unsafe.AsPointer(ref this), guid, pData); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(7)] public void GetResource(ID3D11Resource** ppResource) diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3DDeviceContextState.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3DDeviceContextState.cs index 4179531..87690f2 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3DDeviceContextState.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3DDeviceContextState.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3DDeviceContextState [Guid("5c1e0d8a-7c23-48f9-8c59-a92958ceff11")] [NativeTypeName("struct ID3DDeviceContextState : ID3D11DeviceChild")] diff --git a/src/Vortice.Win32.Direct3D11/Generated/ID3DUserDefinedAnnotation.cs b/src/Vortice.Win32.Direct3D11/Generated/ID3DUserDefinedAnnotation.cs index 9742dbd..b2387a5 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ID3DUserDefinedAnnotation.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ID3DUserDefinedAnnotation.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// ID3DUserDefinedAnnotation [Guid("b2daad8b-03d4-4dbf-95eb-32ab4b63d0ab")] [NativeTypeName("struct ID3DUserDefinedAnnotation : IUnknown")] @@ -74,7 +74,7 @@ public unsafe partial struct ID3DUserDefinedAnnotation : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[2]))((IUnknown*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(3)] public int BeginEvent(ushort* Name) @@ -82,7 +82,7 @@ public unsafe partial struct ID3DUserDefinedAnnotation : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[3]))((ID3DUserDefinedAnnotation*)Unsafe.AsPointer(ref this), Name); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(4)] public int EndEvent() @@ -90,7 +90,7 @@ public unsafe partial struct ID3DUserDefinedAnnotation : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[4]))((ID3DUserDefinedAnnotation*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(5)] public void SetMarker(ushort* Name) @@ -98,7 +98,7 @@ public unsafe partial struct ID3DUserDefinedAnnotation : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[5]))((ID3DUserDefinedAnnotation*)Unsafe.AsPointer(ref this), Name); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(6)] public Bool32 GetStatus() diff --git a/src/Vortice.Win32.Direct3D11/Generated/InfoQueueFilter.cs b/src/Vortice.Win32.Direct3D11/Generated/InfoQueueFilter.cs index e58d8d2..e0202aa 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/InfoQueueFilter.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/InfoQueueFilter.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_INFO_QUEUE_FILTER public partial struct InfoQueueFilter { - /// + /// public InfoQueueFilterDescription AllowList; - /// + /// public InfoQueueFilterDescription DenyList; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/InfoQueueFilterDescription.cs b/src/Vortice.Win32.Direct3D11/Generated/InfoQueueFilterDescription.cs index 76fe048..e27bc40 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/InfoQueueFilterDescription.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/InfoQueueFilterDescription.cs @@ -9,25 +9,25 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_INFO_QUEUE_FILTER_DESC public partial struct InfoQueueFilterDescription { - /// + /// public uint NumCategories; - /// + /// public unsafe MessageCategory* pCategoryList; - /// + /// public uint NumSeverities; - /// + /// public unsafe MessageSeverity* pSeverityList; - /// + /// public uint NumIDs; - /// + /// public unsafe MessageId* pIDList; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/InputClassification.cs b/src/Vortice.Win32.Direct3D11/Generated/InputClassification.cs index 15aaa0c..70735ba 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/InputClassification.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/InputClassification.cs @@ -9,14 +9,14 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_INPUT_CLASSIFICATION public enum InputClassification : int { - /// + /// /// D3D11_INPUT_PER_VERTEX_DATA PerVertexData = 0, - /// + /// /// D3D11_INPUT_PER_INSTANCE_DATA PerInstanceData = 1, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/InputElementDescription.cs b/src/Vortice.Win32.Direct3D11/Generated/InputElementDescription.cs index 1915054..5bd2b49 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/InputElementDescription.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/InputElementDescription.cs @@ -9,28 +9,28 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_INPUT_ELEMENT_DESC public partial struct InputElementDescription { - /// + /// public unsafe sbyte* SemanticName; - /// + /// public uint SemanticIndex; - /// + /// public Graphics.Dxgi.Common.Format Format; - /// + /// public uint InputSlot; - /// + /// public uint AlignedByteOffset; - /// + /// public InputClassification InputSlotClass; - /// + /// public uint InstanceDataStepRate; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/KeyExchangeHWProtectionData.cs b/src/Vortice.Win32.Direct3D11/Generated/KeyExchangeHWProtectionData.cs index 419d192..aa6c85d 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/KeyExchangeHWProtectionData.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/KeyExchangeHWProtectionData.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_KEY_EXCHANGE_HW_PROTECTION_DATA public partial struct KeyExchangeHWProtectionData { - /// + /// public uint HWProtectionFunctionID; - /// + /// public unsafe KeyExchangeHWProtectionInputData* pInputData; - /// + /// public unsafe KeyExchangeHWProtectionOutputData* pOutputData; - /// + /// public HResult Status; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/KeyExchangeHWProtectionInputData.cs b/src/Vortice.Win32.Direct3D11/Generated/KeyExchangeHWProtectionInputData.cs index 61d5e74..f40b279 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/KeyExchangeHWProtectionInputData.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/KeyExchangeHWProtectionInputData.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_KEY_EXCHANGE_HW_PROTECTION_INPUT_DATA public partial struct KeyExchangeHWProtectionInputData { - /// + /// public uint PrivateDataSize; - /// + /// public uint HWProtectionDataSize; - /// + /// public unsafe fixed byte pbInput[4]; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/KeyExchangeHWProtectionOutputData.cs b/src/Vortice.Win32.Direct3D11/Generated/KeyExchangeHWProtectionOutputData.cs index 183fca4..3cebe0a 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/KeyExchangeHWProtectionOutputData.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/KeyExchangeHWProtectionOutputData.cs @@ -9,25 +9,25 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_KEY_EXCHANGE_HW_PROTECTION_OUTPUT_DATA public partial struct KeyExchangeHWProtectionOutputData { - /// + /// public uint PrivateDataSize; - /// + /// public uint MaxHWProtectionDataSize; - /// + /// public uint HWProtectionDataSize; - /// + /// public ulong TransportTime; - /// + /// public ulong ExecutionTime; - /// + /// public unsafe fixed byte pbOutput[4]; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/LibraryDescription.cs b/src/Vortice.Win32.Direct3D11/Generated/LibraryDescription.cs index 9e6161a..91ede92 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/LibraryDescription.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/LibraryDescription.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_LIBRARY_DESC public partial struct LibraryDescription { - /// + /// public unsafe sbyte* Creator; - /// + /// public uint Flags; - /// + /// public uint FunctionCount; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/LogicOperation.cs b/src/Vortice.Win32.Direct3D11/Generated/LogicOperation.cs index 8ac2a6c..3abfcfd 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/LogicOperation.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/LogicOperation.cs @@ -9,56 +9,56 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_LOGIC_OP public enum LogicOperation : int { - /// + /// /// D3D11_LOGIC_OP_CLEAR Clear = 0, - /// + /// /// D3D11_LOGIC_OP_SET Set = 1, - /// + /// /// D3D11_LOGIC_OP_COPY Copy = 2, - /// + /// /// D3D11_LOGIC_OP_COPY_INVERTED CopyInverted = 3, - /// + /// /// D3D11_LOGIC_OP_NOOP Noop = 4, - /// + /// /// D3D11_LOGIC_OP_INVERT Invert = 5, - /// + /// /// D3D11_LOGIC_OP_AND And = 6, - /// + /// /// D3D11_LOGIC_OP_NAND Nand = 7, - /// + /// /// D3D11_LOGIC_OP_OR Or = 8, - /// + /// /// D3D11_LOGIC_OP_NOR Nor = 9, - /// + /// /// D3D11_LOGIC_OP_XOR Xor = 10, - /// + /// /// D3D11_LOGIC_OP_EQUIV Equiv = 11, - /// + /// /// D3D11_LOGIC_OP_AND_REVERSE AndReverse = 12, - /// + /// /// D3D11_LOGIC_OP_AND_INVERTED AndInverted = 13, - /// + /// /// D3D11_LOGIC_OP_OR_REVERSE OrReverse = 14, - /// + /// /// D3D11_LOGIC_OP_OR_INVERTED OrInverted = 15, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/MapFlags.cs b/src/Vortice.Win32.Direct3D11/Generated/MapFlags.cs index 71e9bf2..c436a79 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/MapFlags.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/MapFlags.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_MAP_FLAG [Flags] public enum MapFlags : int { None = 0, - /// + /// /// D3D11_MAP_FLAG_DO_NOT_WAIT DoNotWait = 1048576, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/MapMode.cs b/src/Vortice.Win32.Direct3D11/Generated/MapMode.cs index 5a5eb66..a3c1146 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/MapMode.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/MapMode.cs @@ -9,23 +9,23 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_MAP public enum MapMode : int { - /// + /// /// D3D11_MAP_READ Read = 1, - /// + /// /// D3D11_MAP_WRITE Write = 2, - /// + /// /// D3D11_MAP_READ_WRITE ReadWrite = 3, - /// + /// /// D3D11_MAP_WRITE_DISCARD WriteDiscard = 4, - /// + /// /// D3D11_MAP_WRITE_NO_OVERWRITE WriteNoOverwrite = 5, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/MappedSubresource.cs b/src/Vortice.Win32.Direct3D11/Generated/MappedSubresource.cs index 666d619..67e71bb 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/MappedSubresource.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/MappedSubresource.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_MAPPED_SUBRESOURCE public partial struct MappedSubresource { - /// + /// public unsafe void* pData; - /// + /// public uint RowPitch; - /// + /// public uint DepthPitch; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/Message.cs b/src/Vortice.Win32.Direct3D11/Generated/Message.cs index eddbf81..3cee1fb 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/Message.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/Message.cs @@ -9,22 +9,22 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_MESSAGE public partial struct Message { - /// + /// public MessageCategory Category; - /// + /// public MessageSeverity Severity; - /// + /// public MessageId ID; - /// + /// public unsafe byte* pDescription; - /// + /// public nuint DescriptionByteLength; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/MessageCategory.cs b/src/Vortice.Win32.Direct3D11/Generated/MessageCategory.cs index 451d364..e536a9b 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/MessageCategory.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/MessageCategory.cs @@ -9,41 +9,41 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_MESSAGE_CATEGORY public enum MessageCategory : int { - /// + /// /// D3D11_MESSAGE_CATEGORY_APPLICATION_DEFINED ApplicationDefined = 0, - /// + /// /// D3D11_MESSAGE_CATEGORY_MISCELLANEOUS Miscellaneous = 1, - /// + /// /// D3D11_MESSAGE_CATEGORY_INITIALIZATION Initialization = 2, - /// + /// /// D3D11_MESSAGE_CATEGORY_CLEANUP Cleanup = 3, - /// + /// /// D3D11_MESSAGE_CATEGORY_COMPILATION Compilation = 4, - /// + /// /// D3D11_MESSAGE_CATEGORY_STATE_CREATION StateCreation = 5, - /// + /// /// D3D11_MESSAGE_CATEGORY_STATE_SETTING StateSetting = 6, - /// + /// /// D3D11_MESSAGE_CATEGORY_STATE_GETTING StateGetting = 7, - /// + /// /// D3D11_MESSAGE_CATEGORY_RESOURCE_MANIPULATION ResourceManipulation = 8, - /// + /// /// D3D11_MESSAGE_CATEGORY_EXECUTION Execution = 9, - /// + /// /// D3D11_MESSAGE_CATEGORY_SHADER Shader = 10, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/MessageId.cs b/src/Vortice.Win32.Direct3D11/Generated/MessageId.cs index 6d33293..6378b78 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/MessageId.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/MessageId.cs @@ -9,3977 +9,3977 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_MESSAGE_ID public enum MessageId : int { - /// + /// /// D3D11_MESSAGE_ID_UNKNOWN Unknown = 0, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_HAZARD DeviceIASetVertexBuffersHazard = 1, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_IASETINDEXBUFFER_HAZARD DeviceIASetIndexBufferHazard = 2, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_VSSETSHADERRESOURCES_HAZARD DeviceVSSetShaderResourcesHazard = 3, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_VSSETCONSTANTBUFFERS_HAZARD DeviceVSSetConstantBuffersHazard = 4, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_GSSETSHADERRESOURCES_HAZARD DeviceGSSetShaderResourcesHazard = 5, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_GSSETCONSTANTBUFFERS_HAZARD DeviceGSSetConstantBuffersHazard = 6, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_PSSETSHADERRESOURCES_HAZARD DevicePSSetShaderResourcesHazard = 7, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_PSSETCONSTANTBUFFERS_HAZARD DevicePSSetConstantBuffersHazard = 8, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_OMSETRENDERTARGETS_HAZARD DeviceOMSetRenderTargetsHazard = 9, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_SOSETTARGETS_HAZARD DeviceSOSetTargetsHazard = 10, - /// + /// /// D3D11_MESSAGE_ID_STRING_FROM_APPLICATION StringFromApplication = 11, - /// + /// /// D3D11_MESSAGE_ID_CORRUPTED_THIS CorruptedThis = 12, - /// + /// /// D3D11_MESSAGE_ID_CORRUPTED_PARAMETER1 CorruptedParameter1 = 13, - /// + /// /// D3D11_MESSAGE_ID_CORRUPTED_PARAMETER2 CorruptedParameter2 = 14, - /// + /// /// D3D11_MESSAGE_ID_CORRUPTED_PARAMETER3 CorruptedParameter3 = 15, - /// + /// /// D3D11_MESSAGE_ID_CORRUPTED_PARAMETER4 CorruptedParameter4 = 16, - /// + /// /// D3D11_MESSAGE_ID_CORRUPTED_PARAMETER5 CorruptedParameter5 = 17, - /// + /// /// D3D11_MESSAGE_ID_CORRUPTED_PARAMETER6 CorruptedParameter6 = 18, - /// + /// /// D3D11_MESSAGE_ID_CORRUPTED_PARAMETER7 CorruptedParameter7 = 19, - /// + /// /// D3D11_MESSAGE_ID_CORRUPTED_PARAMETER8 CorruptedParameter8 = 20, - /// + /// /// D3D11_MESSAGE_ID_CORRUPTED_PARAMETER9 CorruptedParameter9 = 21, - /// + /// /// D3D11_MESSAGE_ID_CORRUPTED_PARAMETER10 CorruptedParameter10 = 22, - /// + /// /// D3D11_MESSAGE_ID_CORRUPTED_PARAMETER11 CorruptedParameter11 = 23, - /// + /// /// D3D11_MESSAGE_ID_CORRUPTED_PARAMETER12 CorruptedParameter12 = 24, - /// + /// /// D3D11_MESSAGE_ID_CORRUPTED_PARAMETER13 CorruptedParameter13 = 25, - /// + /// /// D3D11_MESSAGE_ID_CORRUPTED_PARAMETER14 CorruptedParameter14 = 26, - /// + /// /// D3D11_MESSAGE_ID_CORRUPTED_PARAMETER15 CorruptedParameter15 = 27, - /// + /// /// D3D11_MESSAGE_ID_CORRUPTED_MULTITHREADING CorruptedMultithreading = 28, - /// + /// /// D3D11_MESSAGE_ID_MESSAGE_REPORTING_OUTOFMEMORY MessageReportingOutOfMemory = 29, - /// + /// /// D3D11_MESSAGE_ID_IASETINPUTLAYOUT_UNBINDDELETINGOBJECT IASetInputLayoutUnbindDeletingObject = 30, - /// + /// /// D3D11_MESSAGE_ID_IASETVERTEXBUFFERS_UNBINDDELETINGOBJECT IASetVertexBuffersUnbindDeletingObject = 31, - /// + /// /// D3D11_MESSAGE_ID_IASETINDEXBUFFER_UNBINDDELETINGOBJECT IASetIndexBufferUnbindDeletingObject = 32, - /// + /// /// D3D11_MESSAGE_ID_VSSETSHADER_UNBINDDELETINGOBJECT VSSetShaderUnbindDeletingObject = 33, - /// + /// /// D3D11_MESSAGE_ID_VSSETSHADERRESOURCES_UNBINDDELETINGOBJECT VSSetShaderResourcesUnbindDeletingObject = 34, - /// + /// /// D3D11_MESSAGE_ID_VSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT VSSetConstantBuffersUnbindDeletingObject = 35, - /// + /// /// D3D11_MESSAGE_ID_VSSETSAMPLERS_UNBINDDELETINGOBJECT VSSetSamplersUnbindDeletingObject = 36, - /// + /// /// D3D11_MESSAGE_ID_GSSETSHADER_UNBINDDELETINGOBJECT GSSetShaderUnbindDeletingObject = 37, - /// + /// /// D3D11_MESSAGE_ID_GSSETSHADERRESOURCES_UNBINDDELETINGOBJECT GSSetShaderResourcesUnbindDeletingObject = 38, - /// + /// /// D3D11_MESSAGE_ID_GSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT GSSetConstantBuffersUnbindDeletingObject = 39, - /// + /// /// D3D11_MESSAGE_ID_GSSETSAMPLERS_UNBINDDELETINGOBJECT GSSetSamplersUnbindDeletingObject = 40, - /// + /// /// D3D11_MESSAGE_ID_SOSETTARGETS_UNBINDDELETINGOBJECT SOSetTargetsUnbindDeletingObject = 41, - /// + /// /// D3D11_MESSAGE_ID_PSSETSHADER_UNBINDDELETINGOBJECT PSSetShaderUnbindDeletingObject = 42, - /// + /// /// D3D11_MESSAGE_ID_PSSETSHADERRESOURCES_UNBINDDELETINGOBJECT PSSetShaderResourcesUnbindDeletingObject = 43, - /// + /// /// D3D11_MESSAGE_ID_PSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT PSSetConstantBuffersUnbindDeletingObject = 44, - /// + /// /// D3D11_MESSAGE_ID_PSSETSAMPLERS_UNBINDDELETINGOBJECT PSSetSamplersUnbindDeletingObject = 45, - /// + /// /// D3D11_MESSAGE_ID_RSSETSTATE_UNBINDDELETINGOBJECT RSSetStateUnbindDeletingObject = 46, - /// + /// /// D3D11_MESSAGE_ID_OMSETBLENDSTATE_UNBINDDELETINGOBJECT OMSetBlendStateUnbindDeletingObject = 47, - /// + /// /// D3D11_MESSAGE_ID_OMSETDEPTHSTENCILSTATE_UNBINDDELETINGOBJECT OMSetDepthStencilStateUnbindDeletingObject = 48, - /// + /// /// D3D11_MESSAGE_ID_OMSETRENDERTARGETS_UNBINDDELETINGOBJECT OMSetRenderTargetsUnbindDeletingObject = 49, - /// + /// /// D3D11_MESSAGE_ID_SETPREDICATION_UNBINDDELETINGOBJECT SetPredicationUnbindDeletingObject = 50, - /// + /// /// D3D11_MESSAGE_ID_GETPRIVATEDATA_MOREDATA GetPrivateDataMoreData = 51, - /// + /// /// D3D11_MESSAGE_ID_SETPRIVATEDATA_INVALIDFREEDATA SetPrivateDataInvalidFreeData = 52, - /// + /// /// D3D11_MESSAGE_ID_SETPRIVATEDATA_INVALIDIUNKNOWN SetPrivateDataInvalidIUnknown = 53, - /// + /// /// D3D11_MESSAGE_ID_SETPRIVATEDATA_INVALIDFLAGS SetPrivateDataInvalidFlags = 54, - /// + /// /// D3D11_MESSAGE_ID_SETPRIVATEDATA_CHANGINGPARAMS SetPrivateDataChangingParams = 55, - /// + /// /// D3D11_MESSAGE_ID_SETPRIVATEDATA_OUTOFMEMORY SetPrivateDataOutOfMemory = 56, - /// + /// /// D3D11_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDFORMAT CreateBufferUnrecognizedFormat = 57, - /// + /// /// D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDSAMPLES CreateBufferInvalidSamples = 58, - /// + /// /// D3D11_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDUSAGE CreateBufferUnrecognizedUsage = 59, - /// + /// /// D3D11_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDBINDFLAGS CreateBufferUnrecognizedBindFlags = 60, - /// + /// /// D3D11_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDCPUACCESSFLAGS CreateBufferUnrecognizedCPUAccessFlags = 61, - /// + /// /// D3D11_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDMISCFLAGS CreateBufferUnrecognizedMiscFlags = 62, - /// + /// /// D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDCPUACCESSFLAGS CreateBufferInvalidCPUAccessFlags = 63, - /// + /// /// D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDBINDFLAGS CreateBufferInvalidBindFlags = 64, - /// + /// /// D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDINITIALDATA CreateBufferInvalidInitialData = 65, - /// + /// /// D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDDIMENSIONS CreateBufferInvalidDimensions = 66, - /// + /// /// D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDMIPLEVELS CreateBufferInvalidMipLevels = 67, - /// + /// /// D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDMISCFLAGS CreateBufferInvalidMiscFlags = 68, - /// + /// /// D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDARG_RETURN CreateBufferInvalidArgReturn = 69, - /// + /// /// D3D11_MESSAGE_ID_CREATEBUFFER_OUTOFMEMORY_RETURN CreateBufferOutOfMemoryReturn = 70, - /// + /// /// D3D11_MESSAGE_ID_CREATEBUFFER_NULLDESC CreateBufferNullDesc = 71, - /// + /// /// D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDCONSTANTBUFFERBINDINGS CreateBufferInvalidConstantBufferBindings = 72, - /// + /// /// D3D11_MESSAGE_ID_CREATEBUFFER_LARGEALLOCATION CreateBufferLargeAllocation = 73, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDFORMAT CreateTexture1DUnrecognizedFormat = 74, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE1D_UNSUPPORTEDFORMAT CreateTexture1DUnsupportedFormat = 75, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE1D_INVALIDSAMPLES CreateTexture1DInvalidSamples = 76, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDUSAGE CreateTexture1DUnrecognizedUsage = 77, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDBINDFLAGS CreateTexture1DUnrecognizedBindFlags = 78, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDCPUACCESSFLAGS CreateTexture1DUnrecognizedCPUAccessFlags = 79, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDMISCFLAGS CreateTexture1DUnrecognizedMiscFlags = 80, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE1D_INVALIDCPUACCESSFLAGS CreateTexture1DInvalidCPUAccessFlags = 81, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE1D_INVALIDBINDFLAGS CreateTexture1DInvalidBindFlags = 82, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE1D_INVALIDINITIALDATA CreateTexture1DInvalidInitialData = 83, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE1D_INVALIDDIMENSIONS CreateTexture1DInvalidDimensions = 84, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE1D_INVALIDMIPLEVELS CreateTexture1DInvalidMipLevels = 85, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE1D_INVALIDMISCFLAGS CreateTexture1DInvalidMiscFlags = 86, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE1D_INVALIDARG_RETURN CreateTexture1DInvalidArgReturn = 87, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE1D_OUTOFMEMORY_RETURN CreateTexture1DOutOfMemoryReturn = 88, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE1D_NULLDESC CreateTexture1DNullDesc = 89, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE1D_LARGEALLOCATION CreateTexture1DLargeAllocation = 90, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDFORMAT CreateTexture2DUnrecognizedFormat = 91, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE2D_UNSUPPORTEDFORMAT CreateTexture2DUnsupportedFormat = 92, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE2D_INVALIDSAMPLES CreateTexture2DInvalidSamples = 93, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDUSAGE CreateTexture2DUnrecognizedUsage = 94, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDBINDFLAGS CreateTexture2DUnrecognizedBindFlags = 95, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDCPUACCESSFLAGS CreateTexture2DUnrecognizedCPUAccessFlags = 96, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDMISCFLAGS CreateTexture2DUnrecognizedMiscFlags = 97, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE2D_INVALIDCPUACCESSFLAGS CreateTexture2DInvalidCPUAccessFlags = 98, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE2D_INVALIDBINDFLAGS CreateTexture2DInvalidBindFlags = 99, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE2D_INVALIDINITIALDATA CreateTexture2DInvalidInitialData = 100, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE2D_INVALIDDIMENSIONS CreateTexture2DInvalidDimensions = 101, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE2D_INVALIDMIPLEVELS CreateTexture2DInvalidMipLevels = 102, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE2D_INVALIDMISCFLAGS CreateTexture2DInvalidMiscFlags = 103, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE2D_INVALIDARG_RETURN CreateTexture2DInvalidArgReturn = 104, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE2D_OUTOFMEMORY_RETURN CreateTexture2DOutOfMemoryReturn = 105, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE2D_NULLDESC CreateTexture2DNullDesc = 106, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE2D_LARGEALLOCATION CreateTexture2DLargeAllocation = 107, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDFORMAT CreateTexture3DUnrecognizedFormat = 108, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE3D_UNSUPPORTEDFORMAT CreateTexture3DUnsupportedFormat = 109, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE3D_INVALIDSAMPLES CreateTexture3DInvalidSamples = 110, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDUSAGE CreateTexture3DUnrecognizedUsage = 111, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDBINDFLAGS CreateTexture3DUnrecognizedBindFlags = 112, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDCPUACCESSFLAGS CreateTexture3DUnrecognizedCPUAccessFlags = 113, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDMISCFLAGS CreateTexture3DUnrecognizedMiscFlags = 114, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE3D_INVALIDCPUACCESSFLAGS CreateTexture3DInvalidCPUAccessFlags = 115, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE3D_INVALIDBINDFLAGS CreateTexture3DInvalidBindFlags = 116, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE3D_INVALIDINITIALDATA CreateTexture3DInvalidInitialData = 117, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE3D_INVALIDDIMENSIONS CreateTexture3DInvalidDimensions = 118, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE3D_INVALIDMIPLEVELS CreateTexture3DInvalidMipLevels = 119, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE3D_INVALIDMISCFLAGS CreateTexture3DInvalidMiscFlags = 120, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE3D_INVALIDARG_RETURN CreateTexture3DInvalidArgReturn = 121, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE3D_OUTOFMEMORY_RETURN CreateTexture3DOutOfMemoryReturn = 122, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE3D_NULLDESC CreateTexture3DNullDesc = 123, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE3D_LARGEALLOCATION CreateTexture3DLargeAllocation = 124, - /// + /// /// D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_UNRECOGNIZEDFORMAT CreateShaderResourceViewUnrecognizedFormat = 125, - /// + /// /// D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDDESC CreateShaderResourceViewInvalidDesc = 126, - /// + /// /// D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDFORMAT CreateShaderResourceViewInvalidFormat = 127, - /// + /// /// D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDDIMENSIONS CreateShaderResourceViewInvalidDimensions = 128, - /// + /// /// D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDRESOURCE CreateShaderResourceViewInvalidResource = 129, - /// + /// /// D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_TOOMANYOBJECTS CreateShaderResourceViewTooManyObjects = 130, - /// + /// /// D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDARG_RETURN CreateShaderResourceViewInvalidArgReturn = 131, - /// + /// /// D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_OUTOFMEMORY_RETURN CreateShaderResourceViewOutOfMemoryReturn = 132, - /// + /// /// D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_UNRECOGNIZEDFORMAT CreateRenderTargetViewUnrecognizedFormat = 133, - /// + /// /// D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_UNSUPPORTEDFORMAT CreateRenderTargetViewUnsupportedFormat = 134, - /// + /// /// D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDDESC CreateRenderTargetViewInvalidDesc = 135, - /// + /// /// D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDFORMAT CreateRenderTargetViewInvalidFormat = 136, - /// + /// /// D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDDIMENSIONS CreateRenderTargetViewInvalidDimensions = 137, - /// + /// /// D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDRESOURCE CreateRenderTargetViewInvalidResource = 138, - /// + /// /// D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_TOOMANYOBJECTS CreateRenderTargetViewTooManyObjects = 139, - /// + /// /// D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDARG_RETURN CreateRenderTargetViewInvalidArgReturn = 140, - /// + /// /// D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_OUTOFMEMORY_RETURN CreateRenderTargetViewOutOfMemoryReturn = 141, - /// + /// /// D3D11_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_UNRECOGNIZEDFORMAT CreateDepthStencilViewUnrecognizedFormat = 142, - /// + /// /// D3D11_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDDESC CreateDepthStencilViewInvalidDesc = 143, - /// + /// /// D3D11_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDFORMAT CreateDepthStencilViewInvalidFormat = 144, - /// + /// /// D3D11_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDDIMENSIONS CreateDepthStencilViewInvalidDimensions = 145, - /// + /// /// D3D11_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDRESOURCE CreateDepthStencilViewInvalidResource = 146, - /// + /// /// D3D11_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_TOOMANYOBJECTS CreateDepthStencilViewTooManyObjects = 147, - /// + /// /// D3D11_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDARG_RETURN CreateDepthStencilViewInvalidArgReturn = 148, - /// + /// /// D3D11_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_OUTOFMEMORY_RETURN CreateDepthStencilViewOutOfMemoryReturn = 149, - /// + /// /// D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_OUTOFMEMORY CreateInputLayoutOutOfMemory = 150, - /// + /// /// D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_TOOMANYELEMENTS CreateInputLayoutTooManyElements = 151, - /// + /// /// D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDFORMAT CreateInputLayoutInvalidFormat = 152, - /// + /// /// D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_INCOMPATIBLEFORMAT CreateInputLayoutIncompatibleFormat = 153, - /// + /// /// D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDSLOT CreateInputLayoutInvalidSlot = 154, - /// + /// /// D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDINPUTSLOTCLASS CreateInputLayoutInvalidInputSlotClass = 155, - /// + /// /// D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_STEPRATESLOTCLASSMISMATCH CreateInputLayoutStepRateSlotClassMismatch = 156, - /// + /// /// D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDSLOTCLASSCHANGE CreateInputLayoutInvalidSlotClassChange = 157, - /// + /// /// D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDSTEPRATECHANGE CreateInputLayoutInvalidStepRateChange = 158, - /// + /// /// D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDALIGNMENT CreateInputLayoutInvalidAlignment = 159, - /// + /// /// D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_DUPLICATESEMANTIC CreateInputLayoutDuplicateSemantic = 160, - /// + /// /// D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_UNPARSEABLEINPUTSIGNATURE CreateInputLayoutUnparseableInputSignature = 161, - /// + /// /// D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_NULLSEMANTIC CreateInputLayoutNullSemantic = 162, - /// + /// /// D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_MISSINGELEMENT CreateInputLayoutMissingElement = 163, - /// + /// /// D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_NULLDESC CreateInputLayoutNullDesc = 164, - /// + /// /// D3D11_MESSAGE_ID_CREATEVERTEXSHADER_OUTOFMEMORY CreateVertexShaderOutOfMemory = 165, - /// + /// /// D3D11_MESSAGE_ID_CREATEVERTEXSHADER_INVALIDSHADERBYTECODE CreateVertexShaderInvalidShaderBytecode = 166, - /// + /// /// D3D11_MESSAGE_ID_CREATEVERTEXSHADER_INVALIDSHADERTYPE CreateVertexShaderInvalidShaderType = 167, - /// + /// /// D3D11_MESSAGE_ID_CREATEGEOMETRYSHADER_OUTOFMEMORY CreateGeometryShaderOutOfMemory = 168, - /// + /// /// D3D11_MESSAGE_ID_CREATEGEOMETRYSHADER_INVALIDSHADERBYTECODE CreateGeometryShaderInvalidShaderBytecode = 169, - /// + /// /// D3D11_MESSAGE_ID_CREATEGEOMETRYSHADER_INVALIDSHADERTYPE CreateGeometryShaderInvalidShaderType = 170, - /// + /// /// D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_OUTOFMEMORY CreateGeometryShaderWithStreamOutputOutOfMemory = 171, - /// + /// /// D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSHADERBYTECODE CreateGeometryShaderWithStreamOutputInvalidShaderBytecode = 172, - /// + /// /// D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSHADERTYPE CreateGeometryShaderWithStreamOutputInvalidShaderType = 173, - /// + /// /// D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDNUMENTRIES CreateGeometryShaderWithStreamOutputInvalidNumEntries = 174, - /// + /// /// D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_OUTPUTSTREAMSTRIDEUNUSED CreateGeometryShaderWithStreamOutputOutputStreamStrideUnused = 175, - /// + /// /// D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_UNEXPECTEDDECL CreateGeometryShaderWithStreamOutputUnexpectedDecl = 176, - /// + /// /// D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_EXPECTEDDECL CreateGeometryShaderWithStreamOutputExpectedDecl = 177, - /// + /// /// D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_OUTPUTSLOT0EXPECTED CreateGeometryShaderWithStreamOutputOutputSlot0Expected = 178, - /// + /// /// D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDOUTPUTSLOT CreateGeometryShaderWithStreamOutputInvalidOutputSlot = 179, - /// + /// /// D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_ONLYONEELEMENTPERSLOT CreateGeometryShaderWithStreamOutputOnlyoneelementperslot = 180, - /// + /// /// D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDCOMPONENTCOUNT CreateGeometryShaderWithStreamOutputInvalidComponentCount = 181, - /// + /// /// D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSTARTCOMPONENTANDCOMPONENTCOUNT CreateGeometryShaderWithStreamOutputInvalidStartComponentAndComponentCount = 182, - /// + /// /// D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDGAPDEFINITION CreateGeometryShaderWithStreamOutputInvalidGapDefinition = 183, - /// + /// /// D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_REPEATEDOUTPUT CreateGeometryShaderWithStreamOutputRepeatedOutput = 184, - /// + /// /// D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDOUTPUTSTREAMSTRIDE CreateGeometryShaderWithStreamOutputInvalidOutputStreamStride = 185, - /// + /// /// D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_MISSINGSEMANTIC CreateGeometryShaderWithStreamOutputMissingsemantic = 186, - /// + /// /// D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_MASKMISMATCH CreateGeometryShaderWithStreamOutputMaskmismatch = 187, - /// + /// /// D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_CANTHAVEONLYGAPS CreateGeometryShaderWithStreamOutputCanthaveonlygaps = 188, - /// + /// /// D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_DECLTOOCOMPLEX CreateGeometryShaderWithStreamOutputDecltoocomplex = 189, - /// + /// /// D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_MISSINGOUTPUTSIGNATURE CreateGeometryShaderWithStreamOutputMissingOutputSignature = 190, - /// + /// /// D3D11_MESSAGE_ID_CREATEPIXELSHADER_OUTOFMEMORY CreatePixelShaderOutOfMemory = 191, - /// + /// /// D3D11_MESSAGE_ID_CREATEPIXELSHADER_INVALIDSHADERBYTECODE CreatePixelShaderInvalidShaderBytecode = 192, - /// + /// /// D3D11_MESSAGE_ID_CREATEPIXELSHADER_INVALIDSHADERTYPE CreatePixelShaderInvalidShaderType = 193, - /// + /// /// D3D11_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDFILLMODE CreateRasterizerStateInvalidFillMode = 194, - /// + /// /// D3D11_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDCULLMODE CreateRasterizerStateInvalidCullMode = 195, - /// + /// /// D3D11_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDDEPTHBIASCLAMP CreateRasterizerStateInvalidDepthBiasClamp = 196, - /// + /// /// D3D11_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDSLOPESCALEDDEPTHBIAS CreateRasterizerStateInvalidSlopeScaledDepthBias = 197, - /// + /// /// D3D11_MESSAGE_ID_CREATERASTERIZERSTATE_TOOMANYOBJECTS CreateRasterizerStateTooManyObjects = 198, - /// + /// /// D3D11_MESSAGE_ID_CREATERASTERIZERSTATE_NULLDESC CreateRasterizerStateNullDesc = 199, - /// + /// /// D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDDEPTHWRITEMASK CreateDepthStencilStateInvalidDepthWriteMask = 200, - /// + /// /// D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDDEPTHFUNC CreateDepthStencilStateInvalidDepthFunc = 201, - /// + /// /// D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILFAILOP CreateDepthStencilStateInvalidFrontFaceStencilFailOp = 202, - /// + /// /// D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILZFAILOP CreateDepthStencilStateInvalidFrontFaceStencilZFailOp = 203, - /// + /// /// D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILPASSOP CreateDepthStencilStateInvalidFrontFaceStencilPassOp = 204, - /// + /// /// D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILFUNC CreateDepthStencilStateInvalidFrontFaceStencilFunc = 205, - /// + /// /// D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILFAILOP CreateDepthStencilStateInvalidBackFaceStencilFailOp = 206, - /// + /// /// D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILZFAILOP CreateDepthStencilStateInvalidBackFaceStencilZFailOp = 207, - /// + /// /// D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILPASSOP CreateDepthStencilStateInvalidBackFaceStencilPassOp = 208, - /// + /// /// D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILFUNC CreateDepthStencilStateInvalidBackFaceStencilFunc = 209, - /// + /// /// D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_TOOMANYOBJECTS CreateDepthStencilStateTooManyObjects = 210, - /// + /// /// D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_NULLDESC CreateDepthStencilStateNullDesc = 211, - /// + /// /// D3D11_MESSAGE_ID_CREATEBLENDSTATE_INVALIDSRCBLEND CreateBlendStateInvalidSrcBlend = 212, - /// + /// /// D3D11_MESSAGE_ID_CREATEBLENDSTATE_INVALIDDESTBLEND CreateBlendStateInvalidDestBlend = 213, - /// + /// /// D3D11_MESSAGE_ID_CREATEBLENDSTATE_INVALIDBLENDOP CreateBlendStateInvalidBlendOp = 214, - /// + /// /// D3D11_MESSAGE_ID_CREATEBLENDSTATE_INVALIDSRCBLENDALPHA CreateBlendStateInvalidSrcBlendAlpha = 215, - /// + /// /// D3D11_MESSAGE_ID_CREATEBLENDSTATE_INVALIDDESTBLENDALPHA CreateBlendStateInvalidDestBlendAlpha = 216, - /// + /// /// D3D11_MESSAGE_ID_CREATEBLENDSTATE_INVALIDBLENDOPALPHA CreateBlendStateInvalidBlendOpAlpha = 217, - /// + /// /// D3D11_MESSAGE_ID_CREATEBLENDSTATE_INVALIDRENDERTARGETWRITEMASK CreateBlendStateInvalidRenderTargetWriteMask = 218, - /// + /// /// D3D11_MESSAGE_ID_CREATEBLENDSTATE_TOOMANYOBJECTS CreateBlendStateTooManyObjects = 219, - /// + /// /// D3D11_MESSAGE_ID_CREATEBLENDSTATE_NULLDESC CreateBlendStateNullDesc = 220, - /// + /// /// D3D11_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDFILTER CreateSamplerStateInvalidFilter = 221, - /// + /// /// D3D11_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDADDRESSU CreateSamplerStateInvalidAddressU = 222, - /// + /// /// D3D11_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDADDRESSV CreateSamplerStateInvalidAddressV = 223, - /// + /// /// D3D11_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDADDRESSW CreateSamplerStateInvalidAddressW = 224, - /// + /// /// D3D11_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDMIPLODBIAS CreateSamplerStateInvalidmiplodbias = 225, - /// + /// /// D3D11_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDMAXANISOTROPY CreateSamplerStateInvalidMaxAnisotropy = 226, - /// + /// /// D3D11_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDCOMPARISONFUNC CreateSamplerStateInvalidComparisonFunc = 227, - /// + /// /// D3D11_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDMINLOD CreateSamplerStateInvalidMinLod = 228, - /// + /// /// D3D11_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDMAXLOD CreateSamplerStateInvalidMaxLod = 229, - /// + /// /// D3D11_MESSAGE_ID_CREATESAMPLERSTATE_TOOMANYOBJECTS CreateSamplerStateTooManyObjects = 230, - /// + /// /// D3D11_MESSAGE_ID_CREATESAMPLERSTATE_NULLDESC CreateSamplerStateNullDesc = 231, - /// + /// /// D3D11_MESSAGE_ID_CREATEQUERYORPREDICATE_INVALIDQUERY CreateQueryOrPredicateInvalidQuery = 232, - /// + /// /// D3D11_MESSAGE_ID_CREATEQUERYORPREDICATE_INVALIDMISCFLAGS CreateQueryOrPredicateInvalidMiscFlags = 233, - /// + /// /// D3D11_MESSAGE_ID_CREATEQUERYORPREDICATE_UNEXPECTEDMISCFLAG CreateQueryOrPredicateUnexpectedmiscflag = 234, - /// + /// /// D3D11_MESSAGE_ID_CREATEQUERYORPREDICATE_NULLDESC CreateQueryOrPredicateNullDesc = 235, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_IASETPRIMITIVETOPOLOGY_TOPOLOGY_UNRECOGNIZED DeviceIASetPrimitiveTopologyTopologyUnrecognized = 236, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_IASETPRIMITIVETOPOLOGY_TOPOLOGY_UNDEFINED DeviceIASetPrimitiveTopologyTopologyUndefined = 237, - /// + /// /// D3D11_MESSAGE_ID_IASETVERTEXBUFFERS_INVALIDBUFFER IASetVertexBuffersInvalidBuffer = 238, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_OFFSET_TOO_LARGE DeviceIASetVertexBuffersOffsetTooLarge = 239, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_BUFFERS_EMPTY DeviceIASetVertexBuffersBuffersEmpty = 240, - /// + /// /// D3D11_MESSAGE_ID_IASETINDEXBUFFER_INVALIDBUFFER IASetIndexBufferInvalidBuffer = 241, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_IASETINDEXBUFFER_FORMAT_INVALID DeviceIASetIndexBufferFormatInvalid = 242, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_IASETINDEXBUFFER_OFFSET_TOO_LARGE DeviceIASetIndexBufferOffsetTooLarge = 243, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_IASETINDEXBUFFER_OFFSET_UNALIGNED DeviceIASetIndexBufferOffsetUnaligned = 244, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_VSSETSHADERRESOURCES_VIEWS_EMPTY DeviceVSSetShaderResourcesViewsEmpty = 245, - /// + /// /// D3D11_MESSAGE_ID_VSSETCONSTANTBUFFERS_INVALIDBUFFER VSSetConstantBuffersInvalidBuffer = 246, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_VSSETCONSTANTBUFFERS_BUFFERS_EMPTY DeviceVSSetConstantBuffersBuffersEmpty = 247, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_VSSETSAMPLERS_SAMPLERS_EMPTY DeviceVSSetSamplersSamplersEmpty = 248, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_GSSETSHADERRESOURCES_VIEWS_EMPTY DeviceGSSetShaderResourcesViewsEmpty = 249, - /// + /// /// D3D11_MESSAGE_ID_GSSETCONSTANTBUFFERS_INVALIDBUFFER GSSetConstantBuffersInvalidBuffer = 250, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_GSSETCONSTANTBUFFERS_BUFFERS_EMPTY DeviceGSSetConstantBuffersBuffersEmpty = 251, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_GSSETSAMPLERS_SAMPLERS_EMPTY DeviceGSSetSamplersSamplersEmpty = 252, - /// + /// /// D3D11_MESSAGE_ID_SOSETTARGETS_INVALIDBUFFER SOSetTargetsInvalidBuffer = 253, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_SOSETTARGETS_OFFSET_UNALIGNED DeviceSOSetTargetsOffsetUnaligned = 254, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_PSSETSHADERRESOURCES_VIEWS_EMPTY DevicePSSetShaderResourcesViewsEmpty = 255, - /// + /// /// D3D11_MESSAGE_ID_PSSETCONSTANTBUFFERS_INVALIDBUFFER PSSetConstantBuffersInvalidBuffer = 256, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_PSSETCONSTANTBUFFERS_BUFFERS_EMPTY DevicePSSetConstantBuffersBuffersEmpty = 257, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_PSSETSAMPLERS_SAMPLERS_EMPTY DevicePSSetSamplersSamplersEmpty = 258, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_RSSETVIEWPORTS_INVALIDVIEWPORT DeviceRSSetViewportsInvalidviewport = 259, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_RSSETSCISSORRECTS_INVALIDSCISSOR DeviceRSSetScissorRectsInvalidscissor = 260, - /// + /// /// D3D11_MESSAGE_ID_CLEARRENDERTARGETVIEW_DENORMFLUSH ClearRenderTargetViewDenormFlush = 261, - /// + /// /// D3D11_MESSAGE_ID_CLEARDEPTHSTENCILVIEW_DENORMFLUSH ClearDepthStencilViewDenormFlush = 262, - /// + /// /// D3D11_MESSAGE_ID_CLEARDEPTHSTENCILVIEW_INVALID ClearDepthStencilViewInvalid = 263, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_IAGETVERTEXBUFFERS_BUFFERS_EMPTY DeviceIAGetVertexBuffersBuffersEmpty = 264, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_VSGETSHADERRESOURCES_VIEWS_EMPTY DeviceVSGetShaderResourcesViewsEmpty = 265, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_VSGETCONSTANTBUFFERS_BUFFERS_EMPTY DeviceVSGetConstantBuffersBuffersEmpty = 266, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_VSGETSAMPLERS_SAMPLERS_EMPTY DeviceVSGetSamplersSamplersEmpty = 267, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_GSGETSHADERRESOURCES_VIEWS_EMPTY DeviceGSGetShaderResourcesViewsEmpty = 268, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_GSGETCONSTANTBUFFERS_BUFFERS_EMPTY DeviceGSGetConstantBuffersBuffersEmpty = 269, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_GSGETSAMPLERS_SAMPLERS_EMPTY DeviceGSGetSamplersSamplersEmpty = 270, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_SOGETTARGETS_BUFFERS_EMPTY DeviceSOGetTargetsBuffersEmpty = 271, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_PSGETSHADERRESOURCES_VIEWS_EMPTY DevicePSGetShaderResourcesViewsEmpty = 272, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_PSGETCONSTANTBUFFERS_BUFFERS_EMPTY DevicePSGetConstantBuffersBuffersEmpty = 273, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_PSGETSAMPLERS_SAMPLERS_EMPTY DevicePSGetSamplersSamplersEmpty = 274, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_RSGETVIEWPORTS_VIEWPORTS_EMPTY DeviceRSGetViewportsViewportsEmpty = 275, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_RSGETSCISSORRECTS_RECTS_EMPTY DeviceRSGetScissorRectsRectsEmpty = 276, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_GENERATEMIPS_RESOURCE_INVALID DeviceGenerateMipsResourceInvalid = 277, - /// + /// /// D3D11_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDDESTINATIONSUBRESOURCE CopySubresourceRegionInvalidDestinationSubresource = 278, - /// + /// /// D3D11_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDSOURCESUBRESOURCE CopySubresourceRegionInvalidsourcesubresource = 279, - /// + /// /// D3D11_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDSOURCEBOX CopySubresourceRegionInvalidsourcebox = 280, - /// + /// /// D3D11_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDSOURCE CopySubresourceRegionInvalidSource = 281, - /// + /// /// D3D11_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDDESTINATIONSTATE CopySubresourceRegionInvalidDestinationState = 282, - /// + /// /// D3D11_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDSOURCESTATE CopySubresourceRegionInvalidSourceState = 283, - /// + /// /// D3D11_MESSAGE_ID_COPYRESOURCE_INVALIDSOURCE CopyResourceInvalidSource = 284, - /// + /// /// D3D11_MESSAGE_ID_COPYRESOURCE_INVALIDDESTINATIONSTATE CopyResourceInvalidDestinationState = 285, - /// + /// /// D3D11_MESSAGE_ID_COPYRESOURCE_INVALIDSOURCESTATE CopyResourceInvalidSourceState = 286, - /// + /// /// D3D11_MESSAGE_ID_UPDATESUBRESOURCE_INVALIDDESTINATIONSUBRESOURCE UpdateSubresourceInvalidDestinationSubresource = 287, - /// + /// /// D3D11_MESSAGE_ID_UPDATESUBRESOURCE_INVALIDDESTINATIONBOX UpdateSubresourceInvalidDestinationBox = 288, - /// + /// /// D3D11_MESSAGE_ID_UPDATESUBRESOURCE_INVALIDDESTINATIONSTATE UpdateSubresourceInvalidDestinationState = 289, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_DESTINATION_INVALID DeviceResolveSubresourceDestinationInvalid = 290, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_DESTINATION_SUBRESOURCE_INVALID DeviceResolveSubresourceDestinationSubresourceInvalid = 291, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_SOURCE_INVALID DeviceResolveSubresourceSourceInvalid = 292, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_SOURCE_SUBRESOURCE_INVALID DeviceResolveSubresourceSourceSubresourceInvalid = 293, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_FORMAT_INVALID DeviceResolveSubresourceFormatInvalid = 294, - /// + /// /// D3D11_MESSAGE_ID_BUFFER_MAP_INVALIDMAPTYPE BufferMapInvalidMapType = 295, - /// + /// /// D3D11_MESSAGE_ID_BUFFER_MAP_INVALIDFLAGS BufferMapInvalidFlags = 296, - /// + /// /// D3D11_MESSAGE_ID_BUFFER_MAP_ALREADYMAPPED BufferMapAlreadyMapped = 297, - /// + /// /// D3D11_MESSAGE_ID_BUFFER_MAP_DEVICEREMOVED_RETURN BufferMapDeviceRemovedReturn = 298, - /// + /// /// D3D11_MESSAGE_ID_BUFFER_UNMAP_NOTMAPPED BufferUnmapNotMapped = 299, - /// + /// /// D3D11_MESSAGE_ID_TEXTURE1D_MAP_INVALIDMAPTYPE Texture1DMapInvalidMapType = 300, - /// + /// /// D3D11_MESSAGE_ID_TEXTURE1D_MAP_INVALIDSUBRESOURCE Texture1DMapInvalidSubresource = 301, - /// + /// /// D3D11_MESSAGE_ID_TEXTURE1D_MAP_INVALIDFLAGS Texture1DMapInvalidFlags = 302, - /// + /// /// D3D11_MESSAGE_ID_TEXTURE1D_MAP_ALREADYMAPPED Texture1DMapAlreadyMapped = 303, - /// + /// /// D3D11_MESSAGE_ID_TEXTURE1D_MAP_DEVICEREMOVED_RETURN Texture1DMapDeviceRemovedReturn = 304, - /// + /// /// D3D11_MESSAGE_ID_TEXTURE1D_UNMAP_INVALIDSUBRESOURCE Texture1DUnmapInvalidSubresource = 305, - /// + /// /// D3D11_MESSAGE_ID_TEXTURE1D_UNMAP_NOTMAPPED Texture1DUnmapNotMapped = 306, - /// + /// /// D3D11_MESSAGE_ID_TEXTURE2D_MAP_INVALIDMAPTYPE Texture2DMapInvalidMapType = 307, - /// + /// /// D3D11_MESSAGE_ID_TEXTURE2D_MAP_INVALIDSUBRESOURCE Texture2DMapInvalidSubresource = 308, - /// + /// /// D3D11_MESSAGE_ID_TEXTURE2D_MAP_INVALIDFLAGS Texture2DMapInvalidFlags = 309, - /// + /// /// D3D11_MESSAGE_ID_TEXTURE2D_MAP_ALREADYMAPPED Texture2DMapAlreadyMapped = 310, - /// + /// /// D3D11_MESSAGE_ID_TEXTURE2D_MAP_DEVICEREMOVED_RETURN Texture2DMapDeviceRemovedReturn = 311, - /// + /// /// D3D11_MESSAGE_ID_TEXTURE2D_UNMAP_INVALIDSUBRESOURCE Texture2DUnmapInvalidSubresource = 312, - /// + /// /// D3D11_MESSAGE_ID_TEXTURE2D_UNMAP_NOTMAPPED Texture2DUnmapNotMapped = 313, - /// + /// /// D3D11_MESSAGE_ID_TEXTURE3D_MAP_INVALIDMAPTYPE Texture3DMapInvalidMapType = 314, - /// + /// /// D3D11_MESSAGE_ID_TEXTURE3D_MAP_INVALIDSUBRESOURCE Texture3DMapInvalidSubresource = 315, - /// + /// /// D3D11_MESSAGE_ID_TEXTURE3D_MAP_INVALIDFLAGS Texture3DMapInvalidFlags = 316, - /// + /// /// D3D11_MESSAGE_ID_TEXTURE3D_MAP_ALREADYMAPPED Texture3DMapAlreadyMapped = 317, - /// + /// /// D3D11_MESSAGE_ID_TEXTURE3D_MAP_DEVICEREMOVED_RETURN Texture3DMapDeviceRemovedReturn = 318, - /// + /// /// D3D11_MESSAGE_ID_TEXTURE3D_UNMAP_INVALIDSUBRESOURCE Texture3DUnmapInvalidSubresource = 319, - /// + /// /// D3D11_MESSAGE_ID_TEXTURE3D_UNMAP_NOTMAPPED Texture3DUnmapNotMapped = 320, - /// + /// /// D3D11_MESSAGE_ID_CHECKFORMATSUPPORT_FORMAT_DEPRECATED CheckFormatSupportFormatDeprecated = 321, - /// + /// /// D3D11_MESSAGE_ID_CHECKMULTISAMPLEQUALITYLEVELS_FORMAT_DEPRECATED CheckMultisampleQualityLevelsFormatDeprecated = 322, - /// + /// /// D3D11_MESSAGE_ID_SETEXCEPTIONMODE_UNRECOGNIZEDFLAGS SetExceptionModeUnrecognizedflags = 323, - /// + /// /// D3D11_MESSAGE_ID_SETEXCEPTIONMODE_INVALIDARG_RETURN SetExceptionModeInvalidArgReturn = 324, - /// + /// /// D3D11_MESSAGE_ID_SETEXCEPTIONMODE_DEVICEREMOVED_RETURN SetExceptionModeDeviceRemovedReturn = 325, - /// + /// /// D3D11_MESSAGE_ID_REF_SIMULATING_INFINITELY_FAST_HARDWARE RefSimulatingInfinitelyFastHardware = 326, - /// + /// /// D3D11_MESSAGE_ID_REF_THREADING_MODE RefThreadingMode = 327, - /// + /// /// D3D11_MESSAGE_ID_REF_UMDRIVER_EXCEPTION RefUmdriverException = 328, - /// + /// /// D3D11_MESSAGE_ID_REF_KMDRIVER_EXCEPTION RefKmdriverException = 329, - /// + /// /// D3D11_MESSAGE_ID_REF_HARDWARE_EXCEPTION RefHardwareException = 330, - /// + /// /// D3D11_MESSAGE_ID_REF_ACCESSING_INDEXABLE_TEMP_OUT_OF_RANGE RefAccessingIndexableTempOutOfRange = 331, - /// + /// /// D3D11_MESSAGE_ID_REF_PROBLEM_PARSING_SHADER RefProblemParsingShader = 332, - /// + /// /// D3D11_MESSAGE_ID_REF_OUT_OF_MEMORY RefOutOfMemory = 333, - /// + /// /// D3D11_MESSAGE_ID_REF_INFO RefInfo = 334, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_VERTEXPOS_OVERFLOW DeviceDrawVertexPosOverflow = 335, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAWINDEXED_INDEXPOS_OVERFLOW DeviceDrawindexedIndexPosOverflow = 336, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAWINSTANCED_VERTEXPOS_OVERFLOW DeviceDrawInstancedVertexPosOverflow = 337, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAWINSTANCED_INSTANCEPOS_OVERFLOW DeviceDrawInstancedInstancePosOverflow = 338, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAWINDEXEDINSTANCED_INSTANCEPOS_OVERFLOW DeviceDrawIndexedInstancedInstancePosOverflow = 339, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAWINDEXEDINSTANCED_INDEXPOS_OVERFLOW DeviceDrawIndexedInstancedIndexPosOverflow = 340, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_VERTEX_SHADER_NOT_SET DeviceDrawVertexShaderNotSet = 341, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_SHADER_LINKAGE_SEMANTICNAME_NOT_FOUND DeviceShaderLinkageSemanticNameNotFound = 342, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_SHADER_LINKAGE_REGISTERINDEX DeviceShaderLinkageRegisterIndex = 343, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_SHADER_LINKAGE_COMPONENTTYPE DeviceShaderLinkageComponentType = 344, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_SHADER_LINKAGE_REGISTERMASK DeviceShaderLinkageRegisterMask = 345, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_SHADER_LINKAGE_SYSTEMVALUE DeviceShaderLinkageSystemValue = 346, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_SHADER_LINKAGE_NEVERWRITTEN_ALWAYSREADS DeviceShaderLinkageNeverWrittenAlwaysReads = 347, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_VERTEX_BUFFER_NOT_SET DeviceDrawVertexBufferNotSet = 348, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_INPUTLAYOUT_NOT_SET DeviceDrawInputLayoutNotSet = 349, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_CONSTANT_BUFFER_NOT_SET DeviceDrawConstantBufferNotSet = 350, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_CONSTANT_BUFFER_TOO_SMALL DeviceDrawConstantBufferTooSmall = 351, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_SAMPLER_NOT_SET DeviceDrawSamplerNotSet = 352, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_SHADERRESOURCEVIEW_NOT_SET DeviceDrawShaderResourceViewNotSet = 353, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_VIEW_DIMENSION_MISMATCH DeviceDrawViewDimensionMismatch = 354, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_VERTEX_BUFFER_STRIDE_TOO_SMALL DeviceDrawVertexBufferStrideTooSmall = 355, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_VERTEX_BUFFER_TOO_SMALL DeviceDrawVertexBufferTooSmall = 356, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_INDEX_BUFFER_NOT_SET DeviceDrawIndexBufferNotSet = 357, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_INDEX_BUFFER_FORMAT_INVALID DeviceDrawIndexBufferFormatInvalid = 358, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_INDEX_BUFFER_TOO_SMALL DeviceDrawIndexBufferTooSmall = 359, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_GS_INPUT_PRIMITIVE_MISMATCH DeviceDrawGSInputPrimitiveMismatch = 360, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_RESOURCE_RETURN_TYPE_MISMATCH DeviceDrawResourceReturnTypeMismatch = 361, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_POSITION_NOT_PRESENT DeviceDrawPositionNotPresent = 362, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_OUTPUT_STREAM_NOT_SET DeviceDrawOutputStreamNotSet = 363, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_BOUND_RESOURCE_MAPPED DeviceDrawBoundResourceMapped = 364, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_INVALID_PRIMITIVETOPOLOGY DeviceDrawInvalidPrimitivetopology = 365, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_VERTEX_OFFSET_UNALIGNED DeviceDrawVertexOffsetUnaligned = 366, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_VERTEX_STRIDE_UNALIGNED DeviceDrawVertexStrideUnaligned = 367, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_INDEX_OFFSET_UNALIGNED DeviceDrawIndexOffsetUnaligned = 368, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_OUTPUT_STREAM_OFFSET_UNALIGNED DeviceDrawOutputStreamOffsetUnaligned = 369, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_RESOURCE_FORMAT_LD_UNSUPPORTED DeviceDrawResourceFormatLdUnsupported = 370, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_RESOURCE_FORMAT_SAMPLE_UNSUPPORTED DeviceDrawResourceFormatSampleUnsupported = 371, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_RESOURCE_FORMAT_SAMPLE_C_UNSUPPORTED DeviceDrawResourceFormatSampleCUnsupported = 372, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_RESOURCE_MULTISAMPLE_UNSUPPORTED DeviceDrawResourceMultisampleUnsupported = 373, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_SO_TARGETS_BOUND_WITHOUT_SOURCE DeviceDrawSOTargetsBoundWithoutSource = 374, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_SO_STRIDE_LARGER_THAN_BUFFER DeviceDrawSOStrideLargerThanBuffer = 375, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_OM_RENDER_TARGET_DOES_NOT_SUPPORT_BLENDING DeviceDrawOMRenderTargetDoesNotSupportBlending = 376, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_OM_DUAL_SOURCE_BLENDING_CAN_ONLY_HAVE_RENDER_TARGET_0 DeviceDrawOMDualSourceBlendingCanOnlyHaveRenderTarget0 = 377, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_AT_FAULT DeviceRemovalProcessAtFault = 378, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_POSSIBLY_AT_FAULT DeviceRemovalProcessPossiblyAtFault = 379, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_NOT_AT_FAULT DeviceRemovalProcessNotAtFault = 380, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_OPEN_SHARED_RESOURCE_INVALIDARG_RETURN DeviceOpenSharedResourceInvalidArgReturn = 381, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_OPEN_SHARED_RESOURCE_OUTOFMEMORY_RETURN DeviceOpenSharedResourceOutOfMemoryReturn = 382, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_OPEN_SHARED_RESOURCE_BADINTERFACE_RETURN DeviceOpenSharedResourceBadinterfaceReturn = 383, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_VIEWPORT_NOT_SET DeviceDrawViewportNotSet = 384, - /// + /// /// D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_TRAILING_DIGIT_IN_SEMANTIC CreateInputLayoutTrailingDigitInSemantic = 385, - /// + /// /// D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_TRAILING_DIGIT_IN_SEMANTIC CreateGeometryShaderWithStreamOutputTrailingDigitInSemantic = 386, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_RSSETVIEWPORTS_DENORMFLUSH DeviceRSSetViewportsDenormFlush = 387, - /// + /// /// D3D11_MESSAGE_ID_OMSETRENDERTARGETS_INVALIDVIEW OMSetRenderTargetsInvalidView = 388, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_SETTEXTFILTERSIZE_INVALIDDIMENSIONS DeviceSettextfiltersizeInvalidDimensions = 389, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_SAMPLER_MISMATCH DeviceDrawSamplerMismatch = 390, - /// + /// /// D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_TYPE_MISMATCH CreateInputLayoutTypeMismatch = 391, - /// + /// /// D3D11_MESSAGE_ID_BLENDSTATE_GETDESC_LEGACY BlendStateGetDescLegacy = 392, - /// + /// /// D3D11_MESSAGE_ID_SHADERRESOURCEVIEW_GETDESC_LEGACY ShaderResourceViewGetDescLegacy = 393, - /// + /// /// D3D11_MESSAGE_ID_CREATEQUERY_OUTOFMEMORY_RETURN CreateQueryOutOfMemoryReturn = 394, - /// + /// /// D3D11_MESSAGE_ID_CREATEPREDICATE_OUTOFMEMORY_RETURN CreatePredicateOutOfMemoryReturn = 395, - /// + /// /// D3D11_MESSAGE_ID_CREATECOUNTER_OUTOFRANGE_COUNTER CreateCounterOutOfRangeCounter = 396, - /// + /// /// D3D11_MESSAGE_ID_CREATECOUNTER_SIMULTANEOUS_ACTIVE_COUNTERS_EXHAUSTED CreateCounterSimultaneousActiveCountersExhausted = 397, - /// + /// /// D3D11_MESSAGE_ID_CREATECOUNTER_UNSUPPORTED_WELLKNOWN_COUNTER CreateCounterUnsupportedWellknownCounter = 398, - /// + /// /// D3D11_MESSAGE_ID_CREATECOUNTER_OUTOFMEMORY_RETURN CreateCounterOutOfMemoryReturn = 399, - /// + /// /// D3D11_MESSAGE_ID_CREATECOUNTER_NONEXCLUSIVE_RETURN CreateCounterNonExclusiveReturn = 400, - /// + /// /// D3D11_MESSAGE_ID_CREATECOUNTER_NULLDESC CreateCounterNullDesc = 401, - /// + /// /// D3D11_MESSAGE_ID_CHECKCOUNTER_OUTOFRANGE_COUNTER CheckCounterOutOfRangeCounter = 402, - /// + /// /// D3D11_MESSAGE_ID_CHECKCOUNTER_UNSUPPORTED_WELLKNOWN_COUNTER CheckCounterUnsupportedWellknownCounter = 403, - /// + /// /// D3D11_MESSAGE_ID_SETPREDICATION_INVALID_PREDICATE_STATE SetPredicationInvalidPredicateState = 404, - /// + /// /// D3D11_MESSAGE_ID_QUERY_BEGIN_UNSUPPORTED QueryBeginUnsupported = 405, - /// + /// /// D3D11_MESSAGE_ID_PREDICATE_BEGIN_DURING_PREDICATION PredicateBeginDuringPredication = 406, - /// + /// /// D3D11_MESSAGE_ID_QUERY_BEGIN_DUPLICATE QueryBeginDuplicate = 407, - /// + /// /// D3D11_MESSAGE_ID_QUERY_BEGIN_ABANDONING_PREVIOUS_RESULTS QueryBeginAbandoningPreviousResults = 408, - /// + /// /// D3D11_MESSAGE_ID_PREDICATE_END_DURING_PREDICATION PredicateEndDuringPredication = 409, - /// + /// /// D3D11_MESSAGE_ID_QUERY_END_ABANDONING_PREVIOUS_RESULTS QueryEndAbandoningPreviousResults = 410, - /// + /// /// D3D11_MESSAGE_ID_QUERY_END_WITHOUT_BEGIN QueryEndWithoutBegin = 411, - /// + /// /// D3D11_MESSAGE_ID_QUERY_GETDATA_INVALID_DATASIZE QueryGetDataInvalidDatasize = 412, - /// + /// /// D3D11_MESSAGE_ID_QUERY_GETDATA_INVALID_FLAGS QueryGetDataInvalidFlags = 413, - /// + /// /// D3D11_MESSAGE_ID_QUERY_GETDATA_INVALID_CALL QueryGetDataInvalidCall = 414, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_PS_OUTPUT_TYPE_MISMATCH DeviceDrawPSOutputTypeMismatch = 415, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_RESOURCE_FORMAT_GATHER_UNSUPPORTED DeviceDrawResourceFormatGatherUnsupported = 416, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_INVALID_USE_OF_CENTER_MULTISAMPLE_PATTERN DeviceDrawInvalidUseOfCenterMultisamplePattern = 417, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_STRIDE_TOO_LARGE DeviceIASetVertexBuffersStrideTooLarge = 418, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_INVALIDRANGE DeviceIASetVertexBuffersInvalidRange = 419, - /// + /// /// D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_EMPTY_LAYOUT CreateInputLayoutEmptyLayout = 420, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_RESOURCE_SAMPLE_COUNT_MISMATCH DeviceDrawResourceSampleCountMismatch = 421, - /// + /// /// D3D11_MESSAGE_ID_LIVE_OBJECT_SUMMARY LiveObjectSummary = 422, - /// + /// /// D3D11_MESSAGE_ID_LIVE_BUFFER LiveBuffer = 423, - /// + /// /// D3D11_MESSAGE_ID_LIVE_TEXTURE1D LiveTexture1D = 424, - /// + /// /// D3D11_MESSAGE_ID_LIVE_TEXTURE2D LiveTexture2D = 425, - /// + /// /// D3D11_MESSAGE_ID_LIVE_TEXTURE3D LiveTexture3D = 426, - /// + /// /// D3D11_MESSAGE_ID_LIVE_SHADERRESOURCEVIEW LiveShaderResourceView = 427, - /// + /// /// D3D11_MESSAGE_ID_LIVE_RENDERTARGETVIEW LiveRenderTargetView = 428, - /// + /// /// D3D11_MESSAGE_ID_LIVE_DEPTHSTENCILVIEW LiveDepthStencilView = 429, - /// + /// /// D3D11_MESSAGE_ID_LIVE_VERTEXSHADER LiveVertexShader = 430, - /// + /// /// D3D11_MESSAGE_ID_LIVE_GEOMETRYSHADER LiveGeometryShader = 431, - /// + /// /// D3D11_MESSAGE_ID_LIVE_PIXELSHADER LivePixelShader = 432, - /// + /// /// D3D11_MESSAGE_ID_LIVE_INPUTLAYOUT LiveInputLayout = 433, - /// + /// /// D3D11_MESSAGE_ID_LIVE_SAMPLER LiveSampler = 434, - /// + /// /// D3D11_MESSAGE_ID_LIVE_BLENDSTATE LiveBlendState = 435, - /// + /// /// D3D11_MESSAGE_ID_LIVE_DEPTHSTENCILSTATE LiveDepthstencilstate = 436, - /// + /// /// D3D11_MESSAGE_ID_LIVE_RASTERIZERSTATE LiveRasterizerstate = 437, - /// + /// /// D3D11_MESSAGE_ID_LIVE_QUERY LiveQuery = 438, - /// + /// /// D3D11_MESSAGE_ID_LIVE_PREDICATE LivePredicate = 439, - /// + /// /// D3D11_MESSAGE_ID_LIVE_COUNTER LiveCounter = 440, - /// + /// /// D3D11_MESSAGE_ID_LIVE_DEVICE LiveDevice = 441, - /// + /// /// D3D11_MESSAGE_ID_LIVE_SWAPCHAIN LiveSwapchain = 442, - /// + /// /// D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_STENCIL_NO_TWO_SIDED CreateDepthStencilStateStencilNoTwoSided = 1048577, - /// + /// /// D3D11_MESSAGE_ID_CREATERASTERIZERSTATE_DepthBiasClamp_NOT_SUPPORTED CreateRasterizerStateDepthbiasclampNotSupported = 1048578, - /// + /// /// D3D11_MESSAGE_ID_CREATESAMPLERSTATE_NO_COMPARISON_SUPPORT CreateSamplerStateNoComparisonSupport = 1048579, - /// + /// /// D3D11_MESSAGE_ID_CREATESAMPLERSTATE_EXCESSIVE_ANISOTROPY CreateSamplerStateExcessiveAnisotropy = 1048580, - /// + /// /// D3D11_MESSAGE_ID_CREATESAMPLERSTATE_BORDER_OUT_OF_RANGE CreateSamplerStateBorderOutOfRange = 1048581, - /// + /// /// D3D11_MESSAGE_ID_VSSETSAMPLERS_NOT_SUPPORTED VSSetSamplersNotSupported = 1048582, - /// + /// /// D3D11_MESSAGE_ID_VSSETSAMPLERS_TOO_MANY_SAMPLERS VSSetSamplersTooManySamplers = 1048583, - /// + /// /// D3D11_MESSAGE_ID_PSSETSAMPLERS_TOO_MANY_SAMPLERS PSSetSamplersTooManySamplers = 1048584, - /// + /// /// D3D11_MESSAGE_ID_CREATERESOURCE_NO_ARRAYS CreateResourceNoArrays = 1048585, - /// + /// /// D3D11_MESSAGE_ID_CREATERESOURCE_NO_VB_AND_IB_BIND CreateResourceNoVBAndIBBind = 1048586, - /// + /// /// D3D11_MESSAGE_ID_CREATERESOURCE_NO_TEXTURE_1D CreateResourceNoTexture1D = 1048587, - /// + /// /// D3D11_MESSAGE_ID_CREATERESOURCE_DIMENSION_OUT_OF_RANGE CreateResourceDimensionOutOfRange = 1048588, - /// + /// /// D3D11_MESSAGE_ID_CREATERESOURCE_NOT_BINDABLE_AS_SHADER_RESOURCE CreateResourceNotBindableAsShaderResource = 1048589, - /// + /// /// D3D11_MESSAGE_ID_OMSETRENDERTARGETS_TOO_MANY_RENDER_TARGETS OMSetRenderTargetsTooManyRenderTargets = 1048590, - /// + /// /// D3D11_MESSAGE_ID_OMSETRENDERTARGETS_NO_DIFFERING_BIT_DEPTHS OMSetRenderTargetsNoDifferingBitDepths = 1048591, - /// + /// /// D3D11_MESSAGE_ID_IASETVERTEXBUFFERS_BAD_BUFFER_INDEX IASetVertexBuffersBadBufferIndex = 1048592, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_RSSETVIEWPORTS_TOO_MANY_VIEWPORTS DeviceRSSetViewportsTooManyViewports = 1048593, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_IASETPRIMITIVETOPOLOGY_ADJACENCY_UNSUPPORTED DeviceIASetPrimitiveTopologyAdjacencyUnsupported = 1048594, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_RSSETSCISSORRECTS_TOO_MANY_SCISSORS DeviceRSSetScissorRectsTooManyScissors = 1048595, - /// + /// /// D3D11_MESSAGE_ID_COPYRESOURCE_ONLY_TEXTURE_2D_WITHIN_GPU_MEMORY CopyResourceOnlyTexture2DWithinGpuMemory = 1048596, - /// + /// /// D3D11_MESSAGE_ID_COPYRESOURCE_NO_TEXTURE_3D_READBACK CopyResourceNoTexture3DReadback = 1048597, - /// + /// /// D3D11_MESSAGE_ID_COPYRESOURCE_NO_TEXTURE_ONLY_READBACK CopyResourceNoTextureOnlyReadback = 1048598, - /// + /// /// D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_UNSUPPORTED_FORMAT CreateInputLayoutUnsupportedFormat = 1048599, - /// + /// /// D3D11_MESSAGE_ID_CREATEBLENDSTATE_NO_ALPHA_TO_COVERAGE CreateBlendStateNoAlphaToCoverage = 1048600, - /// + /// /// D3D11_MESSAGE_ID_CREATERASTERIZERSTATE_DepthClipEnable_MUST_BE_TRUE CreateRasterizerStateDepthclipenableMustBeTrue = 1048601, - /// + /// /// D3D11_MESSAGE_ID_DRAWINDEXED_STARTINDEXLOCATION_MUST_BE_POSITIVE DrawindexedStartindexlocationMustBePositive = 1048602, - /// + /// /// D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_MUST_USE_LOWEST_LOD CreateShaderResourceViewMustUseLowestLod = 1048603, - /// + /// /// D3D11_MESSAGE_ID_CREATESAMPLERSTATE_MINLOD_MUST_NOT_BE_FRACTIONAL CreateSamplerStateMinlodMustNotBeFractional = 1048604, - /// + /// /// D3D11_MESSAGE_ID_CREATESAMPLERSTATE_MAXLOD_MUST_BE_FLT_MAX CreateSamplerStateMaxlodMustBeFltMax = 1048605, - /// + /// /// D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_FIRSTARRAYSLICE_MUST_BE_ZERO CreateShaderResourceViewFirstarraysliceMustBeZero = 1048606, - /// + /// /// D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_CUBES_MUST_HAVE_6_SIDES CreateShaderResourceViewCubesMustHave6Sides = 1048607, - /// + /// /// D3D11_MESSAGE_ID_CREATERESOURCE_NOT_BINDABLE_AS_RENDER_TARGET CreateResourceNotBindableAsRenderTarget = 1048608, - /// + /// /// D3D11_MESSAGE_ID_CREATERESOURCE_NO_DWORD_INDEX_BUFFER CreateResourceNoDwordIndexBuffer = 1048609, - /// + /// /// D3D11_MESSAGE_ID_CREATERESOURCE_MSAA_PRECLUDES_SHADER_RESOURCE CreateResourceMsaaPrecludesShaderResource = 1048610, - /// + /// /// D3D11_MESSAGE_ID_CREATERESOURCE_PRESENTATION_PRECLUDES_SHADER_RESOURCE CreateResourcePresentationPrecludesShaderResource = 1048611, - /// + /// /// D3D11_MESSAGE_ID_CREATEBLENDSTATE_NO_INDEPENDENT_BLEND_ENABLE CreateBlendStateNoIndependentBlendEnable = 1048612, - /// + /// /// D3D11_MESSAGE_ID_CREATEBLENDSTATE_NO_INDEPENDENT_WRITE_MASKS CreateBlendStateNoIndependentWriteMasks = 1048613, - /// + /// /// D3D11_MESSAGE_ID_CREATERESOURCE_NO_STREAM_OUT CreateResourceNoStreamOut = 1048614, - /// + /// /// D3D11_MESSAGE_ID_CREATERESOURCE_ONLY_VB_IB_FOR_BUFFERS CreateResourceOnlyVBIBForBuffers = 1048615, - /// + /// /// D3D11_MESSAGE_ID_CREATERESOURCE_NO_AUTOGEN_FOR_VOLUMES CreateResourceNoAutogenForVolumes = 1048616, - /// + /// /// D3D11_MESSAGE_ID_CREATERESOURCE_DXGI_FORMAT_R8G8B8A8_CANNOT_BE_SHARED CreateResourceDxgiFormatR8g8b8a8CannotBeShared = 1048617, - /// + /// /// D3D11_MESSAGE_ID_VSSHADERRESOURCES_NOT_SUPPORTED VsshaderresourcesNotSupported = 1048618, - /// + /// /// D3D11_MESSAGE_ID_GEOMETRY_SHADER_NOT_SUPPORTED GeometryShaderNotSupported = 1048619, - /// + /// /// D3D11_MESSAGE_ID_STREAM_OUT_NOT_SUPPORTED StreamOutNotSupported = 1048620, - /// + /// /// D3D11_MESSAGE_ID_TEXT_FILTER_NOT_SUPPORTED TextFilterNotSupported = 1048621, - /// + /// /// D3D11_MESSAGE_ID_CREATEBLENDSTATE_NO_SEPARATE_ALPHA_BLEND CreateBlendStateNoSeparateAlphaBlend = 1048622, - /// + /// /// D3D11_MESSAGE_ID_CREATEBLENDSTATE_NO_MRT_BLEND CreateBlendStateNoMRTBlend = 1048623, - /// + /// /// D3D11_MESSAGE_ID_CREATEBLENDSTATE_OPERATION_NOT_SUPPORTED CreateBlendStateOperationNotSupported = 1048624, - /// + /// /// D3D11_MESSAGE_ID_CREATESAMPLERSTATE_NO_MIRRORONCE CreateSamplerStateNoMirrorOnce = 1048625, - /// + /// /// D3D11_MESSAGE_ID_DRAWINSTANCED_NOT_SUPPORTED DrawInstancedNotSupported = 1048626, - /// + /// /// D3D11_MESSAGE_ID_DRAWINDEXEDINSTANCED_NOT_SUPPORTED_BELOW_9_3 DrawIndexedInstancedNotSupportedBelow93 = 1048627, - /// + /// /// D3D11_MESSAGE_ID_DRAWINDEXED_POINTLIST_UNSUPPORTED DrawindexedPointListUnsupported = 1048628, - /// + /// /// D3D11_MESSAGE_ID_SETBLENDSTATE_SAMPLE_MASK_CANNOT_BE_ZERO SetblendstateSampleMaskCannotBeZero = 1048629, - /// + /// /// D3D11_MESSAGE_ID_CREATERESOURCE_DIMENSION_EXCEEDS_FEATURE_LEVEL_DEFINITION CreateResourceDimensionExceedsFeatureLevelDefinition = 1048630, - /// + /// /// D3D11_MESSAGE_ID_CREATERESOURCE_ONLY_SINGLE_MIP_LEVEL_DEPTH_STENCIL_SUPPORTED CreateResourceOnlySingleMipLevelDepthStencilSupported = 1048631, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_RSSETSCISSORRECTS_NEGATIVESCISSOR DeviceRSSetScissorRectsNegativescissor = 1048632, - /// + /// /// D3D11_MESSAGE_ID_SLOT_ZERO_MUST_BE_D3D10_INPUT_PER_VERTEX_DATA SlotZeroMustBeD3D10InputPerVertexData = 1048633, - /// + /// /// D3D11_MESSAGE_ID_CREATERESOURCE_NON_POW_2_MIPMAP CreateResourceNonPow2Mipmap = 1048634, - /// + /// /// D3D11_MESSAGE_ID_CREATESAMPLERSTATE_BORDER_NOT_SUPPORTED CreateSamplerStateBorderNotSupported = 1048635, - /// + /// /// D3D11_MESSAGE_ID_OMSETRENDERTARGETS_NO_SRGB_MRT OMSetRenderTargetsNoSrgbMRT = 1048636, - /// + /// /// D3D11_MESSAGE_ID_COPYRESOURCE_NO_3D_MISMATCHED_UPDATES CopyResourceNo3DMismatchedUpdates = 1048637, - /// + /// /// D3D11_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDFLAGS CreateDepthStencilViewInvalidFlags = 2097153, - /// + /// /// D3D11_MESSAGE_ID_CREATEVERTEXSHADER_INVALIDCLASSLINKAGE CreateVertexShaderInvalidClassLinkage = 2097154, - /// + /// /// D3D11_MESSAGE_ID_CREATEGEOMETRYSHADER_INVALIDCLASSLINKAGE CreateGeometryShaderInvalidClassLinkage = 2097155, - /// + /// /// D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDNUMSTREAMS CreateGeometryShaderWithStreamOutputInvalidNumStreams = 2097156, - /// + /// /// D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSTREAMTORASTERIZER CreateGeometryShaderWithStreamOutputInvalidStreamToRasterizer = 2097157, - /// + /// /// D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_UNEXPECTEDSTREAMS CreateGeometryShaderWithStreamOutputUnexpectedStreams = 2097158, - /// + /// /// D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDCLASSLINKAGE CreateGeometryShaderWithStreamOutputInvalidClassLinkage = 2097159, - /// + /// /// D3D11_MESSAGE_ID_CREATEPIXELSHADER_INVALIDCLASSLINKAGE CreatePixelShaderInvalidClassLinkage = 2097160, - /// + /// /// D3D11_MESSAGE_ID_CREATEDEFERREDCONTEXT_INVALID_COMMANDLISTFLAGS CreateDeferredContextInvalidCommandListFlags = 2097161, - /// + /// /// D3D11_MESSAGE_ID_CREATEDEFERREDCONTEXT_SINGLETHREADED CreateDeferredContextSingleThreaded = 2097162, - /// + /// /// D3D11_MESSAGE_ID_CREATEDEFERREDCONTEXT_INVALIDARG_RETURN CreateDeferredContextInvalidArgReturn = 2097163, - /// + /// /// D3D11_MESSAGE_ID_CREATEDEFERREDCONTEXT_INVALID_CALL_RETURN CreateDeferredContextInvalidCallReturn = 2097164, - /// + /// /// D3D11_MESSAGE_ID_CREATEDEFERREDCONTEXT_OUTOFMEMORY_RETURN CreateDeferredContextOutOfMemoryReturn = 2097165, - /// + /// /// D3D11_MESSAGE_ID_FINISHDISPLAYLIST_ONIMMEDIATECONTEXT FinishDisplayListOnImmediateContext = 2097166, - /// + /// /// D3D11_MESSAGE_ID_FINISHDISPLAYLIST_OUTOFMEMORY_RETURN FinishDisplayListOutOfMemoryReturn = 2097167, - /// + /// /// D3D11_MESSAGE_ID_FINISHDISPLAYLIST_INVALID_CALL_RETURN FinishDisplayListInvalidCallReturn = 2097168, - /// + /// /// D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSTREAM CreateGeometryShaderWithStreamOutputInvalidStream = 2097169, - /// + /// /// D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_UNEXPECTEDENTRIES CreateGeometryShaderWithStreamOutputUnexpectedEntries = 2097170, - /// + /// /// D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_UNEXPECTEDSTRIDES CreateGeometryShaderWithStreamOutputUnexpectedStrides = 2097171, - /// + /// /// D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDNUMSTRIDES CreateGeometryShaderWithStreamOutputInvalidNumStrides = 2097172, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_HSSETSHADERRESOURCES_HAZARD DeviceHSSetShaderResourcesHazard = 2097173, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_HSSETCONSTANTBUFFERS_HAZARD DeviceHSSetConstantBuffersHazard = 2097174, - /// + /// /// D3D11_MESSAGE_ID_HSSETSHADERRESOURCES_UNBINDDELETINGOBJECT HSSetShaderResourcesUnbindDeletingObject = 2097175, - /// + /// /// D3D11_MESSAGE_ID_HSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT HSSetConstantBuffersUnbindDeletingObject = 2097176, - /// + /// /// D3D11_MESSAGE_ID_CREATEHULLSHADER_INVALIDCALL CreateHullShaderInvalidcall = 2097177, - /// + /// /// D3D11_MESSAGE_ID_CREATEHULLSHADER_OUTOFMEMORY CreateHullShaderOutOfMemory = 2097178, - /// + /// /// D3D11_MESSAGE_ID_CREATEHULLSHADER_INVALIDSHADERBYTECODE CreateHullShaderInvalidShaderBytecode = 2097179, - /// + /// /// D3D11_MESSAGE_ID_CREATEHULLSHADER_INVALIDSHADERTYPE CreateHullShaderInvalidShaderType = 2097180, - /// + /// /// D3D11_MESSAGE_ID_CREATEHULLSHADER_INVALIDCLASSLINKAGE CreateHullShaderInvalidClassLinkage = 2097181, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_HSSETSHADERRESOURCES_VIEWS_EMPTY DeviceHSSetShaderResourcesViewsEmpty = 2097182, - /// + /// /// D3D11_MESSAGE_ID_HSSETCONSTANTBUFFERS_INVALIDBUFFER HSSetConstantBuffersInvalidBuffer = 2097183, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_HSSETCONSTANTBUFFERS_BUFFERS_EMPTY DeviceHSSetConstantBuffersBuffersEmpty = 2097184, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_HSSETSAMPLERS_SAMPLERS_EMPTY DeviceHSSetSamplersSamplersEmpty = 2097185, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_HSGETSHADERRESOURCES_VIEWS_EMPTY DeviceHSGetShaderResourcesViewsEmpty = 2097186, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_HSGETCONSTANTBUFFERS_BUFFERS_EMPTY DeviceHSGetConstantBuffersBuffersEmpty = 2097187, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_HSGETSAMPLERS_SAMPLERS_EMPTY DeviceHSGetSamplersSamplersEmpty = 2097188, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DSSETSHADERRESOURCES_HAZARD DeviceDSSetShaderResourcesHazard = 2097189, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DSSETCONSTANTBUFFERS_HAZARD DeviceDSSetConstantBuffersHazard = 2097190, - /// + /// /// D3D11_MESSAGE_ID_DSSETSHADERRESOURCES_UNBINDDELETINGOBJECT DSSetShaderResourcesUnbindDeletingObject = 2097191, - /// + /// /// D3D11_MESSAGE_ID_DSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT DSSetConstantBuffersUnbindDeletingObject = 2097192, - /// + /// /// D3D11_MESSAGE_ID_CREATEDOMAINSHADER_INVALIDCALL CreateDomainShaderInvalidcall = 2097193, - /// + /// /// D3D11_MESSAGE_ID_CREATEDOMAINSHADER_OUTOFMEMORY CreateDomainShaderOutOfMemory = 2097194, - /// + /// /// D3D11_MESSAGE_ID_CREATEDOMAINSHADER_INVALIDSHADERBYTECODE CreateDomainShaderInvalidShaderBytecode = 2097195, - /// + /// /// D3D11_MESSAGE_ID_CREATEDOMAINSHADER_INVALIDSHADERTYPE CreateDomainShaderInvalidShaderType = 2097196, - /// + /// /// D3D11_MESSAGE_ID_CREATEDOMAINSHADER_INVALIDCLASSLINKAGE CreateDomainShaderInvalidClassLinkage = 2097197, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DSSETSHADERRESOURCES_VIEWS_EMPTY DeviceDSSetShaderResourcesViewsEmpty = 2097198, - /// + /// /// D3D11_MESSAGE_ID_DSSETCONSTANTBUFFERS_INVALIDBUFFER DSSetConstantBuffersInvalidBuffer = 2097199, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DSSETCONSTANTBUFFERS_BUFFERS_EMPTY DeviceDSSetConstantBuffersBuffersEmpty = 2097200, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DSSETSAMPLERS_SAMPLERS_EMPTY DeviceDSSetSamplersSamplersEmpty = 2097201, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DSGETSHADERRESOURCES_VIEWS_EMPTY DeviceDSGetShaderResourcesViewsEmpty = 2097202, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DSGETCONSTANTBUFFERS_BUFFERS_EMPTY DeviceDSGetConstantBuffersBuffersEmpty = 2097203, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DSGETSAMPLERS_SAMPLERS_EMPTY DeviceDSGetSamplersSamplersEmpty = 2097204, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_HS_XOR_DS_MISMATCH DeviceDrawHSXorDSMismatch = 2097205, - /// + /// /// D3D11_MESSAGE_ID_DEFERRED_CONTEXT_REMOVAL_PROCESS_AT_FAULT DeferredContextRemovalProcessAtFault = 2097206, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAWINDIRECT_INVALID_ARG_BUFFER DeviceDrawIndirectInvalidArgBuffer = 2097207, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAWINDIRECT_OFFSET_UNALIGNED DeviceDrawIndirectOffsetUnaligned = 2097208, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAWINDIRECT_OFFSET_OVERFLOW DeviceDrawIndirectOffsetOverflow = 2097209, - /// + /// /// D3D11_MESSAGE_ID_RESOURCE_MAP_INVALIDMAPTYPE ResourceMapInvalidMapType = 2097210, - /// + /// /// D3D11_MESSAGE_ID_RESOURCE_MAP_INVALIDSUBRESOURCE ResourceMapInvalidSubresource = 2097211, - /// + /// /// D3D11_MESSAGE_ID_RESOURCE_MAP_INVALIDFLAGS ResourceMapInvalidFlags = 2097212, - /// + /// /// D3D11_MESSAGE_ID_RESOURCE_MAP_ALREADYMAPPED ResourceMapAlreadyMapped = 2097213, - /// + /// /// D3D11_MESSAGE_ID_RESOURCE_MAP_DEVICEREMOVED_RETURN ResourceMapDeviceRemovedReturn = 2097214, - /// + /// /// D3D11_MESSAGE_ID_RESOURCE_MAP_OUTOFMEMORY_RETURN ResourceMapOutOfMemoryReturn = 2097215, - /// + /// /// D3D11_MESSAGE_ID_RESOURCE_MAP_WITHOUT_INITIAL_DISCARD ResourceMapWithoutInitialDiscard = 2097216, - /// + /// /// D3D11_MESSAGE_ID_RESOURCE_UNMAP_INVALIDSUBRESOURCE ResourceUnmapInvalidSubresource = 2097217, - /// + /// /// D3D11_MESSAGE_ID_RESOURCE_UNMAP_NOTMAPPED ResourceUnmapNotMapped = 2097218, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_RASTERIZING_CONTROL_POINTS DeviceDrawRasterizingControlPoints = 2097219, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_IASETPRIMITIVETOPOLOGY_TOPOLOGY_UNSUPPORTED DeviceIASetPrimitiveTopologyTopologyUnsupported = 2097220, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_HS_DS_SIGNATURE_MISMATCH DeviceDrawHSDSSignatureMismatch = 2097221, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_HULL_SHADER_INPUT_TOPOLOGY_MISMATCH DeviceDrawHullShaderInputTopologyMismatch = 2097222, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_HS_DS_CONTROL_POINT_COUNT_MISMATCH DeviceDrawHSDSControlPointCountMismatch = 2097223, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_HS_DS_TESSELLATOR_DOMAIN_MISMATCH DeviceDrawHSDSTessellatorDomainMismatch = 2097224, - /// + /// /// D3D11_MESSAGE_ID_CREATE_CONTEXT CreateContext = 2097225, - /// + /// /// D3D11_MESSAGE_ID_LIVE_CONTEXT LiveContext = 2097226, - /// + /// /// D3D11_MESSAGE_ID_DESTROY_CONTEXT DestroyContext = 2097227, - /// + /// /// D3D11_MESSAGE_ID_CREATE_BUFFER CreateBuffer = 2097228, - /// + /// /// D3D11_MESSAGE_ID_LIVE_BUFFER_WIN7 LiveBufferWin7 = 2097229, - /// + /// /// D3D11_MESSAGE_ID_DESTROY_BUFFER DestroyBuffer = 2097230, - /// + /// /// D3D11_MESSAGE_ID_CREATE_TEXTURE1D CreateTexture1D = 2097231, - /// + /// /// D3D11_MESSAGE_ID_LIVE_TEXTURE1D_WIN7 LiveTexture1DWin7 = 2097232, - /// + /// /// D3D11_MESSAGE_ID_DESTROY_TEXTURE1D DestroyTexture1D = 2097233, - /// + /// /// D3D11_MESSAGE_ID_CREATE_TEXTURE2D CreateTexture2D = 2097234, - /// + /// /// D3D11_MESSAGE_ID_LIVE_TEXTURE2D_WIN7 LiveTexture2DWin7 = 2097235, - /// + /// /// D3D11_MESSAGE_ID_DESTROY_TEXTURE2D DestroyTexture2D = 2097236, - /// + /// /// D3D11_MESSAGE_ID_CREATE_TEXTURE3D CreateTexture3D = 2097237, - /// + /// /// D3D11_MESSAGE_ID_LIVE_TEXTURE3D_WIN7 LiveTexture3DWin7 = 2097238, - /// + /// /// D3D11_MESSAGE_ID_DESTROY_TEXTURE3D DestroyTexture3D = 2097239, - /// + /// /// D3D11_MESSAGE_ID_CREATE_SHADERRESOURCEVIEW CreateShaderResourceView = 2097240, - /// + /// /// D3D11_MESSAGE_ID_LIVE_SHADERRESOURCEVIEW_WIN7 LiveShaderResourceViewWin7 = 2097241, - /// + /// /// D3D11_MESSAGE_ID_DESTROY_SHADERRESOURCEVIEW DestroyShaderResourceView = 2097242, - /// + /// /// D3D11_MESSAGE_ID_CREATE_RENDERTARGETVIEW CreateRenderTargetView = 2097243, - /// + /// /// D3D11_MESSAGE_ID_LIVE_RENDERTARGETVIEW_WIN7 LiveRenderTargetViewWin7 = 2097244, - /// + /// /// D3D11_MESSAGE_ID_DESTROY_RENDERTARGETVIEW DestroyRenderTargetView = 2097245, - /// + /// /// D3D11_MESSAGE_ID_CREATE_DEPTHSTENCILVIEW CreateDepthStencilView = 2097246, - /// + /// /// D3D11_MESSAGE_ID_LIVE_DEPTHSTENCILVIEW_WIN7 LiveDepthStencilViewWin7 = 2097247, - /// + /// /// D3D11_MESSAGE_ID_DESTROY_DEPTHSTENCILVIEW DestroyDepthStencilView = 2097248, - /// + /// /// D3D11_MESSAGE_ID_CREATE_VERTEXSHADER CreateVertexShader = 2097249, - /// + /// /// D3D11_MESSAGE_ID_LIVE_VERTEXSHADER_WIN7 LiveVertexShaderWin7 = 2097250, - /// + /// /// D3D11_MESSAGE_ID_DESTROY_VERTEXSHADER DestroyVertexShader = 2097251, - /// + /// /// D3D11_MESSAGE_ID_CREATE_HULLSHADER CreateHullshader = 2097252, - /// + /// /// D3D11_MESSAGE_ID_LIVE_HULLSHADER LiveHullshader = 2097253, - /// + /// /// D3D11_MESSAGE_ID_DESTROY_HULLSHADER DestroyHullshader = 2097254, - /// + /// /// D3D11_MESSAGE_ID_CREATE_DOMAINSHADER CreateDomainShader = 2097255, - /// + /// /// D3D11_MESSAGE_ID_LIVE_DOMAINSHADER LiveDomainShader = 2097256, - /// + /// /// D3D11_MESSAGE_ID_DESTROY_DOMAINSHADER DestroyDomainShader = 2097257, - /// + /// /// D3D11_MESSAGE_ID_CREATE_GEOMETRYSHADER CreateGeometryShader = 2097258, - /// + /// /// D3D11_MESSAGE_ID_LIVE_GEOMETRYSHADER_WIN7 LiveGeometryShaderWin7 = 2097259, - /// + /// /// D3D11_MESSAGE_ID_DESTROY_GEOMETRYSHADER DestroyGeometryShader = 2097260, - /// + /// /// D3D11_MESSAGE_ID_CREATE_PIXELSHADER CreatePixelShader = 2097261, - /// + /// /// D3D11_MESSAGE_ID_LIVE_PIXELSHADER_WIN7 LivePixelShaderWin7 = 2097262, - /// + /// /// D3D11_MESSAGE_ID_DESTROY_PIXELSHADER DestroyPixelShader = 2097263, - /// + /// /// D3D11_MESSAGE_ID_CREATE_INPUTLAYOUT CreateInputLayout = 2097264, - /// + /// /// D3D11_MESSAGE_ID_LIVE_INPUTLAYOUT_WIN7 LiveInputLayoutWin7 = 2097265, - /// + /// /// D3D11_MESSAGE_ID_DESTROY_INPUTLAYOUT DestroyInputLayout = 2097266, - /// + /// /// D3D11_MESSAGE_ID_CREATE_SAMPLER CreateSampler = 2097267, - /// + /// /// D3D11_MESSAGE_ID_LIVE_SAMPLER_WIN7 LiveSamplerWin7 = 2097268, - /// + /// /// D3D11_MESSAGE_ID_DESTROY_SAMPLER DestroySampler = 2097269, - /// + /// /// D3D11_MESSAGE_ID_CREATE_BLENDSTATE CreateBlendState = 2097270, - /// + /// /// D3D11_MESSAGE_ID_LIVE_BLENDSTATE_WIN7 LiveBlendStateWin7 = 2097271, - /// + /// /// D3D11_MESSAGE_ID_DESTROY_BLENDSTATE DestroyBlendState = 2097272, - /// + /// /// D3D11_MESSAGE_ID_CREATE_DEPTHSTENCILSTATE CreateDepthstencilstate = 2097273, - /// + /// /// D3D11_MESSAGE_ID_LIVE_DEPTHSTENCILSTATE_WIN7 LiveDepthstencilstateWin7 = 2097274, - /// + /// /// D3D11_MESSAGE_ID_DESTROY_DEPTHSTENCILSTATE DestroyDepthstencilstate = 2097275, - /// + /// /// D3D11_MESSAGE_ID_CREATE_RASTERIZERSTATE CreateRasterizerstate = 2097276, - /// + /// /// D3D11_MESSAGE_ID_LIVE_RASTERIZERSTATE_WIN7 LiveRasterizerstateWin7 = 2097277, - /// + /// /// D3D11_MESSAGE_ID_DESTROY_RASTERIZERSTATE DestroyRasterizerstate = 2097278, - /// + /// /// D3D11_MESSAGE_ID_CREATE_QUERY CreateQuery = 2097279, - /// + /// /// D3D11_MESSAGE_ID_LIVE_QUERY_WIN7 LiveQueryWin7 = 2097280, - /// + /// /// D3D11_MESSAGE_ID_DESTROY_QUERY DestroyQuery = 2097281, - /// + /// /// D3D11_MESSAGE_ID_CREATE_PREDICATE CreatePredicate = 2097282, - /// + /// /// D3D11_MESSAGE_ID_LIVE_PREDICATE_WIN7 LivePredicateWin7 = 2097283, - /// + /// /// D3D11_MESSAGE_ID_DESTROY_PREDICATE DestroyPredicate = 2097284, - /// + /// /// D3D11_MESSAGE_ID_CREATE_COUNTER CreateCounter = 2097285, - /// + /// /// D3D11_MESSAGE_ID_DESTROY_COUNTER DestroyCounter = 2097286, - /// + /// /// D3D11_MESSAGE_ID_CREATE_COMMANDLIST CreateCommandlist = 2097287, - /// + /// /// D3D11_MESSAGE_ID_LIVE_COMMANDLIST LiveCommandlist = 2097288, - /// + /// /// D3D11_MESSAGE_ID_DESTROY_COMMANDLIST DestroyCommandlist = 2097289, - /// + /// /// D3D11_MESSAGE_ID_CREATE_CLASSINSTANCE CreateClassInstance = 2097290, - /// + /// /// D3D11_MESSAGE_ID_LIVE_CLASSINSTANCE LiveClassInstance = 2097291, - /// + /// /// D3D11_MESSAGE_ID_DESTROY_CLASSINSTANCE DestroyClassInstance = 2097292, - /// + /// /// D3D11_MESSAGE_ID_CREATE_CLASSLINKAGE CreateClassLinkage = 2097293, - /// + /// /// D3D11_MESSAGE_ID_LIVE_CLASSLINKAGE LiveClassLinkage = 2097294, - /// + /// /// D3D11_MESSAGE_ID_DESTROY_CLASSLINKAGE DestroyClassLinkage = 2097295, - /// + /// /// D3D11_MESSAGE_ID_LIVE_DEVICE_WIN7 LiveDeviceWin7 = 2097296, - /// + /// /// D3D11_MESSAGE_ID_LIVE_OBJECT_SUMMARY_WIN7 LiveObjectSummaryWin7 = 2097297, - /// + /// /// D3D11_MESSAGE_ID_CREATE_COMPUTESHADER CreateComputeShader = 2097298, - /// + /// /// D3D11_MESSAGE_ID_LIVE_COMPUTESHADER LiveComputeShader = 2097299, - /// + /// /// D3D11_MESSAGE_ID_DESTROY_COMPUTESHADER DestroyComputeShader = 2097300, - /// + /// /// D3D11_MESSAGE_ID_CREATE_UNORDEREDACCESSVIEW CreateUnorderedAccessView = 2097301, - /// + /// /// D3D11_MESSAGE_ID_LIVE_UNORDEREDACCESSVIEW LiveUnorderedAccessView = 2097302, - /// + /// /// D3D11_MESSAGE_ID_DESTROY_UNORDEREDACCESSVIEW DestroyUnorderedAccessView = 2097303, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_SETSHADER_INTERFACES_FEATURELEVEL DeviceSetShaderInterfacesFeaturelevel = 2097304, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_SETSHADER_INTERFACE_COUNT_MISMATCH DeviceSetShaderInterfaceCountMismatch = 2097305, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_SETSHADER_INVALID_INSTANCE DeviceSetShaderInvalidInstance = 2097306, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_SETSHADER_INVALID_INSTANCE_INDEX DeviceSetShaderInvalidInstanceIndex = 2097307, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_SETSHADER_INVALID_INSTANCE_TYPE DeviceSetShaderInvalidInstanceType = 2097308, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_SETSHADER_INVALID_INSTANCE_DATA DeviceSetShaderInvalidInstanceData = 2097309, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_SETSHADER_UNBOUND_INSTANCE_DATA DeviceSetShaderUnboundInstanceData = 2097310, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_SETSHADER_INSTANCE_DATA_BINDINGS DeviceSetShaderInstanceDataBindings = 2097311, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CREATESHADER_CLASSLINKAGE_FULL DeviceCreateShaderClassLinkageFull = 2097312, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CHECKFEATURESUPPORT_UNRECOGNIZED_FEATURE DeviceCheckfeaturesupportUnrecognizedFeature = 2097313, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CHECKFEATURESUPPORT_MISMATCHED_DATA_SIZE DeviceCheckfeaturesupportMismatchedDataSize = 2097314, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CHECKFEATURESUPPORT_INVALIDARG_RETURN DeviceCheckfeaturesupportInvalidArgReturn = 2097315, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CSSETSHADERRESOURCES_HAZARD DeviceCSSetShaderResourcesHazard = 2097316, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CSSETCONSTANTBUFFERS_HAZARD DeviceCSSetConstantBuffersHazard = 2097317, - /// + /// /// D3D11_MESSAGE_ID_CSSETSHADERRESOURCES_UNBINDDELETINGOBJECT CSSetShaderResourcesUnbindDeletingObject = 2097318, - /// + /// /// D3D11_MESSAGE_ID_CSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT CSSetConstantBuffersUnbindDeletingObject = 2097319, - /// + /// /// D3D11_MESSAGE_ID_CREATECOMPUTESHADER_INVALIDCALL CreateComputeShaderInvalidcall = 2097320, - /// + /// /// D3D11_MESSAGE_ID_CREATECOMPUTESHADER_OUTOFMEMORY CreateComputeShaderOutOfMemory = 2097321, - /// + /// /// D3D11_MESSAGE_ID_CREATECOMPUTESHADER_INVALIDSHADERBYTECODE CreateComputeShaderInvalidShaderBytecode = 2097322, - /// + /// /// D3D11_MESSAGE_ID_CREATECOMPUTESHADER_INVALIDSHADERTYPE CreateComputeShaderInvalidShaderType = 2097323, - /// + /// /// D3D11_MESSAGE_ID_CREATECOMPUTESHADER_INVALIDCLASSLINKAGE CreateComputeShaderInvalidClassLinkage = 2097324, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CSSETSHADERRESOURCES_VIEWS_EMPTY DeviceCSSetShaderResourcesViewsEmpty = 2097325, - /// + /// /// D3D11_MESSAGE_ID_CSSETCONSTANTBUFFERS_INVALIDBUFFER CSSetConstantBuffersInvalidBuffer = 2097326, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CSSETCONSTANTBUFFERS_BUFFERS_EMPTY DeviceCSSetConstantBuffersBuffersEmpty = 2097327, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CSSETSAMPLERS_SAMPLERS_EMPTY DeviceCSSetSamplersSamplersEmpty = 2097328, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CSGETSHADERRESOURCES_VIEWS_EMPTY DeviceCSGetShaderResourcesViewsEmpty = 2097329, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CSGETCONSTANTBUFFERS_BUFFERS_EMPTY DeviceCSGetConstantBuffersBuffersEmpty = 2097330, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CSGETSAMPLERS_SAMPLERS_EMPTY DeviceCSGetSamplersSamplersEmpty = 2097331, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CREATEVERTEXSHADER_DOUBLEFLOATOPSNOTSUPPORTED DeviceCreateVertexShaderDoubleFloatOpsNotSupported = 2097332, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CREATEHULLSHADER_DOUBLEFLOATOPSNOTSUPPORTED DeviceCreateHullShaderDoubleFloatOpsNotSupported = 2097333, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CREATEDOMAINSHADER_DOUBLEFLOATOPSNOTSUPPORTED DeviceCreateDomainShaderDoubleFloatOpsNotSupported = 2097334, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADER_DOUBLEFLOATOPSNOTSUPPORTED DeviceCreateGeometryShaderDoubleFloatOpsNotSupported = 2097335, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_DOUBLEFLOATOPSNOTSUPPORTED DeviceCreateGeometryShaderWithStreamOutputDoubleFloatOpsNotSupported = 2097336, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CREATEPIXELSHADER_DOUBLEFLOATOPSNOTSUPPORTED DeviceCreatePixelShaderDoubleFloatOpsNotSupported = 2097337, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CREATECOMPUTESHADER_DOUBLEFLOATOPSNOTSUPPORTED DeviceCreateComputeShaderDoubleFloatOpsNotSupported = 2097338, - /// + /// /// D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDSTRUCTURESTRIDE CreateBufferInvalidstructurestride = 2097339, - /// + /// /// D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDFLAGS CreateShaderResourceViewInvalidFlags = 2097340, - /// + /// /// D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDRESOURCE CreateUnorderedAccessViewInvalidResource = 2097341, - /// + /// /// D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDDESC CreateUnorderedAccessViewInvalidDesc = 2097342, - /// + /// /// D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDFORMAT CreateUnorderedAccessViewInvalidFormat = 2097343, - /// + /// /// D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDDIMENSIONS CreateUnorderedAccessViewInvalidDimensions = 2097344, - /// + /// /// D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_UNRECOGNIZEDFORMAT CreateUnorderedAccessViewUnrecognizedFormat = 2097345, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_OMSETRENDERTARGETSANDUNORDEREDACCESSVIEWS_HAZARD DeviceOMSetRenderTargetsAndUnorderedAccessViewsHazard = 2097346, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_OMSETRENDERTARGETSANDUNORDEREDACCESSVIEWS_OVERLAPPING_OLD_SLOTS DeviceOMSetRenderTargetsAndUnorderedAccessViewsOverlappingOldSlots = 2097347, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_OMSETRENDERTARGETSANDUNORDEREDACCESSVIEWS_NO_OP DeviceOMSetRenderTargetsAndUnorderedAccessViewsNoOp = 2097348, - /// + /// /// D3D11_MESSAGE_ID_CSSETUNORDEREDACCESSVIEWS_UNBINDDELETINGOBJECT CSSetUnorderedAccessViewsUnbindDeletingObject = 2097349, - /// + /// /// D3D11_MESSAGE_ID_PSSETUNORDEREDACCESSVIEWS_UNBINDDELETINGOBJECT PSSetUnorderedAccessViewsUnbindDeletingObject = 2097350, - /// + /// /// D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDARG_RETURN CreateUnorderedAccessViewInvalidArgReturn = 2097351, - /// + /// /// D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_OUTOFMEMORY_RETURN CreateUnorderedAccessViewOutOfMemoryReturn = 2097352, - /// + /// /// D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_TOOMANYOBJECTS CreateUnorderedAccessViewTooManyObjects = 2097353, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CSSETUNORDEREDACCESSVIEWS_HAZARD DeviceCSSetUnorderedAccessViewsHazard = 2097354, - /// + /// /// D3D11_MESSAGE_ID_CLEARUNORDEREDACCESSVIEW_DENORMFLUSH ClearUnorderedAccessViewDenormFlush = 2097355, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CSSETUNORDEREDACCESSS_VIEWS_EMPTY DeviceCSSetUnorderedAccesssViewsEmpty = 2097356, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CSGETUNORDEREDACCESSS_VIEWS_EMPTY DeviceCSGetUnorderedAccesssViewsEmpty = 2097357, - /// + /// /// D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDFLAGS CreateUnorderedAccessViewInvalidFlags = 2097358, - /// + /// /// D3D11_MESSAGE_ID_CREATESHADERRESESOURCEVIEW_TOOMANYOBJECTS CreateShaderResesourceViewTooManyObjects = 2097359, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DISPATCHINDIRECT_INVALID_ARG_BUFFER DeviceDispatchIndirectInvalidArgBuffer = 2097360, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DISPATCHINDIRECT_OFFSET_UNALIGNED DeviceDispatchIndirectOffsetUnaligned = 2097361, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DISPATCHINDIRECT_OFFSET_OVERFLOW DeviceDispatchIndirectOffsetOverflow = 2097362, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_SETRESOURCEMINLOD_INVALIDCONTEXT DeviceSetresourceminlodInvalidcontext = 2097363, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_SETRESOURCEMINLOD_INVALIDRESOURCE DeviceSetresourceminlodInvalidResource = 2097364, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_SETRESOURCEMINLOD_INVALIDMINLOD DeviceSetresourceminlodInvalidMinLod = 2097365, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_GETRESOURCEMINLOD_INVALIDCONTEXT DeviceGetresourceminlodInvalidcontext = 2097366, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_GETRESOURCEMINLOD_INVALIDRESOURCE DeviceGetresourceminlodInvalidResource = 2097367, - /// + /// /// D3D11_MESSAGE_ID_OMSETDEPTHSTENCIL_UNBINDDELETINGOBJECT OmsetdepthstencilUnbindDeletingObject = 2097368, - /// + /// /// D3D11_MESSAGE_ID_CLEARDEPTHSTENCILVIEW_DEPTH_READONLY ClearDepthStencilViewDepthReadonly = 2097369, - /// + /// /// D3D11_MESSAGE_ID_CLEARDEPTHSTENCILVIEW_STENCIL_READONLY ClearDepthStencilViewStencilReadonly = 2097370, - /// + /// /// D3D11_MESSAGE_ID_CHECKFEATURESUPPORT_FORMAT_DEPRECATED CheckfeaturesupportFormatDeprecated = 2097371, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_RETURN_TYPE_MISMATCH DeviceUnorderedAccessViewReturnTypeMismatch = 2097372, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_NOT_SET DeviceUnorderedAccessViewNotSet = 2097373, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_UNORDEREDACCESSVIEW_RENDERTARGETVIEW_OVERLAP DeviceDrawUnorderedAccessViewRenderTargetViewOverlap = 2097374, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_DIMENSION_MISMATCH DeviceUnorderedAccessViewDimensionMismatch = 2097375, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_APPEND_UNSUPPORTED DeviceUnorderedAccessViewAppendUnsupported = 2097376, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_ATOMICS_UNSUPPORTED DeviceUnorderedAccessViewAtomicsUnsupported = 2097377, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_STRUCTURE_STRIDE_MISMATCH DeviceUnorderedAccessViewStructureStrideMismatch = 2097378, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_BUFFER_TYPE_MISMATCH DeviceUnorderedAccessViewBufferTypeMismatch = 2097379, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_RAW_UNSUPPORTED DeviceUnorderedAccessViewRawUnsupported = 2097380, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_FORMAT_LD_UNSUPPORTED DeviceUnorderedAccessViewFormatLdUnsupported = 2097381, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_FORMAT_STORE_UNSUPPORTED DeviceUnorderedAccessViewFormatStoreUnsupported = 2097382, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_ATOMIC_ADD_UNSUPPORTED DeviceUnorderedAccessViewAtomicAddUnsupported = 2097383, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_ATOMIC_BITWISE_OPS_UNSUPPORTED DeviceUnorderedAccessViewAtomicBitwiseOpsUnsupported = 2097384, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_ATOMIC_CMPSTORE_CMPEXCHANGE_UNSUPPORTED DeviceUnorderedAccessViewAtomicCmpstoreCmpexchangeUnsupported = 2097385, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_ATOMIC_EXCHANGE_UNSUPPORTED DeviceUnorderedAccessViewAtomicExchangeUnsupported = 2097386, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_ATOMIC_SIGNED_MINMAX_UNSUPPORTED DeviceUnorderedAccessViewAtomicSignedMinmaxUnsupported = 2097387, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_ATOMIC_UNSIGNED_MINMAX_UNSUPPORTED DeviceUnorderedAccessViewAtomicUnsignedMinmaxUnsupported = 2097388, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DISPATCH_BOUND_RESOURCE_MAPPED DeviceDispatchBoundResourceMapped = 2097389, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DISPATCH_THREADGROUPCOUNT_OVERFLOW DeviceDispatchThreadgroupcountOverflow = 2097390, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DISPATCH_THREADGROUPCOUNT_ZERO DeviceDispatchThreadgroupcountZero = 2097391, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_SHADERRESOURCEVIEW_STRUCTURE_STRIDE_MISMATCH DeviceShaderResourceViewStructureStrideMismatch = 2097392, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_SHADERRESOURCEVIEW_BUFFER_TYPE_MISMATCH DeviceShaderResourceViewBufferTypeMismatch = 2097393, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_SHADERRESOURCEVIEW_RAW_UNSUPPORTED DeviceShaderResourceViewRawUnsupported = 2097394, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DISPATCH_UNSUPPORTED DeviceDispatchUnsupported = 2097395, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DISPATCHINDIRECT_UNSUPPORTED DeviceDispatchIndirectUnsupported = 2097396, - /// + /// /// D3D11_MESSAGE_ID_COPYSTRUCTURECOUNT_INVALIDOFFSET CopyStructureCountInvalidOffset = 2097397, - /// + /// /// D3D11_MESSAGE_ID_COPYSTRUCTURECOUNT_LARGEOFFSET CopyStructureCountLargeOffset = 2097398, - /// + /// /// D3D11_MESSAGE_ID_COPYSTRUCTURECOUNT_INVALIDDESTINATIONSTATE CopyStructureCountInvalidDestinationState = 2097399, - /// + /// /// D3D11_MESSAGE_ID_COPYSTRUCTURECOUNT_INVALIDSOURCESTATE CopyStructureCountInvalidSourceState = 2097400, - /// + /// /// D3D11_MESSAGE_ID_CHECKFORMATSUPPORT_FORMAT_NOT_SUPPORTED CheckFormatSupportFormatNotSupported = 2097401, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CSSETUNORDEREDACCESSVIEWS_INVALIDVIEW DeviceCSSetUnorderedAccessViewsInvalidView = 2097402, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CSSETUNORDEREDACCESSVIEWS_INVALIDOFFSET DeviceCSSetUnorderedAccessViewsInvalidOffset = 2097403, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CSSETUNORDEREDACCESSVIEWS_TOOMANYVIEWS DeviceCSSetUnorderedAccessViewsToomanyviews = 2097404, - /// + /// /// D3D11_MESSAGE_ID_CLEARUNORDEREDACCESSVIEWFLOAT_INVALIDFORMAT ClearUnorderedAccessViewFloatInvalidFormat = 2097405, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_COUNTER_UNSUPPORTED DeviceUnorderedAccessViewCounterUnsupported = 2097406, - /// + /// /// D3D11_MESSAGE_ID_REF_WARNING RefWarning = 2097407, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_PIXEL_SHADER_WITHOUT_RTV_OR_DSV DeviceDrawPixelShaderWithoutRtvOrDsv = 2097408, - /// + /// /// D3D11_MESSAGE_ID_SHADER_ABORT ShaderAbort = 2097409, - /// + /// /// D3D11_MESSAGE_ID_SHADER_MESSAGE ShaderMessage = 2097410, - /// + /// /// D3D11_MESSAGE_ID_SHADER_ERROR ShaderError = 2097411, - /// + /// /// D3D11_MESSAGE_ID_OFFERRESOURCES_INVALIDRESOURCE OfferResourcesInvalidResource = 2097412, - /// + /// /// D3D11_MESSAGE_ID_HSSETSAMPLERS_UNBINDDELETINGOBJECT HSSetSamplersUnbindDeletingObject = 2097413, - /// + /// /// D3D11_MESSAGE_ID_DSSETSAMPLERS_UNBINDDELETINGOBJECT DSSetSamplersUnbindDeletingObject = 2097414, - /// + /// /// D3D11_MESSAGE_ID_CSSETSAMPLERS_UNBINDDELETINGOBJECT CSSetSamplersUnbindDeletingObject = 2097415, - /// + /// /// D3D11_MESSAGE_ID_HSSETSHADER_UNBINDDELETINGOBJECT HSSetShaderUnbindDeletingObject = 2097416, - /// + /// /// D3D11_MESSAGE_ID_DSSETSHADER_UNBINDDELETINGOBJECT DSSetShaderUnbindDeletingObject = 2097417, - /// + /// /// D3D11_MESSAGE_ID_CSSETSHADER_UNBINDDELETINGOBJECT CSSetShaderUnbindDeletingObject = 2097418, - /// + /// /// D3D11_MESSAGE_ID_ENQUEUESETEVENT_INVALIDARG_RETURN EnqueueSetEventInvalidArgReturn = 2097419, - /// + /// /// D3D11_MESSAGE_ID_ENQUEUESETEVENT_OUTOFMEMORY_RETURN EnqueueSetEventOutOfMemoryReturn = 2097420, - /// + /// /// D3D11_MESSAGE_ID_ENQUEUESETEVENT_ACCESSDENIED_RETURN EnqueueSetEventAccessdeniedReturn = 2097421, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_OMSETRENDERTARGETSANDUNORDEREDACCESSVIEWS_NUMUAVS_INVALIDRANGE DeviceOMSetRenderTargetsAndUnorderedAccessViewsNumuavsInvalidRange = 2097422, - /// + /// /// D3D11_MESSAGE_ID_USE_OF_ZERO_REFCOUNT_OBJECT UseOfZeroRefcountObject = 2097423, - /// + /// /// D3D11_MESSAGE_ID_CREATE_VIDEODECODER CreateVideoDecoder = 3145729, - /// + /// /// D3D11_MESSAGE_ID_CREATE_VIDEOPROCESSORENUM CreateVideoProcessorEnum = 3145730, - /// + /// /// D3D11_MESSAGE_ID_CREATE_VIDEOPROCESSOR CreateVideoProcessor = 3145731, - /// + /// /// D3D11_MESSAGE_ID_CREATE_DECODEROUTPUTVIEW CreateDecoderOutputView = 3145732, - /// + /// /// D3D11_MESSAGE_ID_CREATE_PROCESSORINPUTVIEW CreateProcessorInputView = 3145733, - /// + /// /// D3D11_MESSAGE_ID_CREATE_PROCESSOROUTPUTVIEW CreateProcessorOutputView = 3145734, - /// + /// /// D3D11_MESSAGE_ID_CREATE_DEVICECONTEXTSTATE CreateDeviceContextState = 3145735, - /// + /// /// D3D11_MESSAGE_ID_LIVE_VIDEODECODER LiveVideoDecoder = 3145736, - /// + /// /// D3D11_MESSAGE_ID_LIVE_VIDEOPROCESSORENUM LiveVideoProcessorEnum = 3145737, - /// + /// /// D3D11_MESSAGE_ID_LIVE_VIDEOPROCESSOR LiveVideoProcessor = 3145738, - /// + /// /// D3D11_MESSAGE_ID_LIVE_DECODEROUTPUTVIEW LiveDecoderOutputView = 3145739, - /// + /// /// D3D11_MESSAGE_ID_LIVE_PROCESSORINPUTVIEW LiveProcessorInputView = 3145740, - /// + /// /// D3D11_MESSAGE_ID_LIVE_PROCESSOROUTPUTVIEW LiveProcessorOutputView = 3145741, - /// + /// /// D3D11_MESSAGE_ID_LIVE_DEVICECONTEXTSTATE LiveDeviceContextState = 3145742, - /// + /// /// D3D11_MESSAGE_ID_DESTROY_VIDEODECODER DestroyVideoDecoder = 3145743, - /// + /// /// D3D11_MESSAGE_ID_DESTROY_VIDEOPROCESSORENUM DestroyVideoProcessorEnum = 3145744, - /// + /// /// D3D11_MESSAGE_ID_DESTROY_VIDEOPROCESSOR DestroyVideoProcessor = 3145745, - /// + /// /// D3D11_MESSAGE_ID_DESTROY_DECODEROUTPUTVIEW DestroyDecoderOutputView = 3145746, - /// + /// /// D3D11_MESSAGE_ID_DESTROY_PROCESSORINPUTVIEW DestroyProcessorInputView = 3145747, - /// + /// /// D3D11_MESSAGE_ID_DESTROY_PROCESSOROUTPUTVIEW DestroyProcessorOutputView = 3145748, - /// + /// /// D3D11_MESSAGE_ID_DESTROY_DEVICECONTEXTSTATE DestroyDeviceContextState = 3145749, - /// + /// /// D3D11_MESSAGE_ID_CREATEDEVICECONTEXTSTATE_INVALIDFLAGS CreateDeviceContextStateInvalidFlags = 3145750, - /// + /// /// D3D11_MESSAGE_ID_CREATEDEVICECONTEXTSTATE_INVALIDFEATURELEVEL CreateDeviceContextStateInvalidfeaturelevel = 3145751, - /// + /// /// D3D11_MESSAGE_ID_CREATEDEVICECONTEXTSTATE_FEATURELEVELS_NOT_SUPPORTED CreateDeviceContextStateFeaturelevelsNotSupported = 3145752, - /// + /// /// D3D11_MESSAGE_ID_CREATEDEVICECONTEXTSTATE_INVALIDREFIID CreateDeviceContextStateInvalidrefiid = 3145753, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DISCARDVIEW_INVALIDVIEW DeviceDiscardviewInvalidView = 3145754, - /// + /// /// D3D11_MESSAGE_ID_COPYSUBRESOURCEREGION1_INVALIDCOPYFLAGS Copysubresourceregion1InvalidCopyFlags = 3145755, - /// + /// /// D3D11_MESSAGE_ID_UPDATESUBRESOURCE1_INVALIDCOPYFLAGS UpdateSubresource1InvalidCopyFlags = 3145756, - /// + /// /// D3D11_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDFORCEDSAMPLECOUNT CreateRasterizerStateInvalidforcedsamplecount = 3145757, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEODECODER_OUTOFMEMORY_RETURN CreateVideoDecoderOutOfMemoryReturn = 3145758, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEODECODER_NULLPARAM CreateVideoDecoderNullParam = 3145759, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEODECODER_INVALIDFORMAT CreateVideoDecoderInvalidFormat = 3145760, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEODECODER_ZEROWIDTHHEIGHT CreateVideoDecoderZeroWidthHeight = 3145761, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEODECODER_DRIVER_INVALIDBUFFERSIZE CreateVideoDecoderDriverInvalidBufferSize = 3145762, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEODECODER_DRIVER_INVALIDBUFFERUSAGE CreateVideoDecoderDriverInvalidBufferUsage = 3145763, - /// + /// /// D3D11_MESSAGE_ID_GETVIDEODECODERPROFILECOUNT_OUTOFMEMORY GetvideodecoderprofilecountOutOfMemory = 3145764, - /// + /// /// D3D11_MESSAGE_ID_GETVIDEODECODERPROFILE_NULLPARAM GetvideodecoderprofileNullParam = 3145765, - /// + /// /// D3D11_MESSAGE_ID_GETVIDEODECODERPROFILE_INVALIDINDEX GetvideodecoderprofileInvalidindex = 3145766, - /// + /// /// D3D11_MESSAGE_ID_GETVIDEODECODERPROFILE_OUTOFMEMORY_RETURN GetvideodecoderprofileOutOfMemoryReturn = 3145767, - /// + /// /// D3D11_MESSAGE_ID_CHECKVIDEODECODERFORMAT_NULLPARAM CheckvideodecoderformatNullParam = 3145768, - /// + /// /// D3D11_MESSAGE_ID_CHECKVIDEODECODERFORMAT_OUTOFMEMORY_RETURN CheckvideodecoderformatOutOfMemoryReturn = 3145769, - /// + /// /// D3D11_MESSAGE_ID_GETVIDEODECODERCONFIGCOUNT_NULLPARAM GetvideodecoderconfigcountNullParam = 3145770, - /// + /// /// D3D11_MESSAGE_ID_GETVIDEODECODERCONFIGCOUNT_OUTOFMEMORY_RETURN GetvideodecoderconfigcountOutOfMemoryReturn = 3145771, - /// + /// /// D3D11_MESSAGE_ID_GETVIDEODECODERCONFIG_NULLPARAM GetvideodecoderconfigNullParam = 3145772, - /// + /// /// D3D11_MESSAGE_ID_GETVIDEODECODERCONFIG_INVALIDINDEX GetvideodecoderconfigInvalidindex = 3145773, - /// + /// /// D3D11_MESSAGE_ID_GETVIDEODECODERCONFIG_OUTOFMEMORY_RETURN GetvideodecoderconfigOutOfMemoryReturn = 3145774, - /// + /// /// D3D11_MESSAGE_ID_GETDECODERCREATIONPARAMS_NULLPARAM GetdecodercreationparamsNullParam = 3145775, - /// + /// /// D3D11_MESSAGE_ID_GETDECODERDRIVERHANDLE_NULLPARAM GetdecoderdriverhandleNullParam = 3145776, - /// + /// /// D3D11_MESSAGE_ID_GETDECODERBUFFER_NULLPARAM GetdecoderbufferNullParam = 3145777, - /// + /// /// D3D11_MESSAGE_ID_GETDECODERBUFFER_INVALIDBUFFER GetdecoderbufferInvalidBuffer = 3145778, - /// + /// /// D3D11_MESSAGE_ID_GETDECODERBUFFER_INVALIDTYPE GetdecoderbufferInvalidtype = 3145779, - /// + /// /// D3D11_MESSAGE_ID_GETDECODERBUFFER_LOCKED GetdecoderbufferLocked = 3145780, - /// + /// /// D3D11_MESSAGE_ID_RELEASEDECODERBUFFER_NULLPARAM ReleasedecoderbufferNullParam = 3145781, - /// + /// /// D3D11_MESSAGE_ID_RELEASEDECODERBUFFER_INVALIDTYPE ReleasedecoderbufferInvalidtype = 3145782, - /// + /// /// D3D11_MESSAGE_ID_RELEASEDECODERBUFFER_NOTLOCKED ReleasedecoderbufferNotlocked = 3145783, - /// + /// /// D3D11_MESSAGE_ID_DECODERBEGINFRAME_NULLPARAM DecoderBeginFrameNullParam = 3145784, - /// + /// /// D3D11_MESSAGE_ID_DECODERBEGINFRAME_HAZARD DecoderBeginFrameHazard = 3145785, - /// + /// /// D3D11_MESSAGE_ID_DECODERENDFRAME_NULLPARAM DecoderendframeNullParam = 3145786, - /// + /// /// D3D11_MESSAGE_ID_SUBMITDECODERBUFFERS_NULLPARAM SubmitdecoderbuffersNullParam = 3145787, - /// + /// /// D3D11_MESSAGE_ID_SUBMITDECODERBUFFERS_INVALIDTYPE SubmitdecoderbuffersInvalidtype = 3145788, - /// + /// /// D3D11_MESSAGE_ID_DECODEREXTENSION_NULLPARAM DecoderextensionNullParam = 3145789, - /// + /// /// D3D11_MESSAGE_ID_DECODEREXTENSION_INVALIDRESOURCE DecoderextensionInvalidResource = 3145790, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORENUMERATOR_OUTOFMEMORY_RETURN CreatevideoprocessorenumeratorOutOfMemoryReturn = 3145791, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORENUMERATOR_NULLPARAM CreatevideoprocessorenumeratorNullParam = 3145792, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORENUMERATOR_INVALIDFRAMEFORMAT CreatevideoprocessorenumeratorInvalidframeformat = 3145793, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORENUMERATOR_INVALIDUSAGE CreatevideoprocessorenumeratorInvalidUsage = 3145794, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORENUMERATOR_INVALIDINPUTFRAMERATE CreatevideoprocessorenumeratorInvalidinputframerate = 3145795, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORENUMERATOR_INVALIDOUTPUTFRAMERATE CreatevideoprocessorenumeratorInvalidoutputframerate = 3145796, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORENUMERATOR_INVALIDWIDTHHEIGHT CreatevideoprocessorenumeratorInvalidwidthheight = 3145797, - /// + /// /// D3D11_MESSAGE_ID_GETVIDEOPROCESSORCONTENTDESC_NULLPARAM GetvideoprocessorcontentdescNullParam = 3145798, - /// + /// /// D3D11_MESSAGE_ID_CHECKVIDEOPROCESSORFORMAT_NULLPARAM CheckvideoprocessorformatNullParam = 3145799, - /// + /// /// D3D11_MESSAGE_ID_GETVIDEOPROCESSORCAPS_NULLPARAM GetvideoprocessorcapsNullParam = 3145800, - /// + /// /// D3D11_MESSAGE_ID_GETVIDEOPROCESSORRATECONVERSIONCAPS_NULLPARAM GetvideoprocessorrateconversioncapsNullParam = 3145801, - /// + /// /// D3D11_MESSAGE_ID_GETVIDEOPROCESSORRATECONVERSIONCAPS_INVALIDINDEX GetvideoprocessorrateconversioncapsInvalidindex = 3145802, - /// + /// /// D3D11_MESSAGE_ID_GETVIDEOPROCESSORCUSTOMRATE_NULLPARAM GetvideoprocessorcustomrateNullParam = 3145803, - /// + /// /// D3D11_MESSAGE_ID_GETVIDEOPROCESSORCUSTOMRATE_INVALIDINDEX GetvideoprocessorcustomrateInvalidindex = 3145804, - /// + /// /// D3D11_MESSAGE_ID_GETVIDEOPROCESSORFILTERRANGE_NULLPARAM GetvideoprocessorfilterrangeNullParam = 3145805, - /// + /// /// D3D11_MESSAGE_ID_GETVIDEOPROCESSORFILTERRANGE_UNSUPPORTED GetvideoprocessorfilterrangeUnsupported = 3145806, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEOPROCESSOR_OUTOFMEMORY_RETURN CreatevideoprocessorOutOfMemoryReturn = 3145807, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEOPROCESSOR_NULLPARAM CreatevideoprocessorNullParam = 3145808, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTTARGETRECT_NULLPARAM VideoprocessorsetoutputtargetrectNullParam = 3145809, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTBACKGROUNDCOLOR_NULLPARAM VideoprocessorsetoutputbackgroundcolorNullParam = 3145810, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTBACKGROUNDCOLOR_INVALIDALPHA VideoprocessorsetoutputbackgroundcolorInvalidalpha = 3145811, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTCOLORSPACE_NULLPARAM VideoprocessorsetoutputcolorspaceNullParam = 3145812, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTALPHAFILLMODE_NULLPARAM VideoprocessorsetoutputalphafillmodeNullParam = 3145813, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTALPHAFILLMODE_UNSUPPORTED VideoprocessorsetoutputalphafillmodeUnsupported = 3145814, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTALPHAFILLMODE_INVALIDSTREAM VideoprocessorsetoutputalphafillmodeInvalidStream = 3145815, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTALPHAFILLMODE_INVALIDFILLMODE VideoprocessorsetoutputalphafillmodeInvalidFillMode = 3145816, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTCONSTRICTION_NULLPARAM VideoprocessorsetoutputconstrictionNullParam = 3145817, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTSTEREOMODE_NULLPARAM VideoprocessorsetoutputstereomodeNullParam = 3145818, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTSTEREOMODE_UNSUPPORTED VideoprocessorsetoutputstereomodeUnsupported = 3145819, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTEXTENSION_NULLPARAM VideoprocessorsetoutputextensionNullParam = 3145820, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETOUTPUTTARGETRECT_NULLPARAM VideoprocessorgetoutputtargetrectNullParam = 3145821, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETOUTPUTBACKGROUNDCOLOR_NULLPARAM VideoprocessorgetoutputbackgroundcolorNullParam = 3145822, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETOUTPUTCOLORSPACE_NULLPARAM VideoprocessorgetoutputcolorspaceNullParam = 3145823, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETOUTPUTALPHAFILLMODE_NULLPARAM VideoprocessorgetoutputalphafillmodeNullParam = 3145824, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETOUTPUTCONSTRICTION_NULLPARAM VideoprocessorgetoutputconstrictionNullParam = 3145825, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTCONSTRICTION_UNSUPPORTED VideoprocessorsetoutputconstrictionUnsupported = 3145826, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTCONSTRICTION_INVALIDSIZE VideoprocessorsetoutputconstrictionInvalidSize = 3145827, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETOUTPUTSTEREOMODE_NULLPARAM VideoprocessorgetoutputstereomodeNullParam = 3145828, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETOUTPUTEXTENSION_NULLPARAM VideoprocessorgetoutputextensionNullParam = 3145829, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMFRAMEFORMAT_NULLPARAM VideoprocessorsetstreamframeformatNullParam = 3145830, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMFRAMEFORMAT_INVALIDFORMAT VideoprocessorsetstreamframeformatInvalidFormat = 3145831, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMFRAMEFORMAT_INVALIDSTREAM VideoprocessorsetstreamframeformatInvalidStream = 3145832, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMCOLORSPACE_NULLPARAM VideoprocessorsetstreamcolorspaceNullParam = 3145833, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMCOLORSPACE_INVALIDSTREAM VideoprocessorsetstreamcolorspaceInvalidStream = 3145834, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMOUTPUTRATE_NULLPARAM VideoprocessorsetstreamoutputrateNullParam = 3145835, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMOUTPUTRATE_INVALIDRATE VideoprocessorsetstreamoutputrateInvalidrate = 3145836, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMOUTPUTRATE_INVALIDFLAG VideoprocessorsetstreamoutputrateInvalidflag = 3145837, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMOUTPUTRATE_INVALIDSTREAM VideoprocessorsetstreamoutputrateInvalidStream = 3145838, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMSOURCERECT_NULLPARAM VideoprocessorsetstreamsourcerectNullParam = 3145839, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMSOURCERECT_INVALIDSTREAM VideoprocessorsetstreamsourcerectInvalidStream = 3145840, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMSOURCERECT_INVALIDRECT VideoprocessorsetstreamsourcerectInvalidRect = 3145841, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMDESTRECT_NULLPARAM VideoprocessorsetstreamdestrectNullParam = 3145842, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMDESTRECT_INVALIDSTREAM VideoprocessorsetstreamdestrectInvalidStream = 3145843, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMDESTRECT_INVALIDRECT VideoprocessorsetstreamdestrectInvalidRect = 3145844, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMALPHA_NULLPARAM VideoprocessorsetstreamalphaNullParam = 3145845, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMALPHA_INVALIDSTREAM VideoprocessorsetstreamalphaInvalidStream = 3145846, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMALPHA_INVALIDALPHA VideoprocessorsetstreamalphaInvalidalpha = 3145847, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMPALETTE_NULLPARAM VideoprocessorsetstreampaletteNullParam = 3145848, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMPALETTE_INVALIDSTREAM VideoprocessorsetstreampaletteInvalidStream = 3145849, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMPALETTE_INVALIDCOUNT VideoprocessorsetstreampaletteInvalidcount = 3145850, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMPALETTE_INVALIDALPHA VideoprocessorsetstreampaletteInvalidalpha = 3145851, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMPIXELASPECTRATIO_NULLPARAM VideoprocessorsetstreampixelaspectratioNullParam = 3145852, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMPIXELASPECTRATIO_INVALIDSTREAM VideoprocessorsetstreampixelaspectratioInvalidStream = 3145853, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMPIXELASPECTRATIO_INVALIDRATIO VideoprocessorsetstreampixelaspectratioInvalidratio = 3145854, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMLUMAKEY_NULLPARAM VideoprocessorsetstreamlumakeyNullParam = 3145855, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMLUMAKEY_INVALIDSTREAM VideoprocessorsetstreamlumakeyInvalidStream = 3145856, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMLUMAKEY_INVALIDRANGE VideoprocessorsetstreamlumakeyInvalidRange = 3145857, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMLUMAKEY_UNSUPPORTED VideoprocessorsetstreamlumakeyUnsupported = 3145858, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMSTEREOFORMAT_NULLPARAM VideoprocessorsetstreamstereoformatNullParam = 3145859, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMSTEREOFORMAT_INVALIDSTREAM VideoprocessorsetstreamstereoformatInvalidStream = 3145860, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMSTEREOFORMAT_UNSUPPORTED VideoprocessorsetstreamstereoformatUnsupported = 3145861, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMSTEREOFORMAT_FLIPUNSUPPORTED VideoprocessorsetstreamstereoformatFlipunsupported = 3145862, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMSTEREOFORMAT_MONOOFFSETUNSUPPORTED VideoprocessorsetstreamstereoformatMonooffsetunsupported = 3145863, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMSTEREOFORMAT_FORMATUNSUPPORTED VideoprocessorsetstreamstereoformatFormatunsupported = 3145864, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMSTEREOFORMAT_INVALIDFORMAT VideoprocessorsetstreamstereoformatInvalidFormat = 3145865, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMAUTOPROCESSINGMODE_NULLPARAM VideoprocessorsetstreamautoprocessingmodeNullParam = 3145866, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMAUTOPROCESSINGMODE_INVALIDSTREAM VideoprocessorsetstreamautoprocessingmodeInvalidStream = 3145867, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMFILTER_NULLPARAM VideoprocessorsetstreamfilterNullParam = 3145868, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMFILTER_INVALIDSTREAM VideoprocessorsetstreamfilterInvalidStream = 3145869, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMFILTER_INVALIDFILTER VideoprocessorsetstreamfilterInvalidFilter = 3145870, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMFILTER_UNSUPPORTED VideoprocessorsetstreamfilterUnsupported = 3145871, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMFILTER_INVALIDLEVEL VideoprocessorsetstreamfilterInvalidlevel = 3145872, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMEXTENSION_NULLPARAM VideoprocessorsetstreamextensionNullParam = 3145873, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMEXTENSION_INVALIDSTREAM VideoprocessorsetstreamextensionInvalidStream = 3145874, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMFRAMEFORMAT_NULLPARAM VideoprocessorgetstreamframeformatNullParam = 3145875, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMCOLORSPACE_NULLPARAM VideoprocessorgetstreamcolorspaceNullParam = 3145876, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMOUTPUTRATE_NULLPARAM VideoprocessorgetstreamoutputrateNullParam = 3145877, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMSOURCERECT_NULLPARAM VideoprocessorgetstreamsourcerectNullParam = 3145878, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMDESTRECT_NULLPARAM VideoprocessorgetstreamdestrectNullParam = 3145879, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMALPHA_NULLPARAM VideoprocessorgetstreamalphaNullParam = 3145880, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMPALETTE_NULLPARAM VideoprocessorgetstreampaletteNullParam = 3145881, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMPIXELASPECTRATIO_NULLPARAM VideoprocessorgetstreampixelaspectratioNullParam = 3145882, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMLUMAKEY_NULLPARAM VideoprocessorgetstreamlumakeyNullParam = 3145883, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMSTEREOFORMAT_NULLPARAM VideoprocessorgetstreamstereoformatNullParam = 3145884, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMAUTOPROCESSINGMODE_NULLPARAM VideoprocessorgetstreamautoprocessingmodeNullParam = 3145885, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMFILTER_NULLPARAM VideoprocessorgetstreamfilterNullParam = 3145886, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMEXTENSION_NULLPARAM VideoprocessorgetstreamextensionNullParam = 3145887, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMEXTENSION_INVALIDSTREAM VideoprocessorgetstreamextensionInvalidStream = 3145888, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_NULLPARAM VideoprocessorbltNullParam = 3145889, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_INVALIDSTREAMCOUNT VideoprocessorbltInvalidstreamcount = 3145890, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_TARGETRECT VideoprocessorbltTargetrect = 3145891, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_INVALIDOUTPUT VideoprocessorbltInvalidoutput = 3145892, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_INVALIDPASTFRAMES VideoprocessorbltInvalidpastframes = 3145893, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_INVALIDFUTUREFRAMES VideoprocessorbltInvalidfutureframes = 3145894, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_INVALIDSOURCERECT VideoprocessorbltInvalidsourcerect = 3145895, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_INVALIDDESTRECT VideoprocessorbltInvaliddestrect = 3145896, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_INVALIDINPUTRESOURCE VideoprocessorbltInvalidinputresource = 3145897, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_INVALIDARRAYSIZE VideoprocessorbltInvalidarraysize = 3145898, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_INVALIDARRAY VideoprocessorbltInvalidarray = 3145899, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_RIGHTEXPECTED VideoprocessorbltRightexpected = 3145900, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_RIGHTNOTEXPECTED VideoprocessorbltRightnotexpected = 3145901, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_STEREONOTENABLED VideoprocessorbltStereonotenabled = 3145902, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_INVALIDRIGHTRESOURCE VideoprocessorbltInvalidrightresource = 3145903, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_NOSTEREOSTREAMS VideoprocessorbltNostereostreams = 3145904, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_INPUTHAZARD VideoprocessorbltInputhazard = 3145905, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_OUTPUTHAZARD VideoprocessorbltOutputhazard = 3145906, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEODECODEROUTPUTVIEW_OUTOFMEMORY_RETURN CreatevideodecoderoutputviewOutOfMemoryReturn = 3145907, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEODECODEROUTPUTVIEW_NULLPARAM CreatevideodecoderoutputviewNullParam = 3145908, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEODECODEROUTPUTVIEW_INVALIDTYPE CreatevideodecoderoutputviewInvalidtype = 3145909, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEODECODEROUTPUTVIEW_INVALIDBIND CreatevideodecoderoutputviewInvalidbind = 3145910, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEODECODEROUTPUTVIEW_UNSUPPORTEDFORMAT CreatevideodecoderoutputviewUnsupportedFormat = 3145911, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEODECODEROUTPUTVIEW_INVALIDMIP CreatevideodecoderoutputviewInvalidmip = 3145912, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEODECODEROUTPUTVIEW_UNSUPPORTEMIP CreatevideodecoderoutputviewUnsupportemip = 3145913, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEODECODEROUTPUTVIEW_INVALIDARRAYSIZE CreatevideodecoderoutputviewInvalidarraysize = 3145914, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEODECODEROUTPUTVIEW_INVALIDARRAY CreatevideodecoderoutputviewInvalidarray = 3145915, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEODECODEROUTPUTVIEW_INVALIDDIMENSION CreatevideodecoderoutputviewInvaliddimension = 3145916, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORINPUTVIEW_OUTOFMEMORY_RETURN CreatevideoprocessorinputviewOutOfMemoryReturn = 3145917, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORINPUTVIEW_NULLPARAM CreatevideoprocessorinputviewNullParam = 3145918, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORINPUTVIEW_INVALIDTYPE CreatevideoprocessorinputviewInvalidtype = 3145919, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORINPUTVIEW_INVALIDBIND CreatevideoprocessorinputviewInvalidbind = 3145920, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORINPUTVIEW_INVALIDMISC CreatevideoprocessorinputviewInvalidmisc = 3145921, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORINPUTVIEW_INVALIDUSAGE CreatevideoprocessorinputviewInvalidUsage = 3145922, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORINPUTVIEW_INVALIDFORMAT CreatevideoprocessorinputviewInvalidFormat = 3145923, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORINPUTVIEW_INVALIDFOURCC CreatevideoprocessorinputviewInvalidfourcc = 3145924, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORINPUTVIEW_INVALIDMIP CreatevideoprocessorinputviewInvalidmip = 3145925, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORINPUTVIEW_UNSUPPORTEDMIP CreatevideoprocessorinputviewUnsupportedmip = 3145926, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORINPUTVIEW_INVALIDARRAYSIZE CreatevideoprocessorinputviewInvalidarraysize = 3145927, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORINPUTVIEW_INVALIDARRAY CreatevideoprocessorinputviewInvalidarray = 3145928, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORINPUTVIEW_INVALIDDIMENSION CreatevideoprocessorinputviewInvaliddimension = 3145929, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEOPROCESSOROUTPUTVIEW_OUTOFMEMORY_RETURN CreatevideoprocessoroutputviewOutOfMemoryReturn = 3145930, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEOPROCESSOROUTPUTVIEW_NULLPARAM CreatevideoprocessoroutputviewNullParam = 3145931, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEOPROCESSOROUTPUTVIEW_INVALIDTYPE CreatevideoprocessoroutputviewInvalidtype = 3145932, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEOPROCESSOROUTPUTVIEW_INVALIDBIND CreatevideoprocessoroutputviewInvalidbind = 3145933, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEOPROCESSOROUTPUTVIEW_INVALIDFORMAT CreatevideoprocessoroutputviewInvalidFormat = 3145934, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEOPROCESSOROUTPUTVIEW_INVALIDMIP CreatevideoprocessoroutputviewInvalidmip = 3145935, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEOPROCESSOROUTPUTVIEW_UNSUPPORTEDMIP CreatevideoprocessoroutputviewUnsupportedmip = 3145936, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEOPROCESSOROUTPUTVIEW_UNSUPPORTEDARRAY CreatevideoprocessoroutputviewUnsupportedarray = 3145937, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEOPROCESSOROUTPUTVIEW_INVALIDARRAY CreatevideoprocessoroutputviewInvalidarray = 3145938, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEOPROCESSOROUTPUTVIEW_INVALIDDIMENSION CreatevideoprocessoroutputviewInvaliddimension = 3145939, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_INVALID_USE_OF_FORCED_SAMPLE_COUNT DeviceDrawInvalidUseOfForcedSampleCount = 3145940, - /// + /// /// D3D11_MESSAGE_ID_CREATEBLENDSTATE_INVALIDLOGICOPS CreateBlendStateInvalidlogicops = 3145941, - /// + /// /// D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDDARRAYWITHDECODER CreateShaderResourceViewInvaliddarraywithdecoder = 3145942, - /// + /// /// D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDDARRAYWITHDECODER CreateUnorderedAccessViewInvaliddarraywithdecoder = 3145943, - /// + /// /// D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDDARRAYWITHDECODER CreateRenderTargetViewInvaliddarraywithdecoder = 3145944, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_LOCKEDOUT_INTERFACE DeviceLockedoutInterface = 3145945, - /// + /// /// D3D11_MESSAGE_ID_REF_WARNING_ATOMIC_INCONSISTENT RefWarningAtomicInconsistent = 3145946, - /// + /// /// D3D11_MESSAGE_ID_REF_WARNING_READING_UNINITIALIZED_RESOURCE RefWarningReadingUninitializedResource = 3145947, - /// + /// /// D3D11_MESSAGE_ID_REF_WARNING_RAW_HAZARD RefWarningRawHazard = 3145948, - /// + /// /// D3D11_MESSAGE_ID_REF_WARNING_WAR_HAZARD RefWarningWarHazard = 3145949, - /// + /// /// D3D11_MESSAGE_ID_REF_WARNING_WAW_HAZARD RefWarningWawHazard = 3145950, - /// + /// /// D3D11_MESSAGE_ID_CREATECRYPTOSESSION_NULLPARAM CreatecryptosessionNullParam = 3145951, - /// + /// /// D3D11_MESSAGE_ID_CREATECRYPTOSESSION_OUTOFMEMORY_RETURN CreatecryptosessionOutOfMemoryReturn = 3145952, - /// + /// /// D3D11_MESSAGE_ID_GETCRYPTOTYPE_NULLPARAM GetcryptotypeNullParam = 3145953, - /// + /// /// D3D11_MESSAGE_ID_GETDECODERPROFILE_NULLPARAM GetdecoderprofileNullParam = 3145954, - /// + /// /// D3D11_MESSAGE_ID_GETCRYPTOSESSIONCERTIFICATESIZE_NULLPARAM GetcryptosessioncertificatesizeNullParam = 3145955, - /// + /// /// D3D11_MESSAGE_ID_GETCRYPTOSESSIONCERTIFICATE_NULLPARAM GetcryptosessioncertificateNullParam = 3145956, - /// + /// /// D3D11_MESSAGE_ID_GETCRYPTOSESSIONCERTIFICATE_WRONGSIZE GetcryptosessioncertificateWrongsize = 3145957, - /// + /// /// D3D11_MESSAGE_ID_GETCRYPTOSESSIONHANDLE_WRONGSIZE GetcryptosessionhandleWrongsize = 3145958, - /// + /// /// D3D11_MESSAGE_ID_NEGOTIATECRPYTOSESSIONKEYEXCHANGE_NULLPARAM NegotiatecrpytosessionkeyexchangeNullParam = 3145959, - /// + /// /// D3D11_MESSAGE_ID_ENCRYPTIONBLT_UNSUPPORTED EncryptionbltUnsupported = 3145960, - /// + /// /// D3D11_MESSAGE_ID_ENCRYPTIONBLT_NULLPARAM EncryptionbltNullParam = 3145961, - /// + /// /// D3D11_MESSAGE_ID_ENCRYPTIONBLT_SRC_WRONGDEVICE EncryptionbltSrcWrongdevice = 3145962, - /// + /// /// D3D11_MESSAGE_ID_ENCRYPTIONBLT_DST_WRONGDEVICE EncryptionbltDstWrongdevice = 3145963, - /// + /// /// D3D11_MESSAGE_ID_ENCRYPTIONBLT_FORMAT_MISMATCH EncryptionbltFormatMismatch = 3145964, - /// + /// /// D3D11_MESSAGE_ID_ENCRYPTIONBLT_SIZE_MISMATCH EncryptionbltSizeMismatch = 3145965, - /// + /// /// D3D11_MESSAGE_ID_ENCRYPTIONBLT_SRC_MULTISAMPLED EncryptionbltSrcMultisampled = 3145966, - /// + /// /// D3D11_MESSAGE_ID_ENCRYPTIONBLT_DST_NOT_STAGING EncryptionbltDstNotStaging = 3145967, - /// + /// /// D3D11_MESSAGE_ID_ENCRYPTIONBLT_SRC_MAPPED EncryptionbltSrcMapped = 3145968, - /// + /// /// D3D11_MESSAGE_ID_ENCRYPTIONBLT_DST_MAPPED EncryptionbltDstMapped = 3145969, - /// + /// /// D3D11_MESSAGE_ID_ENCRYPTIONBLT_SRC_OFFERED EncryptionbltSrcOffered = 3145970, - /// + /// /// D3D11_MESSAGE_ID_ENCRYPTIONBLT_DST_OFFERED EncryptionbltDstOffered = 3145971, - /// + /// /// D3D11_MESSAGE_ID_ENCRYPTIONBLT_SRC_CONTENT_UNDEFINED EncryptionbltSrcContentUndefined = 3145972, - /// + /// /// D3D11_MESSAGE_ID_DECRYPTIONBLT_UNSUPPORTED DecryptionBltUnsupported = 3145973, - /// + /// /// D3D11_MESSAGE_ID_DECRYPTIONBLT_NULLPARAM DecryptionBltNullParam = 3145974, - /// + /// /// D3D11_MESSAGE_ID_DECRYPTIONBLT_SRC_WRONGDEVICE DecryptionBltSrcWrongdevice = 3145975, - /// + /// /// D3D11_MESSAGE_ID_DECRYPTIONBLT_DST_WRONGDEVICE DecryptionBltDstWrongdevice = 3145976, - /// + /// /// D3D11_MESSAGE_ID_DECRYPTIONBLT_FORMAT_MISMATCH DecryptionBltFormatMismatch = 3145977, - /// + /// /// D3D11_MESSAGE_ID_DECRYPTIONBLT_SIZE_MISMATCH DecryptionBltSizeMismatch = 3145978, - /// + /// /// D3D11_MESSAGE_ID_DECRYPTIONBLT_DST_MULTISAMPLED DecryptionBltDstMultisampled = 3145979, - /// + /// /// D3D11_MESSAGE_ID_DECRYPTIONBLT_SRC_NOT_STAGING DecryptionBltSrcNotStaging = 3145980, - /// + /// /// D3D11_MESSAGE_ID_DECRYPTIONBLT_DST_NOT_RENDER_TARGET DecryptionBltDstNotRenderTarget = 3145981, - /// + /// /// D3D11_MESSAGE_ID_DECRYPTIONBLT_SRC_MAPPED DecryptionBltSrcMapped = 3145982, - /// + /// /// D3D11_MESSAGE_ID_DECRYPTIONBLT_DST_MAPPED DecryptionBltDstMapped = 3145983, - /// + /// /// D3D11_MESSAGE_ID_DECRYPTIONBLT_SRC_OFFERED DecryptionBltSrcOffered = 3145984, - /// + /// /// D3D11_MESSAGE_ID_DECRYPTIONBLT_DST_OFFERED DecryptionBltDstOffered = 3145985, - /// + /// /// D3D11_MESSAGE_ID_DECRYPTIONBLT_SRC_CONTENT_UNDEFINED DecryptionBltSrcContentUndefined = 3145986, - /// + /// /// D3D11_MESSAGE_ID_STARTSESSIONKEYREFRESH_NULLPARAM StartsessionkeyrefreshNullParam = 3145987, - /// + /// /// D3D11_MESSAGE_ID_STARTSESSIONKEYREFRESH_INVALIDSIZE StartsessionkeyrefreshInvalidSize = 3145988, - /// + /// /// D3D11_MESSAGE_ID_FINISHSESSIONKEYREFRESH_NULLPARAM FinishsessionkeyrefreshNullParam = 3145989, - /// + /// /// D3D11_MESSAGE_ID_GETENCRYPTIONBLTKEY_NULLPARAM GetencryptionbltkeyNullParam = 3145990, - /// + /// /// D3D11_MESSAGE_ID_GETENCRYPTIONBLTKEY_INVALIDSIZE GetencryptionbltkeyInvalidSize = 3145991, - /// + /// /// D3D11_MESSAGE_ID_GETCONTENTPROTECTIONCAPS_NULLPARAM GetcontentprotectioncapsNullParam = 3145992, - /// + /// /// D3D11_MESSAGE_ID_CHECKCRYPTOKEYEXCHANGE_NULLPARAM CheckcryptokeyexchangeNullParam = 3145993, - /// + /// /// D3D11_MESSAGE_ID_CHECKCRYPTOKEYEXCHANGE_INVALIDINDEX CheckcryptokeyexchangeInvalidindex = 3145994, - /// + /// /// D3D11_MESSAGE_ID_CREATEAUTHENTICATEDCHANNEL_NULLPARAM CreateauthenticatedchannelNullParam = 3145995, - /// + /// /// D3D11_MESSAGE_ID_CREATEAUTHENTICATEDCHANNEL_UNSUPPORTED CreateauthenticatedchannelUnsupported = 3145996, - /// + /// /// D3D11_MESSAGE_ID_CREATEAUTHENTICATEDCHANNEL_INVALIDTYPE CreateauthenticatedchannelInvalidtype = 3145997, - /// + /// /// D3D11_MESSAGE_ID_CREATEAUTHENTICATEDCHANNEL_OUTOFMEMORY_RETURN CreateauthenticatedchannelOutOfMemoryReturn = 3145998, - /// + /// /// D3D11_MESSAGE_ID_GETAUTHENTICATEDCHANNELCERTIFICATESIZE_INVALIDCHANNEL GetauthenticatedchannelcertificatesizeInvalidchannel = 3145999, - /// + /// /// D3D11_MESSAGE_ID_GETAUTHENTICATEDCHANNELCERTIFICATESIZE_NULLPARAM GetauthenticatedchannelcertificatesizeNullParam = 3146000, - /// + /// /// D3D11_MESSAGE_ID_GETAUTHENTICATEDCHANNELCERTIFICATE_INVALIDCHANNEL GetauthenticatedchannelcertificateInvalidchannel = 3146001, - /// + /// /// D3D11_MESSAGE_ID_GETAUTHENTICATEDCHANNELCERTIFICATE_NULLPARAM GetauthenticatedchannelcertificateNullParam = 3146002, - /// + /// /// D3D11_MESSAGE_ID_GETAUTHENTICATEDCHANNELCERTIFICATE_WRONGSIZE GetauthenticatedchannelcertificateWrongsize = 3146003, - /// + /// /// D3D11_MESSAGE_ID_NEGOTIATEAUTHENTICATEDCHANNELKEYEXCHANGE_INVALIDCHANNEL NegotiateauthenticatedchannelkeyexchangeInvalidchannel = 3146004, - /// + /// /// D3D11_MESSAGE_ID_NEGOTIATEAUTHENTICATEDCHANNELKEYEXCHANGE_NULLPARAM NegotiateauthenticatedchannelkeyexchangeNullParam = 3146005, - /// + /// /// D3D11_MESSAGE_ID_QUERYAUTHENTICATEDCHANNEL_NULLPARAM QueryauthenticatedchannelNullParam = 3146006, - /// + /// /// D3D11_MESSAGE_ID_QUERYAUTHENTICATEDCHANNEL_WRONGCHANNEL QueryauthenticatedchannelWrongchannel = 3146007, - /// + /// /// D3D11_MESSAGE_ID_QUERYAUTHENTICATEDCHANNEL_UNSUPPORTEDQUERY QueryauthenticatedchannelUnsupportedquery = 3146008, - /// + /// /// D3D11_MESSAGE_ID_QUERYAUTHENTICATEDCHANNEL_WRONGSIZE QueryauthenticatedchannelWrongsize = 3146009, - /// + /// /// D3D11_MESSAGE_ID_QUERYAUTHENTICATEDCHANNEL_INVALIDPROCESSINDEX QueryauthenticatedchannelInvalidprocessindex = 3146010, - /// + /// /// D3D11_MESSAGE_ID_CONFIGUREAUTHENTICATEDCHANNEL_NULLPARAM ConfigureauthenticatedchannelNullParam = 3146011, - /// + /// /// D3D11_MESSAGE_ID_CONFIGUREAUTHENTICATEDCHANNEL_WRONGCHANNEL ConfigureauthenticatedchannelWrongchannel = 3146012, - /// + /// /// D3D11_MESSAGE_ID_CONFIGUREAUTHENTICATEDCHANNEL_UNSUPPORTEDCONFIGURE ConfigureauthenticatedchannelUnsupportedconfigure = 3146013, - /// + /// /// D3D11_MESSAGE_ID_CONFIGUREAUTHENTICATEDCHANNEL_WRONGSIZE ConfigureauthenticatedchannelWrongsize = 3146014, - /// + /// /// D3D11_MESSAGE_ID_CONFIGUREAUTHENTICATEDCHANNEL_INVALIDPROCESSIDTYPE ConfigureauthenticatedchannelInvalidprocessidtype = 3146015, - /// + /// /// D3D11_MESSAGE_ID_VSSETCONSTANTBUFFERS_INVALIDBUFFEROFFSETORCOUNT VSSetConstantBuffersInvalidBufferOffsetOrCount = 3146016, - /// + /// /// D3D11_MESSAGE_ID_DSSETCONSTANTBUFFERS_INVALIDBUFFEROFFSETORCOUNT DSSetConstantBuffersInvalidBufferOffsetOrCount = 3146017, - /// + /// /// D3D11_MESSAGE_ID_HSSETCONSTANTBUFFERS_INVALIDBUFFEROFFSETORCOUNT HSSetConstantBuffersInvalidBufferOffsetOrCount = 3146018, - /// + /// /// D3D11_MESSAGE_ID_GSSETCONSTANTBUFFERS_INVALIDBUFFEROFFSETORCOUNT GSSetConstantBuffersInvalidBufferOffsetOrCount = 3146019, - /// + /// /// D3D11_MESSAGE_ID_PSSETCONSTANTBUFFERS_INVALIDBUFFEROFFSETORCOUNT PSSetConstantBuffersInvalidBufferOffsetOrCount = 3146020, - /// + /// /// D3D11_MESSAGE_ID_CSSETCONSTANTBUFFERS_INVALIDBUFFEROFFSETORCOUNT CSSetConstantBuffersInvalidBufferOffsetOrCount = 3146021, - /// + /// /// D3D11_MESSAGE_ID_NEGOTIATECRPYTOSESSIONKEYEXCHANGE_INVALIDSIZE NegotiatecrpytosessionkeyexchangeInvalidSize = 3146022, - /// + /// /// D3D11_MESSAGE_ID_NEGOTIATEAUTHENTICATEDCHANNELKEYEXCHANGE_INVALIDSIZE NegotiateauthenticatedchannelkeyexchangeInvalidSize = 3146023, - /// + /// /// D3D11_MESSAGE_ID_OFFERRESOURCES_INVALIDPRIORITY OfferResourcesInvalidpriority = 3146024, - /// + /// /// D3D11_MESSAGE_ID_GETCRYPTOSESSIONHANDLE_OUTOFMEMORY GetcryptosessionhandleOutOfMemory = 3146025, - /// + /// /// D3D11_MESSAGE_ID_ACQUIREHANDLEFORCAPTURE_NULLPARAM AcquirehandleforcaptureNullParam = 3146026, - /// + /// /// D3D11_MESSAGE_ID_ACQUIREHANDLEFORCAPTURE_INVALIDTYPE AcquirehandleforcaptureInvalidtype = 3146027, - /// + /// /// D3D11_MESSAGE_ID_ACQUIREHANDLEFORCAPTURE_INVALIDBIND AcquirehandleforcaptureInvalidbind = 3146028, - /// + /// /// D3D11_MESSAGE_ID_ACQUIREHANDLEFORCAPTURE_INVALIDARRAY AcquirehandleforcaptureInvalidarray = 3146029, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMROTATION_NULLPARAM VideoprocessorsetstreamrotationNullParam = 3146030, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMROTATION_INVALIDSTREAM VideoprocessorsetstreamrotationInvalidStream = 3146031, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMROTATION_INVALID VideoprocessorsetstreamrotationInvalid = 3146032, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMROTATION_UNSUPPORTED VideoprocessorsetstreamrotationUnsupported = 3146033, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMROTATION_NULLPARAM VideoprocessorgetstreamrotationNullParam = 3146034, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CLEARVIEW_INVALIDVIEW DeviceClearViewInvalidView = 3146035, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CREATEVERTEXSHADER_DOUBLEEXTENSIONSNOTSUPPORTED DeviceCreateVertexShaderDoubleExtensionsNotSupported = 3146036, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CREATEVERTEXSHADER_SHADEREXTENSIONSNOTSUPPORTED DeviceCreateVertexShaderShaderExtensionsNotSupported = 3146037, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CREATEHULLSHADER_DOUBLEEXTENSIONSNOTSUPPORTED DeviceCreateHullShaderDoubleExtensionsNotSupported = 3146038, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CREATEHULLSHADER_SHADEREXTENSIONSNOTSUPPORTED DeviceCreateHullShaderShaderExtensionsNotSupported = 3146039, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CREATEDOMAINSHADER_DOUBLEEXTENSIONSNOTSUPPORTED DeviceCreateDomainShaderDoubleExtensionsNotSupported = 3146040, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CREATEDOMAINSHADER_SHADEREXTENSIONSNOTSUPPORTED DeviceCreateDomainShaderShaderExtensionsNotSupported = 3146041, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADER_DOUBLEEXTENSIONSNOTSUPPORTED DeviceCreateGeometryShaderDoubleExtensionsNotSupported = 3146042, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADER_SHADEREXTENSIONSNOTSUPPORTED DeviceCreateGeometryShaderShaderExtensionsNotSupported = 3146043, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_DOUBLEEXTENSIONSNOTSUPPORTED DeviceCreateGeometryShaderWithStreamOutputDoubleExtensionsNotSupported = 3146044, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_SHADEREXTENSIONSNOTSUPPORTED DeviceCreateGeometryShaderWithStreamOutputShaderExtensionsNotSupported = 3146045, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CREATEPIXELSHADER_DOUBLEEXTENSIONSNOTSUPPORTED DeviceCreatePixelShaderDoubleExtensionsNotSupported = 3146046, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CREATEPIXELSHADER_SHADEREXTENSIONSNOTSUPPORTED DeviceCreatePixelShaderShaderExtensionsNotSupported = 3146047, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CREATECOMPUTESHADER_DOUBLEEXTENSIONSNOTSUPPORTED DeviceCreateComputeShaderDoubleExtensionsNotSupported = 3146048, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CREATECOMPUTESHADER_SHADEREXTENSIONSNOTSUPPORTED DeviceCreateComputeShaderShaderExtensionsNotSupported = 3146049, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_SHADER_LINKAGE_MINPRECISION DeviceShaderLinkageMinPrecision = 3146050, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMALPHA_UNSUPPORTED VideoprocessorsetstreamalphaUnsupported = 3146051, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMPIXELASPECTRATIO_UNSUPPORTED VideoprocessorsetstreampixelaspectratioUnsupported = 3146052, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CREATEVERTEXSHADER_UAVSNOTSUPPORTED DeviceCreateVertexShaderUAVsNotSupported = 3146053, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CREATEHULLSHADER_UAVSNOTSUPPORTED DeviceCreateHullShaderUAVsNotSupported = 3146054, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CREATEDOMAINSHADER_UAVSNOTSUPPORTED DeviceCreateDomainShaderUAVsNotSupported = 3146055, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADER_UAVSNOTSUPPORTED DeviceCreateGeometryShaderUAVsNotSupported = 3146056, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_UAVSNOTSUPPORTED DeviceCreateGeometryShaderWithStreamOutputUAVsNotSupported = 3146057, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CREATEPIXELSHADER_UAVSNOTSUPPORTED DeviceCreatePixelShaderUAVsNotSupported = 3146058, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CREATECOMPUTESHADER_UAVSNOTSUPPORTED DeviceCreateComputeShaderUAVsNotSupported = 3146059, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_OMSETRENDERTARGETSANDUNORDEREDACCESSVIEWS_INVALIDOFFSET DeviceOMSetRenderTargetsAndUnorderedAccessViewsInvalidOffset = 3146060, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_OMSETRENDERTARGETSANDUNORDEREDACCESSVIEWS_TOOMANYVIEWS DeviceOMSetRenderTargetsAndUnorderedAccessViewsToomanyviews = 3146061, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CLEARVIEW_NOTSUPPORTED DeviceClearViewNotSupported = 3146062, - /// + /// /// D3D11_MESSAGE_ID_SWAPDEVICECONTEXTSTATE_NOTSUPPORTED SwapDeviceContextStateNotSupported = 3146063, - /// + /// /// D3D11_MESSAGE_ID_UPDATESUBRESOURCE_PREFERUPDATESUBRESOURCE1 UpdateSubresourcePreferUpdateSubresource1 = 3146064, - /// + /// /// D3D11_MESSAGE_ID_GETDC_INACCESSIBLE GetDCInaccessible = 3146065, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CLEARVIEW_INVALIDRECT DeviceClearViewInvalidRect = 3146066, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_SAMPLE_MASK_IGNORED_ON_FL9 DeviceDrawSampleMaskIgnoredOnFl9 = 3146067, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_OPEN_SHARED_RESOURCE1_NOT_SUPPORTED DeviceOpenSharedResource1NotSupported = 3146068, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_OPEN_SHARED_RESOURCE_BY_NAME_NOT_SUPPORTED DeviceOpenSharedResourceByNameNotSupported = 3146069, - /// + /// /// D3D11_MESSAGE_ID_ENQUEUESETEVENT_NOT_SUPPORTED EnqueueSetEventNotSupported = 3146070, - /// + /// /// D3D11_MESSAGE_ID_OFFERRELEASE_NOT_SUPPORTED OfferreleaseNotSupported = 3146071, - /// + /// /// D3D11_MESSAGE_ID_OFFERRESOURCES_INACCESSIBLE OfferResourcesInaccessible = 3146072, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORINPUTVIEW_INVALIDMSAA CreatevideoprocessorinputviewInvalidmsaa = 3146073, - /// + /// /// D3D11_MESSAGE_ID_CREATEVIDEOPROCESSOROUTPUTVIEW_INVALIDMSAA CreatevideoprocessoroutputviewInvalidmsaa = 3146074, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CLEARVIEW_INVALIDSOURCERECT DeviceClearViewInvalidsourcerect = 3146075, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_CLEARVIEW_EMPTYRECT DeviceClearViewEmptyRect = 3146076, - /// + /// /// D3D11_MESSAGE_ID_UPDATESUBRESOURCE_EMPTYDESTBOX UpdateSubresourceEmptydestbox = 3146077, - /// + /// /// D3D11_MESSAGE_ID_COPYSUBRESOURCEREGION_EMPTYSOURCEBOX CopySubresourceRegionEmptysourcebox = 3146078, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_OM_RENDER_TARGET_DOES_NOT_SUPPORT_LOGIC_OPS DeviceDrawOMRenderTargetDoesNotSupportLogicOps = 3146079, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_DEPTHSTENCILVIEW_NOT_SET DeviceDrawDepthStencilViewNotSet = 3146080, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_RENDERTARGETVIEW_NOT_SET DeviceDrawRenderTargetViewNotSet = 3146081, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_RENDERTARGETVIEW_NOT_SET_DUE_TO_FLIP_PRESENT DeviceDrawRenderTargetViewNotSetDueToFlipPresent = 3146082, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_NOT_SET_DUE_TO_FLIP_PRESENT DeviceUnorderedAccessViewNotSetDueToFlipPresent = 3146083, - /// + /// /// D3D11_MESSAGE_ID_GETDATAFORNEWHARDWAREKEY_NULLPARAM GetdatafornewhardwarekeyNullParam = 3146084, - /// + /// /// D3D11_MESSAGE_ID_CHECKCRYPTOSESSIONSTATUS_NULLPARAM CheckcryptosessionstatusNullParam = 3146085, - /// + /// /// D3D11_MESSAGE_ID_GETCRYPTOSESSIONPRIVATEDATASIZE_NULLPARAM GetcryptosessionprivatedatasizeNullParam = 3146086, - /// + /// /// D3D11_MESSAGE_ID_GETVIDEODECODERCAPS_NULLPARAM GetvideodecodercapsNullParam = 3146087, - /// + /// /// D3D11_MESSAGE_ID_GETVIDEODECODERCAPS_ZEROWIDTHHEIGHT GetvideodecodercapsZeroWidthHeight = 3146088, - /// + /// /// D3D11_MESSAGE_ID_CHECKVIDEODECODERDOWNSAMPLING_NULLPARAM CheckvideodecoderdownsamplingNullParam = 3146089, - /// + /// /// D3D11_MESSAGE_ID_CHECKVIDEODECODERDOWNSAMPLING_INVALIDCOLORSPACE CheckvideodecoderdownsamplingInvalidcolorspace = 3146090, - /// + /// /// D3D11_MESSAGE_ID_CHECKVIDEODECODERDOWNSAMPLING_ZEROWIDTHHEIGHT CheckvideodecoderdownsamplingZeroWidthHeight = 3146091, - /// + /// /// D3D11_MESSAGE_ID_VIDEODECODERENABLEDOWNSAMPLING_NULLPARAM VideodecoderenabledownsamplingNullParam = 3146092, - /// + /// /// D3D11_MESSAGE_ID_VIDEODECODERENABLEDOWNSAMPLING_UNSUPPORTED VideodecoderenabledownsamplingUnsupported = 3146093, - /// + /// /// D3D11_MESSAGE_ID_VIDEODECODERUPDATEDOWNSAMPLING_NULLPARAM VideodecoderupdatedownsamplingNullParam = 3146094, - /// + /// /// D3D11_MESSAGE_ID_VIDEODECODERUPDATEDOWNSAMPLING_UNSUPPORTED VideodecoderupdatedownsamplingUnsupported = 3146095, - /// + /// /// D3D11_MESSAGE_ID_CHECKVIDEOPROCESSORFORMATCONVERSION_NULLPARAM CheckvideoprocessorformatconversionNullParam = 3146096, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTCOLORSPACE1_NULLPARAM Videoprocessorsetoutputcolorspace1NullParam = 3146097, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETOUTPUTCOLORSPACE1_NULLPARAM Videoprocessorgetoutputcolorspace1NullParam = 3146098, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMCOLORSPACE1_NULLPARAM Videoprocessorsetstreamcolorspace1NullParam = 3146099, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMCOLORSPACE1_INVALIDSTREAM Videoprocessorsetstreamcolorspace1InvalidStream = 3146100, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMMIRROR_NULLPARAM VideoprocessorsetstreammirrorNullParam = 3146101, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMMIRROR_INVALIDSTREAM VideoprocessorsetstreammirrorInvalidStream = 3146102, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMMIRROR_UNSUPPORTED VideoprocessorsetstreammirrorUnsupported = 3146103, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMCOLORSPACE1_NULLPARAM Videoprocessorgetstreamcolorspace1NullParam = 3146104, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMMIRROR_NULLPARAM VideoProcessorGetStreamMirrorNullParam = 3146105, - /// + /// /// D3D11_MESSAGE_ID_RECOMMENDVIDEODECODERDOWNSAMPLING_NULLPARAM RecommendvideodecoderdownsamplingNullParam = 3146106, - /// + /// /// D3D11_MESSAGE_ID_RECOMMENDVIDEODECODERDOWNSAMPLING_INVALIDCOLORSPACE RecommendvideodecoderdownsamplingInvalidcolorspace = 3146107, - /// + /// /// D3D11_MESSAGE_ID_RECOMMENDVIDEODECODERDOWNSAMPLING_ZEROWIDTHHEIGHT RecommendvideodecoderdownsamplingZeroWidthHeight = 3146108, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTSHADERUSAGE_NULLPARAM VideoprocessorsetoutputshaderusageNullParam = 3146109, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETOUTPUTSHADERUSAGE_NULLPARAM VideoprocessorgetoutputshaderusageNullParam = 3146110, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETBEHAVIORHINTS_NULLPARAM VideoprocessorgetbehaviorhintsNullParam = 3146111, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETBEHAVIORHINTS_INVALIDSTREAMCOUNT VideoprocessorgetbehaviorhintsInvalidstreamcount = 3146112, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETBEHAVIORHINTS_TARGETRECT VideoprocessorgetbehaviorhintsTargetrect = 3146113, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETBEHAVIORHINTS_INVALIDSOURCERECT VideoprocessorgetbehaviorhintsInvalidsourcerect = 3146114, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETBEHAVIORHINTS_INVALIDDESTRECT VideoprocessorgetbehaviorhintsInvaliddestrect = 3146115, - /// + /// /// D3D11_MESSAGE_ID_GETCRYPTOSESSIONPRIVATEDATASIZE_INVALID_KEY_EXCHANGE_TYPE GetcryptosessionprivatedatasizeInvalidKeyExchangeType = 3146116, - /// + /// /// D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDUSAGE CreateBufferInvalidUsage = 3146119, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE1D_INVALIDUSAGE CreateTexture1DInvalidUsage = 3146120, - /// + /// /// D3D11_MESSAGE_ID_CREATETEXTURE2D_INVALIDUSAGE CreateTexture2DInvalidUsage = 3146121, - /// + /// /// D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_LEVEL9_STEPRATE_NOT_1 CreateInputLayoutLevel9StepRateNot1 = 3146122, - /// + /// /// D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_LEVEL9_INSTANCING_NOT_SUPPORTED CreateInputLayoutLevel9InstancingNotSupported = 3146123, - /// + /// /// D3D11_MESSAGE_ID_UPDATETILEMAPPINGS_INVALID_PARAMETER UpdateTileMappingsInvalidParameter = 3146124, - /// + /// /// D3D11_MESSAGE_ID_COPYTILEMAPPINGS_INVALID_PARAMETER CopyTileMappingsInvalidParameter = 3146125, - /// + /// /// D3D11_MESSAGE_ID_COPYTILES_INVALID_PARAMETER CopyTilesInvalidParameter = 3146126, - /// + /// /// D3D11_MESSAGE_ID_UPDATETILES_INVALID_PARAMETER UpdateTilesInvalidParameter = 3146127, - /// + /// /// D3D11_MESSAGE_ID_RESIZETILEPOOL_INVALID_PARAMETER ResizetilepoolInvalidParameter = 3146128, - /// + /// /// D3D11_MESSAGE_ID_TILEDRESOURCEBARRIER_INVALID_PARAMETER TiledresourcebarrierInvalidParameter = 3146129, - /// + /// /// D3D11_MESSAGE_ID_NULL_TILE_MAPPING_ACCESS_WARNING NullTileMappingAccessWarning = 3146130, - /// + /// /// D3D11_MESSAGE_ID_NULL_TILE_MAPPING_ACCESS_ERROR NullTileMappingAccessError = 3146131, - /// + /// /// D3D11_MESSAGE_ID_DIRTY_TILE_MAPPING_ACCESS DirtyTileMappingAccess = 3146132, - /// + /// /// D3D11_MESSAGE_ID_DUPLICATE_TILE_MAPPINGS_IN_COVERED_AREA DuplicateTileMappingsInCoveredArea = 3146133, - /// + /// /// D3D11_MESSAGE_ID_TILE_MAPPINGS_IN_COVERED_AREA_DUPLICATED_OUTSIDE TileMappingsInCoveredAreaDuplicatedOutside = 3146134, - /// + /// /// D3D11_MESSAGE_ID_TILE_MAPPINGS_SHARED_BETWEEN_INCOMPATIBLE_RESOURCES TileMappingsSharedBetweenIncompatibleResources = 3146135, - /// + /// /// D3D11_MESSAGE_ID_TILE_MAPPINGS_SHARED_BETWEEN_INPUT_AND_OUTPUT TileMappingsSharedBetweenInputAndOutput = 3146136, - /// + /// /// D3D11_MESSAGE_ID_CHECKMULTISAMPLEQUALITYLEVELS_INVALIDFLAGS CheckMultisampleQualityLevelsInvalidFlags = 3146137, - /// + /// /// D3D11_MESSAGE_ID_GETRESOURCETILING_NONTILED_RESOURCE GetresourcetilingNontiledResource = 3146138, - /// + /// /// D3D11_MESSAGE_ID_RESIZETILEPOOL_SHRINK_WITH_MAPPINGS_STILL_DEFINED_PAST_END ResizetilepoolShrinkWithMappingsStillDefinedPastEnd = 3146139, - /// + /// /// D3D11_MESSAGE_ID_NEED_TO_CALL_TILEDRESOURCEBARRIER NeedToCallTiledresourcebarrier = 3146140, - /// + /// /// D3D11_MESSAGE_ID_CREATEDEVICE_INVALIDARGS CreateDeviceInvalidArgs = 3146141, - /// + /// /// D3D11_MESSAGE_ID_CREATEDEVICE_WARNING CreateDeviceWarning = 3146142, - /// + /// /// D3D11_MESSAGE_ID_CLEARUNORDEREDACCESSVIEWUINT_HAZARD ClearunorderedaccessviewuintHazard = 3146143, - /// + /// /// D3D11_MESSAGE_ID_CLEARUNORDEREDACCESSVIEWFLOAT_HAZARD ClearUnorderedAccessViewFloatHazard = 3146144, - /// + /// /// D3D11_MESSAGE_ID_TILED_RESOURCE_TIER_1_BUFFER_TEXTURE_MISMATCH TiledResourceTier1BufferTextureMismatch = 3146145, - /// + /// /// D3D11_MESSAGE_ID_CREATE_CRYPTOSESSION CreateCryptoSession = 3146146, - /// + /// /// D3D11_MESSAGE_ID_CREATE_AUTHENTICATEDCHANNEL CreateAuthenticatedChannel = 3146147, - /// + /// /// D3D11_MESSAGE_ID_LIVE_CRYPTOSESSION LiveCryptoSession = 3146148, - /// + /// /// D3D11_MESSAGE_ID_LIVE_AUTHENTICATEDCHANNEL LiveAuthenticatedChannel = 3146149, - /// + /// /// D3D11_MESSAGE_ID_DESTROY_CRYPTOSESSION DestroyCryptoSession = 3146150, - /// + /// /// D3D11_MESSAGE_ID_DESTROY_AUTHENTICATEDCHANNEL DestroyAuthenticatedChannel = 3146151, - /// + /// /// D3D11_MESSAGE_ID_CREATERASTERIZERSTATE_INVALID_CONSERVATIVERASTERMODE CreateRasterizerStateInvalidConservativeRasterMode = 3146154, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_DRAW_INVALID_SYSTEMVALUE DeviceDrawInvalidSystemValue = 3146155, - /// + /// /// D3D11_MESSAGE_ID_CREATEQUERYORPREDICATE_INVALIDCONTEXTTYPE CreateQueryOrPredicateInvalidContextType = 3146156, - /// + /// /// D3D11_MESSAGE_ID_CREATEQUERYORPREDICATE_DECODENOTSUPPORTED CreateQueryOrPredicateDecodenotsupported = 3146157, - /// + /// /// D3D11_MESSAGE_ID_CREATEQUERYORPREDICATE_ENCODENOTSUPPORTED CreateQueryOrPredicateEncodenotsupported = 3146158, - /// + /// /// D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDPLANEINDEX CreateShaderResourceViewInvalidplaneindex = 3146159, - /// + /// /// D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDVIDEOPLANEINDEX CreateShaderResourceViewInvalidvideoplaneindex = 3146160, - /// + /// /// D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_AMBIGUOUSVIDEOPLANEINDEX CreateShaderResourceViewAmbiguousvideoplaneindex = 3146161, - /// + /// /// D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDPLANEINDEX CreateRenderTargetViewInvalidplaneindex = 3146162, - /// + /// /// D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDVIDEOPLANEINDEX CreateRenderTargetViewInvalidvideoplaneindex = 3146163, - /// + /// /// D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_AMBIGUOUSVIDEOPLANEINDEX CreateRenderTargetViewAmbiguousvideoplaneindex = 3146164, - /// + /// /// D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDPLANEINDEX CreateUnorderedAccessViewInvalidplaneindex = 3146165, - /// + /// /// D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDVIDEOPLANEINDEX CreateUnorderedAccessViewInvalidvideoplaneindex = 3146166, - /// + /// /// D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_AMBIGUOUSVIDEOPLANEINDEX CreateUnorderedAccessViewAmbiguousvideoplaneindex = 3146167, - /// + /// /// D3D11_MESSAGE_ID_JPEGDECODE_INVALIDSCANDATAOFFSET JpegDecodeInvalidScanDataOffset = 3146168, - /// + /// /// D3D11_MESSAGE_ID_JPEGDECODE_NOTSUPPORTED JpegDecodeNotSupported = 3146169, - /// + /// /// D3D11_MESSAGE_ID_JPEGDECODE_DIMENSIONSTOOLARGE JpegDecodeDimensionsTooLarge = 3146170, - /// + /// /// D3D11_MESSAGE_ID_JPEGDECODE_INVALIDCOMPONENTS JpegDecodeInvalidComponents = 3146171, - /// + /// /// D3D11_MESSAGE_ID_JPEGDECODE_DESTINATIONNOT2D JpegDecodeDestinationNot2D = 3146172, - /// + /// /// D3D11_MESSAGE_ID_JPEGDECODE_TILEDRESOURCESUNSUPPORTED JpegDecodeTiledresourcesunsupported = 3146173, - /// + /// /// D3D11_MESSAGE_ID_JPEGDECODE_GUARDRECTSUNSUPPORTED JpegDecodeGuardrectsunsupported = 3146174, - /// + /// /// D3D11_MESSAGE_ID_JPEGDECODE_FORMATUNSUPPORTED JpegDecodeFormatunsupported = 3146175, - /// + /// /// D3D11_MESSAGE_ID_JPEGDECODE_INVALIDSUBRESOURCE JpegDecodeInvalidSubresource = 3146176, - /// + /// /// D3D11_MESSAGE_ID_JPEGDECODE_INVALIDMIPLEVEL JpegDecodeInvalidMipLevel = 3146177, - /// + /// /// D3D11_MESSAGE_ID_JPEGDECODE_EMPTYDESTBOX JpegDecodeEmptydestbox = 3146178, - /// + /// /// D3D11_MESSAGE_ID_JPEGDECODE_DESTBOXNOT2D JpegDecodeDestboxnot2d = 3146179, - /// + /// /// D3D11_MESSAGE_ID_JPEGDECODE_DESTBOXNOTSUB JpegDecodeDestboxnotsub = 3146180, - /// + /// /// D3D11_MESSAGE_ID_JPEGDECODE_DESTBOXESINTERSECT JpegDecodeDestboxesintersect = 3146181, - /// + /// /// D3D11_MESSAGE_ID_JPEGDECODE_XSUBSAMPLEMISMATCH JpegDecodeXsubsamplemismatch = 3146182, - /// + /// /// D3D11_MESSAGE_ID_JPEGDECODE_YSUBSAMPLEMISMATCH JpegDecodeYsubsamplemismatch = 3146183, - /// + /// /// D3D11_MESSAGE_ID_JPEGDECODE_XSUBSAMPLEODD JpegDecodeXsubsampleodd = 3146184, - /// + /// /// D3D11_MESSAGE_ID_JPEGDECODE_YSUBSAMPLEODD JpegDecodeYsubsampleodd = 3146185, - /// + /// /// D3D11_MESSAGE_ID_JPEGDECODE_OUTPUTDIMENSIONSTOOLARGE JpegDecodeOutputdimensionstoolarge = 3146186, - /// + /// /// D3D11_MESSAGE_ID_JPEGDECODE_NONPOW2SCALEUNSUPPORTED JpegDecodeNonpow2scaleunsupported = 3146187, - /// + /// /// D3D11_MESSAGE_ID_JPEGDECODE_FRACTIONALDOWNSCALETOLARGE JpegDecodeFractionaldownscaletolarge = 3146188, - /// + /// /// D3D11_MESSAGE_ID_JPEGDECODE_CHROMASIZEMISMATCH JpegDecodeChromasizemismatch = 3146189, - /// + /// /// D3D11_MESSAGE_ID_JPEGDECODE_LUMACHROMASIZEMISMATCH JpegDecodeLumachromasizemismatch = 3146190, - /// + /// /// D3D11_MESSAGE_ID_JPEGDECODE_INVALIDNUMDESTINATIONS JpegDecodeInvalidnumdestinations = 3146191, - /// + /// /// D3D11_MESSAGE_ID_JPEGDECODE_SUBBOXUNSUPPORTED JpegDecodeSubboxunsupported = 3146192, - /// + /// /// D3D11_MESSAGE_ID_JPEGDECODE_1DESTUNSUPPORTEDFORMAT JpegDecode1destunsupportedformat = 3146193, - /// + /// /// D3D11_MESSAGE_ID_JPEGDECODE_3DESTUNSUPPORTEDFORMAT JpegDecode3destunsupportedformat = 3146194, - /// + /// /// D3D11_MESSAGE_ID_JPEGDECODE_SCALEUNSUPPORTED JpegDecodeScaleunsupported = 3146195, - /// + /// /// D3D11_MESSAGE_ID_JPEGDECODE_INVALIDSOURCESIZE JpegDecodeInvalidsourcesize = 3146196, - /// + /// /// D3D11_MESSAGE_ID_JPEGDECODE_INVALIDCOPYFLAGS JpegDecodeInvalidCopyFlags = 3146197, - /// + /// /// D3D11_MESSAGE_ID_JPEGDECODE_HAZARD JpegDecodeHazard = 3146198, - /// + /// /// D3D11_MESSAGE_ID_JPEGDECODE_UNSUPPORTEDSRCBUFFERUSAGE JpegDecodeUnsupportedsrcbufferusage = 3146199, - /// + /// /// D3D11_MESSAGE_ID_JPEGDECODE_UNSUPPORTEDSRCBUFFERMISCFLAGS JpegDecodeUnsupportedsrcbuffermiscflags = 3146200, - /// + /// /// D3D11_MESSAGE_ID_JPEGDECODE_UNSUPPORTEDDSTTEXTUREUSAGE JpegDecodeUnsupporteddsttextureusage = 3146201, - /// + /// /// D3D11_MESSAGE_ID_JPEGDECODE_BACKBUFFERNOTSUPPORTED JpegDecodeBackbufferNotSupported = 3146202, - /// + /// /// D3D11_MESSAGE_ID_JPEGDECODE_UNSUPPRTEDCOPYFLAGS JpegDecodeUnsupprtedcopyflags = 3146203, - /// + /// /// D3D11_MESSAGE_ID_JPEGENCODE_NOTSUPPORTED JpegEncodeNotSupported = 3146204, - /// + /// /// D3D11_MESSAGE_ID_JPEGENCODE_INVALIDSCANDATAOFFSET JpegEncodeInvalidScanDataOffset = 3146205, - /// + /// /// D3D11_MESSAGE_ID_JPEGENCODE_INVALIDCOMPONENTS JpegEncodeInvalidComponents = 3146206, - /// + /// /// D3D11_MESSAGE_ID_JPEGENCODE_SOURCENOT2D JpegEncodeSourceNot2D = 3146207, - /// + /// /// D3D11_MESSAGE_ID_JPEGENCODE_TILEDRESOURCESUNSUPPORTED JpegEncodeTiledresourcesunsupported = 3146208, - /// + /// /// D3D11_MESSAGE_ID_JPEGENCODE_GUARDRECTSUNSUPPORTED JpegEncodeGuardrectsunsupported = 3146209, - /// + /// /// D3D11_MESSAGE_ID_JPEGENCODE_XSUBSAMPLEMISMATCH JpegEncodeXsubsamplemismatch = 3146210, - /// + /// /// D3D11_MESSAGE_ID_JPEGENCODE_YSUBSAMPLEMISMATCH JpegEncodeYsubsamplemismatch = 3146211, - /// + /// /// D3D11_MESSAGE_ID_JPEGENCODE_FORMATUNSUPPORTED JpegEncodeFormatunsupported = 3146212, - /// + /// /// D3D11_MESSAGE_ID_JPEGENCODE_INVALIDSUBRESOURCE JpegEncodeInvalidSubresource = 3146213, - /// + /// /// D3D11_MESSAGE_ID_JPEGENCODE_INVALIDMIPLEVEL JpegEncodeInvalidMipLevel = 3146214, - /// + /// /// D3D11_MESSAGE_ID_JPEGENCODE_DIMENSIONSTOOLARGE JpegEncodeDimensionsTooLarge = 3146215, - /// + /// /// D3D11_MESSAGE_ID_JPEGENCODE_HAZARD JpegEncodeHazard = 3146216, - /// + /// /// D3D11_MESSAGE_ID_JPEGENCODE_UNSUPPORTEDDSTBUFFERUSAGE JpegEncodeUnsupporteddstbufferusage = 3146217, - /// + /// /// D3D11_MESSAGE_ID_JPEGENCODE_UNSUPPORTEDDSTBUFFERMISCFLAGS JpegEncodeUnsupporteddstbuffermiscflags = 3146218, - /// + /// /// D3D11_MESSAGE_ID_JPEGENCODE_UNSUPPORTEDSRCTEXTUREUSAGE JpegEncodeUnsupportedsrctextureusage = 3146219, - /// + /// /// D3D11_MESSAGE_ID_JPEGENCODE_BACKBUFFERNOTSUPPORTED JpegEncodeBackbufferNotSupported = 3146220, - /// + /// /// D3D11_MESSAGE_ID_CREATEQUERYORPREDICATE_UNSUPPORTEDCONTEXTTTYPEFORQUERY CreateQueryOrPredicateUnsupportedcontextttypeforquery = 3146221, - /// + /// /// D3D11_MESSAGE_ID_FLUSH1_INVALIDCONTEXTTYPE Flush1InvalidContextType = 3146222, - /// + /// /// D3D11_MESSAGE_ID_DEVICE_SETHARDWAREPROTECTION_INVALIDCONTEXT DeviceSethardwareprotectionInvalidcontext = 3146223, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTHDRMETADATA_NULLPARAM VideoprocessorsetoutputhdrmetadataNullParam = 3146224, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTHDRMETADATA_INVALIDSIZE VideoprocessorsetoutputhdrmetadataInvalidSize = 3146225, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETOUTPUTHDRMETADATA_NULLPARAM VideoprocessorgetoutputhdrmetadataNullParam = 3146226, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETOUTPUTHDRMETADATA_INVALIDSIZE VideoprocessorgetoutputhdrmetadataInvalidSize = 3146227, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMHDRMETADATA_NULLPARAM VideoprocessorsetstreamhdrmetadataNullParam = 3146228, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMHDRMETADATA_INVALIDSTREAM VideoprocessorsetstreamhdrmetadataInvalidStream = 3146229, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMHDRMETADATA_INVALIDSIZE VideoprocessorsetstreamhdrmetadataInvalidSize = 3146230, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMHDRMETADATA_NULLPARAM VideoprocessorgetstreamhdrmetadataNullParam = 3146231, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMHDRMETADATA_INVALIDSTREAM VideoprocessorgetstreamhdrmetadataInvalidStream = 3146232, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMHDRMETADATA_INVALIDSIZE VideoprocessorgetstreamhdrmetadataInvalidSize = 3146233, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMFRAMEFORMAT_INVALIDSTREAM VideoprocessorgetstreamframeformatInvalidStream = 3146234, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMCOLORSPACE_INVALIDSTREAM VideoprocessorgetstreamcolorspaceInvalidStream = 3146235, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMOUTPUTRATE_INVALIDSTREAM VideoprocessorgetstreamoutputrateInvalidStream = 3146236, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMSOURCERECT_INVALIDSTREAM VideoprocessorgetstreamsourcerectInvalidStream = 3146237, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMDESTRECT_INVALIDSTREAM VideoprocessorgetstreamdestrectInvalidStream = 3146238, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMALPHA_INVALIDSTREAM VideoprocessorgetstreamalphaInvalidStream = 3146239, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMPALETTE_INVALIDSTREAM VideoprocessorgetstreampaletteInvalidStream = 3146240, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMPIXELASPECTRATIO_INVALIDSTREAM VideoprocessorgetstreampixelaspectratioInvalidStream = 3146241, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMLUMAKEY_INVALIDSTREAM VideoprocessorgetstreamlumakeyInvalidStream = 3146242, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMSTEREOFORMAT_INVALIDSTREAM VideoprocessorgetstreamstereoformatInvalidStream = 3146243, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMAUTOPROCESSINGMODE_INVALIDSTREAM VideoprocessorgetstreamautoprocessingmodeInvalidStream = 3146244, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMFILTER_INVALIDSTREAM VideoprocessorgetstreamfilterInvalidStream = 3146245, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMROTATION_INVALIDSTREAM VideoprocessorgetstreamrotationInvalidStream = 3146246, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMCOLORSPACE1_INVALIDSTREAM Videoprocessorgetstreamcolorspace1InvalidStream = 3146247, - /// + /// /// D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMMIRROR_INVALIDSTREAM VideoProcessorGetStreamMirrorInvalidStream = 3146248, - /// + /// /// D3D11_MESSAGE_ID_CREATE_FENCE CreateFence = 3146249, - /// + /// /// D3D11_MESSAGE_ID_LIVE_FENCE LiveFence = 3146250, - /// + /// /// D3D11_MESSAGE_ID_DESTROY_FENCE DestroyFence = 3146251, - /// + /// /// D3D11_MESSAGE_ID_CREATE_SYNCHRONIZEDCHANNEL CreateSynchronizedChannel = 3146252, - /// + /// /// D3D11_MESSAGE_ID_LIVE_SYNCHRONIZEDCHANNEL LiveSynchronizedChannel = 3146253, - /// + /// /// D3D11_MESSAGE_ID_DESTROY_SYNCHRONIZEDCHANNEL DestroySynchronizedChannel = 3146254, - /// + /// /// D3D11_MESSAGE_ID_CREATEFENCE_INVALIDFLAGS CreateFenceInvalidFlags = 3146255, - /// + /// /// D3D11_MESSAGE_ID_NEGOTIATECRYPTOSESSIONKEYEXCHANGEMT_INVALIDKEYEXCHANGETYPE NegotiatecryptosessionkeyexchangemtInvalidkeyexchangetype = 3146258, - /// + /// /// D3D11_MESSAGE_ID_NEGOTIATECRYPTOSESSIONKEYEXCHANGEMT_NOT_SUPPORTED NegotiatecryptosessionkeyexchangemtNotSupported = 3146259, - /// + /// /// D3D11_MESSAGE_ID_DECODERBEGINFRAME_INVALID_HISTOGRAM_COMPONENT_COUNT DecoderBeginFrameInvalidHistogramComponentCount = 3146260, - /// + /// /// D3D11_MESSAGE_ID_DECODERBEGINFRAME_INVALID_HISTOGRAM_COMPONENT DecoderBeginFrameInvalidHistogramComponent = 3146261, - /// + /// /// D3D11_MESSAGE_ID_DECODERBEGINFRAME_INVALID_HISTOGRAM_BUFFER_SIZE DecoderBeginFrameInvalidHistogramBufferSize = 3146262, - /// + /// /// D3D11_MESSAGE_ID_DECODERBEGINFRAME_INVALID_HISTOGRAM_BUFFER_USAGE DecoderBeginFrameInvalidHistogramBufferUsage = 3146263, - /// + /// /// D3D11_MESSAGE_ID_DECODERBEGINFRAME_INVALID_HISTOGRAM_BUFFER_MISC_FLAGS DecoderBeginFrameInvalidHistogramBufferMiscFlags = 3146264, - /// + /// /// D3D11_MESSAGE_ID_DECODERBEGINFRAME_INVALID_HISTOGRAM_BUFFER_OFFSET DecoderBeginFrameInvalidHistogramBufferOffset = 3146265, - /// + /// /// D3D11_MESSAGE_ID_CREATE_TRACKEDWORKLOAD CreateTrackedworkload = 3146266, - /// + /// /// D3D11_MESSAGE_ID_LIVE_TRACKEDWORKLOAD LiveTrackedworkload = 3146267, - /// + /// /// D3D11_MESSAGE_ID_DESTROY_TRACKEDWORKLOAD DestroyTrackedworkload = 3146268, - /// + /// /// D3D11_MESSAGE_ID_CREATE_TRACKED_WORKLOAD_NULLPARAM CreateTrackedWorkloadNullParam = 3146269, - /// + /// /// D3D11_MESSAGE_ID_CREATE_TRACKED_WORKLOAD_INVALID_MAX_INSTANCES CreateTrackedWorkloadInvalidMaxInstances = 3146270, - /// + /// /// D3D11_MESSAGE_ID_CREATE_TRACKED_WORKLOAD_INVALID_DEADLINE_TYPE CreateTrackedWorkloadInvalidDeadlineType = 3146271, - /// + /// /// D3D11_MESSAGE_ID_CREATE_TRACKED_WORKLOAD_INVALID_ENGINE_TYPE CreateTrackedWorkloadInvalidEngineType = 3146272, - /// + /// /// D3D11_MESSAGE_ID_MULTIPLE_TRACKED_WORKLOADS MultipleTrackedWorkloads = 3146273, - /// + /// /// D3D11_MESSAGE_ID_MULTIPLE_TRACKED_WORKLOAD_PAIRS MultipleTrackedWorkloadPairs = 3146274, - /// + /// /// D3D11_MESSAGE_ID_INCOMPLETE_TRACKED_WORKLOAD_PAIR IncompleteTrackedWorkloadPair = 3146275, - /// + /// /// D3D11_MESSAGE_ID_OUT_OF_ORDER_TRACKED_WORKLOAD_PAIR OutOfOrderTrackedWorkloadPair = 3146276, - /// + /// /// D3D11_MESSAGE_ID_CANNOT_ADD_TRACKED_WORKLOAD CannotAddTrackedWorkload = 3146277, - /// + /// /// D3D11_MESSAGE_ID_TRACKED_WORKLOAD_NOT_SUPPORTED TrackedWorkloadNotSupported = 3146278, - /// + /// /// D3D11_MESSAGE_ID_TRACKED_WORKLOAD_ENGINE_TYPE_NOT_FOUND TrackedWorkloadEngineTypeNotFound = 3146279, - /// + /// /// D3D11_MESSAGE_ID_NO_TRACKED_WORKLOAD_SLOT_AVAILABLE NoTrackedWorkloadSlotAvailable = 3146280, - /// + /// /// D3D11_MESSAGE_ID_END_TRACKED_WORKLOAD_INVALID_ARG EndTrackedWorkloadInvalidArg = 3146281, - /// + /// /// D3D11_MESSAGE_ID_TRACKED_WORKLOAD_DISJOINT_FAILURE TrackedWorkloadDisjointFailure = 3146282, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/MessageSeverity.cs b/src/Vortice.Win32.Direct3D11/Generated/MessageSeverity.cs index d0e2e35..e4504ad 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/MessageSeverity.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/MessageSeverity.cs @@ -9,23 +9,23 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_MESSAGE_SEVERITY public enum MessageSeverity : int { - /// + /// /// D3D11_MESSAGE_SEVERITY_CORRUPTION Corruption = 0, - /// + /// /// D3D11_MESSAGE_SEVERITY_ERROR Error = 1, - /// + /// /// D3D11_MESSAGE_SEVERITY_WARNING Warning = 2, - /// + /// /// D3D11_MESSAGE_SEVERITY_INFO Info = 3, - /// + /// /// D3D11_MESSAGE_SEVERITY_MESSAGE Message = 4, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/Omac.cs b/src/Vortice.Win32.Direct3D11/Generated/Omac.cs index 340b51d..d8ad565 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/Omac.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/Omac.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_OMAC public partial struct Omac { - /// + /// public unsafe fixed byte Buffer[16]; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/PackedMipDescription.cs b/src/Vortice.Win32.Direct3D11/Generated/PackedMipDescription.cs index 2d2d926..6c5ad1d 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/PackedMipDescription.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/PackedMipDescription.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_PACKED_MIP_DESC public partial struct PackedMipDescription { - /// + /// public byte NumStandardMips; - /// + /// public byte NumPackedMips; - /// + /// public uint NumTilesForPackedMips; - /// + /// public uint StartTileIndexInOverallResource; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/ParameterDescription.cs b/src/Vortice.Win32.Direct3D11/Generated/ParameterDescription.cs index 0a53e2e..9abdc8f 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ParameterDescription.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ParameterDescription.cs @@ -9,43 +9,43 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_PARAMETER_DESC public partial struct ParameterDescription { - /// + /// public unsafe sbyte* Name; - /// + /// public unsafe sbyte* SemanticName; - /// + /// public Graphics.Direct3D.ShaderVariableType Type; - /// + /// public Graphics.Direct3D.ShaderVariableClass Class; - /// + /// public uint Rows; - /// + /// public uint Columns; - /// + /// public Graphics.Direct3D.InterpolationMode InterpolationMode; - /// + /// public Graphics.Direct3D.ParameterFlags Flags; - /// + /// public uint FirstInRegister; - /// + /// public uint FirstInComponent; - /// + /// public uint FirstOutRegister; - /// + /// public uint FirstOutComponent; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/PixelShaderTraceDescription.cs b/src/Vortice.Win32.Direct3D11/Generated/PixelShaderTraceDescription.cs index ff510bf..6181bba 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/PixelShaderTraceDescription.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/PixelShaderTraceDescription.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_PIXEL_SHADER_TRACE_DESC public partial struct PixelShaderTraceDescription { - /// + /// public ulong Invocation; - /// + /// public int X; - /// + /// public int Y; - /// + /// public ulong SampleMask; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/QueryDataPipelineStatistics.cs b/src/Vortice.Win32.Direct3D11/Generated/QueryDataPipelineStatistics.cs index 4297d2a..5c4ebd1 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/QueryDataPipelineStatistics.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/QueryDataPipelineStatistics.cs @@ -9,40 +9,40 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_QUERY_DATA_PIPELINE_STATISTICS public partial struct QueryDataPipelineStatistics { - /// + /// public ulong IAVertices; - /// + /// public ulong IAPrimitives; - /// + /// public ulong VSInvocations; - /// + /// public ulong GSInvocations; - /// + /// public ulong GSPrimitives; - /// + /// public ulong CInvocations; - /// + /// public ulong CPrimitives; - /// + /// public ulong PSInvocations; - /// + /// public ulong HSInvocations; - /// + /// public ulong DSInvocations; - /// + /// public ulong CSInvocations; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/QueryDataSOStatistics.cs b/src/Vortice.Win32.Direct3D11/Generated/QueryDataSOStatistics.cs index 66384d5..9ccf583 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/QueryDataSOStatistics.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/QueryDataSOStatistics.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_QUERY_DATA_SO_STATISTICS public partial struct QueryDataSOStatistics { - /// + /// public ulong NumPrimitivesWritten; - /// + /// public ulong PrimitivesStorageNeeded; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/QueryDataTimestampDisjoint.cs b/src/Vortice.Win32.Direct3D11/Generated/QueryDataTimestampDisjoint.cs index aaf37d0..9b10b13 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/QueryDataTimestampDisjoint.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/QueryDataTimestampDisjoint.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_QUERY_DATA_TIMESTAMP_DISJOINT public partial struct QueryDataTimestampDisjoint { - /// + /// public ulong Frequency; - /// + /// public Bool32 Disjoint; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/QueryDescription.cs b/src/Vortice.Win32.Direct3D11/Generated/QueryDescription.cs index db73cae..ddbdb10 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/QueryDescription.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/QueryDescription.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_QUERY_DESC public partial struct QueryDescription { - /// + /// public QueryType Query; - /// + /// public QueryMiscFlags MiscFlags; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/QueryDescription1.cs b/src/Vortice.Win32.Direct3D11/Generated/QueryDescription1.cs index b2c27e0..2e5fda7 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/QueryDescription1.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/QueryDescription1.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_QUERY_DESC1 public partial struct QueryDescription1 { - /// + /// public QueryType Query; - /// + /// public QueryMiscFlags MiscFlags; - /// + /// public ContextType ContextType; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/QueryMiscFlags.cs b/src/Vortice.Win32.Direct3D11/Generated/QueryMiscFlags.cs index 3082e12..6de707d 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/QueryMiscFlags.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/QueryMiscFlags.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_QUERY_MISC_FLAG [Flags] public enum QueryMiscFlags : int { None = 0, - /// + /// /// D3D11_QUERY_MISC_PREDICATEHINT PredicateHint = 1, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/QueryType.cs b/src/Vortice.Win32.Direct3D11/Generated/QueryType.cs index 62124f1..3eb3036 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/QueryType.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/QueryType.cs @@ -9,56 +9,56 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_QUERY public enum QueryType : int { - /// + /// /// D3D11_QUERY_EVENT Event = 0, - /// + /// /// D3D11_QUERY_OCCLUSION Occlusion = 1, - /// + /// /// D3D11_QUERY_TIMESTAMP Timestamp = 2, - /// + /// /// D3D11_QUERY_TIMESTAMP_DISJOINT TimestampDisjoint = 3, - /// + /// /// D3D11_QUERY_PIPELINE_STATISTICS PipelineStatistics = 4, - /// + /// /// D3D11_QUERY_OCCLUSION_PREDICATE OcclusionPredicate = 5, - /// + /// /// D3D11_QUERY_SO_STATISTICS SOStatistics = 6, - /// + /// /// D3D11_QUERY_SO_OVERFLOW_PREDICATE SOOverflowPredicate = 7, - /// + /// /// D3D11_QUERY_SO_STATISTICS_STREAM0 SOStatisticsStream0 = 8, - /// + /// /// D3D11_QUERY_SO_OVERFLOW_PREDICATE_STREAM0 SOOverflowPredicateStream0 = 9, - /// + /// /// D3D11_QUERY_SO_STATISTICS_STREAM1 SOStatisticsStream1 = 10, - /// + /// /// D3D11_QUERY_SO_OVERFLOW_PREDICATE_STREAM1 SOOverflowPredicateStream1 = 11, - /// + /// /// D3D11_QUERY_SO_STATISTICS_STREAM2 SOStatisticsStream2 = 12, - /// + /// /// D3D11_QUERY_SO_OVERFLOW_PREDICATE_STREAM2 SOOverflowPredicateStream2 = 13, - /// + /// /// D3D11_QUERY_SO_STATISTICS_STREAM3 SOStatisticsStream3 = 14, - /// + /// /// D3D11_QUERY_SO_OVERFLOW_PREDICATE_STREAM3 SOOverflowPredicateStream3 = 15, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/RaiseFlags.cs b/src/Vortice.Win32.Direct3D11/Generated/RaiseFlags.cs index bcc4d0e..e7df88b 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/RaiseFlags.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/RaiseFlags.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_RAISE_FLAG [Flags] public enum RaiseFlags : int { None = 0, - /// + /// /// D3D11_RAISE_FLAG_DRIVER_INTERNAL_ERROR DriverInternalError = 1, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/RasterizerDescription.cs b/src/Vortice.Win32.Direct3D11/Generated/RasterizerDescription.cs index e46fea9..8787306 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/RasterizerDescription.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/RasterizerDescription.cs @@ -9,37 +9,37 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_RASTERIZER_DESC public partial struct RasterizerDescription { - /// + /// public FillMode FillMode; - /// + /// public CullMode CullMode; - /// + /// public Bool32 FrontCounterClockwise; - /// + /// public int DepthBias; - /// + /// public float DepthBiasClamp; - /// + /// public float SlopeScaledDepthBias; - /// + /// public Bool32 DepthClipEnable; - /// + /// public Bool32 ScissorEnable; - /// + /// public Bool32 MultisampleEnable; - /// + /// public Bool32 AntialiasedLineEnable; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/RasterizerDescription1.cs b/src/Vortice.Win32.Direct3D11/Generated/RasterizerDescription1.cs index 09657d3..20665c5 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/RasterizerDescription1.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/RasterizerDescription1.cs @@ -9,40 +9,40 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_RASTERIZER_DESC1 public partial struct RasterizerDescription1 { - /// + /// public FillMode FillMode; - /// + /// public CullMode CullMode; - /// + /// public Bool32 FrontCounterClockwise; - /// + /// public int DepthBias; - /// + /// public float DepthBiasClamp; - /// + /// public float SlopeScaledDepthBias; - /// + /// public Bool32 DepthClipEnable; - /// + /// public Bool32 ScissorEnable; - /// + /// public Bool32 MultisampleEnable; - /// + /// public Bool32 AntialiasedLineEnable; - /// + /// public uint ForcedSampleCount; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/RasterizerDescription2.cs b/src/Vortice.Win32.Direct3D11/Generated/RasterizerDescription2.cs index 30fdb7a..c83223c 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/RasterizerDescription2.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/RasterizerDescription2.cs @@ -9,43 +9,43 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_RASTERIZER_DESC2 public partial struct RasterizerDescription2 { - /// + /// public FillMode FillMode; - /// + /// public CullMode CullMode; - /// + /// public Bool32 FrontCounterClockwise; - /// + /// public int DepthBias; - /// + /// public float DepthBiasClamp; - /// + /// public float SlopeScaledDepthBias; - /// + /// public Bool32 DepthClipEnable; - /// + /// public Bool32 ScissorEnable; - /// + /// public Bool32 MultisampleEnable; - /// + /// public Bool32 AntialiasedLineEnable; - /// + /// public uint ForcedSampleCount; - /// + /// public ConservativeRasterizationMode ConservativeRaster; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/RenderTargetBlendDescription.cs b/src/Vortice.Win32.Direct3D11/Generated/RenderTargetBlendDescription.cs index 01c03fb..9e1a365 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/RenderTargetBlendDescription.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/RenderTargetBlendDescription.cs @@ -9,31 +9,31 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_RENDER_TARGET_BLEND_DESC public partial struct RenderTargetBlendDescription { - /// + /// public Bool32 BlendEnable; - /// + /// public Blend SrcBlend; - /// + /// public Blend DestBlend; - /// + /// public BlendOperation BlendOp; - /// + /// public Blend SrcBlendAlpha; - /// + /// public Blend DestBlendAlpha; - /// + /// public BlendOperation BlendOpAlpha; - /// + /// public ColorWriteEnable RenderTargetWriteMask; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/RenderTargetBlendDescription1.cs b/src/Vortice.Win32.Direct3D11/Generated/RenderTargetBlendDescription1.cs index bf1ace7..5cdb26c 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/RenderTargetBlendDescription1.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/RenderTargetBlendDescription1.cs @@ -9,37 +9,37 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_RENDER_TARGET_BLEND_DESC1 public partial struct RenderTargetBlendDescription1 { - /// + /// public Bool32 BlendEnable; - /// + /// public Bool32 LogicOpEnable; - /// + /// public Blend SrcBlend; - /// + /// public Blend DestBlend; - /// + /// public BlendOperation BlendOp; - /// + /// public Blend SrcBlendAlpha; - /// + /// public Blend DestBlendAlpha; - /// + /// public BlendOperation BlendOpAlpha; - /// + /// public LogicOperation LogicOp; - /// + /// public ColorWriteEnable RenderTargetWriteMask; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/RenderTargetViewDescription.cs b/src/Vortice.Win32.Direct3D11/Generated/RenderTargetViewDescription.cs index 47c5811..5b4028c 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/RenderTargetViewDescription.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/RenderTargetViewDescription.cs @@ -9,17 +9,17 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_RENDER_TARGET_VIEW_DESC public partial struct RenderTargetViewDescription { - /// + /// public Graphics.Dxgi.Common.Format Format; - /// + /// public RtvDimension ViewDimension; - /// + /// public _Anonymous_e__Union Anonymous; [UnscopedRef] @@ -105,35 +105,35 @@ public partial struct RenderTargetViewDescription [StructLayout(LayoutKind.Explicit)] public partial struct _Anonymous_e__Union { - /// + /// [FieldOffset(0)] public BufferRtv Buffer; - /// + /// [FieldOffset(0)] public Texture1DRtv Texture1D; - /// + /// [FieldOffset(0)] public Texture1DArrayRtv Texture1DArray; - /// + /// [FieldOffset(0)] public Texture2DRtv Texture2D; - /// + /// [FieldOffset(0)] public Texture2DArrayRtv Texture2DArray; - /// + /// [FieldOffset(0)] public Texture2DMsRtv Texture2DMS; - /// + /// [FieldOffset(0)] public Texture2DMsArrayRtv Texture2DMSArray; - /// + /// [FieldOffset(0)] public Texture3DRtv Texture3D; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/RenderTargetViewDescription1.cs b/src/Vortice.Win32.Direct3D11/Generated/RenderTargetViewDescription1.cs index 6b484ea..2255256 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/RenderTargetViewDescription1.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/RenderTargetViewDescription1.cs @@ -9,17 +9,17 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_RENDER_TARGET_VIEW_DESC1 public partial struct RenderTargetViewDescription1 { - /// + /// public Graphics.Dxgi.Common.Format Format; - /// + /// public RtvDimension ViewDimension; - /// + /// public _Anonymous_e__Union Anonymous; [UnscopedRef] @@ -105,35 +105,35 @@ public partial struct RenderTargetViewDescription1 [StructLayout(LayoutKind.Explicit)] public partial struct _Anonymous_e__Union { - /// + /// [FieldOffset(0)] public BufferRtv Buffer; - /// + /// [FieldOffset(0)] public Texture1DRtv Texture1D; - /// + /// [FieldOffset(0)] public Texture1DArrayRtv Texture1DArray; - /// + /// [FieldOffset(0)] public Texture2DRtv1 Texture2D; - /// + /// [FieldOffset(0)] public Texture2DArrayRtv1 Texture2DArray; - /// + /// [FieldOffset(0)] public Texture2DMsRtv Texture2DMS; - /// + /// [FieldOffset(0)] public Texture2DMsArrayRtv Texture2DMSArray; - /// + /// [FieldOffset(0)] public Texture3DRtv Texture3D; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/ReportLiveDeviceObjectFlags.cs b/src/Vortice.Win32.Direct3D11/Generated/ReportLiveDeviceObjectFlags.cs index 7aa2700..6c59af8 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ReportLiveDeviceObjectFlags.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ReportLiveDeviceObjectFlags.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_RLDO_FLAGS [Flags] public enum ReportLiveDeviceObjectFlags : int { None = 0, - /// + /// /// D3D11_RLDO_SUMMARY Summary = 1, - /// + /// /// D3D11_RLDO_DETAIL Detail = 2, - /// + /// /// D3D11_RLDO_IGNORE_INTERNAL IgnoreInternal = 4, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/ResourceDimension.cs b/src/Vortice.Win32.Direct3D11/Generated/ResourceDimension.cs index 6827eb6..0c50e44 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ResourceDimension.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ResourceDimension.cs @@ -9,23 +9,23 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_RESOURCE_DIMENSION public enum ResourceDimension : int { - /// + /// /// D3D11_RESOURCE_DIMENSION_UNKNOWN Unknown = 0, - /// + /// /// D3D11_RESOURCE_DIMENSION_BUFFER Buffer = 1, - /// + /// /// D3D11_RESOURCE_DIMENSION_TEXTURE1D Texture1D = 2, - /// + /// /// D3D11_RESOURCE_DIMENSION_TEXTURE2D Texture2D = 3, - /// + /// /// D3D11_RESOURCE_DIMENSION_TEXTURE3D Texture3D = 4, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/ResourceMiscFlags.cs b/src/Vortice.Win32.Direct3D11/Generated/ResourceMiscFlags.cs index 4f6d51c..be60159 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ResourceMiscFlags.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ResourceMiscFlags.cs @@ -9,67 +9,67 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_RESOURCE_MISC_FLAG [Flags] public enum ResourceMiscFlags : uint { None = 0, - /// + /// /// D3D11_RESOURCE_MISC_GENERATE_MIPS GenerateMips = 1, - /// + /// /// D3D11_RESOURCE_MISC_SHARED Shared = 2, - /// + /// /// D3D11_RESOURCE_MISC_TEXTURECUBE TextureCube = 4, - /// + /// /// D3D11_RESOURCE_MISC_DRAWINDIRECT_ARGS DrawIndirectArgs = 16, - /// + /// /// D3D11_RESOURCE_MISC_BUFFER_ALLOW_RAW_VIEWS BufferAllowRawViews = 32, - /// + /// /// D3D11_RESOURCE_MISC_BUFFER_STRUCTURED BufferStructured = 64, - /// + /// /// D3D11_RESOURCE_MISC_RESOURCE_CLAMP ResourceClamp = 128, - /// + /// /// D3D11_RESOURCE_MISC_SHARED_KEYEDMUTEX SharedKeyedMutex = 256, - /// + /// /// D3D11_RESOURCE_MISC_GDI_COMPATIBLE GDICompatible = 512, - /// + /// /// D3D11_RESOURCE_MISC_SHARED_NTHANDLE SharedNthandle = 2048, - /// + /// /// D3D11_RESOURCE_MISC_RESTRICTED_CONTENT RestrictedContent = 4096, - /// + /// /// D3D11_RESOURCE_MISC_RESTRICT_SHARED_RESOURCE RestrictSharedResource = 8192, - /// + /// /// D3D11_RESOURCE_MISC_RESTRICT_SHARED_RESOURCE_DRIVER RestrictSharedResourceDriver = 16384, - /// + /// /// D3D11_RESOURCE_MISC_GUARDED Guarded = 32768, - /// + /// /// D3D11_RESOURCE_MISC_TILE_POOL TilePool = 131072, - /// + /// /// D3D11_RESOURCE_MISC_TILED Tiled = 262144, - /// + /// /// D3D11_RESOURCE_MISC_HW_PROTECTED HWProtected = 524288, - /// + /// /// D3D11_RESOURCE_MISC_SHARED_DISPLAYABLE SharedDisplayable = 1048576, - /// + /// /// D3D11_RESOURCE_MISC_SHARED_EXCLUSIVE_WRITER SharedExclusiveWriter = 2097152, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/RtvDimension.cs b/src/Vortice.Win32.Direct3D11/Generated/RtvDimension.cs index 179b110..e21bb40 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/RtvDimension.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/RtvDimension.cs @@ -9,35 +9,35 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_RTV_DIMENSION public enum RtvDimension : int { - /// + /// /// D3D11_RTV_DIMENSION_UNKNOWN Unknown = 0, - /// + /// /// D3D11_RTV_DIMENSION_BUFFER Buffer = 1, - /// + /// /// D3D11_RTV_DIMENSION_TEXTURE1D Texture1D = 2, - /// + /// /// D3D11_RTV_DIMENSION_TEXTURE1DARRAY Texture1DArray = 3, - /// + /// /// D3D11_RTV_DIMENSION_TEXTURE2D Texture2D = 4, - /// + /// /// D3D11_RTV_DIMENSION_TEXTURE2DARRAY Texture2DArray = 5, - /// + /// /// D3D11_RTV_DIMENSION_TEXTURE2DMS Texture2DMs = 6, - /// + /// /// D3D11_RTV_DIMENSION_TEXTURE2DMSARRAY Texture2DMsArray = 7, - /// + /// /// D3D11_RTV_DIMENSION_TEXTURE3D Texture3D = 8, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/SODeclarationEntry.cs b/src/Vortice.Win32.Direct3D11/Generated/SODeclarationEntry.cs index b2fc615..6f8c257 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/SODeclarationEntry.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/SODeclarationEntry.cs @@ -9,25 +9,25 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_SO_DECLARATION_ENTRY public partial struct SODeclarationEntry { - /// + /// public uint Stream; - /// + /// public unsafe sbyte* SemanticName; - /// + /// public uint SemanticIndex; - /// + /// public byte StartComponent; - /// + /// public byte ComponentCount; - /// + /// public byte OutputSlot; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/SamplerDescription.cs b/src/Vortice.Win32.Direct3D11/Generated/SamplerDescription.cs index 397269f..533cab4 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/SamplerDescription.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/SamplerDescription.cs @@ -9,37 +9,37 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_SAMPLER_DESC public partial struct SamplerDescription { - /// + /// public Filter Filter; - /// + /// public TextureAddressMode AddressU; - /// + /// public TextureAddressMode AddressV; - /// + /// public TextureAddressMode AddressW; - /// + /// public float MipLODBias; - /// + /// public uint MaxAnisotropy; - /// + /// public ComparisonFunction ComparisonFunc; - /// + /// public unsafe fixed float BorderColor[4]; - /// + /// public float MinLOD; - /// + /// public float MaxLOD; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/ShaderBufferDescription.cs b/src/Vortice.Win32.Direct3D11/Generated/ShaderBufferDescription.cs index dea7055..5fe9dd3 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ShaderBufferDescription.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ShaderBufferDescription.cs @@ -9,22 +9,22 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_SHADER_BUFFER_DESC public partial struct ShaderBufferDescription { - /// + /// public unsafe sbyte* Name; - /// + /// public Graphics.Direct3D.CBufferType Type; - /// + /// public uint Variables; - /// + /// public uint Size; - /// + /// public uint uFlags; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/ShaderCacheSupportFlags.cs b/src/Vortice.Win32.Direct3D11/Generated/ShaderCacheSupportFlags.cs index 41cd154..0696990 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ShaderCacheSupportFlags.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ShaderCacheSupportFlags.cs @@ -9,18 +9,18 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_SHADER_CACHE_SUPPORT_FLAGS [Flags] public enum ShaderCacheSupportFlags : int { - /// + /// /// D3D11_SHADER_CACHE_SUPPORT_NONE None = 0, - /// + /// /// D3D11_SHADER_CACHE_SUPPORT_AUTOMATIC_INPROC_CACHE AutomaticInprocCache = 1, - /// + /// /// D3D11_SHADER_CACHE_SUPPORT_AUTOMATIC_DISK_CACHE AutomaticDiskCache = 2, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/ShaderDescription.cs b/src/Vortice.Win32.Direct3D11/Generated/ShaderDescription.cs index 8e6c492..452fe18 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ShaderDescription.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ShaderDescription.cs @@ -9,121 +9,121 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_SHADER_DESC public partial struct ShaderDescription { - /// + /// public uint Version; - /// + /// public unsafe sbyte* Creator; - /// + /// public uint Flags; - /// + /// public uint ConstantBuffers; - /// + /// public uint BoundResources; - /// + /// public uint InputParameters; - /// + /// public uint OutputParameters; - /// + /// public uint InstructionCount; - /// + /// public uint TempRegisterCount; - /// + /// public uint TempArrayCount; - /// + /// public uint DefCount; - /// + /// public uint DclCount; - /// + /// public uint TextureNormalInstructions; - /// + /// public uint TextureLoadInstructions; - /// + /// public uint TextureCompInstructions; - /// + /// public uint TextureBiasInstructions; - /// + /// public uint TextureGradientInstructions; - /// + /// public uint FloatInstructionCount; - /// + /// public uint IntInstructionCount; - /// + /// public uint UintInstructionCount; - /// + /// public uint StaticFlowControlCount; - /// + /// public uint DynamicFlowControlCount; - /// + /// public uint MacroInstructionCount; - /// + /// public uint ArrayInstructionCount; - /// + /// public uint CutInstructionCount; - /// + /// public uint EmitInstructionCount; - /// + /// public Graphics.Direct3D.PrimitiveTopology GSOutputTopology; - /// + /// public uint GSMaxOutputVertexCount; - /// + /// public Graphics.Direct3D.Primitive InputPrimitive; - /// + /// public uint PatchConstantParameters; - /// + /// public uint cGSInstanceCount; - /// + /// public uint cControlPoints; - /// + /// public Graphics.Direct3D.TessellatorOutputPrimitive HSOutputPrimitive; - /// + /// public Graphics.Direct3D.TessellatorPartitioning HSPartitioning; - /// + /// public Graphics.Direct3D.TessellatorDomain TessellatorDomain; - /// + /// public uint cBarrierInstructions; - /// + /// public uint cInterlockedInstructions; - /// + /// public uint cTextureStoreInstructions; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/ShaderInputBindDescription.cs b/src/Vortice.Win32.Direct3D11/Generated/ShaderInputBindDescription.cs index a92d8d4..f76a30c 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ShaderInputBindDescription.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ShaderInputBindDescription.cs @@ -9,31 +9,31 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_SHADER_INPUT_BIND_DESC public partial struct ShaderInputBindDescription { - /// + /// public unsafe sbyte* Name; - /// + /// public Graphics.Direct3D.ShaderInputType Type; - /// + /// public uint BindPoint; - /// + /// public uint BindCount; - /// + /// public uint uFlags; - /// + /// public Graphics.Direct3D.ResourceReturnType ReturnType; - /// + /// public Graphics.Direct3D.SrvDimension Dimension; - /// + /// public uint NumSamples; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/ShaderMinPrecisionSupport.cs b/src/Vortice.Win32.Direct3D11/Generated/ShaderMinPrecisionSupport.cs index 98efe21..6a35c5e 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ShaderMinPrecisionSupport.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ShaderMinPrecisionSupport.cs @@ -9,14 +9,14 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_SHADER_MIN_PRECISION_SUPPORT public enum ShaderMinPrecisionSupport : int { - /// + /// /// D3D11_SHADER_MIN_PRECISION_10_BIT P10Bit = 1, - /// + /// /// D3D11_SHADER_MIN_PRECISION_16_BIT P16Bit = 2, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/ShaderResourceViewDescription.cs b/src/Vortice.Win32.Direct3D11/Generated/ShaderResourceViewDescription.cs index 69236b6..54a2622 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ShaderResourceViewDescription.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ShaderResourceViewDescription.cs @@ -9,17 +9,17 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_SHADER_RESOURCE_VIEW_DESC public partial struct ShaderResourceViewDescription { - /// + /// public Graphics.Dxgi.Common.Format Format; - /// + /// public Graphics.Direct3D.SrvDimension ViewDimension; - /// + /// public _Anonymous_e__Union Anonymous; [UnscopedRef] @@ -135,47 +135,47 @@ public partial struct ShaderResourceViewDescription [StructLayout(LayoutKind.Explicit)] public partial struct _Anonymous_e__Union { - /// + /// [FieldOffset(0)] public BufferSrv Buffer; - /// + /// [FieldOffset(0)] public Texture1DSrv Texture1D; - /// + /// [FieldOffset(0)] public Texture1DArraySrv Texture1DArray; - /// + /// [FieldOffset(0)] public Texture2DSrv Texture2D; - /// + /// [FieldOffset(0)] public Texture2DArraySrv Texture2DArray; - /// + /// [FieldOffset(0)] public Texture2DMsSrv Texture2DMS; - /// + /// [FieldOffset(0)] public Texture2DMsArraySrv Texture2DMSArray; - /// + /// [FieldOffset(0)] public Texture3DSrv Texture3D; - /// + /// [FieldOffset(0)] public TexureCubeSrv TextureCube; - /// + /// [FieldOffset(0)] public TexureCubeArraySrv TextureCubeArray; - /// + /// [FieldOffset(0)] public BufferExtendedSrv BufferEx; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/ShaderResourceViewDescription1.cs b/src/Vortice.Win32.Direct3D11/Generated/ShaderResourceViewDescription1.cs index 06736d8..988be12 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ShaderResourceViewDescription1.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ShaderResourceViewDescription1.cs @@ -9,17 +9,17 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_SHADER_RESOURCE_VIEW_DESC1 public partial struct ShaderResourceViewDescription1 { - /// + /// public Graphics.Dxgi.Common.Format Format; - /// + /// public Graphics.Direct3D.SrvDimension ViewDimension; - /// + /// public _Anonymous_e__Union Anonymous; [UnscopedRef] @@ -135,47 +135,47 @@ public partial struct ShaderResourceViewDescription1 [StructLayout(LayoutKind.Explicit)] public partial struct _Anonymous_e__Union { - /// + /// [FieldOffset(0)] public BufferSrv Buffer; - /// + /// [FieldOffset(0)] public Texture1DSrv Texture1D; - /// + /// [FieldOffset(0)] public Texture1DArraySrv Texture1DArray; - /// + /// [FieldOffset(0)] public Texture2DSrv1 Texture2D; - /// + /// [FieldOffset(0)] public Texture2DArraySrv1 Texture2DArray; - /// + /// [FieldOffset(0)] public Texture2DMsSrv Texture2DMS; - /// + /// [FieldOffset(0)] public Texture2DMsArraySrv Texture2DMSArray; - /// + /// [FieldOffset(0)] public Texture3DSrv Texture3D; - /// + /// [FieldOffset(0)] public TexureCubeSrv TextureCube; - /// + /// [FieldOffset(0)] public TexureCubeArraySrv TextureCubeArray; - /// + /// [FieldOffset(0)] public BufferExtendedSrv BufferEx; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/ShaderTraceDescription.cs b/src/Vortice.Win32.Direct3D11/Generated/ShaderTraceDescription.cs index eb115b8..15fda55 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ShaderTraceDescription.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ShaderTraceDescription.cs @@ -9,17 +9,17 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_SHADER_TRACE_DESC public partial struct ShaderTraceDescription { - /// + /// public ShaderType Type; - /// + /// public uint Flags; - /// + /// public _Anonymous_e__Union Anonymous; [UnscopedRef] @@ -85,27 +85,27 @@ public partial struct ShaderTraceDescription [StructLayout(LayoutKind.Explicit)] public partial struct _Anonymous_e__Union { - /// + /// [FieldOffset(0)] public VertexShaderTraceDescription VertexShaderTraceDesc; - /// + /// [FieldOffset(0)] public HullShaderTraceDescription HullShaderTraceDesc; - /// + /// [FieldOffset(0)] public DomainShaderTraceDescription DomainShaderTraceDesc; - /// + /// [FieldOffset(0)] public GeometryShaderTraceDescription GeometryShaderTraceDesc; - /// + /// [FieldOffset(0)] public PixelShaderTraceDescription PixelShaderTraceDesc; - /// + /// [FieldOffset(0)] public ComputeShaderTraceDescription ComputeShaderTraceDesc; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/ShaderTrackingOptions.cs b/src/Vortice.Win32.Direct3D11/Generated/ShaderTrackingOptions.cs index a6ca7c1..3f9dc16 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ShaderTrackingOptions.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ShaderTrackingOptions.cs @@ -9,53 +9,53 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_SHADER_TRACKING_OPTIONS public enum ShaderTrackingOptions : int { - /// + /// /// D3D11_SHADER_TRACKING_OPTION_IGNORE OptionIgnore = 0, - /// + /// /// D3D11_SHADER_TRACKING_OPTION_TRACK_UNINITIALIZED OptionTrackUninitialized = 1, - /// + /// /// D3D11_SHADER_TRACKING_OPTION_TRACK_RAW OptionTrackRaw = 2, - /// + /// /// D3D11_SHADER_TRACKING_OPTION_TRACK_WAR OptionTrackWar = 4, - /// + /// /// D3D11_SHADER_TRACKING_OPTION_TRACK_WAW OptionTrackWaw = 8, - /// + /// /// D3D11_SHADER_TRACKING_OPTION_ALLOW_SAME OptionAllowSame = 16, - /// + /// /// D3D11_SHADER_TRACKING_OPTION_TRACK_ATOMIC_CONSISTENCY OptionTrackAtomicConsistency = 32, - /// + /// /// D3D11_SHADER_TRACKING_OPTION_TRACK_RAW_ACROSS_THREADGROUPS OptionTrackRawAcrossThreadgroups = 64, - /// + /// /// D3D11_SHADER_TRACKING_OPTION_TRACK_WAR_ACROSS_THREADGROUPS OptionTrackWarAcrossThreadgroups = 128, - /// + /// /// D3D11_SHADER_TRACKING_OPTION_TRACK_WAW_ACROSS_THREADGROUPS OptionTrackWawAcrossThreadgroups = 256, - /// + /// /// D3D11_SHADER_TRACKING_OPTION_TRACK_ATOMIC_CONSISTENCY_ACROSS_THREADGROUPS OptionTrackAtomicConsistencyAcrossThreadgroups = 512, - /// + /// /// D3D11_SHADER_TRACKING_OPTION_UAV_SPECIFIC_FLAGS OptionUavSpecificFlags = 960, - /// + /// /// D3D11_SHADER_TRACKING_OPTION_ALL_HAZARDS OptionAllHazards = 1006, - /// + /// /// D3D11_SHADER_TRACKING_OPTION_ALL_HAZARDS_ALLOWING_SAME OptionAllHazardsAllowingSame = 1022, - /// + /// /// D3D11_SHADER_TRACKING_OPTION_ALL_OPTIONS OptionAllOptions = 1023, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/ShaderTrackingResourceType.cs b/src/Vortice.Win32.Direct3D11/Generated/ShaderTrackingResourceType.cs index b7deddc..0252088 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ShaderTrackingResourceType.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ShaderTrackingResourceType.cs @@ -9,32 +9,32 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_SHADER_TRACKING_RESOURCE_TYPE public enum ShaderTrackingResourceType : int { - /// + /// /// D3D11_SHADER_TRACKING_RESOURCE_TYPE_NONE None = 0, - /// + /// /// D3D11_SHADER_TRACKING_RESOURCE_TYPE_UAV_DEVICEMEMORY UavDeviceMemory = 1, - /// + /// /// D3D11_SHADER_TRACKING_RESOURCE_TYPE_NON_UAV_DEVICEMEMORY NonUavDeviceMemory = 2, - /// + /// /// D3D11_SHADER_TRACKING_RESOURCE_TYPE_ALL_DEVICEMEMORY AllDeviceMemory = 3, - /// + /// /// D3D11_SHADER_TRACKING_RESOURCE_TYPE_GROUPSHARED_MEMORY GroupSharedMemory = 4, - /// + /// /// D3D11_SHADER_TRACKING_RESOURCE_TYPE_ALL_SHARED_MEMORY AllSharedMemory = 5, - /// + /// /// D3D11_SHADER_TRACKING_RESOURCE_TYPE_GROUPSHARED_NON_UAV GroupSharedNonUav = 6, - /// + /// /// D3D11_SHADER_TRACKING_RESOURCE_TYPE_ALL All = 7, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/ShaderType.cs b/src/Vortice.Win32.Direct3D11/Generated/ShaderType.cs index 3051578..c0b2511 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ShaderType.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ShaderType.cs @@ -9,26 +9,26 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_SHADER_TYPE public enum ShaderType : int { - /// + /// /// D3D11_VERTEX_SHADER D3D11_VERTEX_SHADER = 1, - /// + /// /// D3D11_HULL_SHADER D3D11_HULL_SHADER = 2, - /// + /// /// D3D11_DOMAIN_SHADER D3D11_DOMAIN_SHADER = 3, - /// + /// /// D3D11_GEOMETRY_SHADER D3D11_GEOMETRY_SHADER = 4, - /// + /// /// D3D11_PIXEL_SHADER D3D11_PIXEL_SHADER = 5, - /// + /// /// D3D11_COMPUTE_SHADER D3D11_COMPUTE_SHADER = 6, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/ShaderTypeDescription.cs b/src/Vortice.Win32.Direct3D11/Generated/ShaderTypeDescription.cs index 2bca88e..06226a5 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ShaderTypeDescription.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ShaderTypeDescription.cs @@ -9,31 +9,31 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_SHADER_TYPE_DESC public partial struct ShaderTypeDescription { - /// + /// public Graphics.Direct3D.ShaderVariableClass Class; - /// + /// public Graphics.Direct3D.ShaderVariableType Type; - /// + /// public uint Rows; - /// + /// public uint Columns; - /// + /// public uint Elements; - /// + /// public uint Members; - /// + /// public uint Offset; - /// + /// public unsafe sbyte* Name; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/ShaderVariableDescription.cs b/src/Vortice.Win32.Direct3D11/Generated/ShaderVariableDescription.cs index cfe2ce2..e26f200 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ShaderVariableDescription.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ShaderVariableDescription.cs @@ -9,34 +9,34 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_SHADER_VARIABLE_DESC public partial struct ShaderVariableDescription { - /// + /// public unsafe sbyte* Name; - /// + /// public uint StartOffset; - /// + /// public uint Size; - /// + /// public uint uFlags; - /// + /// public unsafe void* DefaultValue; - /// + /// public uint StartTexture; - /// + /// public uint TextureSize; - /// + /// public uint StartSampler; - /// + /// public uint SamplerSize; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/ShaderVersionType.cs b/src/Vortice.Win32.Direct3D11/Generated/ShaderVersionType.cs index b466b27..c65d588 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/ShaderVersionType.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/ShaderVersionType.cs @@ -9,29 +9,29 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_SHADER_VERSION_TYPE public enum ShaderVersionType : int { - /// + /// /// D3D11_SHVER_PIXEL_SHADER D3D11_SHVER_PIXEL_SHADER = 0, - /// + /// /// D3D11_SHVER_VERTEX_SHADER D3D11_SHVER_VERTEX_SHADER = 1, - /// + /// /// D3D11_SHVER_GEOMETRY_SHADER D3D11_SHVER_GEOMETRY_SHADER = 2, - /// + /// /// D3D11_SHVER_HULL_SHADER D3D11_SHVER_HULL_SHADER = 3, - /// + /// /// D3D11_SHVER_DOMAIN_SHADER D3D11_SHVER_DOMAIN_SHADER = 4, - /// + /// /// D3D11_SHVER_COMPUTE_SHADER D3D11_SHVER_COMPUTE_SHADER = 5, - /// + /// /// D3D11_SHVER_RESERVED0 D3D11_SHVER_RESERVED0 = 65520, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/SharedResourceTier.cs b/src/Vortice.Win32.Direct3D11/Generated/SharedResourceTier.cs index d927f79..7f6b4cb 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/SharedResourceTier.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/SharedResourceTier.cs @@ -9,20 +9,20 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_SHARED_RESOURCE_TIER public enum SharedResourceTier : int { - /// + /// /// D3D11_SHARED_RESOURCE_TIER_0 Tier0 = 0, - /// + /// /// D3D11_SHARED_RESOURCE_TIER_1 Tier1 = 1, - /// + /// /// D3D11_SHARED_RESOURCE_TIER_2 Tier2 = 2, - /// + /// /// D3D11_SHARED_RESOURCE_TIER_3 Tier3 = 3, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/SignatureParameterDescription.cs b/src/Vortice.Win32.Direct3D11/Generated/SignatureParameterDescription.cs index 514910e..ef242e3 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/SignatureParameterDescription.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/SignatureParameterDescription.cs @@ -9,34 +9,34 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_SIGNATURE_PARAMETER_DESC public partial struct SignatureParameterDescription { - /// + /// public unsafe sbyte* SemanticName; - /// + /// public uint SemanticIndex; - /// + /// public uint Register; - /// + /// public Graphics.Direct3D.Name SystemValueType; - /// + /// public Graphics.Direct3D.RegisterComponentType ComponentType; - /// + /// public byte Mask; - /// + /// public byte ReadWriteMask; - /// + /// public uint Stream; - /// + /// public Graphics.Direct3D.MinPrecision MinPrecision; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/StandardMultisampleQualityLevels.cs b/src/Vortice.Win32.Direct3D11/Generated/StandardMultisampleQualityLevels.cs index a04f8ec..d4f1443 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/StandardMultisampleQualityLevels.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/StandardMultisampleQualityLevels.cs @@ -9,14 +9,14 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_STANDARD_MULTISAMPLE_QUALITY_LEVELS public enum StandardMultisampleQualityLevels : int { - /// + /// /// D3D11_STANDARD_MULTISAMPLE_PATTERN Standard = -1, - /// + /// /// D3D11_CENTER_MULTISAMPLE_PATTERN Center = -2, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/StencilOperation.cs b/src/Vortice.Win32.Direct3D11/Generated/StencilOperation.cs index 6bef1f3..0399336 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/StencilOperation.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/StencilOperation.cs @@ -9,32 +9,32 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_STENCIL_OP public enum StencilOperation : int { - /// + /// /// D3D11_STENCIL_OP_KEEP Keep = 1, - /// + /// /// D3D11_STENCIL_OP_ZERO Zero = 2, - /// + /// /// D3D11_STENCIL_OP_REPLACE Replace = 3, - /// + /// /// D3D11_STENCIL_OP_INCR_SAT IncrSat = 4, - /// + /// /// D3D11_STENCIL_OP_DECR_SAT DecrSat = 5, - /// + /// /// D3D11_STENCIL_OP_INVERT Invert = 6, - /// + /// /// D3D11_STENCIL_OP_INCR Incr = 7, - /// + /// /// D3D11_STENCIL_OP_DECR Decr = 8, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/SubresourceData.cs b/src/Vortice.Win32.Direct3D11/Generated/SubresourceData.cs index 66d09c5..50c4f6b 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/SubresourceData.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/SubresourceData.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_SUBRESOURCE_DATA public partial struct SubresourceData { - /// + /// public unsafe void* pSysMem; - /// + /// public uint SysMemPitch; - /// + /// public uint SysMemSlicePitch; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/SubresourceTiling.cs b/src/Vortice.Win32.Direct3D11/Generated/SubresourceTiling.cs index ca76225..213466b 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/SubresourceTiling.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/SubresourceTiling.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_SUBRESOURCE_TILING public partial struct SubresourceTiling { - /// + /// public uint WidthInTiles; - /// + /// public ushort HeightInTiles; - /// + /// public ushort DepthInTiles; - /// + /// public uint StartTileIndexInOverallResource; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/Texture1DArrayDsv.cs b/src/Vortice.Win32.Direct3D11/Generated/Texture1DArrayDsv.cs index 1ec9115..11eda7c 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/Texture1DArrayDsv.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/Texture1DArrayDsv.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TEX1D_ARRAY_DSV public partial struct Texture1DArrayDsv { - /// + /// public uint MipSlice; - /// + /// public uint FirstArraySlice; - /// + /// public uint ArraySize; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/Texture1DArrayRtv.cs b/src/Vortice.Win32.Direct3D11/Generated/Texture1DArrayRtv.cs index 182a423..f3283a6 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/Texture1DArrayRtv.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/Texture1DArrayRtv.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TEX1D_ARRAY_RTV public partial struct Texture1DArrayRtv { - /// + /// public uint MipSlice; - /// + /// public uint FirstArraySlice; - /// + /// public uint ArraySize; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/Texture1DArraySrv.cs b/src/Vortice.Win32.Direct3D11/Generated/Texture1DArraySrv.cs index ac310dc..6a0ea3b 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/Texture1DArraySrv.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/Texture1DArraySrv.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TEX1D_ARRAY_SRV public partial struct Texture1DArraySrv { - /// + /// public uint MostDetailedMip; - /// + /// public uint MipLevels; - /// + /// public uint FirstArraySlice; - /// + /// public uint ArraySize; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/Texture1DArrayUav.cs b/src/Vortice.Win32.Direct3D11/Generated/Texture1DArrayUav.cs index 9c9504c..502c709 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/Texture1DArrayUav.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/Texture1DArrayUav.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TEX1D_ARRAY_UAV public partial struct Texture1DArrayUav { - /// + /// public uint MipSlice; - /// + /// public uint FirstArraySlice; - /// + /// public uint ArraySize; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/Texture1DDescription.cs b/src/Vortice.Win32.Direct3D11/Generated/Texture1DDescription.cs index 6b6d48d..1a6f4a4 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/Texture1DDescription.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/Texture1DDescription.cs @@ -9,31 +9,31 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TEXTURE1D_DESC public partial struct Texture1DDescription { - /// + /// public uint Width; - /// + /// public uint MipLevels; - /// + /// public uint ArraySize; - /// + /// public Graphics.Dxgi.Common.Format Format; - /// + /// public Usage Usage; - /// + /// public BindFlags BindFlags; - /// + /// public CpuAccessFlags CPUAccessFlags; - /// + /// public ResourceMiscFlags MiscFlags; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/Texture1DDsv.cs b/src/Vortice.Win32.Direct3D11/Generated/Texture1DDsv.cs index 961fed7..45dd95d 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/Texture1DDsv.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/Texture1DDsv.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TEX1D_DSV public partial struct Texture1DDsv { - /// + /// public uint MipSlice; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/Texture1DRtv.cs b/src/Vortice.Win32.Direct3D11/Generated/Texture1DRtv.cs index 29a85f1..746a89a 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/Texture1DRtv.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/Texture1DRtv.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TEX1D_RTV public partial struct Texture1DRtv { - /// + /// public uint MipSlice; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/Texture1DSrv.cs b/src/Vortice.Win32.Direct3D11/Generated/Texture1DSrv.cs index 83481c9..adccacc 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/Texture1DSrv.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/Texture1DSrv.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TEX1D_SRV public partial struct Texture1DSrv { - /// + /// public uint MostDetailedMip; - /// + /// public uint MipLevels; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/Texture1DUav.cs b/src/Vortice.Win32.Direct3D11/Generated/Texture1DUav.cs index bf50d17..8b7e073 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/Texture1DUav.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/Texture1DUav.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TEX1D_UAV public partial struct Texture1DUav { - /// + /// public uint MipSlice; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/Texture2DArrayDsv.cs b/src/Vortice.Win32.Direct3D11/Generated/Texture2DArrayDsv.cs index 593212f..11fe38a 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/Texture2DArrayDsv.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/Texture2DArrayDsv.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TEX2D_ARRAY_DSV public partial struct Texture2DArrayDsv { - /// + /// public uint MipSlice; - /// + /// public uint FirstArraySlice; - /// + /// public uint ArraySize; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/Texture2DArrayRtv.cs b/src/Vortice.Win32.Direct3D11/Generated/Texture2DArrayRtv.cs index 54687a7..405b152 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/Texture2DArrayRtv.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/Texture2DArrayRtv.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TEX2D_ARRAY_RTV public partial struct Texture2DArrayRtv { - /// + /// public uint MipSlice; - /// + /// public uint FirstArraySlice; - /// + /// public uint ArraySize; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/Texture2DArrayRtv1.cs b/src/Vortice.Win32.Direct3D11/Generated/Texture2DArrayRtv1.cs index 8c82523..2b421e6 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/Texture2DArrayRtv1.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/Texture2DArrayRtv1.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TEX2D_ARRAY_RTV1 public partial struct Texture2DArrayRtv1 { - /// + /// public uint MipSlice; - /// + /// public uint FirstArraySlice; - /// + /// public uint ArraySize; - /// + /// public uint PlaneSlice; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/Texture2DArraySrv.cs b/src/Vortice.Win32.Direct3D11/Generated/Texture2DArraySrv.cs index 26de6f5..2068fa7 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/Texture2DArraySrv.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/Texture2DArraySrv.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TEX2D_ARRAY_SRV public partial struct Texture2DArraySrv { - /// + /// public uint MostDetailedMip; - /// + /// public uint MipLevels; - /// + /// public uint FirstArraySlice; - /// + /// public uint ArraySize; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/Texture2DArraySrv1.cs b/src/Vortice.Win32.Direct3D11/Generated/Texture2DArraySrv1.cs index d73f7c1..85b74df 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/Texture2DArraySrv1.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/Texture2DArraySrv1.cs @@ -9,22 +9,22 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TEX2D_ARRAY_SRV1 public partial struct Texture2DArraySrv1 { - /// + /// public uint MostDetailedMip; - /// + /// public uint MipLevels; - /// + /// public uint FirstArraySlice; - /// + /// public uint ArraySize; - /// + /// public uint PlaneSlice; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/Texture2DArrayUav.cs b/src/Vortice.Win32.Direct3D11/Generated/Texture2DArrayUav.cs index 7307b2c..776640a 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/Texture2DArrayUav.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/Texture2DArrayUav.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TEX2D_ARRAY_UAV public partial struct Texture2DArrayUav { - /// + /// public uint MipSlice; - /// + /// public uint FirstArraySlice; - /// + /// public uint ArraySize; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/Texture2DArrayUav1.cs b/src/Vortice.Win32.Direct3D11/Generated/Texture2DArrayUav1.cs index 25bb1d0..e19d13e 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/Texture2DArrayUav1.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/Texture2DArrayUav1.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TEX2D_ARRAY_UAV1 public partial struct Texture2DArrayUav1 { - /// + /// public uint MipSlice; - /// + /// public uint FirstArraySlice; - /// + /// public uint ArraySize; - /// + /// public uint PlaneSlice; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/Texture2DArrayVpov.cs b/src/Vortice.Win32.Direct3D11/Generated/Texture2DArrayVpov.cs index 2a3704c..69f7244 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/Texture2DArrayVpov.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/Texture2DArrayVpov.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TEX2D_ARRAY_VPOV public partial struct Texture2DArrayVpov { - /// + /// public uint MipSlice; - /// + /// public uint FirstArraySlice; - /// + /// public uint ArraySize; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/Texture2DDescription.cs b/src/Vortice.Win32.Direct3D11/Generated/Texture2DDescription.cs index e649b93..97e08f2 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/Texture2DDescription.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/Texture2DDescription.cs @@ -9,37 +9,37 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TEXTURE2D_DESC public partial struct Texture2DDescription { - /// + /// public uint Width; - /// + /// public uint Height; - /// + /// public uint MipLevels; - /// + /// public uint ArraySize; - /// + /// public Graphics.Dxgi.Common.Format Format; - /// + /// public Graphics.Dxgi.Common.SampleDescription SampleDesc; - /// + /// public Usage Usage; - /// + /// public BindFlags BindFlags; - /// + /// public CpuAccessFlags CPUAccessFlags; - /// + /// public ResourceMiscFlags MiscFlags; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/Texture2DDescription1.cs b/src/Vortice.Win32.Direct3D11/Generated/Texture2DDescription1.cs index f5c4796..fde0cff 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/Texture2DDescription1.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/Texture2DDescription1.cs @@ -9,40 +9,40 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TEXTURE2D_DESC1 public partial struct Texture2DDescription1 { - /// + /// public uint Width; - /// + /// public uint Height; - /// + /// public uint MipLevels; - /// + /// public uint ArraySize; - /// + /// public Graphics.Dxgi.Common.Format Format; - /// + /// public Graphics.Dxgi.Common.SampleDescription SampleDesc; - /// + /// public Usage Usage; - /// + /// public BindFlags BindFlags; - /// + /// public CpuAccessFlags CPUAccessFlags; - /// + /// public ResourceMiscFlags MiscFlags; - /// + /// public TextureLayout TextureLayout; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/Texture2DDsv.cs b/src/Vortice.Win32.Direct3D11/Generated/Texture2DDsv.cs index b744592..b8ffc67 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/Texture2DDsv.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/Texture2DDsv.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TEX2D_DSV public partial struct Texture2DDsv { - /// + /// public uint MipSlice; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/Texture2DMsArrayDsv.cs b/src/Vortice.Win32.Direct3D11/Generated/Texture2DMsArrayDsv.cs index ac9b26a..aa29d55 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/Texture2DMsArrayDsv.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/Texture2DMsArrayDsv.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TEX2DMS_ARRAY_DSV public partial struct Texture2DMsArrayDsv { - /// + /// public uint FirstArraySlice; - /// + /// public uint ArraySize; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/Texture2DMsArrayRtv.cs b/src/Vortice.Win32.Direct3D11/Generated/Texture2DMsArrayRtv.cs index 71f5164..8f369b1 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/Texture2DMsArrayRtv.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/Texture2DMsArrayRtv.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TEX2DMS_ARRAY_RTV public partial struct Texture2DMsArrayRtv { - /// + /// public uint FirstArraySlice; - /// + /// public uint ArraySize; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/Texture2DMsArraySrv.cs b/src/Vortice.Win32.Direct3D11/Generated/Texture2DMsArraySrv.cs index 82a2d3a..5ca748f 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/Texture2DMsArraySrv.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/Texture2DMsArraySrv.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TEX2DMS_ARRAY_SRV public partial struct Texture2DMsArraySrv { - /// + /// public uint FirstArraySlice; - /// + /// public uint ArraySize; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/Texture2DMsDsv.cs b/src/Vortice.Win32.Direct3D11/Generated/Texture2DMsDsv.cs index ecf0a87..9dd4e3c 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/Texture2DMsDsv.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/Texture2DMsDsv.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TEX2DMS_DSV public partial struct Texture2DMsDsv { - /// + /// public uint UnusedField_NothingToDefine; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/Texture2DMsRtv.cs b/src/Vortice.Win32.Direct3D11/Generated/Texture2DMsRtv.cs index 74a8be4..3cdec84 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/Texture2DMsRtv.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/Texture2DMsRtv.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TEX2DMS_RTV public partial struct Texture2DMsRtv { - /// + /// public uint UnusedField_NothingToDefine; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/Texture2DMsSrv.cs b/src/Vortice.Win32.Direct3D11/Generated/Texture2DMsSrv.cs index ca5fc6b..269a67e 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/Texture2DMsSrv.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/Texture2DMsSrv.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TEX2DMS_SRV public partial struct Texture2DMsSrv { - /// + /// public uint UnusedField_NothingToDefine; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/Texture2DRtv.cs b/src/Vortice.Win32.Direct3D11/Generated/Texture2DRtv.cs index 3a97d0b..26e6de2 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/Texture2DRtv.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/Texture2DRtv.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TEX2D_RTV public partial struct Texture2DRtv { - /// + /// public uint MipSlice; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/Texture2DRtv1.cs b/src/Vortice.Win32.Direct3D11/Generated/Texture2DRtv1.cs index 50bf2a8..edf86f0 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/Texture2DRtv1.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/Texture2DRtv1.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TEX2D_RTV1 public partial struct Texture2DRtv1 { - /// + /// public uint MipSlice; - /// + /// public uint PlaneSlice; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/Texture2DSrv.cs b/src/Vortice.Win32.Direct3D11/Generated/Texture2DSrv.cs index be55569..1a4cbc6 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/Texture2DSrv.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/Texture2DSrv.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TEX2D_SRV public partial struct Texture2DSrv { - /// + /// public uint MostDetailedMip; - /// + /// public uint MipLevels; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/Texture2DSrv1.cs b/src/Vortice.Win32.Direct3D11/Generated/Texture2DSrv1.cs index 01df385..912ba83 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/Texture2DSrv1.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/Texture2DSrv1.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TEX2D_SRV1 public partial struct Texture2DSrv1 { - /// + /// public uint MostDetailedMip; - /// + /// public uint MipLevels; - /// + /// public uint PlaneSlice; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/Texture2DUav.cs b/src/Vortice.Win32.Direct3D11/Generated/Texture2DUav.cs index 889ec56..c35314d 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/Texture2DUav.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/Texture2DUav.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TEX2D_UAV public partial struct Texture2DUav { - /// + /// public uint MipSlice; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/Texture2DUav1.cs b/src/Vortice.Win32.Direct3D11/Generated/Texture2DUav1.cs index f2611ff..2b3ab05 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/Texture2DUav1.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/Texture2DUav1.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TEX2D_UAV1 public partial struct Texture2DUav1 { - /// + /// public uint MipSlice; - /// + /// public uint PlaneSlice; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/Texture2DVdov.cs b/src/Vortice.Win32.Direct3D11/Generated/Texture2DVdov.cs index f6776c6..94b5b54 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/Texture2DVdov.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/Texture2DVdov.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TEX2D_VDOV public partial struct Texture2DVdov { - /// + /// public uint ArraySlice; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/Texture2DVpiv.cs b/src/Vortice.Win32.Direct3D11/Generated/Texture2DVpiv.cs index 817bffc..ad4da54 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/Texture2DVpiv.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/Texture2DVpiv.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TEX2D_VPIV public partial struct Texture2DVpiv { - /// + /// public uint MipSlice; - /// + /// public uint ArraySlice; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/Texture2DVpov.cs b/src/Vortice.Win32.Direct3D11/Generated/Texture2DVpov.cs index a4d458b..4e24ffe 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/Texture2DVpov.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/Texture2DVpov.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TEX2D_VPOV public partial struct Texture2DVpov { - /// + /// public uint MipSlice; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/Texture3DDescription.cs b/src/Vortice.Win32.Direct3D11/Generated/Texture3DDescription.cs index 875a21e..f34ad5c 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/Texture3DDescription.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/Texture3DDescription.cs @@ -9,34 +9,34 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TEXTURE3D_DESC public partial struct Texture3DDescription { - /// + /// public uint Width; - /// + /// public uint Height; - /// + /// public uint Depth; - /// + /// public uint MipLevels; - /// + /// public Graphics.Dxgi.Common.Format Format; - /// + /// public Usage Usage; - /// + /// public BindFlags BindFlags; - /// + /// public CpuAccessFlags CPUAccessFlags; - /// + /// public ResourceMiscFlags MiscFlags; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/Texture3DDescription1.cs b/src/Vortice.Win32.Direct3D11/Generated/Texture3DDescription1.cs index a56e7f1..16168e2 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/Texture3DDescription1.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/Texture3DDescription1.cs @@ -9,37 +9,37 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TEXTURE3D_DESC1 public partial struct Texture3DDescription1 { - /// + /// public uint Width; - /// + /// public uint Height; - /// + /// public uint Depth; - /// + /// public uint MipLevels; - /// + /// public Graphics.Dxgi.Common.Format Format; - /// + /// public Usage Usage; - /// + /// public BindFlags BindFlags; - /// + /// public CpuAccessFlags CPUAccessFlags; - /// + /// public ResourceMiscFlags MiscFlags; - /// + /// public TextureLayout TextureLayout; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/Texture3DRtv.cs b/src/Vortice.Win32.Direct3D11/Generated/Texture3DRtv.cs index 9807092..6377dd7 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/Texture3DRtv.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/Texture3DRtv.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TEX3D_RTV public partial struct Texture3DRtv { - /// + /// public uint MipSlice; - /// + /// public uint FirstWSlice; - /// + /// public uint WSize; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/Texture3DSrv.cs b/src/Vortice.Win32.Direct3D11/Generated/Texture3DSrv.cs index e4bee70..fc98038 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/Texture3DSrv.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/Texture3DSrv.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TEX3D_SRV public partial struct Texture3DSrv { - /// + /// public uint MostDetailedMip; - /// + /// public uint MipLevels; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/Texture3DUav.cs b/src/Vortice.Win32.Direct3D11/Generated/Texture3DUav.cs index ff31c0e..d686f22 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/Texture3DUav.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/Texture3DUav.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TEX3D_UAV public partial struct Texture3DUav { - /// + /// public uint MipSlice; - /// + /// public uint FirstWSlice; - /// + /// public uint WSize; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/TextureAddressMode.cs b/src/Vortice.Win32.Direct3D11/Generated/TextureAddressMode.cs index 8c95fd1..166ec64 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/TextureAddressMode.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/TextureAddressMode.cs @@ -9,23 +9,23 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TEXTURE_ADDRESS_MODE public enum TextureAddressMode : int { - /// + /// /// D3D11_TEXTURE_ADDRESS_WRAP Wrap = 1, - /// + /// /// D3D11_TEXTURE_ADDRESS_MIRROR Mirror = 2, - /// + /// /// D3D11_TEXTURE_ADDRESS_CLAMP Clamp = 3, - /// + /// /// D3D11_TEXTURE_ADDRESS_BORDER Border = 4, - /// + /// /// D3D11_TEXTURE_ADDRESS_MIRROR_ONCE MirrorOnce = 5, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/TextureCubeFace.cs b/src/Vortice.Win32.Direct3D11/Generated/TextureCubeFace.cs index 471c7b2..b7ba547 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/TextureCubeFace.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/TextureCubeFace.cs @@ -9,26 +9,26 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TEXTURECUBE_FACE public enum TextureCubeFace : int { - /// + /// /// D3D11_TEXTURECUBE_FACE_POSITIVE_X PositiveX = 0, - /// + /// /// D3D11_TEXTURECUBE_FACE_NEGATIVE_X NegativeX = 1, - /// + /// /// D3D11_TEXTURECUBE_FACE_POSITIVE_Y PositiveY = 2, - /// + /// /// D3D11_TEXTURECUBE_FACE_NEGATIVE_Y NegativeY = 3, - /// + /// /// D3D11_TEXTURECUBE_FACE_POSITIVE_Z PositiveZ = 4, - /// + /// /// D3D11_TEXTURECUBE_FACE_NEGATIVE_Z NegativeZ = 5, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/TextureLayout.cs b/src/Vortice.Win32.Direct3D11/Generated/TextureLayout.cs index e238cd3..72afd7f 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/TextureLayout.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/TextureLayout.cs @@ -9,17 +9,17 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TEXTURE_LAYOUT public enum TextureLayout : int { - /// + /// /// D3D11_TEXTURE_LAYOUT_UNDEFINED Undefined = 0, - /// + /// /// D3D11_TEXTURE_LAYOUT_ROW_MAJOR RowMajor = 1, - /// + /// /// D3D11_TEXTURE_LAYOUT_64K_STANDARD_SWIZZLE _64kStandardSwizzle = 2, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/TexureCubeArraySrv.cs b/src/Vortice.Win32.Direct3D11/Generated/TexureCubeArraySrv.cs index a645630..cb92189 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/TexureCubeArraySrv.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/TexureCubeArraySrv.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TEXCUBE_ARRAY_SRV public partial struct TexureCubeArraySrv { - /// + /// public uint MostDetailedMip; - /// + /// public uint MipLevels; - /// + /// public uint First2DArrayFace; - /// + /// public uint NumCubes; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/TexureCubeSrv.cs b/src/Vortice.Win32.Direct3D11/Generated/TexureCubeSrv.cs index b4fc169..c09cd81 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/TexureCubeSrv.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/TexureCubeSrv.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TEXCUBE_SRV public partial struct TexureCubeSrv { - /// + /// public uint MostDetailedMip; - /// + /// public uint MipLevels; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/TileCopyFlags.cs b/src/Vortice.Win32.Direct3D11/Generated/TileCopyFlags.cs index ef96784..d4a6707 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/TileCopyFlags.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/TileCopyFlags.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TILE_COPY_FLAG [Flags] public enum TileCopyFlags : int { None = 0, - /// + /// /// D3D11_TILE_COPY_NO_OVERWRITE NoOverwrite = 1, - /// + /// /// D3D11_TILE_COPY_LINEAR_BUFFER_TO_SWIZZLED_TILED_RESOURCE LinearBufferToSwizzledTiledResource = 2, - /// + /// /// D3D11_TILE_COPY_SWIZZLED_TILED_RESOURCE_TO_LINEAR_BUFFER SwizzledTiledResourceToLinearBuffer = 4, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/TileMappingFlags.cs b/src/Vortice.Win32.Direct3D11/Generated/TileMappingFlags.cs index c3a441c..1d781be 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/TileMappingFlags.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/TileMappingFlags.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TILE_MAPPING_FLAG [Flags] public enum TileMappingFlags : int { None = 0, - /// + /// /// D3D11_TILE_MAPPING_NO_OVERWRITE NoOverwrite = 1, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/TileRangeFlags.cs b/src/Vortice.Win32.Direct3D11/Generated/TileRangeFlags.cs index 742d802..8e95b49 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/TileRangeFlags.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/TileRangeFlags.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TILE_RANGE_FLAG [Flags] public enum TileRangeFlags : int { None = 0, - /// + /// /// D3D11_TILE_RANGE_NULL Null = 1, - /// + /// /// D3D11_TILE_RANGE_SKIP Skip = 2, - /// + /// /// D3D11_TILE_RANGE_REUSE_SINGLE_TILE ReuseSingleTile = 4, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/TileRegionSize.cs b/src/Vortice.Win32.Direct3D11/Generated/TileRegionSize.cs index 1fad5d7..b229dc2 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/TileRegionSize.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/TileRegionSize.cs @@ -9,22 +9,22 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TILE_REGION_SIZE public partial struct TileRegionSize { - /// + /// public uint NumTiles; - /// + /// public Bool32 bUseBox; - /// + /// public uint Width; - /// + /// public ushort Height; - /// + /// public ushort Depth; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/TileShape.cs b/src/Vortice.Win32.Direct3D11/Generated/TileShape.cs index ce560b9..c4c6f13 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/TileShape.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/TileShape.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TILE_SHAPE public partial struct TileShape { - /// + /// public uint WidthInTexels; - /// + /// public uint HeightInTexels; - /// + /// public uint DepthInTexels; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/TiledResourceCoordinate.cs b/src/Vortice.Win32.Direct3D11/Generated/TiledResourceCoordinate.cs index b397f86..0bb97ac 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/TiledResourceCoordinate.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/TiledResourceCoordinate.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TILED_RESOURCE_COORDINATE public partial struct TiledResourceCoordinate { - /// + /// public uint X; - /// + /// public uint Y; - /// + /// public uint Z; - /// + /// public uint Subresource; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/TiledResourcesTier.cs b/src/Vortice.Win32.Direct3D11/Generated/TiledResourcesTier.cs index fe3e3e9..f28dcf1 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/TiledResourcesTier.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/TiledResourcesTier.cs @@ -9,20 +9,20 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TILED_RESOURCES_TIER public enum TiledResourcesTier : int { - /// + /// /// D3D11_TILED_RESOURCES_NOT_SUPPORTED NotSupported = 0, - /// + /// /// D3D11_TILED_RESOURCES_TIER_1 Tier1 = 1, - /// + /// /// D3D11_TILED_RESOURCES_TIER_2 Tier2 = 2, - /// + /// /// D3D11_TILED_RESOURCES_TIER_3 Tier3 = 3, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/TraceGSInputPrimitive.cs b/src/Vortice.Win32.Direct3D11/Generated/TraceGSInputPrimitive.cs index 1fbb966..44c2e02 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/TraceGSInputPrimitive.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/TraceGSInputPrimitive.cs @@ -9,26 +9,26 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TRACE_GS_INPUT_PRIMITIVE public enum TraceGSInputPrimitive : int { - /// + /// /// D3D11_TRACE_GS_INPUT_PRIMITIVE_UNDEFINED Undefined = 0, - /// + /// /// D3D11_TRACE_GS_INPUT_PRIMITIVE_POINT Point = 1, - /// + /// /// D3D11_TRACE_GS_INPUT_PRIMITIVE_LINE Line = 2, - /// + /// /// D3D11_TRACE_GS_INPUT_PRIMITIVE_TRIANGLE Triangle = 3, - /// + /// /// D3D11_TRACE_GS_INPUT_PRIMITIVE_LINE_ADJ LineAdj = 6, - /// + /// /// D3D11_TRACE_GS_INPUT_PRIMITIVE_TRIANGLE_ADJ TriangleAdj = 7, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/TraceRegister.cs b/src/Vortice.Win32.Direct3D11/Generated/TraceRegister.cs index 23ef084..c900aa1 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/TraceRegister.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/TraceRegister.cs @@ -9,20 +9,20 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TRACE_REGISTER public partial struct TraceRegister { - /// + /// public TraceRegisterType RegType; - /// + /// public _Anonymous_e__Union Anonymous; - /// + /// public byte OperandIndex; - /// + /// public byte Flags; [UnscopedRef] @@ -48,11 +48,11 @@ public partial struct TraceRegister [StructLayout(LayoutKind.Explicit)] public partial struct _Anonymous_e__Union { - /// + /// [FieldOffset(0)] public ushort Index1D; - /// + /// [FieldOffset(0)] public unsafe fixed ushort Index2D[2]; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/TraceRegisterType.cs b/src/Vortice.Win32.Direct3D11/Generated/TraceRegisterType.cs index 857ad59..15aed79 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/TraceRegisterType.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/TraceRegisterType.cs @@ -9,116 +9,116 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TRACE_REGISTER_TYPE public enum TraceRegisterType : int { - /// + /// /// D3D11_TRACE_OUTPUT_NULL_REGISTER D3D11_TRACE_OUTPUT_NULL_REGISTER = 0, - /// + /// /// D3D11_TRACE_INPUT_REGISTER D3D11_TRACE_INPUT_REGISTER = 1, - /// + /// /// D3D11_TRACE_INPUT_PRIMITIVE_ID_REGISTER D3D11_TRACE_INPUT_PRIMITIVE_ID_REGISTER = 2, - /// + /// /// D3D11_TRACE_IMMEDIATE_CONSTANT_BUFFER D3D11_TRACE_IMMEDIATE_CONSTANT_BUFFER = 3, - /// + /// /// D3D11_TRACE_TEMP_REGISTER D3D11_TRACE_TEMP_REGISTER = 4, - /// + /// /// D3D11_TRACE_INDEXABLE_TEMP_REGISTER D3D11_TRACE_INDEXABLE_TEMP_REGISTER = 5, - /// + /// /// D3D11_TRACE_OUTPUT_REGISTER D3D11_TRACE_OUTPUT_REGISTER = 6, - /// + /// /// D3D11_TRACE_OUTPUT_DEPTH_REGISTER D3D11_TRACE_OUTPUT_DEPTH_REGISTER = 7, - /// + /// /// D3D11_TRACE_CONSTANT_BUFFER D3D11_TRACE_CONSTANT_BUFFER = 8, - /// + /// /// D3D11_TRACE_IMMEDIATE32 D3D11_TRACE_IMMEDIATE32 = 9, - /// + /// /// D3D11_TRACE_SAMPLER D3D11_TRACE_SAMPLER = 10, - /// + /// /// D3D11_TRACE_RESOURCE D3D11_TRACE_RESOURCE = 11, - /// + /// /// D3D11_TRACE_RASTERIZER D3D11_TRACE_RASTERIZER = 12, - /// + /// /// D3D11_TRACE_OUTPUT_COVERAGE_MASK D3D11_TRACE_OUTPUT_COVERAGE_MASK = 13, - /// + /// /// D3D11_TRACE_STREAM D3D11_TRACE_STREAM = 14, - /// + /// /// D3D11_TRACE_THIS_POINTER D3D11_TRACE_THIS_POINTER = 15, - /// + /// /// D3D11_TRACE_OUTPUT_CONTROL_POINT_ID_REGISTER D3D11_TRACE_OUTPUT_CONTROL_POINT_ID_REGISTER = 16, - /// + /// /// D3D11_TRACE_INPUT_FORK_INSTANCE_ID_REGISTER D3D11_TRACE_INPUT_FORK_INSTANCE_ID_REGISTER = 17, - /// + /// /// D3D11_TRACE_INPUT_JOIN_INSTANCE_ID_REGISTER D3D11_TRACE_INPUT_JOIN_INSTANCE_ID_REGISTER = 18, - /// + /// /// D3D11_TRACE_INPUT_CONTROL_POINT_REGISTER D3D11_TRACE_INPUT_CONTROL_POINT_REGISTER = 19, - /// + /// /// D3D11_TRACE_OUTPUT_CONTROL_POINT_REGISTER D3D11_TRACE_OUTPUT_CONTROL_POINT_REGISTER = 20, - /// + /// /// D3D11_TRACE_INPUT_PATCH_CONSTANT_REGISTER D3D11_TRACE_INPUT_PATCH_CONSTANT_REGISTER = 21, - /// + /// /// D3D11_TRACE_INPUT_DOMAIN_POINT_REGISTER D3D11_TRACE_INPUT_DOMAIN_POINT_REGISTER = 22, - /// + /// /// D3D11_TRACE_UNORDERED_ACCESS_VIEW D3D11_TRACE_UNORDERED_ACCESS_VIEW = 23, - /// + /// /// D3D11_TRACE_THREAD_GROUP_SHARED_MEMORY D3D11_TRACE_THREAD_GROUP_SHARED_MEMORY = 24, - /// + /// /// D3D11_TRACE_INPUT_THREAD_ID_REGISTER D3D11_TRACE_INPUT_THREAD_ID_REGISTER = 25, - /// + /// /// D3D11_TRACE_INPUT_THREAD_GROUP_ID_REGISTER D3D11_TRACE_INPUT_THREAD_GROUP_ID_REGISTER = 26, - /// + /// /// D3D11_TRACE_INPUT_THREAD_ID_IN_GROUP_REGISTER D3D11_TRACE_INPUT_THREAD_ID_IN_GROUP_REGISTER = 27, - /// + /// /// D3D11_TRACE_INPUT_COVERAGE_MASK_REGISTER D3D11_TRACE_INPUT_COVERAGE_MASK_REGISTER = 28, - /// + /// /// D3D11_TRACE_INPUT_THREAD_ID_IN_GROUP_FLATTENED_REGISTER D3D11_TRACE_INPUT_THREAD_ID_IN_GROUP_FLATTENED_REGISTER = 29, - /// + /// /// D3D11_TRACE_INPUT_GS_INSTANCE_ID_REGISTER D3D11_TRACE_INPUT_GS_INSTANCE_ID_REGISTER = 30, - /// + /// /// D3D11_TRACE_OUTPUT_DEPTH_GREATER_EQUAL_REGISTER D3D11_TRACE_OUTPUT_DEPTH_GREATER_EQUAL_REGISTER = 31, - /// + /// /// D3D11_TRACE_OUTPUT_DEPTH_LESS_EQUAL_REGISTER D3D11_TRACE_OUTPUT_DEPTH_LESS_EQUAL_REGISTER = 32, - /// + /// /// D3D11_TRACE_IMMEDIATE64 D3D11_TRACE_IMMEDIATE64 = 33, - /// + /// /// D3D11_TRACE_INPUT_CYCLE_COUNTER_REGISTER D3D11_TRACE_INPUT_CYCLE_COUNTER_REGISTER = 34, - /// + /// /// D3D11_TRACE_INTERFACE_POINTER D3D11_TRACE_INTERFACE_POINTER = 35, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/TraceStats.cs b/src/Vortice.Win32.Direct3D11/Generated/TraceStats.cs index 27f43a0..0583d3f 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/TraceStats.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/TraceStats.cs @@ -9,76 +9,76 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TRACE_STATS public partial struct TraceStats { - /// + /// public ShaderTraceDescription TraceDesc; - /// + /// public byte NumInvocationsInStamp; - /// + /// public byte TargetStampIndex; - /// + /// public uint NumTraceSteps; - /// + /// public unsafe fixed byte InputMask[32]; - /// + /// public unsafe fixed byte OutputMask[32]; - /// + /// public ushort NumTemps; - /// + /// public ushort MaxIndexableTempIndex; - /// + /// public unsafe fixed ushort IndexableTempSize[4096]; - /// + /// public ushort ImmediateConstantBufferSize; - /// + /// public unsafe fixed uint PixelPosition[8]; - /// + /// public unsafe fixed ulong PixelCoverageMask[4]; - /// + /// public unsafe fixed ulong PixelDiscardedMask[4]; - /// + /// public unsafe fixed ulong PixelCoverageMaskAfterShader[4]; - /// + /// public unsafe fixed ulong PixelCoverageMaskAfterA2CSampleMask[4]; - /// + /// public unsafe fixed ulong PixelCoverageMaskAfterA2CSampleMaskDepth[4]; - /// + /// public unsafe fixed ulong PixelCoverageMaskAfterA2CSampleMaskDepthStencil[4]; - /// + /// public Bool32 PSOutputsDepth; - /// + /// public Bool32 PSOutputsMask; - /// + /// public TraceGSInputPrimitive GSInputPrimitive; - /// + /// public Bool32 GSInputsPrimitiveID; - /// + /// public unsafe fixed byte HSOutputPatchConstantMask[32]; - /// + /// public unsafe fixed byte DSInputPatchConstantMask[32]; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/TraceStep.cs b/src/Vortice.Win32.Direct3D11/Generated/TraceStep.cs index 37a3f76..92dedca 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/TraceStep.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/TraceStep.cs @@ -9,28 +9,28 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TRACE_STEP public partial struct TraceStep { - /// + /// public uint ID; - /// + /// public Bool32 InstructionActive; - /// + /// public byte NumRegistersWritten; - /// + /// public byte NumRegistersRead; - /// + /// public ushort MiscOperations; - /// + /// public uint OpcodeType; - /// + /// public ulong CurrentGlobalCycle; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/TraceValue.cs b/src/Vortice.Win32.Direct3D11/Generated/TraceValue.cs index 336cdca..38e58da 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/TraceValue.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/TraceValue.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_TRACE_VALUE public partial struct TraceValue { - /// + /// public unsafe fixed uint Bits[4]; - /// + /// public byte ValidMask; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/UavDimension.cs b/src/Vortice.Win32.Direct3D11/Generated/UavDimension.cs index a0bd3e5..56b1336 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/UavDimension.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/UavDimension.cs @@ -9,29 +9,29 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_UAV_DIMENSION public enum UavDimension : int { - /// + /// /// D3D11_UAV_DIMENSION_UNKNOWN Unknown = 0, - /// + /// /// D3D11_UAV_DIMENSION_BUFFER Buffer = 1, - /// + /// /// D3D11_UAV_DIMENSION_TEXTURE1D Texture1D = 2, - /// + /// /// D3D11_UAV_DIMENSION_TEXTURE1DARRAY Texture1DArray = 3, - /// + /// /// D3D11_UAV_DIMENSION_TEXTURE2D Texture2D = 4, - /// + /// /// D3D11_UAV_DIMENSION_TEXTURE2DARRAY Texture2DArray = 5, - /// + /// /// D3D11_UAV_DIMENSION_TEXTURE3D Texture3D = 8, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/UnorderedAccessViewDescription.cs b/src/Vortice.Win32.Direct3D11/Generated/UnorderedAccessViewDescription.cs index 8d206d7..af74310 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/UnorderedAccessViewDescription.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/UnorderedAccessViewDescription.cs @@ -9,17 +9,17 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_UNORDERED_ACCESS_VIEW_DESC public partial struct UnorderedAccessViewDescription { - /// + /// public Graphics.Dxgi.Common.Format Format; - /// + /// public UavDimension ViewDimension; - /// + /// public _Anonymous_e__Union Anonymous; [UnscopedRef] @@ -85,27 +85,27 @@ public partial struct UnorderedAccessViewDescription [StructLayout(LayoutKind.Explicit)] public partial struct _Anonymous_e__Union { - /// + /// [FieldOffset(0)] public BufferUav Buffer; - /// + /// [FieldOffset(0)] public Texture1DUav Texture1D; - /// + /// [FieldOffset(0)] public Texture1DArrayUav Texture1DArray; - /// + /// [FieldOffset(0)] public Texture2DUav Texture2D; - /// + /// [FieldOffset(0)] public Texture2DArrayUav Texture2DArray; - /// + /// [FieldOffset(0)] public Texture3DUav Texture3D; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/UnorderedAccessViewDescription1.cs b/src/Vortice.Win32.Direct3D11/Generated/UnorderedAccessViewDescription1.cs index 83808a9..cc68c14 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/UnorderedAccessViewDescription1.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/UnorderedAccessViewDescription1.cs @@ -9,17 +9,17 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_UNORDERED_ACCESS_VIEW_DESC1 public partial struct UnorderedAccessViewDescription1 { - /// + /// public Graphics.Dxgi.Common.Format Format; - /// + /// public UavDimension ViewDimension; - /// + /// public _Anonymous_e__Union Anonymous; [UnscopedRef] @@ -85,27 +85,27 @@ public partial struct UnorderedAccessViewDescription1 [StructLayout(LayoutKind.Explicit)] public partial struct _Anonymous_e__Union { - /// + /// [FieldOffset(0)] public BufferUav Buffer; - /// + /// [FieldOffset(0)] public Texture1DUav Texture1D; - /// + /// [FieldOffset(0)] public Texture1DArrayUav Texture1DArray; - /// + /// [FieldOffset(0)] public Texture2DUav1 Texture2D; - /// + /// [FieldOffset(0)] public Texture2DArrayUav1 Texture2DArray; - /// + /// [FieldOffset(0)] public Texture3DUav Texture3D; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/Usage.cs b/src/Vortice.Win32.Direct3D11/Generated/Usage.cs index 3f1fdad..d9f627b 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/Usage.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/Usage.cs @@ -9,20 +9,20 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_USAGE public enum Usage : int { - /// + /// /// D3D11_USAGE_DEFAULT Default = 0, - /// + /// /// D3D11_USAGE_IMMUTABLE Immutable = 1, - /// + /// /// D3D11_USAGE_DYNAMIC Dynamic = 2, - /// + /// /// D3D11_USAGE_STAGING Staging = 3, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VdovDimension.cs b/src/Vortice.Win32.Direct3D11/Generated/VdovDimension.cs index f1c3208..0f03e5c 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VdovDimension.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VdovDimension.cs @@ -9,14 +9,14 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VDOV_DIMENSION public enum VdovDimension : int { - /// + /// /// D3D11_VDOV_DIMENSION_UNKNOWN Unknown = 0, - /// + /// /// D3D11_VDOV_DIMENSION_TEXTURE2D Texture2D = 1, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VertexShaderTraceDescription.cs b/src/Vortice.Win32.Direct3D11/Generated/VertexShaderTraceDescription.cs index 43fa731..479a4d5 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VertexShaderTraceDescription.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VertexShaderTraceDescription.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VERTEX_SHADER_TRACE_DESC public partial struct VertexShaderTraceDescription { - /// + /// public ulong Invocation; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VideoColor.cs b/src/Vortice.Win32.Direct3D11/Generated/VideoColor.cs index 39423bd..21411b9 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VideoColor.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VideoColor.cs @@ -9,11 +9,11 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VIDEO_COLOR public partial struct VideoColor { - /// + /// public _Anonymous_e__Union Anonymous; [UnscopedRef] @@ -39,11 +39,11 @@ public partial struct VideoColor [StructLayout(LayoutKind.Explicit)] public partial struct _Anonymous_e__Union { - /// + /// [FieldOffset(0)] public VideoColorYcbcra YCbCr; - /// + /// [FieldOffset(0)] public VideoColorRgba RGBA; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VideoColorRgba.cs b/src/Vortice.Win32.Direct3D11/Generated/VideoColorRgba.cs index 603b1e5..c2693b5 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VideoColorRgba.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VideoColorRgba.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VIDEO_COLOR_RGBA public partial struct VideoColorRgba { - /// + /// public float R; - /// + /// public float G; - /// + /// public float B; - /// + /// public float A; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VideoColorYcbcra.cs b/src/Vortice.Win32.Direct3D11/Generated/VideoColorYcbcra.cs index 61b5831..23ddc94 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VideoColorYcbcra.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VideoColorYcbcra.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VIDEO_COLOR_YCbCrA public partial struct VideoColorYcbcra { - /// + /// public float Y; - /// + /// public float Cb; - /// + /// public float Cr; - /// + /// public float A; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VideoContentProtectionCaps.cs b/src/Vortice.Win32.Direct3D11/Generated/VideoContentProtectionCaps.cs index a42d88b..b75f234 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VideoContentProtectionCaps.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VideoContentProtectionCaps.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VIDEO_CONTENT_PROTECTION_CAPS public partial struct VideoContentProtectionCaps { - /// + /// public uint Caps; - /// + /// public uint KeyExchangeTypeCount; - /// + /// public uint BlockAlignmentSize; - /// + /// public ulong ProtectedMemorySize; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderBeginFrameCryptoSession.cs b/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderBeginFrameCryptoSession.cs index 6f30315..8ff8ffe 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderBeginFrameCryptoSession.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderBeginFrameCryptoSession.cs @@ -9,25 +9,25 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VIDEO_DECODER_BEGIN_FRAME_CRYPTO_SESSION public partial struct VideoDecoderBeginFrameCryptoSession { - /// + /// public unsafe ID3D11CryptoSession* pCryptoSession; - /// + /// public uint BlobSize; - /// + /// public unsafe void* pBlob; - /// + /// public unsafe Guid* pKeyInfoId; - /// + /// public uint PrivateDataSize; - /// + /// public unsafe void* pPrivateData; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderBufferDescription.cs b/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderBufferDescription.cs index 593ec0d..30598bc 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderBufferDescription.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderBufferDescription.cs @@ -9,49 +9,49 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VIDEO_DECODER_BUFFER_DESC public partial struct VideoDecoderBufferDescription { - /// + /// public VideoDecoderBufferType BufferType; - /// + /// public uint BufferIndex; - /// + /// public uint DataOffset; - /// + /// public uint DataSize; - /// + /// public uint FirstMBaddress; - /// + /// public uint NumMBsInBuffer; - /// + /// public uint Width; - /// + /// public uint Height; - /// + /// public uint Stride; - /// + /// public uint ReservedBits; - /// + /// public unsafe void* pIV; - /// + /// public uint IVSize; - /// + /// public Bool32 PartialEncryption; - /// + /// public EncryptedBlockInfo EncryptedBlockInfo; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderBufferDescription1.cs b/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderBufferDescription1.cs index 2cf9f9b..9c6ef9d 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderBufferDescription1.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderBufferDescription1.cs @@ -9,28 +9,28 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VIDEO_DECODER_BUFFER_DESC1 public partial struct VideoDecoderBufferDescription1 { - /// + /// public VideoDecoderBufferType BufferType; - /// + /// public uint DataOffset; - /// + /// public uint DataSize; - /// + /// public unsafe void* pIV; - /// + /// public uint IVSize; - /// + /// public unsafe VideoDecoderSubSampleMappingBlock* pSubSampleMappingBlock; - /// + /// public uint SubSampleMappingCount; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderBufferDescription2.cs b/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderBufferDescription2.cs index 18874df..9ea153b 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderBufferDescription2.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderBufferDescription2.cs @@ -9,34 +9,34 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VIDEO_DECODER_BUFFER_DESC2 public partial struct VideoDecoderBufferDescription2 { - /// + /// public VideoDecoderBufferType BufferType; - /// + /// public uint DataOffset; - /// + /// public uint DataSize; - /// + /// public unsafe void* pIV; - /// + /// public uint IVSize; - /// + /// public unsafe VideoDecoderSubSampleMappingBlock* pSubSampleMappingBlock; - /// + /// public uint SubSampleMappingCount; - /// + /// public uint cBlocksStripeEncrypted; - /// + /// public uint cBlocksStripeClear; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderBufferType.cs b/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderBufferType.cs index 031d5da..4306a98 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderBufferType.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderBufferType.cs @@ -9,35 +9,35 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VIDEO_DECODER_BUFFER_TYPE public enum VideoDecoderBufferType : int { - /// + /// /// D3D11_VIDEO_DECODER_BUFFER_PICTURE_PARAMETERS PictureParameters = 0, - /// + /// /// D3D11_VIDEO_DECODER_BUFFER_MACROBLOCK_CONTROL MacroblockControl = 1, - /// + /// /// D3D11_VIDEO_DECODER_BUFFER_RESIDUAL_DIFFERENCE ResidualDifference = 2, - /// + /// /// D3D11_VIDEO_DECODER_BUFFER_DEBLOCKING_CONTROL DeblockingControl = 3, - /// + /// /// D3D11_VIDEO_DECODER_BUFFER_INVERSE_QUANTIZATION_MATRIX InverseQuantizationMatrix = 4, - /// + /// /// D3D11_VIDEO_DECODER_BUFFER_SLICE_CONTROL SliceControl = 5, - /// + /// /// D3D11_VIDEO_DECODER_BUFFER_BITSTREAM Bitstream = 6, - /// + /// /// D3D11_VIDEO_DECODER_BUFFER_MOTION_VECTOR MotionVector = 7, - /// + /// /// D3D11_VIDEO_DECODER_BUFFER_FILM_GRAIN FilmGrain = 8, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderCaps.cs b/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderCaps.cs index 8e35032..c686902 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderCaps.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderCaps.cs @@ -9,23 +9,23 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VIDEO_DECODER_CAPS public enum VideoDecoderCaps : int { - /// + /// /// D3D11_VIDEO_DECODER_CAPS_DOWNSAMPLE Downsample = 1, - /// + /// /// D3D11_VIDEO_DECODER_CAPS_NON_REAL_TIME NonRealTime = 2, - /// + /// /// D3D11_VIDEO_DECODER_CAPS_DOWNSAMPLE_DYNAMIC DownsampleDynamic = 4, - /// + /// /// D3D11_VIDEO_DECODER_CAPS_DOWNSAMPLE_REQUIRED DownsampleRequired = 8, - /// + /// /// D3D11_VIDEO_DECODER_CAPS_UNSUPPORTED Unsupported = 16, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderConfig.cs b/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderConfig.cs index 07e4ce0..e944e34 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderConfig.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderConfig.cs @@ -9,58 +9,58 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VIDEO_DECODER_CONFIG public partial struct VideoDecoderConfig { - /// + /// public Guid guidConfigBitstreamEncryption; - /// + /// public Guid guidConfigMBcontrolEncryption; - /// + /// public Guid guidConfigResidDiffEncryption; - /// + /// public uint ConfigBitstreamRaw; - /// + /// public uint ConfigMBcontrolRasterOrder; - /// + /// public uint ConfigResidDiffHost; - /// + /// public uint ConfigSpatialResid8; - /// + /// public uint ConfigResid8Subtraction; - /// + /// public uint ConfigSpatialHost8or9Clipping; - /// + /// public uint ConfigSpatialResidInterleaved; - /// + /// public uint ConfigIntraResidUnsigned; - /// + /// public uint ConfigResidDiffAccelerator; - /// + /// public uint ConfigHostInverseScan; - /// + /// public uint ConfigSpecificIDCT; - /// + /// public uint Config4GroupedCoefs; - /// + /// public ushort ConfigMinRenderTargetBuffCount; - /// + /// public ushort ConfigDecoderSpecific; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderDescription.cs b/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderDescription.cs index d45ae27..7982751 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderDescription.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderDescription.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VIDEO_DECODER_DESC public partial struct VideoDecoderDescription { - /// + /// public Guid Guid; - /// + /// public uint SampleWidth; - /// + /// public uint SampleHeight; - /// + /// public Graphics.Dxgi.Common.Format OutputFormat; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderExtension.cs b/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderExtension.cs index 20a6c69..0efa0ff 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderExtension.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderExtension.cs @@ -9,28 +9,28 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VIDEO_DECODER_EXTENSION public partial struct VideoDecoderExtension { - /// + /// public uint Function; - /// + /// public unsafe void* pPrivateInputData; - /// + /// public uint PrivateInputDataSize; - /// + /// public unsafe void* pPrivateOutputData; - /// + /// public uint PrivateOutputDataSize; - /// + /// public uint ResourceCount; - /// + /// public unsafe ID3D11Resource* ppResourceList; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderHistogramComponent.cs b/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderHistogramComponent.cs index d0481d6..6f00990 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderHistogramComponent.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderHistogramComponent.cs @@ -9,29 +9,29 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT public enum VideoDecoderHistogramComponent : int { - /// + /// /// D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_Y Y = 0, - /// + /// /// D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_U U = 1, - /// + /// /// D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_V V = 2, - /// + /// /// D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_R R = 0, - /// + /// /// D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_G G = 1, - /// + /// /// D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_B B = 2, - /// + /// /// D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_A A = 3, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderHistogramComponentFlags.cs b/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderHistogramComponentFlags.cs index 890cd92..e4bc694 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderHistogramComponentFlags.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderHistogramComponentFlags.cs @@ -9,34 +9,34 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_FLAGS [Flags] public enum VideoDecoderHistogramComponentFlags : uint { None = 0, - /// + /// /// D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_FLAG_NONE FlagNone = 0, - /// + /// /// D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_FLAG_Y FlagY = 1, - /// + /// /// D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_FLAG_U FlagU = 2, - /// + /// /// D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_FLAG_V FlagV = 4, - /// + /// /// D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_FLAG_R FlagR = 1, - /// + /// /// D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_FLAG_G FlagG = 2, - /// + /// /// D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_FLAG_B FlagB = 4, - /// + /// /// D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_FLAG_A FlagA = 8, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderOutputViewDescription.cs b/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderOutputViewDescription.cs index 46009eb..1d939b8 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderOutputViewDescription.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderOutputViewDescription.cs @@ -9,17 +9,17 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VIDEO_DECODER_OUTPUT_VIEW_DESC public partial struct VideoDecoderOutputViewDescription { - /// + /// public Guid DecodeProfile; - /// + /// public VdovDimension ViewDimension; - /// + /// public _Anonymous_e__Union Anonymous; [UnscopedRef] @@ -35,7 +35,7 @@ public partial struct VideoDecoderOutputViewDescription [StructLayout(LayoutKind.Explicit)] public partial struct _Anonymous_e__Union { - /// + /// [FieldOffset(0)] public Texture2DVdov Texture2D; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderSubSampleMappingBlock.cs b/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderSubSampleMappingBlock.cs index 85a072f..a0c15a8 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderSubSampleMappingBlock.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VideoDecoderSubSampleMappingBlock.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VIDEO_DECODER_SUB_SAMPLE_MAPPING_BLOCK public partial struct VideoDecoderSubSampleMappingBlock { - /// + /// public uint ClearSize; - /// + /// public uint EncryptedSize; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VideoFrameFormat.cs b/src/Vortice.Win32.Direct3D11/Generated/VideoFrameFormat.cs index cd9e6cc..bd3e87d 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VideoFrameFormat.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VideoFrameFormat.cs @@ -9,17 +9,17 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VIDEO_FRAME_FORMAT public enum VideoFrameFormat : int { - /// + /// /// D3D11_VIDEO_FRAME_FORMAT_PROGRESSIVE Progressive = 0, - /// + /// /// D3D11_VIDEO_FRAME_FORMAT_INTERLACED_TOP_FIELD_FIRST InterlacedTopFieldFirst = 1, - /// + /// /// D3D11_VIDEO_FRAME_FORMAT_INTERLACED_BOTTOM_FIELD_FIRST InterlacedBottomFieldFirst = 2, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorAlphaFillMode.cs b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorAlphaFillMode.cs index 9531a4e..a07d10c 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorAlphaFillMode.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorAlphaFillMode.cs @@ -9,20 +9,20 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VIDEO_PROCESSOR_ALPHA_FILL_MODE public enum VideoProcessorAlphaFillMode : int { - /// + /// /// D3D11_VIDEO_PROCESSOR_ALPHA_FILL_MODE_OPAQUE Opaque = 0, - /// + /// /// D3D11_VIDEO_PROCESSOR_ALPHA_FILL_MODE_BACKGROUND Background = 1, - /// + /// /// D3D11_VIDEO_PROCESSOR_ALPHA_FILL_MODE_DESTINATION Destination = 2, - /// + /// /// D3D11_VIDEO_PROCESSOR_ALPHA_FILL_MODE_SOURCE_STREAM SourceStream = 3, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorAutoStreamCaps.cs b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorAutoStreamCaps.cs index fc1d6ee..57a3ce4 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorAutoStreamCaps.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorAutoStreamCaps.cs @@ -9,32 +9,32 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VIDEO_PROCESSOR_AUTO_STREAM_CAPS public enum VideoProcessorAutoStreamCaps : int { - /// + /// /// D3D11_VIDEO_PROCESSOR_AUTO_STREAM_CAPS_DENOISE Denoise = 1, - /// + /// /// D3D11_VIDEO_PROCESSOR_AUTO_STREAM_CAPS_DERINGING Deringing = 2, - /// + /// /// D3D11_VIDEO_PROCESSOR_AUTO_STREAM_CAPS_EDGE_ENHANCEMENT EdgeEnhancement = 4, - /// + /// /// D3D11_VIDEO_PROCESSOR_AUTO_STREAM_CAPS_COLOR_CORRECTION ColorCorrection = 8, - /// + /// /// D3D11_VIDEO_PROCESSOR_AUTO_STREAM_CAPS_FLESH_TONE_MAPPING FleshToneMapping = 16, - /// + /// /// D3D11_VIDEO_PROCESSOR_AUTO_STREAM_CAPS_IMAGE_STABILIZATION ImageStabilization = 32, - /// + /// /// D3D11_VIDEO_PROCESSOR_AUTO_STREAM_CAPS_SUPER_RESOLUTION SuperResolution = 64, - /// + /// /// D3D11_VIDEO_PROCESSOR_AUTO_STREAM_CAPS_ANAMORPHIC_SCALING AnamorphicScaling = 128, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorBehaviorHints.cs b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorBehaviorHints.cs index e64b7cb..171d7eb 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorBehaviorHints.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorBehaviorHints.cs @@ -9,20 +9,20 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VIDEO_PROCESSOR_BEHAVIOR_HINTS public enum VideoProcessorBehaviorHints : int { - /// + /// /// D3D11_VIDEO_PROCESSOR_BEHAVIOR_HINT_MULTIPLANE_OVERLAY_ROTATION HintMultiplaneOverlayRotation = 1, - /// + /// /// D3D11_VIDEO_PROCESSOR_BEHAVIOR_HINT_MULTIPLANE_OVERLAY_RESIZE HintMultiplaneOverlayResize = 2, - /// + /// /// D3D11_VIDEO_PROCESSOR_BEHAVIOR_HINT_MULTIPLANE_OVERLAY_COLOR_SPACE_CONVERSION HintMultiplaneOverlayColorSpaceConversion = 4, - /// + /// /// D3D11_VIDEO_PROCESSOR_BEHAVIOR_HINT_TRIPLE_BUFFER_OUTPUT HintTripleBufferOutput = 8, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorCaps.cs b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorCaps.cs index 2162159..13e87db 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorCaps.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorCaps.cs @@ -9,34 +9,34 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VIDEO_PROCESSOR_CAPS public partial struct VideoProcessorCaps { - /// + /// public uint DeviceCaps; - /// + /// public uint FeatureCaps; - /// + /// public uint FilterCaps; - /// + /// public uint InputFormatCaps; - /// + /// public uint AutoStreamCaps; - /// + /// public uint StereoCaps; - /// + /// public uint RateConversionCapsCount; - /// + /// public uint MaxInputStreams; - /// + /// public uint MaxStreamStates; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorColorSpace.cs b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorColorSpace.cs index 8079c73..e0ac4a8 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorColorSpace.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorColorSpace.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VIDEO_PROCESSOR_COLOR_SPACE public partial struct VideoProcessorColorSpace { - /// + /// public uint _bitfield; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorContentDescription.cs b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorContentDescription.cs index e985ec7..09da7a9 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorContentDescription.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorContentDescription.cs @@ -9,31 +9,31 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VIDEO_PROCESSOR_CONTENT_DESC public partial struct VideoProcessorContentDescription { - /// + /// public VideoFrameFormat InputFrameFormat; - /// + /// public Graphics.Dxgi.Common.Rational InputFrameRate; - /// + /// public uint InputWidth; - /// + /// public uint InputHeight; - /// + /// public Graphics.Dxgi.Common.Rational OutputFrameRate; - /// + /// public uint OutputWidth; - /// + /// public uint OutputHeight; - /// + /// public VideoUsage Usage; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorCustomRate.cs b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorCustomRate.cs index 23fcd9a..362579a 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorCustomRate.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorCustomRate.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VIDEO_PROCESSOR_CUSTOM_RATE public partial struct VideoProcessorCustomRate { - /// + /// public Graphics.Dxgi.Common.Rational CustomRate; - /// + /// public uint OutputFrames; - /// + /// public Bool32 InputInterlaced; - /// + /// public uint InputFramesOrFields; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorDeviceCaps.cs b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorDeviceCaps.cs index 0f547bb..461f848 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorDeviceCaps.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorDeviceCaps.cs @@ -9,23 +9,23 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VIDEO_PROCESSOR_DEVICE_CAPS public enum VideoProcessorDeviceCaps : int { - /// + /// /// D3D11_VIDEO_PROCESSOR_DEVICE_CAPS_LINEAR_SPACE LinearSpace = 1, - /// + /// /// D3D11_VIDEO_PROCESSOR_DEVICE_CAPS_xvYCC Xvycc = 2, - /// + /// /// D3D11_VIDEO_PROCESSOR_DEVICE_CAPS_RGB_RANGE_CONVERSION RgbRangeConversion = 4, - /// + /// /// D3D11_VIDEO_PROCESSOR_DEVICE_CAPS_YCbCr_MATRIX_CONVERSION YcbcrMatrixConversion = 8, - /// + /// /// D3D11_VIDEO_PROCESSOR_DEVICE_CAPS_NOMINAL_RANGE NominalRange = 16, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorFeatureCaps.cs b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorFeatureCaps.cs index 88a4568..7a87d02 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorFeatureCaps.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorFeatureCaps.cs @@ -9,44 +9,44 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VIDEO_PROCESSOR_FEATURE_CAPS public enum VideoProcessorFeatureCaps : int { - /// + /// /// D3D11_VIDEO_PROCESSOR_FEATURE_CAPS_ALPHA_FILL AlphaFill = 1, - /// + /// /// D3D11_VIDEO_PROCESSOR_FEATURE_CAPS_CONSTRICTION Constriction = 2, - /// + /// /// D3D11_VIDEO_PROCESSOR_FEATURE_CAPS_LUMA_KEY LumaKey = 4, - /// + /// /// D3D11_VIDEO_PROCESSOR_FEATURE_CAPS_ALPHA_PALETTE AlphaPalette = 8, - /// + /// /// D3D11_VIDEO_PROCESSOR_FEATURE_CAPS_LEGACY Legacy = 16, - /// + /// /// D3D11_VIDEO_PROCESSOR_FEATURE_CAPS_STEREO Stereo = 32, - /// + /// /// D3D11_VIDEO_PROCESSOR_FEATURE_CAPS_ROTATION Rotation = 64, - /// + /// /// D3D11_VIDEO_PROCESSOR_FEATURE_CAPS_ALPHA_STREAM AlphaStream = 128, - /// + /// /// D3D11_VIDEO_PROCESSOR_FEATURE_CAPS_PIXEL_ASPECT_RATIO PixelAspectRatio = 256, - /// + /// /// D3D11_VIDEO_PROCESSOR_FEATURE_CAPS_MIRROR Mirror = 512, - /// + /// /// D3D11_VIDEO_PROCESSOR_FEATURE_CAPS_SHADER_USAGE ShaderUsage = 1024, - /// + /// /// D3D11_VIDEO_PROCESSOR_FEATURE_CAPS_METADATA_HDR10 MetadataHdr10 = 2048, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorFilter.cs b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorFilter.cs index f09f485..7cce2ff 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorFilter.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorFilter.cs @@ -9,32 +9,32 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VIDEO_PROCESSOR_FILTER public enum VideoProcessorFilter : int { - /// + /// /// D3D11_VIDEO_PROCESSOR_FILTER_BRIGHTNESS Brightness = 0, - /// + /// /// D3D11_VIDEO_PROCESSOR_FILTER_CONTRAST Contrast = 1, - /// + /// /// D3D11_VIDEO_PROCESSOR_FILTER_HUE Hue = 2, - /// + /// /// D3D11_VIDEO_PROCESSOR_FILTER_SATURATION Saturation = 3, - /// + /// /// D3D11_VIDEO_PROCESSOR_FILTER_NOISE_REDUCTION NoiseReduction = 4, - /// + /// /// D3D11_VIDEO_PROCESSOR_FILTER_EDGE_ENHANCEMENT EdgeEnhancement = 5, - /// + /// /// D3D11_VIDEO_PROCESSOR_FILTER_ANAMORPHIC_SCALING AnamorphicScaling = 6, - /// + /// /// D3D11_VIDEO_PROCESSOR_FILTER_STEREO_ADJUSTMENT StereoAdjustment = 7, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorFilterCaps.cs b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorFilterCaps.cs index 2701d4d..c0def81 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorFilterCaps.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorFilterCaps.cs @@ -9,32 +9,32 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VIDEO_PROCESSOR_FILTER_CAPS public enum VideoProcessorFilterCaps : int { - /// + /// /// D3D11_VIDEO_PROCESSOR_FILTER_CAPS_BRIGHTNESS Brightness = 1, - /// + /// /// D3D11_VIDEO_PROCESSOR_FILTER_CAPS_CONTRAST Contrast = 2, - /// + /// /// D3D11_VIDEO_PROCESSOR_FILTER_CAPS_HUE Hue = 4, - /// + /// /// D3D11_VIDEO_PROCESSOR_FILTER_CAPS_SATURATION Saturation = 8, - /// + /// /// D3D11_VIDEO_PROCESSOR_FILTER_CAPS_NOISE_REDUCTION NoiseReduction = 16, - /// + /// /// D3D11_VIDEO_PROCESSOR_FILTER_CAPS_EDGE_ENHANCEMENT EdgeEnhancement = 32, - /// + /// /// D3D11_VIDEO_PROCESSOR_FILTER_CAPS_ANAMORPHIC_SCALING AnamorphicScaling = 64, - /// + /// /// D3D11_VIDEO_PROCESSOR_FILTER_CAPS_STEREO_ADJUSTMENT StereoAdjustment = 128, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorFilterRange.cs b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorFilterRange.cs index 9c365be..388c8da 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorFilterRange.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorFilterRange.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VIDEO_PROCESSOR_FILTER_RANGE public partial struct VideoProcessorFilterRange { - /// + /// public int Minimum; - /// + /// public int Maximum; - /// + /// public int Default; - /// + /// public float Multiplier; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorFormatCaps.cs b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorFormatCaps.cs index 2f6d40d..218e241 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorFormatCaps.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorFormatCaps.cs @@ -9,20 +9,20 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VIDEO_PROCESSOR_FORMAT_CAPS public enum VideoProcessorFormatCaps : int { - /// + /// /// D3D11_VIDEO_PROCESSOR_FORMAT_CAPS_RGB_INTERLACED RgbInterlaced = 1, - /// + /// /// D3D11_VIDEO_PROCESSOR_FORMAT_CAPS_RGB_PROCAMP RgbProcamp = 2, - /// + /// /// D3D11_VIDEO_PROCESSOR_FORMAT_CAPS_RGB_LUMA_KEY RgbLumaKey = 4, - /// + /// /// D3D11_VIDEO_PROCESSOR_FORMAT_CAPS_PALETTE_INTERLACED PaletteInterlaced = 8, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorFormatSupport.cs b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorFormatSupport.cs index 97fd3aa..b35b4ad 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorFormatSupport.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorFormatSupport.cs @@ -9,14 +9,14 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VIDEO_PROCESSOR_FORMAT_SUPPORT public enum VideoProcessorFormatSupport : int { - /// + /// /// D3D11_VIDEO_PROCESSOR_FORMAT_SUPPORT_INPUT Input = 1, - /// + /// /// D3D11_VIDEO_PROCESSOR_FORMAT_SUPPORT_OUTPUT Output = 2, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorInputViewDescription.cs b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorInputViewDescription.cs index fe12061..19b445a 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorInputViewDescription.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorInputViewDescription.cs @@ -9,17 +9,17 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VIDEO_PROCESSOR_INPUT_VIEW_DESC public partial struct VideoProcessorInputViewDescription { - /// + /// public uint FourCC; - /// + /// public VpivDimension ViewDimension; - /// + /// public _Anonymous_e__Union Anonymous; [UnscopedRef] @@ -35,7 +35,7 @@ public partial struct VideoProcessorInputViewDescription [StructLayout(LayoutKind.Explicit)] public partial struct _Anonymous_e__Union { - /// + /// [FieldOffset(0)] public Texture2DVpiv Texture2D; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorItelecineCaps.cs b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorItelecineCaps.cs index 6f12d20..75017da 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorItelecineCaps.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorItelecineCaps.cs @@ -9,38 +9,38 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VIDEO_PROCESSOR_ITELECINE_CAPS public enum VideoProcessorItelecineCaps : int { - /// + /// /// D3D11_VIDEO_PROCESSOR_ITELECINE_CAPS_32 _32 = 1, - /// + /// /// D3D11_VIDEO_PROCESSOR_ITELECINE_CAPS_22 _22 = 2, - /// + /// /// D3D11_VIDEO_PROCESSOR_ITELECINE_CAPS_2224 _2224 = 4, - /// + /// /// D3D11_VIDEO_PROCESSOR_ITELECINE_CAPS_2332 _2332 = 8, - /// + /// /// D3D11_VIDEO_PROCESSOR_ITELECINE_CAPS_32322 _32322 = 16, - /// + /// /// D3D11_VIDEO_PROCESSOR_ITELECINE_CAPS_55 _55 = 32, - /// + /// /// D3D11_VIDEO_PROCESSOR_ITELECINE_CAPS_64 _64 = 64, - /// + /// /// D3D11_VIDEO_PROCESSOR_ITELECINE_CAPS_87 _87 = 128, - /// + /// /// D3D11_VIDEO_PROCESSOR_ITELECINE_CAPS_222222222223 _222222222223 = 256, - /// + /// /// D3D11_VIDEO_PROCESSOR_ITELECINE_CAPS_OTHER Other = -2147483648, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorNominalRange.cs b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorNominalRange.cs index acf1c5f..24ddf16 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorNominalRange.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorNominalRange.cs @@ -9,17 +9,17 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VIDEO_PROCESSOR_NOMINAL_RANGE public enum VideoProcessorNominalRange : int { - /// + /// /// D3D11_VIDEO_PROCESSOR_NOMINAL_RANGE_UNDEFINED Undefined = 0, - /// + /// /// D3D11_VIDEO_PROCESSOR_NOMINAL_RANGE_16_235 Range_16_235 = 1, - /// + /// /// D3D11_VIDEO_PROCESSOR_NOMINAL_RANGE_0_255 Range_0_255 = 2, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorOutputRate.cs b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorOutputRate.cs index 48b60bc..8f5b531 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorOutputRate.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorOutputRate.cs @@ -9,17 +9,17 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VIDEO_PROCESSOR_OUTPUT_RATE public enum VideoProcessorOutputRate : int { - /// + /// /// D3D11_VIDEO_PROCESSOR_OUTPUT_RATE_NORMAL Normal = 0, - /// + /// /// D3D11_VIDEO_PROCESSOR_OUTPUT_RATE_HALF Half = 1, - /// + /// /// D3D11_VIDEO_PROCESSOR_OUTPUT_RATE_CUSTOM Custom = 2, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorOutputViewDescription.cs b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorOutputViewDescription.cs index 83b69e6..dee65bb 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorOutputViewDescription.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorOutputViewDescription.cs @@ -9,14 +9,14 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VIDEO_PROCESSOR_OUTPUT_VIEW_DESC public partial struct VideoProcessorOutputViewDescription { - /// + /// public VpovDimension ViewDimension; - /// + /// public _Anonymous_e__Union Anonymous; [UnscopedRef] @@ -42,11 +42,11 @@ public partial struct VideoProcessorOutputViewDescription [StructLayout(LayoutKind.Explicit)] public partial struct _Anonymous_e__Union { - /// + /// [FieldOffset(0)] public Texture2DVpov Texture2D; - /// + /// [FieldOffset(0)] public Texture2DArrayVpov Texture2DArray; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorProcessorCaps.cs b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorProcessorCaps.cs index 9e146fd..4e04ab2 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorProcessorCaps.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorProcessorCaps.cs @@ -9,26 +9,26 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VIDEO_PROCESSOR_PROCESSOR_CAPS public enum VideoProcessorProcessorCaps : int { - /// + /// /// D3D11_VIDEO_PROCESSOR_PROCESSOR_CAPS_DEINTERLACE_BLEND DeinterlaceBlend = 1, - /// + /// /// D3D11_VIDEO_PROCESSOR_PROCESSOR_CAPS_DEINTERLACE_BOB DeinterlaceBob = 2, - /// + /// /// D3D11_VIDEO_PROCESSOR_PROCESSOR_CAPS_DEINTERLACE_ADAPTIVE DeinterlaceAdaptive = 4, - /// + /// /// D3D11_VIDEO_PROCESSOR_PROCESSOR_CAPS_DEINTERLACE_MOTION_COMPENSATION DeinterlaceMotionCompensation = 8, - /// + /// /// D3D11_VIDEO_PROCESSOR_PROCESSOR_CAPS_INVERSE_TELECINE InverseTelecine = 16, - /// + /// /// D3D11_VIDEO_PROCESSOR_PROCESSOR_CAPS_FRAME_RATE_CONVERSION FrameRateConversion = 32, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorRateConversionCaps.cs b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorRateConversionCaps.cs index d45d0e3..e48ab3d 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorRateConversionCaps.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorRateConversionCaps.cs @@ -9,22 +9,22 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VIDEO_PROCESSOR_RATE_CONVERSION_CAPS public partial struct VideoProcessorRateConversionCaps { - /// + /// public uint PastFrames; - /// + /// public uint FutureFrames; - /// + /// public uint ProcessorCaps; - /// + /// public uint ITelecineCaps; - /// + /// public uint CustomRateCount; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorRotation.cs b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorRotation.cs index bc98be2..bfafe7c 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorRotation.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorRotation.cs @@ -9,20 +9,20 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VIDEO_PROCESSOR_ROTATION public enum VideoProcessorRotation : int { - /// + /// /// D3D11_VIDEO_PROCESSOR_ROTATION_IDENTITY Identity = 0, - /// + /// /// D3D11_VIDEO_PROCESSOR_ROTATION_90 Rotation90 = 1, - /// + /// /// D3D11_VIDEO_PROCESSOR_ROTATION_180 Rotation180 = 2, - /// + /// /// D3D11_VIDEO_PROCESSOR_ROTATION_270 Rotation270 = 3, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorStereoCaps.cs b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorStereoCaps.cs index 626a30f..a0a4d95 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorStereoCaps.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorStereoCaps.cs @@ -9,23 +9,23 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VIDEO_PROCESSOR_STEREO_CAPS public enum VideoProcessorStereoCaps : int { - /// + /// /// D3D11_VIDEO_PROCESSOR_STEREO_CAPS_MONO_OFFSET MonoOffset = 1, - /// + /// /// D3D11_VIDEO_PROCESSOR_STEREO_CAPS_ROW_INTERLEAVED RowInterleaved = 2, - /// + /// /// D3D11_VIDEO_PROCESSOR_STEREO_CAPS_COLUMN_INTERLEAVED ColumnInterleaved = 4, - /// + /// /// D3D11_VIDEO_PROCESSOR_STEREO_CAPS_CHECKERBOARD Checkerboard = 8, - /// + /// /// D3D11_VIDEO_PROCESSOR_STEREO_CAPS_FLIP_MODE FlipMode = 16, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorStereoFlipMode.cs b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorStereoFlipMode.cs index 5fffeac..d0f26a6 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorStereoFlipMode.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorStereoFlipMode.cs @@ -9,17 +9,17 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VIDEO_PROCESSOR_STEREO_FLIP_MODE public enum VideoProcessorStereoFlipMode : int { - /// + /// /// D3D11_VIDEO_PROCESSOR_STEREO_FLIP_NONE None = 0, - /// + /// /// D3D11_VIDEO_PROCESSOR_STEREO_FLIP_FRAME0 Frame0 = 1, - /// + /// /// D3D11_VIDEO_PROCESSOR_STEREO_FLIP_FRAME1 Frame1 = 2, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorStereoFormat.cs b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorStereoFormat.cs index 1728928..3d9f4e3 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorStereoFormat.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorStereoFormat.cs @@ -9,32 +9,32 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VIDEO_PROCESSOR_STEREO_FORMAT public enum VideoProcessorStereoFormat : int { - /// + /// /// D3D11_VIDEO_PROCESSOR_STEREO_FORMAT_MONO Mono = 0, - /// + /// /// D3D11_VIDEO_PROCESSOR_STEREO_FORMAT_HORIZONTAL Horizontal = 1, - /// + /// /// D3D11_VIDEO_PROCESSOR_STEREO_FORMAT_VERTICAL Vertical = 2, - /// + /// /// D3D11_VIDEO_PROCESSOR_STEREO_FORMAT_SEPARATE Separate = 3, - /// + /// /// D3D11_VIDEO_PROCESSOR_STEREO_FORMAT_MONO_OFFSET MonoOffset = 4, - /// + /// /// D3D11_VIDEO_PROCESSOR_STEREO_FORMAT_ROW_INTERLEAVED RowInterleaved = 5, - /// + /// /// D3D11_VIDEO_PROCESSOR_STEREO_FORMAT_COLUMN_INTERLEAVED ColumnInterleaved = 6, - /// + /// /// D3D11_VIDEO_PROCESSOR_STEREO_FORMAT_CHECKERBOARD Checkerboard = 7, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorStream.cs b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorStream.cs index 2f8a259..a57219f 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorStream.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorStream.cs @@ -9,40 +9,40 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VIDEO_PROCESSOR_STREAM public partial struct VideoProcessorStream { - /// + /// public Bool32 Enable; - /// + /// public uint OutputIndex; - /// + /// public uint InputFrameOrField; - /// + /// public uint PastFrames; - /// + /// public uint FutureFrames; - /// + /// public unsafe ID3D11VideoProcessorInputView* ppPastSurfaces; - /// + /// public unsafe ID3D11VideoProcessorInputView* pInputSurface; - /// + /// public unsafe ID3D11VideoProcessorInputView* ppFutureSurfaces; - /// + /// public unsafe ID3D11VideoProcessorInputView* ppPastSurfacesRight; - /// + /// public unsafe ID3D11VideoProcessorInputView* pInputSurfaceRight; - /// + /// public unsafe ID3D11VideoProcessorInputView* ppFutureSurfacesRight; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorStreamBehaviorHint.cs b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorStreamBehaviorHint.cs index fb2a669..5621e90 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorStreamBehaviorHint.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VideoProcessorStreamBehaviorHint.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VIDEO_PROCESSOR_STREAM_BEHAVIOR_HINT public partial struct VideoProcessorStreamBehaviorHint { - /// + /// public Bool32 Enable; - /// + /// public uint Width; - /// + /// public uint Height; - /// + /// public Graphics.Dxgi.Common.Format Format; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VideoSampleDescription.cs b/src/Vortice.Win32.Direct3D11/Generated/VideoSampleDescription.cs index 2a9040f..3fb5b26 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VideoSampleDescription.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VideoSampleDescription.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VIDEO_SAMPLE_DESC public partial struct VideoSampleDescription { - /// + /// public uint Width; - /// + /// public uint Height; - /// + /// public Graphics.Dxgi.Common.Format Format; - /// + /// public Graphics.Dxgi.Common.ColorSpaceType ColorSpace; } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VideoUsage.cs b/src/Vortice.Win32.Direct3D11/Generated/VideoUsage.cs index 9cf5d0e..3cb8aab 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VideoUsage.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VideoUsage.cs @@ -9,17 +9,17 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VIDEO_USAGE public enum VideoUsage : int { - /// + /// /// D3D11_VIDEO_USAGE_PLAYBACK_NORMAL PlaybackNormal = 0, - /// + /// /// D3D11_VIDEO_USAGE_OPTIMAL_SPEED OptimalSpeed = 1, - /// + /// /// D3D11_VIDEO_USAGE_OPTIMAL_QUALITY OptimalQuality = 2, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VpivDimension.cs b/src/Vortice.Win32.Direct3D11/Generated/VpivDimension.cs index 27121b5..72240c2 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VpivDimension.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VpivDimension.cs @@ -9,14 +9,14 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VPIV_DIMENSION public enum VpivDimension : int { - /// + /// /// D3D11_VPIV_DIMENSION_UNKNOWN Unknown = 0, - /// + /// /// D3D11_VPIV_DIMENSION_TEXTURE2D Texture2D = 1, } diff --git a/src/Vortice.Win32.Direct3D11/Generated/VpovDimension.cs b/src/Vortice.Win32.Direct3D11/Generated/VpovDimension.cs index b7c4e16..0c20462 100644 --- a/src/Vortice.Win32.Direct3D11/Generated/VpovDimension.cs +++ b/src/Vortice.Win32.Direct3D11/Generated/VpovDimension.cs @@ -9,17 +9,17 @@ namespace Win32.Graphics.Direct3D11; -/// +/// /// D3D11_VPOV_DIMENSION public enum VpovDimension : int { - /// + /// /// D3D11_VPOV_DIMENSION_UNKNOWN Unknown = 0, - /// + /// /// D3D11_VPOV_DIMENSION_TEXTURE2D Texture2D = 1, - /// + /// /// D3D11_VPOV_DIMENSION_TEXTURE2DARRAY Texture2DArray = 2, } diff --git a/src/Vortice.Win32.Direct3D11on12/Generated/Apis.Functions.cs b/src/Vortice.Win32.Direct3D11on12/Generated/Apis.Functions.cs index 5c93328..e140cc7 100644 --- a/src/Vortice.Win32.Direct3D11on12/Generated/Apis.Functions.cs +++ b/src/Vortice.Win32.Direct3D11on12/Generated/Apis.Functions.cs @@ -12,5 +12,5 @@ namespace Win32.Graphics.Direct3D11on12; public static unsafe partial class Apis { [DllImport("d3d11.dll", ExactSpelling = true)] - public static extern HResult D3D11On12CreateDevice(IUnknown* pDevice, D3D11_CREATE_DEVICE_FLAG Flags, Graphics.Direct3D.FeatureLevel* pFeatureLevels, uint FeatureLevels, IUnknown** ppCommandQueues, uint NumQueues, uint NodeMask, Graphics.Direct3D11.ID3D11Device** ppDevice, Graphics.Direct3D11.ID3D11DeviceContext** ppImmediateContext, Graphics.Direct3D.FeatureLevel* pChosenFeatureLevel); + public static extern HResult D3D11On12CreateDevice(IUnknown* pDevice, Win32.Graphics.Direct3D11.CreateDeviceFlags Flags, Graphics.Direct3D.FeatureLevel* pFeatureLevels, uint FeatureLevels, IUnknown** ppCommandQueues, uint NumQueues, uint NodeMask, Graphics.Direct3D11.ID3D11Device** ppDevice, Graphics.Direct3D11.ID3D11DeviceContext** ppImmediateContext, Graphics.Direct3D.FeatureLevel* pChosenFeatureLevel); } diff --git a/src/Vortice.Win32.Direct3D11on12/Generated/ID3D11On12Device.cs b/src/Vortice.Win32.Direct3D11on12/Generated/ID3D11On12Device.cs index 1a87331..c481f97 100644 --- a/src/Vortice.Win32.Direct3D11on12/Generated/ID3D11On12Device.cs +++ b/src/Vortice.Win32.Direct3D11on12/Generated/ID3D11On12Device.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11on12; -/// +/// /// ID3D11On12Device [Guid("85611e73-70a9-490e-9614-a9e302777904")] [NativeTypeName("struct ID3D11On12Device : IUnknown")] @@ -74,7 +74,7 @@ public unsafe partial struct ID3D11On12Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[2]))((IUnknown*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(3)] public HResult CreateWrappedResource(IUnknown* pResource12, ResourceFlags* pFlags11, Graphics.Direct3D12.ResourceStates InState, Graphics.Direct3D12.ResourceStates OutState, Guid* riid, void** ppResource11) @@ -82,7 +82,7 @@ public unsafe partial struct ID3D11On12Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[3]))((ID3D11On12Device*)Unsafe.AsPointer(ref this), pResource12, pFlags11, InState, OutState, riid, ppResource11); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(4)] public void ReleaseWrappedResources(Graphics.Direct3D11.ID3D11Resource** ppResources, uint NumResources) @@ -90,7 +90,7 @@ public unsafe partial struct ID3D11On12Device : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[4]))((ID3D11On12Device*)Unsafe.AsPointer(ref this), ppResources, NumResources); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(5)] public void AcquireWrappedResources(Graphics.Direct3D11.ID3D11Resource** ppResources, uint NumResources) diff --git a/src/Vortice.Win32.Direct3D11on12/Generated/ID3D11On12Device1.cs b/src/Vortice.Win32.Direct3D11on12/Generated/ID3D11On12Device1.cs index 20a5ba4..f2a5d89 100644 --- a/src/Vortice.Win32.Direct3D11on12/Generated/ID3D11On12Device1.cs +++ b/src/Vortice.Win32.Direct3D11on12/Generated/ID3D11On12Device1.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11on12; -/// +/// /// ID3D11On12Device1 [Guid("bdb64df4-ea2f-4c70-b861-aaab1258bb5d")] [NativeTypeName("struct ID3D11On12Device1 : ID3D11On12Device")] @@ -98,7 +98,7 @@ public unsafe partial struct ID3D11On12Device1 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[5]))((ID3D11On12Device1*)Unsafe.AsPointer(ref this), ppResources, NumResources); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(6)] public HResult GetD3D12Device(Guid* riid, void** ppvDevice) diff --git a/src/Vortice.Win32.Direct3D11on12/Generated/ID3D11On12Device2.cs b/src/Vortice.Win32.Direct3D11on12/Generated/ID3D11On12Device2.cs index 62def22..047b3ad 100644 --- a/src/Vortice.Win32.Direct3D11on12/Generated/ID3D11On12Device2.cs +++ b/src/Vortice.Win32.Direct3D11on12/Generated/ID3D11On12Device2.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D11on12; -/// +/// /// ID3D11On12Device2 [Guid("dc90f331-4740-43fa-866e-67f12cb58223")] [NativeTypeName("struct ID3D11On12Device2 : ID3D11On12Device1")] @@ -106,7 +106,7 @@ public unsafe partial struct ID3D11On12Device2 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[6]))((ID3D11On12Device2*)Unsafe.AsPointer(ref this), riid, ppvDevice); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(7)] public HResult UnwrapUnderlyingResource(Graphics.Direct3D11.ID3D11Resource* pResource11, Graphics.Direct3D12.ID3D12CommandQueue* pCommandQueue, Guid* riid, void** ppvResource12) @@ -114,7 +114,7 @@ public unsafe partial struct ID3D11On12Device2 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D11On12Device2*)Unsafe.AsPointer(ref this), pResource11, pCommandQueue, riid, ppvResource12); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public HResult ReturnUnderlyingResource(Graphics.Direct3D11.ID3D11Resource* pResource11, uint NumSync, ulong* pSignalValues, Graphics.Direct3D12.ID3D12Fence** ppFences) diff --git a/src/Vortice.Win32.Direct3D11on12/Generated/ResourceFlags.cs b/src/Vortice.Win32.Direct3D11on12/Generated/ResourceFlags.cs index 00bf031..be54bc9 100644 --- a/src/Vortice.Win32.Direct3D11on12/Generated/ResourceFlags.cs +++ b/src/Vortice.Win32.Direct3D11on12/Generated/ResourceFlags.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D11on12; -/// +/// /// D3D11_RESOURCE_FLAGS public partial struct ResourceFlags { - /// - public D3D11_BIND_FLAG BindFlags; + /// + public Win32.Graphics.Direct3D11.BindFlags BindFlags; - /// - public D3D11_RESOURCE_MISC_FLAG MiscFlags; + /// + public Win32.Graphics.Direct3D11.ResourceMiscFlags MiscFlags; - /// - public D3D11_CPU_ACCESS_FLAG CPUAccessFlags; + /// + public Win32.Graphics.Direct3D11.CpuAccessFlags CPUAccessFlags; - /// + /// public uint StructureByteStride; } diff --git a/src/Vortice.Win32.Direct3D12/Direct3D12.xml b/src/Vortice.Win32.Direct3D12/Direct3D12.xml new file mode 100644 index 0000000..261fbdf --- /dev/null +++ b/src/Vortice.Win32.Direct3D12/Direct3D12.xml @@ -0,0 +1,12643 @@ + + + + + Provides runtime access to Device Removed Extended Data (DRED) data. + Microsoft Docs: + + + + + Gets the current value of the fence. + Microsoft Docs: + + + + + Describes the access to resource(s) that is requested by an application at the transition into a render pass. + Microsoft Docs: + + + + A D3D12_RENDER_PASS_BEGINNING_ACCESS_TYPE. The type of access being requested. + + + A D3D12_RENDER_PASS_BEGINNING_ACCESS_CLEAR_PARAMETERS. Appropriate when Type is D3D12_RENDER_PASS_BEGINNING_ACCESS_TYPE_CLEAR. The clear value to which resource(s) should be cleared. + + + + Specifies texture layout options. + Microsoft Docs: + + + + Indicates that the layout is unknown, and is likely adapter-dependent. + During creation, the driver chooses the most efficient layout based on other resource properties, especially resource size and flags. + Prefer this choice unless certain functionality is required from another texture layout. + + +Zero-copy texture upload optimizations exist for UMA architectures; see ID3D12Resource::WriteToSubresource. + + + Indicates that data for the texture is stored in row-major order (sometimes called "pitch-linear order"). + + +This texture layout locates consecutive texels of a row contiguously in memory, before the texels of the next row. + Similarly, consecutive texels of a particular depth or array slice are contiguous in memory before the texels of the next depth or array slice. + Padding may exist between rows and between depth or array slices to align collections of data. + A stride is the distance in memory between rows, depth, or array slices; and it includes any padding. + + +This texture layout enables sharing of the texture data between multiple adapters, when other layouts aren't available. + + +Many restrictions apply, because this layout is generally not efficient for extensive usage: + + +
    +
  • The locality of nearby texels is not rotationally invariant. +
  • +
  • Only the following texture properties are supported: + +
  • +
  • The texture must be created on a heap with D3D12_HEAP_FLAG_SHARED_CROSS_ADAPTER. +
  • +
+Buffers are created with D3D12_TEXTURE_LAYOUT_ROW_MAJOR, because row-major texture data can be located in them without creating a texture object. + This is commonly used for uploading or reading back texture data, especially for discrete/NUMA adapters. + However, D3D12_TEXTURE_LAYOUT_ROW_MAJOR can also be used when marshaling texture data between GPUs or adapters. + For examples of usage with ID3D12GraphicsCommandList::CopyTextureRegion, see some of the following topics: + + +
+
+ + Indicates that the layout within 64KB tiles and tail mip packing is up to the driver. + No standard swizzle pattern. + + +This texture layout is arranged into contiguous 64KB regions, also known as tiles, containing near equilateral amount of consecutive number of texels along each dimension. + Tiles are arranged in row-major order. + While there is no padding between tiles, there are typically unused texels within the last tile in each dimension. + The layout of texels within the tile is undefined. + Each subresource immediately follows where the previous subresource end, and the subresource order follows the same sequence as subresource ordinals. + However, tail mip packing is adapter-specific. + For more details, see tiled resource tier and ID3D12Device::GetResourceTiling. + + +This texture layout enables partially resident or sparse texture scenarios when used together with virtual memory page mapping functionality. + This texture layout must be used together with ID3D12Device::CreateReservedResourceto enable the usage of ID3D12CommandQueue::UpdateTileMappings. + + +Some restrictions apply to textures with this layout: + + + + + + Indicates that a default texture uses the standardized swizzle pattern. + + +This texture layout is arranged the same way that D3D12_TEXTURE_LAYOUT_64KB_UNDEFINED_SWIZZLE is, except that the layout of texels within the tile is defined. + Tail mip packing is adapter-specific. + + +This texture layout enables optimizations when marshaling data between multiple adapters or between the CPU and GPU. + The amount of copying can be reduced when multiple components understand the texture memory layout. + This layout is generally more efficient for extensive usage than row-major layout, due to the rotationally invariant locality of neighboring texels. + This layout can typically only be used with adapters that support standard swizzle, but exceptions exist for cross-adapter shared heaps. + + +The restrictions for this layout are that the following aren't supported: + + + + + + + Represents Device Removed Extended Data (DRED) auto-breadcrumb data as a node in a linked list. + Microsoft Docs: + + + + A pointer to the ANSI debug name of the outstanding command list (if any). + + + A pointer to the wide debug name of the outstanding command list (if any). + + + A pointer to the ANSI debug name of the outstanding command queue (if any). + + + A pointer to the wide debug name of the outstanding command queue (if any). + + + A pointer to the [ID3D12GraphicsCommandList interface](nn-d3d12-id3d12graphicscommandlist.md) representing the outstanding command list at the time of execution. + + + A pointer to the [ID3D12CommandQueue interface](nn-d3d12-id3d12commandqueue.md) representing the outstanding command queue. + + + A UINT32 containing the count of D3D12_AUTO_BREADCRUMB_OP values in the array pointed to by pCommandHistory. + + + A pointer to a constant UINT32 containing the index (within the array pointed to by pCommandHistory) of the last render/compute operation that was completed by the GPU while executing the associated command list. + + + A pointer to a constant array of D3D12_AUTO_BREADCRUMB_OP values representing all of the render/compute operations recorded into the associated command list. + + + A pointer to a constant D3D12_AUTO_BREADCRUMB_NODE representing the next auto-breadcrumb node in the list, or nullptr if this is the last node. + + + + Sets the stream output buffer views. + Microsoft Docs: + Index into the device's zero-based array to begin setting stream output buffers. + The number of entries in the pViews array. + Specifies an array of D3D12_STREAM_OUTPUT_BUFFER_VIEW structures. + + + + + Sets a group of constants in the graphics root signature. + Microsoft Docs: + The slot number for binding. + The number of constants to set in the root signature. + The source data for the group of constants to set. + The offset, in 32-bit values, to set the first constant of the group in the root signature. + + + + + Checks whether a resource, or subresource, is in a specified state, or not. + Microsoft Docs: + Specifies the ID3D12Resource to check. + The index of the subresource to check. This can be set to an index, or D3D12_RESOURCE_BARRIER_ALL_SUBRESOURCES. + Specifies the state to check for. This can be one or more D3D12_RESOURCE_STATES flags Or'ed together. + + + + + Creates a command list. + Microsoft Docs: + For single-GPU operation, set this to zero. If there are multiple GPU nodes, then set a bit to identify the node (the device's physical adapter) for which to create the command list. Each bit in the mask corresponds to a single node. Only one bit must be set. Also see [Multi-adapter systems](/windows/win32/direct3d12/multi-engine). + Specifies the type of command list to create. + A pointer to the command allocator object from which the device creates command lists. + An optional pointer to the pipeline state object that contains the initial pipeline state for the command list. If it is nulltpr, then the runtime sets a dummy initial pipeline state, so that drivers don't have to deal with undefined state. The overhead for this is low, particularly for a command list, for which the overall cost of recording the command list likely dwarfs the cost of a single initial state setting. So there's little cost in not setting the initial pipeline state parameter, if doing so is inconvenient. + +For bundles, on the other hand, it might make more sense to try to set the initial state parameter (since bundles are likely smaller overall, and can be reused frequently). + A reference to the globally unique identifier (GUID) of the command list interface to return in ppCommandList. + A pointer to a memory block that receives a pointer to the ID3D12CommandList or ID3D12GraphicsCommandList interface for the command list. + + + + + Describes the size of a tiled region. + Microsoft Docs: + + + + The number of tiles in the tiled region. + + + Specifies whether the runtime uses the Width, Height, and Depth members to define the region. + + +If TRUE, the runtime uses the Width, Height, and Depth members to define the region. In this case, NumTiles should be equal to Width * Height * Depth. + +If FALSE, the runtime ignores the Width, Height, and Depth members and uses the NumTiles member to traverse tiles in the resource linearly across x, then y, then z (as applicable) and then spills over mipmaps/arrays in subresource order. For example, use this technique to map an entire resource at once. + + +Regardless of whether you specify TRUE or FALSE for UseBox, you use a D3D12_TILED_RESOURCE_COORDINATE structure to specify the starting location for the region within the resource as a separate parameter outside of this structure by using x, y, and z coordinates. + + +When the region includes mipmaps that are packed with nonstandard tiling, UseBox must be FALSE because tile dimensions are not standard and the app only knows a count of how many tiles are consumed by the packed area, which is per array slice. The corresponding (separate) starting location parameter uses x to offset into the flat range of tiles in this case, and y and z coordinates must each be 0. + + + The width of the tiled region, in tiles. Used for buffer and 1D, 2D, and 3D textures. + + + The height of the tiled region, in tiles. Used for 2D and 3D textures. + + + The depth of the tiled region, in tiles. Used for 3D textures or arrays. For arrays, used for advancing in depth jumps to next slice of same mipmap size, which isn't contiguous in the subresource counting space if there are multiple mipmaps. + + + + Specifies the features that a video processor can support. + Microsoft Docs: + + + + No features are supported. + + + The video processor can set alpha values on the output pixels. The alpha fill mode is used in D3D12_VIDEO_PROCESS_OUTPUT_STREAM_DESC. D3D12_VIDEO_PROCESS_ALPHA_FILL_MODE_OPAQUE must be always supported. The background, destination, and source stream modes are only supported when the driver reports D3D12_VIDEO_PROCESS_FEATURE_FLAG_ALPHA_FILL. + + + The video processor can perform luma keying. Luma keying is configured via the D3D12_VIDEO_PROCESS_LUMA_KEY member of the D3D12_VIDEO_PROCESS_INPUT_STREAM_ARGUMENTS structure. For more information see D3D12_VIDEO_PROCESS_LUMA_KEY. + + + The video processor can support 3D stereo video. For more information, see D3D12_VIDEO_FRAME_STEREO_FORMAT. + +All drivers setting this capability must support the following stereo formats: D3D12_VIDEO_PROCESS_STEREO_FORMAT_HORIZONTAL, D3D12_VIDEO_PROCESS_STEREO_FORMAT_VERTICAL, and D3D12_VIDEO_PROCESS_STEREO_FORMAT_SEPARATE. + + + The driver can rotate the input data either 90, 180, or 270 degrees clockwise as part of the video processing operation. + + + The driver can flip the input data horizontally or vertically, together or separately with a video rotation operation. + + + Alpha blending and a planar alpha may be set in the AlphaBlending member of the D3D12_VIDEO_PROCESS_INPUT_STREAM_ARGUMENTS structure. For more information see D3D12_VIDEO_PROCESS_ALPHA_BLENDING. + + + The driver supports changing the pixel aspect ratio. If the driver does not report this capability, then the SourceAspectRatio and DestinationAspectRatio members of D3D12_VIDEO_PROCESS_INPUT_STREAM_ARGUMENTS structure must indicate a 1:1 aspect ratio. + + + + Creates a pipeline state object from a pipeline state stream description. + Microsoft Docs: + The address of a D3D12_PIPELINE_STATE_STREAM_DESC structure that describes the pipeline state. + The globally unique identifier (GUID) for the pipeline state interface (ID3D12PipelineState). + +The REFIID, or GUID, of the interface to the pipeline state can be obtained by using the __uuidof() macro. For example, __uuidof(ID3D12PipelineState) will get the GUID of the interface to a pipeline state. + SAL: _COM_Outptr_ + +A pointer to a memory block that receives a pointer to the ID3D12PipelineState interface for the pipeline state object. + +The pipeline state object is an immutable state object. It contains no methods. + + + + + Pop a storage filter from the top of the storage-filter stack. + Microsoft Docs: + + + + + Set the maximum number of messages that can be added to the message queue. + Microsoft Docs: + Maximum number of messages that can be added to the message queue. -1 means no limit. + +When the number of messages in the message queue has reached the maximum limit, new messages coming in will push old messages out. + + + + + Describes an instance of a raytracing acceleration structure used in GPU memory during the acceleration structure build process. + Microsoft Docs: + + + + A 3x4 transform matrix in row-major layout representing the instance-to-world transformation. Implementations transform rays, as opposed to transforming all of the geometry or AABBs. + +> [!NOTE] +> The layout of Transform is a transpose of how affine matrices are typically stored in memory. Instead of four 3-vectors, Transform is laid out as three 4-vectors. + + + An arbitrary 24-bit value that can be accessed using the InstanceID intrinsic function in supported shader types. + + + An 8-bit mask assigned to the instance, which can be used to include/reject groups of instances on a per-ray basis. If the value is zero, then the instance will never be included, so typically this should be set to some non-zero value. For more information see, the InstanceInclusionMask parameter to the TraceRay function. + + + An arbitrary 24-bit value representing per-instance contribution to add into shader table indexing to select the hit group to use. + + + An 8-bit mask representing flags from D3D12_RAYTRACING_INSTANCE_FLAGS to apply to the instance. + + + Address of the bottom-level acceleration structure that is being instanced. The address must be aligned to 256 bytes, defined as D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BYTE_ALIGNMENT. Any existing acceleration structure passed in here would already have been required to be placed with such alignment. + +The memory pointed to must be in state D3D12_RESOURCE_STATE_RAYTRACING_ACCELERATION_STRUCTURE. + + + + Specifies how the pipeline interprets geometry or hull shader input primitives. + Microsoft Docs: + + + + The shader has not been initialized with an input primitive type. + + + Interpret the input primitive as a point. + + + Interpret the input primitive as a line. + + + Interpret the input primitive as a triangle. + + + Interpret the input primitive as a control point patch. + + + + Defines the layout in memory of a stereo 3D video frame. + Microsoft Docs: + + + + No stereo format is specified. + + + The sample does not contain stereo data. If the stereo format is not specified, this value is the default. + + + Frame 0 and frame 1 are packed side-by-side, as shown in the following diagram. + +![Horizontal stereo format showing the frame 0 pixels on the left of a grid of pixels and the frame 1 pixels on the right](./images/stereo_format_horizontal.png) + + + Frame 0 and frame 1 are packed top-to-bottom, as shown in the following diagram. + +![Vertical stereo format showing the frame 0 pixels on the top of a grid of pixels and the frame 1 pixels on the bottom](./images/stereo_format_horizontal.png) + + + Frame 0 and frame 1 are placed in separate resources + + + + Provides data for calls to ID3D12VideoDevice::CheckFeatureSupport when the feature specified is D3D12_FEATURE_VIDEO_MOTION_ESTIMATOR_PROTECTED_RESOURCES. Retrieves the protected resources support for video motion estimation. + Microsoft Docs: + + + + In multi-adapter operation, identifies the physical adapter of the device this operation applies to. + + + A member of the D3D12_VIDEO_PROTECTED_RESOURCE_SUPPORT_FLAGS enumeration specifying support for protected resources. + + + + Defines constants that specify the data type of a parameter to a meta command. + Microsoft Docs: + + + + Specifies that the parameter is of type FLOAT. + + + Specifies that the parameter is of type UINT64. + + + Specifies that the parameter is a GPU virtual address. + + + Specifies that the parameter is a CPU descriptor handle to a heap containing either constant buffer views, shader resource views, or unordered access views. + + + Specifies that the parameter is a GPU descriptor handle to a heap containing either constant buffer views, shader resource views, or unordered access views. + + + + Describes a portion of a texture for the purpose of texture copies. + Microsoft Docs: + + + + Specifies the resource which will be used for the copy operation.
 
When Type is D3D12_TEXTURE_COPY_TYPE_PLACED_FOOTPRINT, pResource must point to a buffer resource.
 
When Type is D3D12_TEXTURE_COPY_TYPE_SUBRESOURCE_INDEX, pResource must point to a texture resource.
+
+ + Specifies which type of resource location this is: a subresource of a texture, or a description of a texture layout which can be applied to a buffer. + This D3D12_TEXTURE_COPY_TYPE enum indicates which union member to use. + + + Specifies a texture layout, with offset, dimensions, and pitches, for the hardware to understand how to treat a section of a buffer resource as a multi-dimensional texture. + To fill-in the correct data for a CopyTextureRegion call, + see D3D12_PLACED_SUBRESOURCE_FOOTPRINT. + + + Specifies the index of the subresource of an arrayed, mip-mapped, or planar texture should be used for the copy operation. + + + + Atomically copies a primary data element of type UINT64 from one resource to another, along with optional dependent resources. + Microsoft Docs: + SAL: _In_ + +The resource that the UINT64 primary data element is copied into. + An offset into the destination resource buffer that specifies where the primary data element is copied into, in bytes. This offset combined with the base address of the resource buffer must result in a memory address that's naturally aligned for UINT64 values. + SAL: _In_ + +The resource that the UINT64 primary data element is copied from. This data is typically an address, index, or other handle that shader code can use to locate the most-recent version of latency-sensitive information. + An offset into the source resource buffer that specifies where the primary data element is copied from, in bytes. This offset combined with the base address of the resource buffer must result in a memory address that's naturally aligned for UINT64 values. + The number of dependent resources. + SAL: _In_reads_(Dependencies) + +An array of resources that contain the dependent elements of the data payload. + SAL: _In_reads_(Dependencies) + +An array of subresource ranges that specify the dependent elements of the data payload. These elements are completely updated before the primary data element is itself atomically copied. This ensures that the entire operation is logically atomic; that is, the primary data element never refers to an incomplete data payload. + + + + + Starts a query running. + Microsoft Docs: + Specifies the ID3D12QueryHeap containing the query. + Specifies one member of D3D12_QUERY_TYPE. + Specifies the index of the query within the query heap. + + + + + Not intended to be called directly.  Use the PIX event runtime to insert events into a command queue. + Microsoft Docs: + Internal. + Internal. + Internal. + + + + + Used to determine which kinds of command lists are capable of supporting various operations. + Microsoft Docs: + + + + Specifies that no command list supports the operation in question. + + + Specifies that direct command lists can support the operation in question. + + + Specifies that command list bundles can support the operation in question. + + + Specifies that compute command lists can support the operation in question. + + + Specifies that copy command lists can support the operation in question. + + + Specifies that video-decode command lists can support the operation in question. + + + Specifies that video-processing command lists can support the operation is question. + + + + Defines constants that specify the state of a resource regarding how the resource is being used. + Microsoft Docs: + + + + Your application should transition to this state only for accessing a resource across different graphics engine types. + +Specifically, a resource must be in the COMMON state before being used on a COPY queue (when previous used on DIRECT/COMPUTE), and before being used on DIRECT/COMPUTE (when previously used on COPY). This restriction does not exist when accessing data between DIRECT and COMPUTE queues. + +The COMMON state can be used for all usages on a Copy queue using the implicit state transitions. For more info, in Multi-engine synchronization, find "common". + +Additionally, textures must be in the COMMON state for CPU access to be legal, assuming the texture was created in a CPU-visible heap in the first place. + + + A subresource must be in this state when it is accessed by the GPU as a vertex buffer or constant buffer. This is a read-only state. + + + A subresource must be in this state when it is accessed by the 3D pipeline as an index buffer. This is a read-only state. + + + The resource is used as a render target. A subresource must be in this state when it is rendered to or when it is cleared with ID3D12GraphicsCommandList::ClearRenderTargetView. + +This is a write-only state. To read from a render target as a shader resource the resource must be in either D3D12_RESOURCE_STATE_NON_PIXEL_SHADER_RESOURCE or D3D12_RESOURCE_STATE_PIXEL_SHADER_RESOURCE. + + + The resource is used for unordered access. A subresource must be in this state when it is accessed by the GPU via an unordered access view. A subresource must also be in this state when it is cleared with ID3D12GraphicsCommandList::ClearUnorderedAccessViewInt or ID3D12GraphicsCommandList::ClearUnorderedAccessViewFloat. This is a read/write state. + + + D3D12_RESOURCE_STATE_DEPTH_WRITE is a state that is mutually exclusive with other states. You should use it for ID3D12GraphicsCommandList::ClearDepthStencilView when the flags (see D3D12_CLEAR_FLAGS) indicate a given subresource should be cleared (otherwise the subresource state doesn't matter), or when using it in a writable depth stencil view (see D3D12_DSV_FLAGS) when the PSO has depth write enabled (see D3D12_DEPTH_STENCIL_DESC). + + + DEPTH_READ is a state which can be combined with other states. It should be used when the subresource is in a read-only depth stencil view, or when the DepthEnable parameter of D3D12_DEPTH_STENCIL_DESC is false. It can be combined with other read states (for example, D3D12_RESOURCE_STATE_PIXEL_SHADER_RESOURCE), such that the resource can be used for the depth or stencil test, and accessed by a shader within the same draw call. Using it when depth will be written by a draw call or clear command is invalid. + + + The resource is used with a shader other than the pixel shader. A subresource must be in this state before being read by any stage (except for the pixel shader stage) via a shader resource view. You can still use the resource in a pixel shader with this flag as long as it also has the flag D3D12_RESOURCE_STATE_PIXEL_SHADER_RESOURCE set. This is a read-only state. + + + The resource is used with a pixel shader. A subresource must be in this state before being read by the pixel shader via a shader resource view. This is a read-only state. + + + The resource is used with stream output. A subresource must be in this state when it is accessed by the 3D pipeline as a stream-out target. This is a write-only state. + + + The resource is used as an indirect argument. + Subresources must be in this state when they are used as the argument buffer passed to the indirect drawing method ID3D12GraphicsCommandList::ExecuteIndirect. + This is a read-only state. + + + The resource is used as the destination in a copy operation. + Subresources must be in this state when they are used as the destination of copy operation, or a blt operation. + This is a write-only state. + + + The resource is used as the source in a copy operation. + Subresources must be in this state when they are used as the source of copy operation, or a blt operation. + This is a read-only state. + + + The resource is used as the destination in a resolve operation. + + + The resource is used as the source in a resolve operation. + + + When a buffer is created with this as its initial state, it indicates that the resource is a raytracing acceleration structure, for use in ID3D12GraphicsCommandList4::BuildRaytracingAccelerationStructure, ID3D12GraphicsCommandList4::CopyRaytracingAccelerationStructure, or ID3D12Device::CreateShaderResourceView for the D3D12_SRV_DIMENSION_RAYTRACING_ACCELERATION_STRUCTURE dimension. + + + Starting with Windows 10, version 1903 (10.0; Build 18362), indicates that the resource is a screen-space shading-rate image for variable-rate shading (VRS). For more info, see Variable-rate shading (VRS). + + + D3D12_RESOURCE_STATE_GENERIC_READ is a logically OR'd combination of other read-state bits. This is the required starting state for an upload heap. Your application should generally avoid transitioning to D3D12_RESOURCE_STATE_GENERIC_READ when possible, since that can result in premature cache flushes, or resource layout changes (for example, compress/decompress), causing unnecessary pipeline stalls. You should instead transition resources only to the actually-used states. + + + Synonymous with D3D12_RESOURCE_STATE_COMMON. + + + The resource is used for Predication. + + + The resource is used as a source in a decode operation. Examples include reading the compressed bitstream and reading from decode references, + + + The resource is used as a destination in the decode operation. This state is used for decode output and histograms. + + + The resource is used to read video data during video processing; that is, the resource is used as the source in a processing operation such as video encoding (compression). + + + The resource is used to write video data during video processing; that is, the resource is used as the destination in a processing operation such as video encoding (compression). + + + The resource is used as the source in an encode operation. This state is used for the input and reference of motion estimation. + + + This resource is used as the destination in an encode operation. This state is used for the destination texture of a resolve motion vector heap operation. + + + + Get the size of the storage-filter stack in bytes. + Microsoft Docs: + + + + + Specifies how to copy a tile. + Microsoft Docs: + + + + No tile-copy flags are specified. + + + Indicates that the GPU isn't currently referencing any of the + portions of destination memory being written. + + + Indicates that the ID3D12GraphicsCommandList::CopyTiles operation involves copying a linear buffer to a swizzled tiled resource. This means to copy tile data from the + specified buffer location, reading tiles sequentially, + to the specified tile region (in x,y,z order if the region is a box), swizzling to optimal hardware memory layout as needed. + In this ID3D12GraphicsCommandList::CopyTiles call, you specify the source data with the pBuffer parameter and the destination with the pTiledResource parameter. + + + Indicates that the ID3D12GraphicsCommandList::CopyTiles operation involves copying a swizzled tiled resource to a linear buffer. This means to copy tile data from the tile region, reading tiles sequentially (in x,y,z order if the region is a box), + to the specified buffer location, deswizzling to linear memory layout as needed. + In this ID3D12GraphicsCommandList::CopyTiles call, you specify the source data with the pTiledResource parameter and the destination with the pBuffer parameter. + + + + Sets all the elements in a unordered access view to the specified float values. + Microsoft Docs: + A D3D12_GPU_DESCRIPTOR_HANDLE that references an initialized descriptor for the unordered-access view (UAV) that is to be cleared. This descriptor must be in a shader-visible descriptor heap, which must be set on the command list via SetDescriptorHeaps. + A D3D12_CPU_DESCRIPTOR_HANDLE in a non-shader visible descriptor heap that references an initialized descriptor for the unordered-access view (UAV) that is to be cleared. + +> [!IMPORTANT] +> This descriptor must not be in a shader-visible descriptor heap. This is to allow drivers thath implement the clear as fixed-function hardware (rather than via a dispatch) to efficiently read from the descriptor, as shader-visible heaps may be created in WRITE_BACK memory (similar to D3D12_HEAP_TYPE_UPLOAD heap types), and CPU reads from this type of memory are prohibitively slow. + A pointer to the ID3D12Resource interface that represents the unordered-access-view (UAV) resource to clear. + A 4-component array that containing the values to fill the unordered-access-view resource with. + The number of rectangles in the array that the pRects parameter specifies. + An array of D3D12_RECT structures for the rectangles in the resource view to clear. If NULL, ClearUnorderedAccessViewFloat clears the entire resource view. + + + + + Specifies the shaders that can access the contents of a given root signature slot. + Microsoft Docs: + + + + Specifies that all shader stages can access whatever is bound at the root signature slot. + + + Specifies that the vertex shader stage can access whatever is bound at the root signature slot. + + + Specifies that the hull shader stage can access whatever is bound at the root signature slot. + + + Specifies that the domain shader stage can access whatever is bound at the root signature slot. + + + Specifies that the geometry shader stage can access whatever is bound at the root signature slot. + + + Specifies that the pixel shader stage can access whatever is bound at the root signature slot. + + + Specifies that the amplification shader stage can access whatever is bound at the root signature slot. + + + Specifies that the mesh shader stage can access whatever is bound at the root signature slot. + + + + Adds support for video extension commands. + Microsoft Docs: + + + + + This method enables or disables GPU-Based Validation (GBV) before creating a device with the debug layer enabled. + Microsoft Docs: + TRUE to enable GPU-Based Validation, otherwise FALSE. + + + + + Associates a name with the device object. This name is for use in debug diagnostics and tools. + Microsoft Docs: + A NULL-terminated UNICODE string that contains the name to associate with the device object. + + + + + Get the size of the retrieval-filter stack in bytes. + Microsoft Docs: + + + + + Creates both a resource and an implicit heap, such that the heap is big enough to contain the entire resource, and the resource is mapped to the heap. + Microsoft Docs: + A pointer to a D3D12_HEAP_PROPERTIES structure that provides properties for the resource's heap. + Heap options, as a bitwise-OR'd combination of D3D12_HEAP_FLAGS enumeration constants. + A pointer to a D3D12_RESOURCE_DESC structure that describes the resource. + The initial state of the resource, as a bitwise-OR'd combination of D3D12_RESOURCE_STATES enumeration constants. + +When you create a resource together with a D3D12_HEAP_TYPE_UPLOAD heap, you must set InitialResourceState to D3D12_RESOURCE_STATE_GENERIC_READ. + +When you create a resource together with a D3D12_HEAP_TYPE_READBACK heap, you must set InitialResourceState to D3D12_RESOURCE_STATE_COPY_DEST. + Specifies a D3D12_CLEAR_VALUE structure that describes the default value for a clear color. + +pOptimizedClearValue specifies a value for which clear operations are most optimal. When the created resource is a texture with either the D3D12_RESOURCE_FLAG_ALLOW_RENDER_TARGET or D3D12_RESOURCE_FLAG_ALLOW_DEPTH_STENCIL flags, you should choose the value with which the clear operation will most commonly be called. You can call the clear operation with other values, but those operations won't be as efficient as when the value matches the one passed in to resource creation. + +When you use D3D12_RESOURCE_DIMENSION_BUFFER, you must set pOptimizedClearValue to nullptr. + A reference to the globally unique identifier (GUID) of the resource interface to return in ppvResource. + +While riidResource is most commonly the GUID of ID3D12Resource, it may be the GUID of any interface. If the resource object doesn't support the interface for this GUID, then creation fails with E_NOINTERFACE. + An optional pointer to a memory block that receives the requested interface pointer to the created resource object. + +ppvResource can be nullptr, to enable capability testing. When ppvResource is nullptr, no object is created, and S_FALSE is returned when pDesc is valid. + + + + + Indicates the level of support that the adapter provides for variable-rate shading (VRS), and indicates whether or not background processing is supported. + Microsoft Docs: + + + + Indicates whether 2x4, 4x2, and 4x4 coarse pixel sizes are supported for single-sampled rendering; and whether coarse pixel size 2x4 is supported for 2x MSAA. true if those sizes are supported, otherwise false. + + + Indicates whether the per-provoking-vertex (also known as per-primitive) rate can be used with more than one viewport. If so, then, in that case, that rate can be used when SV_ViewportIndex is written to. true if that rate can be used with more than one viewport, otherwise false. + + + Indicates the shading rate tier. + + + Indicates the tile size of the screen-space image as a UINT. + + + Indicates whether or not background processing is supported. true if background processing is supported, otherwise false. For more info, see the [Direct3D 12 background processing spec](https://microsoft.github.io/DirectX-Specs/d3d/BackgroundProcessing.html). + + + + Describes a unordered-access 2D texture resource. + Microsoft Docs: + + + + The mipmap slice index. + + + The index (plane slice number) of the plane to use in the texture. + + + + Defines constants that specify a version of Device Removed Extended Data (DRED), as used by the D3D12_VERSIONED_DEVICE_REMOVED_EXTENDED_DATA structure. + Microsoft Docs: + + + + Specifies DRED version 1.0. + + + Specifies DRED version 1.1. + + + + Describes the input-buffer data for the input-assembler stage. + Microsoft Docs: + + + + An array of D3D12_INPUT_ELEMENT_DESC structures that describe the data types of the input-assembler stage. + + + The number of input-data types in the array of input elements that the pInputElementDescs member points to. + + + + Describes heap properties. + Microsoft Docs: + + + + A D3D12_HEAP_TYPE-typed value that specifies the type of heap. + + + A D3D12_CPU_PAGE_PROPERTY-typed value that specifies the CPU-page properties for the heap. + + + A D3D12_MEMORY_POOL-typed value that specifies the memory pool for the heap. + + + For multi-adapter operation, this indicates the node where the resource should be created. + +Exactly one bit of this UINT must be set. See Multi-adapter systems. + +Passing zero is equivalent to passing one, in order to simplify the usage of single-GPU adapters. + + + For multi-adapter operation, this indicates the set of nodes where the resource is visible. + +VisibleNodeMask must have the same bit set that is set in CreationNodeMask. VisibleNodeMask can also have additional bits set for cross-node resources, but doing so can potentially reduce performance for resource accesses, so you should do so only when needed. + +Passing zero is equivalent to passing one, in order to simplify the usage of single-GPU adapters. + + + + Specifies the fill mode to use when rendering triangles. + Microsoft Docs: + + + + Draw lines connecting the vertices. Adjacent vertices are not drawn. + + + Fill the triangles formed by the vertices. Adjacent vertices are not drawn. + + + + Describes a set of Axis-aligned bounding boxes that are used in the D3D12_BUILD_RAYTRACING_ACCELERATION_STRUCTURE_INPUTS structure to provide input data to a raytracing acceleration structure build operation. + Microsoft Docs: + + + + The number of AABBs pointed to in the contiguous array at AABBs. + + + the GPU memory location where an array of AABB descriptions is to be found, including the data stride between AABBs. The address and stride must each be aligned to 8 bytes, defined as The address must be aligned to 16 bytes, defined as D3D12_RAYTRACING_AABB_BYTE_ALIGNMENT. The stride can be 0. + + + + Gets a shader description. + Microsoft Docs: + A shader description, as a pointer to a D3D12_SHADER_DESC structure. + + + + + A shader-reflection interface accesses shader information. + Microsoft Docs: + + + + + Remove a retrieval filter from the top of the retrieval-filter stack. + Microsoft Docs: + + + + + Enables or disables dependent command queue synchronization when using a Direct3D 12 device with the debug layer enabled. + Microsoft Docs: + TRUE to enable Dependent Command Queue Synchronization, otherwise FALSE. + + + + + Identifies the type of resource to view as a render target. + Microsoft Docs: + + + + Do not use this value, as it will cause ID3D12Device::CreateRenderTargetView to fail. + + + The resource will be accessed as a buffer. + + + The resource will be accessed as a 1D texture. + + + The resource will be accessed as an array of 1D textures. + + + The resource will be accessed as a 2D texture. + + + The resource will be accessed as an array of 2D textures. + + + The resource will be accessed as a 2D texture with multisampling. + + + The resource will be accessed as an array of 2D textures with multisampling. + + + The resource will be accessed as a 3D texture. + + + + Specifies transform parameters for video processing. + Microsoft Docs: + + + + Specifies the source rectangle of the transform. This is the portion of the input surface that is blitted to the destination surface. The source rectangle is given in pixel coordinates, relative to the input surface. + + + Specifies the destination rectangle of the transform. This is the portion of the output surface that receives the blit for this stream. The destination rectangle is given in pixel coordinates, relative to the output surface. + + + The rotation and flip operation to apply to the source. Source and Destination rectangles are specified in post orientation coordinates. + + + + Creates a root signature layout. + Microsoft Docs: + For single GPU operation, set this to zero. If there are multiple GPU nodes, set bits to identify the nodes (the device's physical adapters) to which the root signature is to apply. + Each bit in the mask corresponds to a single node. + Refer to Multi-adapter systems. + A pointer to the source data for the serialized signature. + The size, in bytes, of the block of memory that pBlobWithRootSignature points to. + The globally unique identifier (GUID) for the root signature interface. See Remarks. + An input parameter. + A pointer to a memory block that receives a pointer to the root signature. + + + + + Set the current pipeline stack size. + Microsoft Docs: + Stack size in bytes to use during pipeline execution for each shader thread. There can be many thousands of threads in flight at once on the GPU. + +If the value is greater than 0xffffffff (the maximum value of a 32-bit UINT) the runtime will drop the call, and the debug layer will print an error, as this is likely the result of summing up invalid stack sizes returned from GetShaderStackSize called with invalid parameters, which return 0xffffffff. In this case, the previously set stack size, or the default, remains. + + + + + Retrieves the properties of the resource heap, for placed and committed resources. + Microsoft Docs: + Pointer to a D3D12_HEAP_PROPERTIES structure, that on successful completion of the method will contain the resource heap properties. + Specifies a D3D12_HEAP_FLAGS variable, that on successful completion of the method will contain any miscellaneous heap flags. + + + + + Describes info about the feature levels supported by the current graphics driver. + Microsoft Docs: + + + + The number of feature levels in the array at pFeatureLevelsRequested. + + + A pointer to an array of D3D_FEATURE_LEVELs that the application is requesting for the driver and hardware to evaluate. + + + The maximum feature level that the driver and hardware support. + + + + Describes the subresources from an array of 1D textures to use in a depth-stencil view. + Microsoft Docs: + + + + The index of the first mipmap level to use. + + + The index of the first texture to use in an array of textures. + + + Number of textures to use. + + + + Defines the combination of a pixel format and color space for a resource content description. + Microsoft Docs: + + + + A value from the DXGI_FORMAT enumeration, specifying the DXGI format of the data. + + + A value from the DXGI_COLOR_SPACE_TYPE enumeration, specifying the color space of the data. + + + + Creates a compute pipeline state object. + Microsoft Docs: + A pointer to a D3D12_COMPUTE_PIPELINE_STATE_DESC structure that describes compute pipeline state. + The globally unique identifier (GUID) for the pipeline state interface (ID3D12PipelineState). + The REFIID, or GUID, of the interface to the pipeline state can be obtained by using the __uuidof() macro. + For example, __uuidof(ID3D12PipelineState) will get the GUID of the interface to a pipeline state. + A pointer to a memory block that receives a pointer to the ID3D12PipelineState interface for the pipeline state object. + The pipeline state object is an immutable state object. It contains no methods. + + + + + Discards a resource. + Microsoft Docs: + A pointer to the ID3D12Resource interface for the resource to discard. + A pointer to a D3D12_DISCARD_REGION structure that describes details for the discard-resource operation. + + + + + Gets the base class of a class. + Microsoft Docs: + + + + + Describes the subresources from an array of 1D textures to use in a shader-resource view. + Microsoft Docs: + + + + Index of the most detailed mipmap level to use; this number is between 0 and MipLevels (from the original Texture1D for which ID3D12Device::CreateShaderResourceView creates a view) -1. + + + The maximum number of mipmap levels for the view of the texture. See the remarks in D3D12_TEX1D_SRV. + +Set to -1 to indicate all the mipmap levels from MostDetailedMip on down to least detailed. + + + The index of the first texture to use in an array of textures. + + + Number of textures in the array. + + + A value to clamp sample LOD values to. For example, if you specify 2.0f for the clamp value, you ensure that no individual sample accesses a mip level less than 2.0f. + + + + Set a message severity level to break on when a message with that severity level passes through the storage filter. + Microsoft Docs: + A message severity level to break on. + Turns this breaking condition on or off (true for on, false for off). + + + + + Represents a Direct3D 12 video decoder heap. + Microsoft Docs: + + + + + Represents the decode parameters for a frame. + Microsoft Docs: + + + + A member of the D3D12_VIDEO_DECODE_ARGUMENT_TYPE enumeration specifying the type of argument. + + + The size of the data in pArgument, in bytes. + + + A pointer to the argument data. + + + + Describes a ID3D12VideoDecoder. + Microsoft Docs: + + + + The node mask specifying the physical adapter on which the video processor will be used. For single GPU operation, set this to zero. If there are multiple GPU nodes, set a bit to identify the node, i.e. the device's physical adapter, to which the command queue applies. Each bit in the mask corresponds to a single node. Only 1 bit may be set. + + + A D3D12_VIDEO_DECODE_CONFIGURATION structure specifying the configuration of the video decoder. + + + + Retrieves a description of the protected resource session. + Microsoft Docs: + + + + + A heap is an abstraction of contiguous memory allocation, used to manage physical memory. This heap can be used with ID3D12Resource objects to support placed resources or reserved resources. + Microsoft Docs: + + + + + Represents a GPU virtual address and indexing stride. + Microsoft Docs: + + + + The beginning of the virtual address range. + + + Defines indexing stride, such as for vertices. Only the bottom 32 bits are used. The field is 64 bits to make alignment of containing structures consistent everywhere. + + + + Creates a cached pipeline library. + Microsoft Docs: + If the input library blob is empty, then the initial content of the library is empty. If the input library blob is not empty, then it is validated for integrity, parsed, and the pointer is stored. The pointer provided as input to this method must remain valid for the lifetime of the object returned. For efficiency reasons, the data is not copied. + Specifies the length of pLibraryBlob in bytes. + Specifies a unique REFIID for the ID3D12PipelineLibrary object. Typically set this and the following parameter with the macro IID_PPV_ARGS(&library), where Library is the name of the object. + Returns a pointer to the created library. + + + + + Indicates the level of support for heap serialization. + Microsoft Docs: + + + + An input field, indicating the adapter index to query. + + + An output field, indicating the tier of heap serialization support. + + + + Specifies the type of query heap to create. + Microsoft Docs: + + + + This returns a binary 0/1 result: 0 indicates that no samples passed depth and stencil testing, 1 indicates that at least one sample passed depth and stencil testing. This enables occlusion queries to not interfere with any GPU performance optimization associated with depth/stencil testing. + + + Indicates that the heap is for high-performance timing data. + + + Indicates the heap is to contain pipeline data. Refer to D3D12_QUERY_DATA_PIPELINE_STATISTICS. + + + Indicates the heap is to contain stream output data. Refer to D3D12_QUERY_DATA_SO_STATISTICS. + + + Indicates the heap is to contain video decode statistics data. Refer to D3D12_QUERY_DATA_VIDEO_DECODE_STATISTICS. + +Video decode statistics can only be queried from video decode command lists (D3D12_COMMAND_LIST_TYPE_VIDEO_DECODE). See D3D12_QUERY_TYPE_DECODE_STATISTICS for more details. + + + Indicates the heap is to contain timestamp queries emitted exclusively by copy command lists. Copy queue timestamps can only be queried from a copy command list, and a copy command list can not emit to a regular timestamp query Heap. + +Support for this query heap type is not universal. You must use CheckFeatureSupport with D3D12_FEATURE_D3D12_OPTIONS3 to determine whether the adapter supports copy queue timestamp queries. + + + + Not intended to be called directly.  Use the PIX event runtime to insert events into a command list. + Microsoft Docs: + Internal. + Internal. + Internal. + + + + + Modifies the D3D12 optional device-wide Debug Layer settings. + Microsoft Docs: + Specifies a D3D12_DEBUG_DEVICE_PARAMETER_TYPE value that indicates which debug parameter data to get. + Debug parameter data to set. + Size in bytes of the data pointed to by pData. + + + + + Details the adapter's support for prioritization of different command queue types. + Microsoft Docs: + + + + SAL: _In_ + +The type of the command list you're interested in. + + + SAL: _In_ + +The priority level you're interested in. + + + SAL: _Out_ + +On return, contains true if the specfied command list type supports the specified priority level; otherwise, false. + + + + Specifies debug message IDs for setting up an info-queue filter (see D3D12_INFO_QUEUE_FILTER); use these messages to allow or deny message categories to pass through the storage and retrieval filters. + Microsoft Docs: + + + + + Retrieves the requested PSO from the library. The pipeline stream description is matched against the library database and remembered in order to prevent duplication of PSO contents. + Microsoft Docs: + SAL: _In_ + +The unique name of the PSO. + SAL: _In_ + +Describes the required PSO using a D3D12_PIPELINE_STATE_STREAM_DESC structure. This description is matched against the library database and stored in order to prevent duplication of PSO contents. + Specifies a REFIID for the ID3D12PipelineStateState object. + +Applications should typically set this argument and the following argument, ppPipelineState, by using the macro IID_PPV_ARGS(&PSO1), where PSO1 is the name of the object. + SAL: _COM_Outptr_ + +Specifies the pointer that will reference the PSO after the function successfully returns. + + + + + Retrieves the list of supported formats. + Microsoft Docs: + + + + For single GPU operation, set this to zero. If there are multiple GPU nodes, set a bit to identify the node (the device's physical adapter) to which the command queue applies. Each bit in the mask corresponds to a single node. Only 1 bit may be set. + + + A D3D12\_VIDEO\_DECODE\_CONFIGURATION structure describing the decode configuration for the list of formats. + + + The number of formats to retrieve. This number must match the value returned from a call [ID3D12VideoDevice::CheckFeatureSupport](nf-d3d12video-id3d12videodevice-checkfeaturesupport.md) when the feature specified is D3D12\_FEATURE\_VIDEO\_DECODE\_FORMAT\_COUNT. + + + A list of DXGI_FORMAT structures representing the supported formats. + + + + Specifies the decoding tier of a hardware video decoder, which determines the required format of application-defined textures and buffers. + Microsoft Docs: + + + + Video decoding is not supported. + + + In tier 1, the hardware decoder requires that the application allocate reference textures as a texture array. This is to accomodate hardware requirements that the textures be "close" in address space because the hardware doesn't support a full size pointer for each individual picture buffer. Instead it has one pointer and a more limited bit offset. For more information on texture arrays, see [Introduction To Textures in Direct3D 11](/windows/win32/direct3d11/overviews-direct3d-11-resources-textures-intro). + +If the decoder hardware requires a unique memory layout that is not supported for operations on other engines or different video operations, the decoder may set the D3D12_VIDEO_DECODE_CONFIGURATION_FLAG_REFERENCE_ONLY_ALLOCATIONS_REQUIRED configuration flag in the D3D12_FEATURE_DATA_VIDEO_DECODE_SUPPORT structure when queried for profile support. This flag indicates that the application must allocate references with the D3D12_RESOURCE_FLAG_VIDEO_DECODE_REFERENCE_ONLY flag. The application should use the D3D12_VIDEO_DECODE_CONVERSION_ARGUMENTS structure to set a reference-only output if the output is needed as a future reference frame. The output frame passed to ID3D12VideoCommandList::DecodeFrame is a D3D12 resource that can be consumed by other portions of the pipeline and must not have the D3D12_RESOURCE_FLAG_VIDEO_DECODE_REFERENCE_ONLY flag. + + + In decode tier 2, textures can be referenced as a texture array or as an array of separate texture 2D resources (each resource having array size of 1). This is more flexible for the caller and is important in scenarios where the resolution changes frequently such as in streaming video, because a texture array can only be allocated and deallocated as an single unit, but separate texture 2D resources can be allocated and deallocated individually. + +If decode hardware requires a unique tiling format that is not supported for operations on other engines or different video operations, the decoder may set the D3D12_VIDEO_DECODE_CONFIGURATION_FLAG_REFERENCE_ONLY_ALLOCATIONS_REQUIRED configuration flag in the D3D12_FEATURE_DATA_VIDEO_DECODE_SUPPORT structure when queried for profile support. This flag indicates that the application must allocate references with the D3D12_RESOURCE_FLAG_VIDEO_DECODE_REFERENCE_ONLY flag. The application should use the D3D12_VIDEO_DECODE_CONVERSION_ARGUMENTS structure to set a reference only output if the output is needed as a future reference frame. The output frame passed to ID3D12VideoCommandList::DecodeFrame is a D3D12 resource that can be consumed by other portions of the pipeline and must not have the D3D12_RESOURCE_FLAG_VIDEO_DECODE_REFERENCE_ONLY flag. + + + This field is reserved. + + + + Describes a shader. + Microsoft Docs: + + + + The Shader version, as an encoded UINT that corresponds to a shader model, such as "ps_5_0". + Version describes the program type, a major version number, and a minor version number. + The program type is a D3D12_SHADER_VERSION_TYPE enumeration constant. + Version is decoded in the following way: + + +
    +
  • Program type = (Version & 0xFFFF0000) >> 16
  • +
  • Major version = (Version & 0x000000F0) >> 4
  • +
  • Minor version = (Version & 0x0000000F)
  • +
+
+ + The name of the originator of the shader. + + + Shader compilation/parse flags. + + + The number of shader-constant buffers. + + + The number of resource (textures and buffers) bound to a shader. + + + The number of parameters in the input signature. + + + The number of parameters in the output signature. + + + The number of intermediate-language instructions in the compiled shader. + + + The number of temporary registers in the compiled shader. + + + Number of temporary arrays used. + + + Number of constant defines. + + + Number of declarations (input + output). + + + Number of non-categorized texture instructions. + + + Number of texture load instructions + + + Number of texture comparison instructions + + + Number of texture bias instructions + + + Number of texture gradient instructions. + + + Number of floating point arithmetic instructions used. + + + Number of signed integer arithmetic instructions used. + + + Number of unsigned integer arithmetic instructions used. + + + Number of static flow control instructions used. + + + Number of dynamic flow control instructions used. + + + Number of macro instructions used. + + + Number of array instructions used. + + + Number of cut instructions used. + + + Number of emit instructions used. + + + The D3D_PRIMITIVE_TOPOLOGY-typed value that represents the geometry shader output topology. + + + Geometry shader maximum output vertex count. + + + The D3D_PRIMITIVE-typed value that represents the input primitive for a geometry shader or hull shader. + + + Number of parameters in the patch-constant signature. + + + Number of geometry shader instances. + + + Number of control points in the hull shader and domain shader. + + + The D3D_TESSELLATOR_OUTPUT_PRIMITIVE-typed value that represents the tessellator output-primitive type. + + + The D3D_TESSELLATOR_PARTITIONING-typed value that represents the tessellator partitioning mode. + + + The D3D_TESSELLATOR_DOMAIN-typed value that represents the tessellator domain. + + + Number of barrier instructions in a compute shader. + + + Number of interlocked instructions in a compute shader. + + + Number of texture writes in a compute shader. + + + + Describes a CPU descriptor handle. + Microsoft Docs: + + + + The address of the descriptor. + + + + Gets the type of the command list, such as direct, bundle, compute, or copy. + Microsoft Docs: + + + + + Specifies whether a video decode conversion operation is supported. + Microsoft Docs: + + + + The video decode conversion operation isn't supported. + + + The video decode conversion operation is supported. + + + + Identifies the type of data contained in an input slot. + Microsoft Docs: + + + + Input data is per-vertex data. + + + Input data is per-instance data. + + + + Push an empty retrieval filter onto the retrieval-filter stack. + Microsoft Docs: + + + + + Specifies the type of root signature slot. + Microsoft Docs: + + + + The slot is for a descriptor table. + + + The slot is for root constants. + + + The slot is for a constant-buffer view (CBV). + + + The slot is for a shader-resource view (SRV). + + + The slot is for a unordered-access view (UAV). + + + + Add storage filters to the top of the storage-filter stack. + Microsoft Docs: + Array of storage filters. + + + + + Describes, as a node in a linked list, data about an allocation tracked by Device Removed Extended Data (DRED). + Microsoft Docs: + + + + A pointer to the ANSI debug name of the allocated runtime object. + + + A pointer to the wide debug name of the allocated runtime object. + + + A D3D12_DRED_ALLOCATION_TYPE value representing the runtime object's allocation type. + + + A pointer to a constant D3D12_DRED_ALLOCATION_NODE representing the next allocation node in the list, or nullptr if this is the last node. + + + + Provides methods for getting and setting the properties of an ID3D12StateObject. + Microsoft Docs: + + + + + Indicates the level of support that the adapter provides for timestamp queries, format-casting, immediate write, view instancing, and barycentrics. + Microsoft Docs: + + + + Indicates whether timestamp queries are supported on copy queues. + + + Indicates whether casting from one fully typed format to another, compatible, format is supported. + + + Indicates the kinds of command lists that support the ability to write an immediate value directly from the command stream into a specified buffer. + + + Indicates the level of support the adapter has for view instancing. + + + Indicates whether barycentrics are supported. + + + + Describes the subresource from a 2D texture to use in a shader-resource view. + Microsoft Docs: + + + + Index of the most detailed mipmap level to use; this number is between 0 and MipLevels (from the original Texture2D for which ID3D12Device::CreateShaderResourceView creates a view) -1. + + + The maximum number of mipmap levels for the view of the texture. See the remarks in D3D12_TEX1D_SRV. + + +Set to -1 to indicate all the mipmap levels from MostDetailedMip on down to least detailed. + + + The index (plane slice number) of the plane to use in the texture. + + + A value to clamp sample LOD values to. For example, if you specify 2.0f for the clamp value, you ensure that no individual sample accesses a mip level less than 2.0f. + + + + Describes the clear value to which resource(s) should be cleared at the beginning of a render pass. + Microsoft Docs: + + + + A D3D12_CLEAR_VALUE. The clear value to which the resource(s) should be cleared. + + + + Sets a CPU descriptor handle for the vertex buffers. + Microsoft Docs: + Index into the device's zero-based array to begin setting vertex buffers. + The number of views in the pViews array. + Specifies the vertex buffer views in an array of D3D12_VERTEX_BUFFER_VIEW structures. + + + + + Represents facilities for controlling the lifetime a lifetime-tracked object. + Microsoft Docs: + + + + + Gets a constant buffer by index for a function. + Microsoft Docs: + Zero-based index. + + + + + Defines flags that specify states related to a graphics command list. Values can be bitwise OR'd together. + Microsoft Docs: + + + + Specifies no state. + + + Specifies the state of the vertex buffer bindings on the input assembler stage. + + + Specifies the state of the index buffer binding on the input assembler stage. + + + Specifies the state of the primitive topology value set on the input assembler stage. + + + Specifies the state of the currently bound descriptor heaps. + + + Specifies the state of the currently set graphics root signature. + + + Specifies the state of the currently set compute root signature. + + + Specifies the state of the viewports bound to the rasterizer stage. + + + Specifies the state of the scissor rectangles bound to the rasterizer stage. + + + Specifies the predicate state. + + + Specifies the state of the render targets bound to the output merger stage. + + + Specifies the state of the reference value for depth stencil tests set on the output merger stage. + + + Specifies the state of the blend factor set on the output merger stage. + + + Specifies the state of the pipeline state object. + + + Specifies the state of the buffer views bound to the stream output stage. + + + Specifies the state of the depth bounds set on the output merger stage. + + + Specifies the state of the sample positions. + + + Specifies the state of the view instances mask. + + + + Indicates to re-use the memory that is associated with the command allocator. + Microsoft Docs: + + + + + Holds any version of a root signature description, and is designed to be used with serialization/deserialization functions. + Microsoft Docs: + + + + Specifies one member of D3D_ROOT_SIGNATURE_VERSION that determines the contents of the union. + + + Specifies a D3D12_ROOT_SIGNATURE_DESC (version 1.0). + + + Specifies a D3D12_ROOT_SIGNATURE_DESC1 (version 1.1). + + + + Identifies the tier level at which tiled resources are supported. + Microsoft Docs: + + + + Indicates that textures cannot be created with the D3D12_TEXTURE_LAYOUT_64KB_UNDEFINED_SWIZZLE layout. + + + +ID3D12Device::CreateReservedResource cannot be used, not even for buffers. + + + Indicates that 2D textures can be created with the D3D12_TEXTURE_LAYOUT_64KB_UNDEFINED_SWIZZLE layout. + Limitations exist for certain resource formats and properties. + For more details, see D3D12_TEXTURE_LAYOUT_64KB_UNDEFINED_SWIZZLE. + + + +ID3D12Device::CreateReservedResource can be used. + + +GPU reads or writes to NULL mappings are undefined. + Applications are encouraged to workaround this limitation by repeatedly mapping the same page to everywhere a NULL mapping would've been used. + + +When the size of a texture mipmap level is an integer multiple of the standard tile shape for its format, it is guaranteed to be nonpacked. + + + Indicates that a superset of Tier_1 functionality is supported, including this additional support: + + +
    +
  • When the size of a texture mipmap level is at least one standard tile shape for its format, the mipmap level is guaranteed to be nonpacked. + For more info, see D3D12_PACKED_MIP_INFO. +
  • +
  • Shader instructions are available for clamping level-of-detail (LOD) and for obtaining status about the shader operation. + For info about one of these shader instructions, see Sample(S,float,int,float,uint). + Sample(S,float,int,float,uint). +
  • +
  • Reading from NULL-mapped tiles treat that sampled value as zero. + Writes to NULL-mapped tiles are discarded. +
  • +
+Adapters that support feature level 12_0 all support TIER_2 or greater.
+
+ + Indicates that a superset of Tier 2 is supported, with the addition that 3D textures (Volume Tiled Resources) are supported. + + + + Creates a descriptor heap object. + Microsoft Docs: + A pointer to a D3D12_DESCRIPTOR_HEAP_DESC structure that describes the heap. + The globally unique identifier (GUID) for the descriptor heap interface. See Remarks. + An input parameter. + A pointer to a memory block that receives a pointer to the descriptor heap. + ppvHeap can be NULL, to enable capability testing. + When ppvHeap is NULL, no object will be created and S_FALSE will be returned when pDescriptorHeapDesc is valid. + + + + + Sets all the elements in a render target to one value. + Microsoft Docs: + Specifies a D3D12_CPU_DESCRIPTOR_HANDLE structure that describes the CPU descriptor handle that represents the start of the heap for the render target to be cleared. + A 4-component array that represents the color to fill the render target with. + The number of rectangles in the array that the pRects parameter specifies. + An array of D3D12_RECT structures for the rectangles in the resource view to clear. If NULL, ClearRenderTargetView clears the entire resource view. + + + + + Adds configurable levels of GPU-based validation to the debug layer. + Microsoft Docs: + + + + + A reference counted object representing the video extension command. + Microsoft Docs: + + + + + Gets the function parameter reflector. + Microsoft Docs: + The zero-based index of the function parameter reflector to retrieve. + + + + + Describes parameters needed to allocate resources. + Microsoft Docs: + + + + The size, in bytes, of the resource. + + + The alignment value for the resource; one of 4KB (4096), 64KB (65536), or 4MB (4194304) alignment. + + + + Get a message category to break on when a message with that category passes through the storage filter. + Microsoft Docs: + Message category to break on. + + + + + Describes a vertex element in a vertex buffer in an output slot. + Microsoft Docs: + + + + Zero-based, stream number. + + + Type of output element; possible values include: "POSITION", "NORMAL", or "TEXCOORD0". + Note that if SemanticName is NULL then + ComponentCount can be greater than 4 and the described entry will be a gap in the stream out where no data will be written. + + + Output element's zero-based index. Use, for example, if you have more than one texture coordinate stored in each vertex. + + + The component of the entry to begin writing out to. Valid values are 0 to 3. For example, if you only wish to output to the y and z components + of a position, StartComponent is 1 and ComponentCount is 2. + + + The number of components of the entry to write out to. Valid values are 1 to 4. For example, if you only wish to output to the y and z components + of a position, StartComponent is 1 and ComponentCount is 2. Note that if SemanticName is NULL then + ComponentCount can be greater than 4 and the described entry will be a gap in the stream out where no data will be written. + + + The associated stream output buffer that is bound to the pipeline. + The valid range for OutputSlot is 0 to 3. + + + + Indicates the level of support for protected resource sessions. + Microsoft Docs: + + + + An input field, indicating the adapter index to query. + + + An output field indicating the type of protected resource session support. + + + + Indicates whether a class type implements an interface. + Microsoft Docs: + A pointer to a ID3D12ShaderReflectionType Interface. + + + + + Specifies the type of acceleration structure post-build info that can be retrieved with calls to EmitRaytracingAccelerationStructurePostbuildInfo and BuildRaytracingAccelerationStructure. + Microsoft Docs: + + + + The post-build info is space requirements for an acceleration structure after compaction. For more information, see D3D12_RAYTRACING_ACCELERATION_STRUCTURE_POSTBUILD_INFO_COMPACTED_SIZE_DESC. + + + The post-build info is space requirements for generating tools visualization for an acceleration structure. For more information, see D3D12_RAYTRACING_ACCELERATION_STRUCTURE_POSTBUILD_INFO_TOOLS_VISUALIZATION_DESC. + + + The post-build info is space requirements for serializing an acceleration structure. For more information, see D3D12_RAYTRACING_ACCELERATION_STRUCTURE_POSTBUILD_INFO_SERIALIZATION_DESC. + + + The post-build info is size of the current acceleration structure. For more information, see D3D12_RAYTRACING_ACCELERATION_STRUCTURE_POSTBUILD_INFO_CURRENT_SIZE_DESC. + + + + Converts root signature description structures to a requested version. + Microsoft Docs: + Specifies the required D3D_ROOT_SIGNATURE_VERSION. + Contains the deserialized root signature in a D3D12_VERSIONED_ROOT_SIGNATURE_DESC structure. + + + + + Sets the view for the index buffer. + Microsoft Docs: + The view specifies the index buffer's address, size, and DXGI_FORMAT, as a pointer to a D3D12_INDEX_BUFFER_VIEW structure. + + + + + Specifies the mode used by a WriteBufferImmediate operation. + Microsoft Docs: + + + + The write operation behaves the same as normal copy-write operations. + + + The write operation is guaranteed to occur after all preceding commands in the command stream have started, including previous WriteBufferImmediate operations. + + + The write operation is deferred until all previous commands in the command stream have completed through the GPU pipeline, including previous WriteBufferImmediate operations. Write operations that specify D3D12_WRITEBUFFERIMMEDIATE_MODE_MARKER_OUT don't block subsequent operations from starting. If there are no previous operations in the command stream, then the write operation behaves as if D3D12_WRITEBUFFERIMMEDIATE_MODE_MARKER_IN was specified. + + + + Describes the subresources from an array of 2D textures to use in a shader-resource view. + Microsoft Docs: + + + + Index of the most detailed mipmap level to use; this number is between 0 and MipLevels -1 (where MipLevels is from the original Texture2D for which ID3D12Device::CreateShaderResourceView creates a view). + + + The maximum number of mipmap levels for the view of the texture. See the remarks in D3D12_TEX1D_SRV. + + +Set to -1 to indicate all the mipmap levels from MostDetailedMip on down to least detailed. + + + The index of the first texture to use in an array of textures. + + + Number of textures in the array. + + + The index (plane slice number) of the plane to use in an array of textures. + + + A value to clamp sample LOD values to. For example, if you specify 2.0f for the clamp value, you ensure that no individual sample accesses a mip level less than 2.0f. + + + + Monitors the validity of a protected resource session. + Microsoft Docs: + + + + + Gets the number of Mov instructions. + Microsoft Docs: + + + + + Describes the coordinates of a resource. + Microsoft Docs: + + + + The x-coordinate of the resource. + + + The y-coordinate of the resource. + + + The z-coordinate of the resource. + + + The index of the subresource for the resource. + + + + Specifies the level of sharing across nodes of an adapter, such as Tier 1 Emulated, Tier 1, or Tier 2. + Microsoft Docs: + + + + If an adapter has only 1 node, then cross-node sharing doesn't apply, so the CrossNodeSharingTier member of the D3D12_FEATURE_DATA_D3D12_OPTIONS structure is set to D3D12_CROSS_NODE_SHARING_NOT_SUPPORTED. + + + Tier 1 Emulated. Devices that set the CrossNodeSharingTier member of the D3D12_FEATURE_DATA_D3D12_OPTIONS structure to D3D12_CROSS_NODE_SHARING_TIER_1_EMULATED have Tier 1 support. +However, drivers stage these copy operations through a driver-internal system memory allocation. This will cause these copy operations to consume time on the destination GPU as well as the source. + + + Tier 1. Devices that set the CrossNodeSharingTier member of the D3D12_FEATURE_DATA_D3D12_OPTIONS structure to D3D12_CROSS_NODE_SHARING_TIER_1 only support the following cross-node copy operations: + + + +Additionally, the cross-node resource must be the destination of the copy operation. + + + Tier 2. Devices that set the CrossNodeSharingTier member of the D3D12_FEATURE_DATA_D3D12_OPTIONS structure to D3D12_CROSS_NODE_SHARING_TIER_2 support all operations across nodes, except for the following: + +
    +
  • Render target views.
  • +
  • Depth stencil views.
  • +
  • UAV atomic operations. Similar to CPU/GPU interop, shaders may perform UAV atomic operations; however, no atomicity across adapters is guaranteed.
  • +
+Applications can retrieve the node where a resource/heap exists from the D3D12_HEAP_DESC structure. These values are retrievable for opened resources. The runtime performs the appropriate re-mapping in case the 2 devices are using different UMD-specified node re-mappings.
+
+ + Indicates support for [D3D12_HEAP_FLAG_ALLOW_SHADER_ATOMICS](./ne-d3d12-d3d12_heap_flags.md) on heaps that are visible to multiple nodes. + + + + Describes allocation data related to a GPU page fault on a given virtual address (VA). + Microsoft Docs: + + + + A D3D12_GPU_VIRTUAL_ADDRESS containing the GPU virtual address (VA) of the faulting operation if device removal was due to a GPU page fault. + + + A pointer to a constant D3D12_DRED_ALLOCATION_NODE object representing the head of a linked list of allocation nodes for active allocated runtime objects with virtual address (VA) ranges that match the faulting VA (PageFaultVA). Has a value of nullptr if the list is empty. + + + A pointer to a constant D3D12_DRED_ALLOCATION_NODE object representing the head of a linked list of allocation nodes for recently freed runtime objects with virtual address (VA) ranges that match the faulting VA (PageFaultVA). Has a value of nullptr if the list is empty. + + + + Describes the footprint of a placed subresource, including the offset and the D3D12_SUBRESOURCE_FOOTPRINT. + Microsoft Docs: + + + + The offset of the subresource within the parent resource, in bytes. + The offset between the start of the parent resource and this subresource. + + + The format, width, height, depth, and row-pitch of the subresource, + as a D3D12_SUBRESOURCE_FOOTPRINT structure. + + + + Specifies the volatility of the data referenced by descriptors in a Root Signature 1.1 description, which can enable some driver optimizations. + Microsoft Docs: + + + + Default assumptions are made for data (for SRV/CBV: DATA_STATIC_WHILE_SET_AT_EXECUTE, and for UAV: DATA_VOLATILE). + + + Data is volatile. Equivalent to Root Signature Version 1.0. + + + Data is static while set at execute. + + + Data is static. The best potential for driver optimization. + + + + Represents the allocations of storage for graphics processing unit (GPU) commands. + Microsoft Docs: + + + + + Gets the description of the command queue. + Microsoft Docs: + + + + + Indicates the level of support that the adapter provides for render passes, ray tracing, and shader-resource view tier 3 tiled resources. + Microsoft Docs: + + + + A boolean value indicating whether the options require shader-resource view tier 3 tiled resource support. For more information, see D3D12_TILED_RESOURCES_TIER. + + + The extent to which a device driver and/or the hardware efficiently supports render passes. See D3D12_RENDERPASS_TIER. + + + + Contains the list of reference frames for the current decode operation. + Microsoft Docs: + + + + The number of references specified in the ppTexture2Ds field. + + + A list of reference textures. When specifying texture arrays, each entry will be point to the same resource. When specifying an array of textures, each entry will point to a separate resource. + + + An array of subresource indices for the reference textures specified in ppTexture2Ds. NULL indicates that subresource 0 should be assumed for each resource. + +With texture arrays within a single resource, the subresource indices point to the array index of the first resource plane. With an array of textures in individual resources, the subresource index is typically zero. + +The video device driver uses the "PicEntry" indices defined in the DXVA spec for the codec to dereference this array to find the subresource index to use with the corresponding resource. For example, in HEVC, the Driver uses [DXVA_PicEntry_HEVC::Index7Bits](/windows/win32/medfound/dxva-picentry-hevc) as an index for this array. + + + An array of ID3D12VideoDecoderHeap objects. This field is used with formats that support non-key frame resolution changes, allowing the caller to pass in the previous resolution's heap, relative to the reference it's being used for, in addition to the current resolution heap. + + + + Adds support for protected resources. + Microsoft Docs: + + + + + Describes a resource, such as a texture. This structure is used extensively. + Microsoft Docs: + + + + One member of D3D12_RESOURCE_DIMENSION, specifying the dimensions of the resource (for example, D3D12_RESOURCE_DIMENSION_TEXTURE1D), or whether it is a buffer ((D3D12_RESOURCE_DIMENSION_BUFFER). + + + Specifies the alignment. + + + Specifies the width of the resource. + + + Specifies the height of the resource. + + + Specifies the depth of the resource, if it is 3D, or the array size if it is an array of 1D or 2D resources. + + + Specifies the number of MIP levels. + + + Specifies one member of DXGI_FORMAT. + + + Specifies a DXGI_SAMPLE_DESC structure. + + + Specifies one member of D3D12_TEXTURE_LAYOUT. + + + Bitwise-OR'd flags, as D3D12_RESOURCE_FLAGS enumeration constants. + + + + Fills the parameter descriptor structure for the function's parameter. + Microsoft Docs: + A pointer to a D3D12_PARAMETER_DESC structure that receives a description of the function's parameter. + + + + + Specifies how memory gets routed by a shader resource view (SRV). + Microsoft Docs: + + + + Indicates return component 0 (red). + + + Indicates return component 1 (green). + + + Indicates return component 2 (blue). + + + Indicates return component 3 (alpha). + + + Indicates forcing the resulting value to 0. + + + Indicates forcing the resulting value 1. The value of forcing 1 is either 0x1 or 1.0f depending on the format type for that component in the source format. + + + + Specifies alpha blending parameters for video processing. + Microsoft Docs: + + + + A boolean value specifying whether alpha blending is enabled. + + + The planar alpha value. The value can range from 0.0 (transparent) to 1.0 (opaque). If Enable is FALSe, this parameter is ignored. + + + + Describes a single element for the input-assembler stage of the graphics pipeline. + Microsoft Docs: + + + + The HLSL semantic associated with this element in a shader input-signature. + + + The semantic index for the element. A semantic index modifies a semantic, with an integer index number. A semantic index is only needed in a + case where there is more than one element with the same semantic. For example, a 4x4 matrix would have four components each with the semantic + name matrix, however each of the four component would have different semantic indices (0, 1, 2, and 3). + + + A DXGI_FORMAT-typed value that specifies the format of the element data. + + + An integer value that identifies the input-assembler. For more info, see Input Slots. Valid values are between 0 and 15. + + + Optional. Offset, in bytes, to this element from the start of the vertex. Use D3D12_APPEND_ALIGNED_ELEMENT (0xffffffff) for convenience to define the current element directly + after the previous one, including any packing if necessary. + + + A value that identifies the input data class for a single input slot. + + + The number of instances to draw using the same per-instance data before advancing in the buffer by one element. This value must be 0 for an + element that contains per-vertex data (the slot class is set to the D3D12_INPUT_PER_VERTEX_DATA member of D3D12_INPUT_CLASSIFICATION). + + + + Describes depth-stencil state. + Microsoft Docs: + + + + Specifies whether to enable depth testing. Set this member to TRUE to enable depth testing. + + + A D3D12_DEPTH_WRITE_MASK-typed value that identifies a portion of the depth-stencil buffer that can be modified by depth data. + + + A D3D12_COMPARISON_FUNC-typed value that identifies a function that compares depth data against existing depth data. + + + Specifies whether to enable stencil testing. Set this member to TRUE to enable stencil testing. + + + Identify a portion of the depth-stencil buffer for reading stencil data. + + + Identify a portion of the depth-stencil buffer for writing stencil data. + + + A D3D12_DEPTH_STENCILOP_DESC structure that describes how to use the results of the depth test and the stencil test for pixels whose surface normal is facing towards the camera. + + + A D3D12_DEPTH_STENCILOP_DESC structure that describes how to use the results of the depth test and the stencil test for pixels whose surface normal is facing away from the camera. + + + TRUE to enable depth-bounds testing; otherwise, FALSE. The default value is FALSE. + + + + Identifies the type of resource that will be viewed as a shader resource. + Microsoft Docs: + + + + The type is unknown. + + + The resource is a buffer. + + + The resource is a 1D texture. + + + The resource is an array of 1D textures. + + + The resource is a 2D texture. + + + The resource is an array of 2D textures. + + + The resource is a multisampling 2D texture. + + + The resource is an array of multisampling 2D textures. + + + The resource is a 3D texture. + + + The resource is a cube texture. + + + The resource is an array of cube textures. + + + The resource is a raytracing acceleration structure. + + + + Pop a retrieval filter from the top of the retrieval-filter stack. + Microsoft Docs: + + + + + Identifies whether conservative rasterization is on or off. + Microsoft Docs: + + + + Conservative rasterization is off. + + + Conservative rasterization is on. + + + + Gets a shader-reflection variable by name. + Microsoft Docs: + Variable name. + + + + + Describes the subresources from an array of cube textures to use in a shader-resource view. + Microsoft Docs: + + + + Index of the most detailed mipmap level to use; this number is between 0 and MipLevels (from the original TextureCube for which ID3D12Device::CreateShaderResourceView creates a view) -1. + + + The maximum number of mipmap levels for the view of the texture. See the remarks in D3D12_TEX1D_SRV. + +Set to -1 to indicate all the mipmap levels from MostDetailedMip on down to least detailed. + + + Index of the first 2D texture to use. + + + Number of cube textures in the array. + + + A value to clamp sample LOD values to. For example, if you specify 2.0f for the clamp value, you ensure that no individual sample accesses a mip level less than 2.0f. + + + + Sets a constant in the graphics root signature. + Microsoft Docs: + The slot number for binding. + The source data for the constant to set. + The offset, in 32-bit values, to set the constant in the root signature. + + + + + Specifies input stream arguments for an input stream passed to ID3D12VideoCommandList::ProcessFrames. + Microsoft Docs: + + + + An array of D3D12_VIDEO_PROCESS_INPUT_STREAM structures containing the set of references for video processing. If the stereo format is D3D12_VIDEO_PROCESS_STEREO_FORMAT_SEPARATE, then two sets of input streams must be supplied. For all other stereo formats, the first set of reference must be supplied, and the second should be zero initialized. + + + A D3D12_VIDEO_PROCESS_TRANSFORM structure specifying the flip, rotation, scale and destination translation for the video input. + + + A value from the D3D12_VIDEO_PROCESS_INPUT_STREAM_FLAGS enumeration specifying the options for the input stream. + + + A D3D12_VIDEO_PROCESS_INPUT_STREAM_RATE structure specifying the framerate and input and output indicies for framerate conversion and deinterlacing. + + + The level to apply for each enabled filter. The filter level is specified in the order that filters appear in the D3D12_VIDEO_PROCESS_FILTER_FLAGS enumeration. Specify 0 if a filter is not enabled or the filter index is reserved. + + + A D3D12_VIDEO_PROCESS_ALPHA_BLENDING structure specifying the planar alpha for an input stream on the video processor. + + + + Specifies the immediate value and destination address written using ID3D12CommandList2::WriteBufferImmediate. + Microsoft Docs: + + + + The GPU virtual address at which to write the value. The address must be aligned to a 32-bit (4-byte) boundary. + + + The 32-bit value to write. + + + + Specifies the configuration for video decoding. + Microsoft Docs: + + + + No configuration flags. + + + The height of the output decoded surfaces must be a multiple of 32. + + + The driver supports post processing. If this flag is set, the host decoder can set up post-processing by using the conversion flags in the D3D12_VIDEO_DECODE_CONVERSION_ARGUMENTS. + + + Reference resources must be allocated with the D3D12_RESOURCE_FLAG_VIDEO_DECODE_REFERENCE_ONLY resource flag. References textures must be separate from output textures, similar to performing a format conversion or downscale. This flag must not be set for D3D12_VIDEO_DECODE_TIER_3 or greater. + + + The decode resolution can be changed on a non-key frame. + + + + Describes the allocation size of a video decoder heap. + Microsoft Docs: + + + + A D3D12_VIDEO_DECODER_HEAP_DESC describing a ID3D12VideoDecoderHeap. + + + The allocation size of the video decoder heap in the L0 memory pool. L0 is the physical system memory pool. When the adapter is discrete/NUMA, this pool has greater bandwidth for the CPU and less bandwidth for the GPU. When the adapter is UMA, this pool is the only one which is valid. For more information, see Residency. + + + The allocation size of the video decoder heap in the L1 memory pool. L1 is typically known as the physical video memory pool. L1 is only available when the adapter is discrete/NUMA, and has greater bandwidth for the GPU and cannot even be accessed by the CPU. When the adapter is UMA, this pool is not available. For more information, see Residency. + + + + This method creates a command signature. + Microsoft Docs: + Describes the command signature to be created with the D3D12_COMMAND_SIGNATURE_DESC structure. + Specifies the ID3D12RootSignature that the command signature applies to. + + +The root signature is required if any of the commands in the signature will update bindings on the pipeline. If the only command present is a draw or dispatch, the root signature parameter can be set to NULL. + The globally unique identifier (GUID) for the command signature interface (ID3D12CommandSignature). + The REFIID, or GUID, of the interface to the command signature can be obtained by using the __uuidof() macro. + For example, __uuidof(ID3D12CommandSignature) will get the GUID of the interface to a command signature. + Specifies a pointer, that on successful completion of the method will point to the created command signature (ID3D12CommandSignature). + + + + + Gets info about how a tiled resource is broken into tiles. + Microsoft Docs: + Specifies a tiled ID3D12Resource to get info about. + A pointer to a variable that receives the number of tiles needed to store the entire tiled resource. + A pointer to a D3D12_PACKED_MIP_INFO structure that GetResourceTiling fills with info about how the tiled resource's mipmaps are packed. + Specifies a D3D12_TILE_SHAPE structure that GetResourceTiling fills with info about the tile shape. This is info about how pixels fit in the tiles, independent of tiled resource's dimensions, not including packed mipmaps. If the entire tiled resource is packed, this parameter is meaningless because the tiled resource has no defined layout for packed mipmaps. In this situation, GetResourceTiling sets the members of D3D12_TILE_SHAPE to zeros. + A pointer to a variable that contains the number of tiles in the subresource. On input, this is the number of subresources to query tilings for; on output, this is the number that was actually retrieved at pSubresourceTilingsForNonPackedMips (clamped to what's available). + The number of the first subresource tile to get. GetResourceTiling ignores this parameter if the number that pNumSubresourceTilings points to is 0. + Specifies a D3D12_SUBRESOURCE_TILING structure that GetResourceTiling fills with info about subresource tiles. If subresource tiles are part of packed mipmaps, GetResourceTiling sets the members of D3D12_SUBRESOURCE_TILING to zeros, except the StartTileIndexInOverallResource member, which GetResourceTiling sets to D3D12_PACKED_TILE (0xffffffff). The D3D12_PACKED_TILE constant indicates that the whole D3D12_SUBRESOURCE_TILING structure is meaningless for this situation, and the info that the pPackedMipDesc parameter points to applies. + + + + + Shares a resource (or subresource) between the D3D layers and diagnostics tools. + Microsoft Docs: + A pointer to the resource that contains the final frame contents. This resource is treated as the back buffer of the Present. + An unsigned 32bit subresource id. + If provided, indicates which window the tools should use for displaying additional diagnostic information. + + + + + Describes per-command-list settings used by GPU-Based Validation. + Microsoft Docs: + + + + Specifies a D3D12_GPU_BASED_VALIDATION_SHADER_PATCH_MODE that overrides the default device-level shader patch mode (see ID3D12DebugDevice1::SetDebugParameter). By default this value is initialized to the DefaultShaderPatchMode assigned to the device (see D3D12_DEBUG_DEVICE_GPU_BASED_VALIDATION_SETTINGS. + + + + A state subobject that identifies the GPU nodes to which the state object applies. + Microsoft Docs: + + + + The node mask. + + + + Represents the state of all currently set shaders as well as certain fixed function state objects. + Microsoft Docs: + + + + + Specifies the parameters for the output stream for a video decode operation. + Microsoft Docs: + + + + An ID3D12Resource representing the output texture. If decode conversion is enabled, this texture will contain the post-conversion output. If decode conversion is not enabled, this texture will contain the decode output. + + + The index of the output subresource of pOutputTexture2D to use. This allows you to specify array indices if the output is an array. + + + An optional D3D12_VIDEO_DECODE_CONVERSION_ARGUMENTS structure containing output conversion parameters. + + + An array of D3D12_VIDEO_DECODE_OUTPUT_HISTOGRAM structures that are populated with histogram data. The maximum size of the array is 4. + + + + Defines general properties of a state object. + Microsoft Docs: + + + + A value from the D3D12_STATE_OBJECT_FLAGS flags enumeration that specifies the requirements for the state object. + + + + Represents an application-defined callback used for being notified of lifetime changes of an object. + Microsoft Docs: + + + + + Describes a shader variable. + Microsoft Docs: + + + + The variable name. + + + Offset from the start of the parent structure to the beginning of the variable. + + + Size of the variable (in bytes). + + + A combination of D3D_SHADER_VARIABLE_FLAGS-typed values that are combined by using a bitwise-OR operation. + The resulting value identifies shader-variable properties. + + + The default value for initializing the variable. + Emits default values for reflection. + + + Offset from the start of the variable to the beginning of the texture. + + + The size of the texture, in bytes. + + + Offset from the start of the variable to the beginning of the sampler. + + + The size of the sampler, in bytes. + + + + Specifies whether a video format and colorspace conversion operation is supported. + Microsoft Docs: + + + + The conversion from the source format and colorspace to destination format and colorspace are not supported. + + + The conversion from the source format and colorspace to destination format and colorspace are are supported. + + + + Updates a fence to a specified value. + Microsoft Docs: + A pointer to the ID3D12Fence object. + The value to set the fence to. + + + + + An interface from which ID3D12GraphicsCommandList inherits from. It represents an ordered set of commands that the GPU executes, while allowing for extension to support other command lists than just those for graphics (such as compute and copy). + Microsoft Docs: + + + + + Specifies the type of query. + Microsoft Docs: + + + + Indicates the query is for depth/stencil occlusion counts. + + + Indicates the query is for a binary depth/stencil occlusion statistics. + +This new query type acts like D3D12_QUERY_TYPE_OCCLUSION except that it returns simply a binary 0/1 result: 0 indicates that no samples passed depth and stencil testing, 1 indicates that at least one sample passed depth and stencil testing. This enables occlusion queries to not interfere with any GPU performance optimization associated with depth/stencil testing. + + + Indicates the query is for high definition GPU and CPU timestamps. + + + Indicates the query type is for graphics pipeline statistics, refer to D3D12_QUERY_DATA_PIPELINE_STATISTICS. + + + Stream 0 output statistics. In Direct3D 12 there is no single stream output (SO) overflow query for all the output streams. Apps need to issue multiple single-stream queries, and then correlate the results. Stream output is the ability of the GPU to write vertices to a buffer. The stream output counters monitor progress. + + + Stream 1 output statistics. + + + Stream 2 output statistics. + + + Stream 3 output statistics. + + + Video decode statistics. Refer to D3D12_QUERY_DATA_VIDEO_DECODE_STATISTICS. + +Use this query type to determine if a video was successfully decoded. If decoding fails due to insufficient BitRate or FrameRate parameters set during creation of the decode heap, then the status field of the query is set to D3D12_VIDEO_DECODE_STATUS_RATE_EXCEEDED and the query also contains new BitRate and FrameRate values that would succeed. + +This query type can only be performed on video decode command lists [(D3D12_COMMAND_LIST_TYPE_VIDEO_DECODE)](/windows/desktop/api/d3d12/ne-d3d12-d3d12_command_list_type). This query type does not use [ID3D12VideoDecodeCommandList::BeginQuery](../d3d12video/nf-d3d12video-id3d12videodecodecommandlist-beginquery.md), only [ID3D12VideoDecodeCommandList::EndQuery](../d3d12video/nf-d3d12video-id3d12videodecodecommandlist-endquery.md). Statistics are recorded only for the most recent [ID3D12VideoDecodeCommandList::DecodeFrame](../d3d12video/nf-d3d12video-id3d12videodecodecommandlist-decodeframe.md) call in the same command list. + +Decode status structures are defined by the codec specification. + + + + Resets the state of a direct command list back to the state it was in when the command list was created. + Microsoft Docs: + A pointer to the ID3D12PipelineState object that contains the initial pipeline state for the command list. + + + + + Gets the number of conversion instructions. + Microsoft Docs: + + + + + Specifies the predication operation to apply. + Microsoft Docs: + + + + Enables predication if all 64-bits are zero. + + + Enables predication if at least one of the 64-bits are not zero. + + + + Provides data for calls to ID3D12VideoDevice::CheckFeatureSupport when the feature specified is D3D12_FEATURE_VIDEO_DECODE_HISTOGRAM. + Microsoft Docs: + + + + For single GPU operation, set this to zero. If there are multiple GPU nodes, set a bit to identify the node (the device's physical adapter) to which the command queue applies. Each bit in the mask corresponds to a single node. Only 1 bit may be set. + + + A GUID representing the decode profile for which histogram capabilities will be queried. Get a list of available profile GUIDs by calling [ID3D12VideoDevice::CheckFeatureSupport](nf-d3d12video-id3d12videodevice-checkfeaturesupport.md) when the feature specified is D3D12\_FEATURE\_VIDEO\_DECODE\_PROFILES. + + + The decode width of the source stream. + + + The decode height of the source stream. + + + The DXGI\_FORMAT representing the decode format. + + + A bitwise OR combination of values from the D3D12_VIDEO_DECODE_HISTOGRAM_COMPONENT_FLAGS enumeration specifying the components of a DXGI_FORMAT for which histogram support will be queried. + + + The number of per component bins supported. This value must be greater than or equal to 64 and must be a power of 2 (e.g. 64, 128, 256, 512...). + + + The bit depth of the bin counter. The counter is always stored in a 32-bit value and therefore this value must specify 32 bits or less. The counter is stored in the lower bits of the 32-bit storage. The upper bits are set to zero. If the bin count exceeds this bit depth, the value is set to the maximum counter value. Valid values for CounterBitDepth are 16, 24, and 32. + + + + A state subobject describing an existing collection that can be included in a state object. + Microsoft Docs: + + + + The collection to include in a state object. The enclosing state object holds a reference to the existing collection. + + + Size of the pExports array. If 0, all of the collection’s exports get exported. + + + + Apps perform indirect draws/dispatches using the ExecuteIndirect method. + Microsoft Docs: + Specifies a ID3D12CommandSignature. The data referenced by pArgumentBuffer will be interpreted depending on the contents of the command signature. Refer to Indirect Drawing for the APIs that are used to create a command signature. + There are two ways that command counts can be specified: + +
    +
  • If pCountBuffer is not NULL, then MaxCommandCount specifies the maximum number of operations which will be performed. The actual number of operations to be performed are defined by the minimum of this value, and a 32-bit unsigned integer contained in pCountBuffer (at the byte offset specified by CountBufferOffset). +
  • +
  • If pCountBuffer is NULL, the MaxCommandCount specifies the exact number of operations which will be performed. +
  • +
+ Specifies one or more ID3D12Resource objects, containing the command arguments. + Specifies an offset into pArgumentBuffer to identify the first command argument. + Specifies a pointer to a ID3D12Resource. + Specifies a UINT64 that is the offset into pCountBuffer, identifying the argument count. +
+
+ + + Ends a running query. + Microsoft Docs: + Specifies the ID3D12QueryHeap containing the query. + Specifies one member of D3D12_QUERY_TYPE. + Specifies the index of the query in the query heap. + + + + + Specifies blend factors, which modulate values for the pixel shader and render target. + Microsoft Docs: + + + + The blend factor is (0, 0, 0, 0). No pre-blend operation. + + + The blend factor is (1, 1, 1, 1). No pre-blend operation. + + + The blend factor is (Rₛ, Gₛ, Bₛ, Aₛ), that is color data (RGB) from a pixel shader. No pre-blend operation. + + + The blend factor is (1 - Rₛ, 1 - Gₛ, 1 - Bₛ, 1 - Aₛ), that is color data (RGB) from a pixel shader. The pre-blend operation inverts the data, generating 1 - RGB. + + + The blend factor is (Aₛ, Aₛ, Aₛ, Aₛ), that is alpha data (A) from a pixel shader. No pre-blend operation. + + + The blend factor is ( 1 - Aₛ, 1 - Aₛ, 1 - Aₛ, 1 - Aₛ), that is alpha data (A) from a pixel shader. The pre-blend operation inverts the data, generating 1 - A. + + + The blend factor is (Ad Ad Ad Ad), that is alpha data from a render target. No pre-blend operation. + + + The blend factor is (1 - Ad 1 - Ad 1 - Ad 1 - Ad), that is alpha data from a render target. The pre-blend operation inverts the data, generating 1 - A. + + + The blend factor is (Rd, Gd, Bd, Ad), that is color data from a render target. No pre-blend operation. + + + The blend factor is (1 - Rd, 1 - Gd, 1 - Bd, 1 - Ad), that is color data from a render target. The pre-blend operation inverts the data, generating 1 - RGB. + + + The blend factor is (f, f, f, 1); where f = min(Aₛ, 1 + - Ad). The pre-blend operation clamps the data to 1 or less. + + + The blend factor is the blend factor set with ID3D12GraphicsCommandList::OMSetBlendFactor. No pre-blend operation. + + + The blend factor is the blend factor set with ID3D12GraphicsCommandList::OMSetBlendFactor. The pre-blend operation inverts the blend factor, generating 1 - blend_factor. + + + The blend factor is data sources both as color data output by a pixel shader. There is no pre-blend operation. This blend factor supports dual-source color blending. + + + The blend factor is data sources both as color data output by a pixel shader. The pre-blend operation inverts the data, generating 1 - RGB. This blend factor supports dual-source color blending. + + + The blend factor is data sources as alpha data output by a pixel shader. There is no pre-blend operation. This blend factor supports dual-source color blending. + + + The blend factor is data sources as alpha data output by a pixel shader. The pre-blend operation inverts the data, generating 1 - A. This blend factor supports dual-source color blending. + + + + Retrieves the unique identifier for a shader that can be used in a shader record. + Microsoft Docs: + Entrypoint in the state object for which to retrieve an identifier. + + + + + Specifies the border color for a static sampler. + Microsoft Docs: + + + + Indicates black, with the alpha component as fully transparent. + + + Indicates black, with the alpha component as fully opaque. + + + Indicates white, with the alpha component as fully opaque. + + + + Specifies filtering options during texture sampling. + Microsoft Docs: + + + + Use point sampling for minification, magnification, and mip-level sampling. + + + Use point sampling for minification and magnification; use linear interpolation for mip-level sampling. + + + Use point sampling for minification; use linear interpolation for magnification; use point sampling for mip-level sampling. + + + Use point sampling for minification; use linear interpolation for magnification and mip-level sampling. + + + Use linear interpolation for minification; use point sampling for magnification and mip-level sampling. + + + Use linear interpolation for minification; use point sampling for magnification; use linear interpolation for mip-level sampling. + + + Use linear interpolation for minification and magnification; use point sampling for mip-level sampling. + + + Use linear interpolation for minification, magnification, and mip-level sampling. + + + Use anisotropic interpolation for minification, magnification, and mip-level sampling. + + + Use point sampling for minification, magnification, and mip-level sampling. Compare the result to the comparison value. + + + Use point sampling for minification and magnification; use linear interpolation for mip-level sampling. Compare the result to the comparison value. + + + Use point sampling for minification; use linear interpolation for magnification; use point sampling for mip-level sampling. Compare the result to the comparison value. + + + Use point sampling for minification; use linear interpolation for magnification and mip-level sampling. Compare the result to the comparison value. + + + Use linear interpolation for minification; use point sampling for magnification and mip-level sampling. Compare the result to the comparison value. + + + Use linear interpolation for minification; use point sampling for magnification; use linear interpolation for mip-level sampling. Compare the result to the comparison value. + + + Use linear interpolation for minification and magnification; use point sampling for mip-level sampling. Compare the result to the comparison value. + + + Use linear interpolation for minification, magnification, and mip-level sampling. Compare the result to the comparison value. + + + Use anisotropic interpolation for minification, magnification, and mip-level sampling. Compare the result to the comparison value. + + + Fetch the same set of texels as D3D12_FILTER_MIN_MAG_MIP_POINT and instead of filtering them return the minimum of the texels. Texels that are weighted 0 during filtering aren't counted towards the minimum. You can query support for this filter type from the MinMaxFiltering member in the D3D11_FEATURE_DATA_D3D11_OPTIONS1 structure. + + + Fetch the same set of texels as D3D12_FILTER_MIN_MAG_POINT_MIP_LINEAR and instead of filtering them return the minimum of the texels. Texels that are weighted 0 during filtering aren't counted towards the minimum. You can query support for this filter type from the MinMaxFiltering member in the D3D11_FEATURE_DATA_D3D11_OPTIONS1 structure. + + + Fetch the same set of texels as D3D12_FILTER_MIN_POINT_MAG_LINEAR_MIP_POINT and instead of filtering them return the minimum of the texels. Texels that are weighted 0 during filtering aren't counted towards the minimum. You can query support for this filter type from the MinMaxFiltering member in the D3D11_FEATURE_DATA_D3D11_OPTIONS1 structure. + + + Fetch the same set of texels as D3D12_FILTER_MIN_POINT_MAG_MIP_LINEAR and instead of filtering them return the minimum of the texels. Texels that are weighted 0 during filtering aren't counted towards the minimum. You can query support for this filter type from the MinMaxFiltering member in the D3D11_FEATURE_DATA_D3D11_OPTIONS1 structure. + + + Fetch the same set of texels as D3D12_FILTER_MIN_LINEAR_MAG_MIP_POINT and instead of filtering them return the minimum of the texels. Texels that are weighted 0 during filtering aren't counted towards the minimum. You can query support for this filter type from the MinMaxFiltering member in the D3D11_FEATURE_DATA_D3D11_OPTIONS1 structure. + + + Fetch the same set of texels as D3D12_FILTER_MIN_LINEAR_MAG_POINT_MIP_LINEAR and instead of filtering them return the minimum of the texels. Texels that are weighted 0 during filtering aren't counted towards the minimum. You can query support for this filter type from the MinMaxFiltering member in the D3D11_FEATURE_DATA_D3D11_OPTIONS1 structure. + + + Fetch the same set of texels as D3D12_FILTER_MIN_MAG_LINEAR_MIP_POINT and instead of filtering them return the minimum of the texels. Texels that are weighted 0 during filtering aren't counted towards the minimum. You can query support for this filter type from the MinMaxFiltering member in the D3D11_FEATURE_DATA_D3D11_OPTIONS1 structure. + + + Fetch the same set of texels as D3D12_FILTER_MIN_MAG_MIP_LINEAR and instead of filtering them return the minimum of the texels. Texels that are weighted 0 during filtering aren't counted towards the minimum. You can query support for this filter type from the MinMaxFiltering member in the D3D11_FEATURE_DATA_D3D11_OPTIONS1 structure. + + + Fetch the same set of texels as D3D12_FILTER_ANISOTROPIC and instead of filtering them return the minimum of the texels. Texels that are weighted 0 during filtering aren't counted towards the minimum. You can query support for this filter type from the MinMaxFiltering member in the D3D11_FEATURE_DATA_D3D11_OPTIONS1 structure. + + + Fetch the same set of texels as D3D12_FILTER_MIN_MAG_MIP_POINT and instead of filtering them return the maximum of the texels. Texels that are weighted 0 during filtering aren't counted towards the maximum. You can query support for this filter type from the MinMaxFiltering member in the D3D11_FEATURE_DATA_D3D11_OPTIONS1 structure. + + + Fetch the same set of texels as D3D12_FILTER_MIN_MAG_POINT_MIP_LINEAR and instead of filtering them return the maximum of the texels. Texels that are weighted 0 during filtering aren't counted towards the maximum. You can query support for this filter type from the MinMaxFiltering member in the D3D11_FEATURE_DATA_D3D11_OPTIONS1 structure. + + + Fetch the same set of texels as D3D12_FILTER_MIN_POINT_MAG_LINEAR_MIP_POINT and instead of filtering them return the maximum of the texels. Texels that are weighted 0 during filtering aren't counted towards the maximum. You can query support for this filter type from the MinMaxFiltering member in the D3D11_FEATURE_DATA_D3D11_OPTIONS1 structure. + + + Fetch the same set of texels as D3D12_FILTER_MIN_POINT_MAG_MIP_LINEAR and instead of filtering them return the maximum of the texels. Texels that are weighted 0 during filtering aren't counted towards the maximum. You can query support for this filter type from the MinMaxFiltering member in the D3D11_FEATURE_DATA_D3D11_OPTIONS1 structure. + + + Fetch the same set of texels as D3D12_FILTER_MIN_LINEAR_MAG_MIP_POINT and instead of filtering them return the maximum of the texels. Texels that are weighted 0 during filtering aren't counted towards the maximum. You can query support for this filter type from the MinMaxFiltering member in the D3D11_FEATURE_DATA_D3D11_OPTIONS1 structure. + + + Fetch the same set of texels as D3D12_FILTER_MIN_LINEAR_MAG_POINT_MIP_LINEAR and instead of filtering them return the maximum of the texels. Texels that are weighted 0 during filtering aren't counted towards the maximum. You can query support for this filter type from the MinMaxFiltering member in the D3D11_FEATURE_DATA_D3D11_OPTIONS1 structure. + + + Fetch the same set of texels as D3D12_FILTER_MIN_MAG_LINEAR_MIP_POINT and instead of filtering them return the maximum of the texels. Texels that are weighted 0 during filtering aren't counted towards the maximum. You can query support for this filter type from the MinMaxFiltering member in the D3D11_FEATURE_DATA_D3D11_OPTIONS1 structure. + + + Fetch the same set of texels as D3D12_FILTER_MIN_MAG_MIP_LINEAR and instead of filtering them return the maximum of the texels. Texels that are weighted 0 during filtering aren't counted towards the maximum. You can query support for this filter type from the MinMaxFiltering member in the D3D11_FEATURE_DATA_D3D11_OPTIONS1 structure. + + + Fetch the same set of texels as D3D12_FILTER_ANISOTROPIC and instead of filtering them return the maximum of the texels. Texels that are weighted 0 during filtering aren't counted towards the maximum. You can query support for this filter type from the MinMaxFiltering member in the D3D11_FEATURE_DATA_D3D11_OPTIONS1 structure. + + + + Provides methods to monitor and debug a command list. + Microsoft Docs: + + + + + Describes the blend state. + Microsoft Docs: + + + + Specifies whether to use alpha-to-coverage as a multisampling technique when setting a pixel to a render target. For more info about using alpha-to-coverage, see Alpha-To-Coverage. + + + Specifies whether to enable independent blending in simultaneous render targets. Set to TRUE to enable independent blending. If set to FALSE, only the RenderTarget[0] members are used; RenderTarget[1..7] are ignored. + +See the Remarks section for restrictions. + + + An array of D3D12_RENDER_TARGET_BLEND_DESC structures that describe the blend states for render targets; these correspond to the eight render targets that can be bound to the output-merger stage at one time. + + + + An interface from which many other core interfaces inherit from. It indicates that the object type encapsulates some amount of GPU-accessible memory; but does not strongly indicate whether the application can manipulate the object's residency. + Microsoft Docs: + + + + + Adds support for video extension commands. + Microsoft Docs: + + + + + Copies mappings from a source reserved resource to a destination reserved resource. + Microsoft Docs: + A pointer to the destination reserved resource. + A pointer to a + D3D12_TILED_RESOURCE_COORDINATE structure that describes the starting coordinates of the destination reserved resource. + A pointer to the source reserved resource. + A pointer to a D3D12_TILED_RESOURCE_COORDINATE structure that describes the starting coordinates of the source reserved resource. + A pointer to a D3D12_TILE_REGION_SIZE structure that describes the size of the reserved region. + One member of D3D12_TILE_MAPPING_FLAGS. + + + + + Specifies logical operations to configure for a render target. + Microsoft Docs: + + + + Clears the render target (0). + + + Sets the render target ( 1). + + + Copys the render target (s source from Pixel Shader output). + + + Performs an inverted-copy of the render target (~s). + + + No operation is performed on the render target (d destination in the Render Target View). + + + Inverts the render target (~d). + + + Performs a logical AND operation on the render target (s & d). + + + Performs a logical NAND operation on the render target (~(s & d)). + + + Performs a logical OR operation on the render target (s | d). + + + Performs a logical NOR operation on the render target (~(s | d)). + + + Performs a logical XOR operation on the render target (s ^ d). + + + Performs a logical equal operation on the render target (~(s ^ d)). + + + Performs a logical AND and reverse operation on the render target (s & ~d). + + + Performs a logical AND and invert operation on the render target (~s & d). + + + Performs a logical OR and reverse operation on the render target (s | ~d). + + + Performs a logical OR and invert operation on the render target (~s | d). + + + + Get a message from the message queue. + Microsoft Docs: + Index into message queue after an optional retrieval filter has been applied. This can be between 0 and the number of messages in the message queue that pass through the retrieval filter (which can be obtained with GetNumStoredMessagesAllowedByRetrievalFilter). 0 is the message at the front of the message queue. + Returned message. + Size of pMessage in bytes. + + + + + Describes the subresources involved in resolving at the conclusion of a render pass. + Microsoft Docs: + + + + A UINT. The source subresource. + + + A UINT. The destination subresource. + + + A UINT. The x coordinate within the destination subresource. + + + A UINT. The y coordinate within the destination subresource. + + + A D3D12_RECT. The rectangle within the source subresource. + + + + Creates a resource that is placed in a specific heap. Placed resources are the lightest weight resource objects available, and are the fastest to create and destroy. + Microsoft Docs: + A pointer to the ID3D12Heap interface that represents the heap in which the resource is placed. + The offset, in bytes, to the resource. The HeapOffset must be a multiple of the resource's alignment, and HeapOffset plus the resource size must be smaller than or equal to the heap size. GetResourceAllocationInfo must be used to understand the sizes of texture resources. + A pointer to a D3D12_RESOURCE_DESC structure that describes the resource. + The initial state of the resource, as a bitwise-OR'd combination of D3D12_RESOURCE_STATES enumeration constants. + +When a resource is created together with a D3D12_HEAP_TYPE_UPLOAD heap, InitialState must be D3D12_RESOURCE_STATE_GENERIC_READ. When a resource is created together with a D3D12_HEAP_TYPE_READBACK heap, InitialState must be D3D12_RESOURCE_STATE_COPY_DEST. + Specifies a D3D12_CLEAR_VALUE that describes the default value for a clear color. + +pOptimizedClearValue specifies a value for which clear operations are most optimal. When the created resource is a texture with either the D3D12_RESOURCE_FLAG_ALLOW_RENDER_TARGET or D3D12_RESOURCE_FLAG_ALLOW_DEPTH_STENCIL flags, your application should choose the value that the clear operation will most commonly be called with. + +Clear operations can be called with other values, but those operations will not be as efficient as when the value matches the one passed into resource creation. + +pOptimizedClearValue must be NULL when used with D3D12_RESOURCE_DIMENSION_BUFFER. + The globally unique identifier (GUID) for the resource interface. This is an input parameter. + +The REFIID, or GUID, of the interface to the resource can be obtained by using the __uuidof macro. For example, __uuidof(ID3D12Resource) gets the GUID of the interface to a resource. Although riid is, most commonly, the GUID for ID3D12Resource, it may be any GUID for any interface. If the resource object doesn't support the interface for this GUID, then creation fails with E_NOINTERFACE. + A pointer to a memory block that receives a pointer to the resource. ppvResource can be NULL, to enable capability testing. When ppvResource is NULL, no object will be created and S_FALSE will be returned when pResourceDesc and other parameters are valid. + + + + + Creates a command queue. + Microsoft Docs: + Specifies a D3D12_COMMAND_QUEUE_DESC that describes the command queue. + The globally unique identifier (GUID) for the command queue interface. See remarks. An input parameter. + A pointer to a memory block that receives a pointer to the ID3D12CommandQueue interface for the command queue. + + + + + Specifies the level of ray tracing support on the graphics device. + Microsoft Docs: + + + + No support for ray tracing on the device. Attempts to create any ray tracing-related object will fail, and using ray tracing-related APIs on command lists results in undefined behavior. + + + The device supports tier 1 ray tracing functionality. In the current release, this tier represents all available ray tracing features. + + + + Describes how a shader resource is bound to a shader input. + Microsoft Docs: + + + + Name of the shader resource. + + + A D3D_SHADER_INPUT_TYPE-typed value that identifies the type of data in the resource. + + + Starting bind point. + + + Number of contiguous bind points for arrays. + + + A combination of D3D_SHADER_INPUT_FLAGS-typed values for shader input-parameter options. + + + If the input is a texture, the D3D_RESOURCE_RETURN_TYPE-typed value that identifies the return type. + + + A D3D_SRV_DIMENSION-typed value that identifies the dimensions of the bound resource. + + + The number of samples for a multisampled texture; when a texture isn't multisampled, the value is set to -1 (0xFFFFFFFF). + This is zero if the shader resource is not a recognized texture. + + + The register space. + + + The range ID in the bytecode. + + + + Gets a shader-reflection-variable type by index. + Microsoft Docs: + Zero-based index. + + + + + Gets a resource layout that can be copied. Helps the app fill-in D3D12_PLACED_SUBRESOURCE_FOOTPRINT and D3D12_SUBRESOURCE_FOOTPRINT when suballocating space in upload heaps. + Microsoft Docs: + A description of the resource, as a pointer to a D3D12_RESOURCE_DESC structure. + Index of the first subresource in the resource. + The range of valid values is 0 to D3D12_REQ_SUBRESOURCES. + The number of subresources in the resource. The range of valid values is 0 to (D3D12_REQ_SUBRESOURCES - FirstSubresource). + The offset, in bytes, to the resource. + A pointer to an array (of length NumSubresources) of + D3D12_PLACED_SUBRESOURCE_FOOTPRINT structures, to be filled with the description and placement of each subresource. + A pointer to an array (of length NumSubresources) of integer variables, to be filled with the number of rows for each subresource. + A pointer to an array (of length NumSubresources) of integer variables, each entry to be filled with the unpadded size in bytes of a row, of each subresource. + + +For example, if a Texture2D resource has a width of 32 and bytes per pixel of 4, + +then pRowSizeInBytes returns 128. + +pRowSizeInBytes should not be confused with row pitch, as examining pLayouts and getting the row pitch from that will give you 256 as it is aligned to D3D12_TEXTURE_DATA_PITCH_ALIGNMENT. + A pointer to an integer variable, to be filled with the total size, in bytes. + + + + + Reports information about a device object's lifetime. + Microsoft Docs: + A value from the D3D12_RLDO_FLAGS enumeration. + This method uses the value in Flags to determine the amount of information to report about a device object's lifetime. + + + + + An interface used to turn on the debug layer. + Microsoft Docs: + + + + + Gets a variable by name. + Microsoft Docs: + A pointer to a string containing the variable name. + + + + + Defines priority levels for a command queue. + Microsoft Docs: + + + + Normal priority. + + + High priority. + + + Global realtime priority. + + + + An interface from which ID3D12Device and ID3D12DeviceChild inherit from. It provides methods to associate private data and annotate object names. + Microsoft Docs: + + + + + Executes a bundle. + Microsoft Docs: + Specifies the ID3D12GraphicsCommandList that determines the bundle to be executed. + + + + + Describes how the locations of elements are identified. + Microsoft Docs: + + + + For a data set of n elements, the pointer parameter points to the start of n elements in memory. + + + For a data set of n elements, the pointer parameter points to an array of n pointers in memory, each pointing to an individual element of the set. + + + + Represents a Direct3D 12 video decoder. + Microsoft Docs: + + + + + Updates mappings of tile locations in reserved resources to memory locations in a resource heap. + Microsoft Docs: + A pointer to the reserved resource. + The number of reserved resource regions. + An array of D3D12_TILED_RESOURCE_COORDINATE structures that describe the starting coordinates of the reserved resource regions. The NumResourceRegions parameter specifies the number of D3D12_TILED_RESOURCE_COORDINATE structures in the array. + An array of D3D12_TILE_REGION_SIZE structures that describe the sizes of the reserved resource regions. The NumResourceRegions parameter specifies the number of D3D12_TILE_REGION_SIZE structures in the array. + A pointer to the resource heap. + The number of tile ranges. + A pointer to an array of D3D12_TILE_RANGE_FLAGS values that describes each tile range. The NumRanges parameter specifies the number of values in the array. + An array of offsets into the resource heap. These are 0-based tile offsets, counting in tiles (not bytes). + An array of tiles. + An array of values that specify the number of tiles in each tile range. The NumRanges parameter specifies the number of values in the array. + A combination of D3D12_TILE_MAPPING_FLAGS values that are combined by using a bitwise OR operation. + + + + + This method enables you to change the depth bounds dynamically. + Microsoft Docs: + SAL: _In_ + +Specifies the minimum depth bounds. The default value is 0. NaN values silently convert to 0. + SAL: _In_ + +Specifies the maximum depth bounds. The default value is 1. NaN values silently convert to 0. + + + + + Associates a subobject defined directly in a state object with shader exports. + Microsoft Docs: + + + + Pointer to the subobject in current state object to define an association to. + + + Size of the pExports array. If 0, this is being explicitly defined as a default association. Another way to define a default association is to omit this subobject association for that subobject completely. + + + The array of exports with which the subobject is associated. + + + + Gets a constant buffer by name for a function. + Microsoft Docs: + The constant-buffer name. + + + + + A shader resource view (SRV) structure for storing a raytracing acceleration structure. + Microsoft Docs: + + + + The GPU virtual address of the SRV. + + + + Retrieves the fence for the protected session. From the fence, you can retrieve the current uniqueness validity value (using ID3D12Fence::GetCompletedValue), and add monitors for changes to its value. This is a read-only fence. + Microsoft Docs: + The GUID of the interface to a fence. Most commonly, ID3D12Fence, although it may be any GUID for any interface. If the protected session object doesn’t support the interface for this GUID, the function returns E_NOINTERFACE. + A pointer to a memory block that receives a pointer to the fence for the given protected session. + + + + + Specifies the output parameters for calls to ID3D12VideoEncodeCommandList::EstimateMotion. + Microsoft Docs: + + + + An ID3D12VideoMotionVectorHeap containing the resolved motion estimation vectors. Motion vectors are resolved to a DXGI_FORMAT_R16G16_SINT 2D texture. The resolved data is a signed 16-byte integer with quarter PEL units with the X vector component stored in the R component and the Y vector component stored in the G component. Motion vectors are stored in a 2D layout that corresponds to the pixel layout of the original input textures. + + + + Not intended to be called directly.  Use the PIX event runtime to insert events into a command queue. + Microsoft Docs: + + + + + Specifies the automatic processing features that a video processor can support. + Microsoft Docs: + + + + No automatic processing features are supported. + + + Denoise is supported. + + + Deringing is supported. + + + Edge enhancement is supported. + + + Color correction is supported. + + + Flesh tone mapping is supported. + + + Image stabilization is supported. + + + Enhanced image resolution is supported. + + + Anamorphic scaling is supported. + + + Additional processing features, not described by the other flags, are available. + + + + Specifies options for determining quality levels. + Microsoft Docs: + + + + No options are supported. + + + The number of quality levels can be determined for tiled resources. + + + + Describes the subresources from an array of multi sampled 2D textures for a depth-stencil view. + Microsoft Docs: + + + + The index of the first texture to use in an array of textures. + + + Number of textures to use. + + + + Copies tiles from buffer to tiled resource or vice versa. + Microsoft Docs: + A pointer to a tiled resource. + A pointer to a + D3D12_TILED_RESOURCE_COORDINATE structure that describes the starting coordinates of the tiled resource. + A pointer to a D3D12_TILE_REGION_SIZE structure that describes the size of the tiled region. + A pointer to an ID3D12Resource that represents a default, dynamic, or staging buffer. + The offset in bytes into the buffer at pBuffer to start the operation. + A combination of D3D12_TILE_COPY_FLAGS-typed values that are combined by using a bitwise OR operation and that identifies how to copy tiles. + + + + + Encapsulates a list of graphics commands for video processing. + Microsoft Docs: + + + + + Describes a memory range. + Microsoft Docs: + + + + The offset, in bytes, denoting the beginning of a memory range. + + + The offset, in bytes, denoting the end of a memory range. + End is one-past-the-end. + + + + Opens a handle for shared resources, shared heaps, and shared fences, by using Name and Access. + Microsoft Docs: + The name that was optionally passed as the Name parameter in the call to + ID3D12Device::CreateSharedHandle. + The access level that was specified in the Access parameter in the call to + ID3D12Device::CreateSharedHandle. + Pointer to the shared handle. + + + + + Adds the input PSO to an internal database with the corresponding name. + Microsoft Docs: + Specifies a unique name for the library. Overwriting is not supported. + Specifies the ID3D12PipelineState to add. + + + + + Creates a device that represents the display adapter. + Microsoft Docs: + A pointer to the video adapter to use when creating a device. + Pass NULL to use the default adapter, which is the first adapter that is enumerated by IDXGIFactory1::EnumAdapters. + + +
Note  Don't mix the use of DXGI 1.0 (IDXGIFactory) and DXGI 1.1 (IDXGIFactory1) in an application. + Use IDXGIFactory or IDXGIFactory1, but not both in an application. +
+
 
+ The minimum D3D_FEATURE_LEVEL required for successful device creation. + The globally unique identifier (GUID) for the device interface. + This parameter, and ppDevice, can be addressed with the single macro + IID_PPV_ARGS. + A pointer to a memory block that receives a pointer to the device. Pass NULL to test if device creation would succeed, but to not actually create the device. If NULL is passed and device creation would succeed, S_FALSE is returned. +
+
+ + + Bind information about the primitive type, and data order that describes input data for the input assembler stage. + Microsoft Docs: + The type of primitive and ordering of the primitive data (see D3D_PRIMITIVE_TOPOLOGY). + + + + + Provides methods for getting information about the parameters to the call to ID3D12VideoDevice::CreateVideoProcessor that created the video processor. + Microsoft Docs: + + + + + Describes the tile structure of a tiled resource with mipmaps. + Microsoft Docs: + + + + The number of standard mipmaps in the tiled resource. + + + The number of packed mipmaps in the tiled resource. + + +This number starts from the least detailed mipmap (either sharing tiles or using non standard tile layout). + This number is 0 if no such packing is in the resource. + For array surfaces, this value is the number of mipmaps that are packed for a given array slice where each array slice repeats the same packing. + + +On Tier_2 tiled resources hardware, mipmaps that fill at least one standard shaped tile in all dimensions are not allowed to be included in the set of packed mipmaps. + On Tier_1 hardware, mipmaps that are an integer multiple of one standard shaped tile in all dimensions are not allowed to be included in the set of packed mipmaps. + Mipmaps with at least one dimension less than the standard tile shape may or may not be packed. + When a given mipmap needs to be packed, all coarser mipmaps for a given array slice are considered packed as well. + + + The number of tiles for the packed mipmaps in the tiled resource. + + +If there is no packing, this value is meaningless and is set to 0. + Otherwise, it is set to the number of tiles that are needed to represent the set of packed mipmaps. + The pixel layout within the packed mipmaps is hardware specific. + If apps define only partial mappings for the set of tiles in packed mipmaps, read and write behavior is vendor specific and undefined. + For arrays, this value is only the count of packed mipmaps within the subresources for each array slice. + + + The offset of the first packed tile for the resource in the overall range of tiles. + If NumPackedMips is 0, this value is meaningless and is 0. + Otherwise, it is the offset of the first packed tile for the resource in the overall range of tiles for the resource. + A value of 0 for StartTileIndexInOverallResource means the entire resource is packed. + For array surfaces, this is the offset for the tiles that contain the packed mipmaps for the first array slice. + Packed mipmaps for each array slice in arrayed surfaces are at this offset past the beginning of the tiles for each array slice. + + +
Note  The number of overall tiles, packed or not, for a given array slice is simply the total number of tiles for the resource divided by the resource's array size, + so it is easy to locate the range of tiles for any given array slice, out of which StartTileIndexInOverallResource identifies which of those are packed. +
+
 
+
+ + + Defines constants used in the D3D12_DEVICE_REMOVED_EXTENDED_DATA structure to specify control flags for the Direct3D runtime. + Microsoft Docs: + + + + Typically specifies that Device Removed Extended Data (DRED) is disabled, except for when user-initiated feedback is used to produce a repro, or when otherwise enabled by Windows via automatic detection of process-instability issues. This is the default value. + + + Forces DRED to be enabled, regardless of the system state. + + + Disables DRED auto breadcrumbs. + + + + Specifies a Direct3D 12 video feature or feature set to query about. + Microsoft Docs: + + + + Check if a decode profile, bitstream encryption, resolution, and format are supported. The result is a D3D12_VIDEO_DECODE_TIER indicating the level of support. The associated data structure is D3D12_FEATURE_DATA_VIDEO_DECODE_SUPPORT. + + + Retrieve the list of decode profiles supported by the adapter. Call CheckFeatureSupport specifying the feature D3D12_FEATURE_VIDEO_DECODE_PROFILE_COUNT to get the number of profiles before calling CheckFeatureSupport for the D3D12_FEATURE_VIDEO_DECODE_PROFILES feature. The associated data structure is D3D12_FEATURE_DATA_VIDEO_DECODE_PROFILES. + + + Retrieves the list of supported decode formats for a D3D12_VIDEO_DECODE_CONFIGURATION. Call CheckFeatureSupport specifying the feature D3D12_FEATURE_VIDEO_DECODE_FORMAT_COUNT to get the number of profiles before calling CheckFeatureSupport for the D3D12_FEATURE_VIDEO_DECODE_PROFILES feature.The associated data structure is D3D12_FEATURE_DATA_VIDEO_DECODE_FORMATS. + + + Check if a colorspace conversion, format conversion, and scale are supported. The associated data structure is D3D12_FEATURE_DATA_VIDEO_DECODE_CONVERSION_SUPPORT. + + + Retrieves the video processor capabilities. The associated data structure is D3D12_FEATURE_DATA_VIDEO_PROCESS_SUPPORT. + + + Retrieves the maximum number of streams that can be enabled at the same time. The associated data structure is D3D12_FEATURE_DATA_VIDEO_PROCESS_MAX_INPUT_STREAMS. + + + Retrieves the number of past and future frames required for a given deinterlace mode, filters, frame rate conversion, and features. The associated data structure is D3D12_FEATURE_DATA_VIDEO_PROCESS_REFERENCE_INFO. + + + Checks the allocation size of a video decoder heap. The associated data structure is D3D12_FEATURE_DATA_VIDEO_DECODER_HEAP_SIZE. For information on residency budgeting for heaps, see Residency. + + + Checks the allocation size of a video processor heap. The associated data structure is D3D12_FEATURE_DATA_VIDEO_PROCESSOR_SIZE. For information on residency budgeting for heaps, see Residency. + + + Retrieves the number of supported decoder profiles. The returned count is used when querying for D3D12_FEATURE_VIDEO_DECODE_PROFILES. + + + Retrieves the number of supported decoder profiles. The returned count is used when querying for D3D12_FEATURE_VIDEO_DECODE_FORMATS. + + + Indicates if the video engine is IO coherent with the CPU. + + + Retrieves the supported components, bin count, and counter bit depth for the a decode histogram with the specified decode profile, resolution, and format. The associated data structure is D3D12_FEATURE_DATA_VIDEO_DECODE_HISTOGRAM. + + + Retrieves the supported resolutions, search block sizes, and precision for motion estimation. The associated data structure is D3D12_FEATURE_DATA_VIDEO_MOTION_ESTIMATOR. + + + Checks the allocation size of a motion estimator heap. The associated data structure is D3D12_FEATURE_DATA_VIDEO_MOTION_ESTIMATOR_SIZE. + + + Retrieves the supported number of video extension commands. The associated data structure is D3D12_FEATURE_DATA_VIDEO_EXTENSION_COMMAND_COUNT. + + + Retrieves a list of D3D12_VIDEO_EXTENSION_COMMAND_INFO structures describing video extension commands. The associated data structure is D3D12_FEATURE_DATA_VIDEO_EXTENSION_COMMAND_COUNT. + + + Retrieves the parameter count for the specified parameter stage. The associated data structure is D3D12_FEATURE_DATA_VIDEO_EXTENSION_COMMAND_PARAMETER_COUNT. + + + Retrieves a list of D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_INFO structures describing video extension command parameters for the specified parameter stage. The associated data structure is D3D12_FEATURE_DATA_VIDEO_EXTENSION_COMMAND_PARAMETERS. + + + Queries for command-defined support information. The associated data structure is D3D12_FEATURE_DATA_VIDEO_EXTENSION_COMMAND_SUPPORT. + + + Checks the allocation size of a video extension command. The associated data structure is D3D12_FEATURE_DATA_VIDEO_EXTENSION_COMMAND_SIZE. + + + Checks support for motion estimation with protected resources. The associated data structure is D3D12_FEATURE_DATA_VIDEO_MOTION_ESTIMATOR_PROTECTED_RESOURCES. + + + + Contains a pointer to the head of a linked list of D3D12_AUTO_BREADCRUMB_NODE objects. + Microsoft Docs: + + + + A pointer to a constant D3D12_AUTO_BREADCRUMB_NODE object representing the head of a linked list of auto-breadcrumb nodes, or nullptr if the list is empty. + + + + Gets a debug interface. + Microsoft Docs: + The globally unique identifier (GUID) for the debug interface. + The REFIID, or GUID, of the debug interface can be obtained by using the __uuidof() macro. + For example, __uuidof(ID3D12Debug) will get the GUID of the debug interface. + The debug interface, as a pointer to pointer to void. + See + ID3D12Debugand + ID3D12DebugDevice. + + + + + Defines constants that specify protected session status. + Microsoft Docs: + + + + Indicates that the protected session is in a valid state. + + + Indicates that the protected session is not in a valid state. + + + + Defines constants that specify what should be done with the results of earlier workload instrumentation. + Microsoft Docs: + + + + The default setting. Specifies that all results should be kept. + + + Specifies that the driver has seen all the data that it's ever going to, so it should stop waiting for more and go ahead compiling optimized shaders. + + + Like D3D12_MEASUREMENTS_ACTION_COMMIT_RESULTS, but also specifies that your application doesn't care about glitches, so the runtime should ignore the usual idle priority rules and go ahead using as many threads as possible to get shader recompiles done fast. Available only in Developer mode. + + + Specifies that the optimization state should be reset; hinting that whatever has previously been measured no longer applies. + + + + Identifies unordered-access view options. + Microsoft Docs: + + + + The view type is unknown. + + + View the resource as a buffer. + + + View the resource as a 1D texture. + + + View the resource as a 1D texture array. + + + View the resource as a 2D texture. + + + View the resource as a 2D texture array. + + + View the resource as a 3D texture array. + + + + Turns the debug features for a command list on or off. + Microsoft Docs: + A combination of feature-mask flags that are combined by using a bitwise OR operation. If a flag is present, that feature will be set to on, otherwise the feature will be set to off. + + + + + Describes a sub-pixel sample position for use with programmable sample positions. + Microsoft Docs: + + + + A signed sub-pixel coordinate value in the X axis. + + + A signed sub-pixel coordinate value in the Y axis. + + + + Gets the GPU descriptor handle that represents the start of the heap. + Microsoft Docs: + + + + + Specifies multiple wait flags for multiple fences. + Microsoft Docs: + + + + No flags are being passed. This means to use the default behavior, which is to wait for all fences before signaling the event. + + + Modifies behavior to indicate that the event should be signaled after any one of the fence values has been reached by its corresponding fence. + + + An alias for D3D12_MULTIPLE_FENCE_WAIT_FLAG_NONE, meaning to use the default behavior and wait for all fences. + + + + Records the execution (or invocation) of the specified meta command into a graphics command list. + Microsoft Docs: + A pointer to an ID3D12MetaCommand representing the meta command to initialize. + An optional pointer to a constant structure containing the values of the parameters for executing the meta command. + A SIZE_T containing the size of the structure pointed to by pExecutionParametersData, if set, otherwise 0. + + + + + Divulges the equivalent custom heap properties that are used for non-custom heap types, based on the adapter's architectural properties. + Microsoft Docs: + For single-GPU operation, set this to zero. + If there are multiple GPU nodes, set a bit to identify the node (the device's physical adapter). + Each bit in the mask corresponds to a single node. + Only 1 bit must be set. + See Multi-adapter systems. + A D3D12_HEAP_TYPE-typed value that specifies the heap to get properties for. + D3D12_HEAP_TYPE_CUSTOM is not supported as a parameter value. + + + + + Not intended to be called directly.  Use the PIX event runtime to insert events into a command queue. + Microsoft Docs: + Internal. + Internal. + Internal. + + + + + Describes the configuration for a video decoder. + Microsoft Docs: + + + + A GUID identifying the profile for the decoder, such as D3D12\_VIDEO\_DECODE\_PROFILE\_H264 or D3D12\_VIDEO\_DECODE\_PROFILE\_HEVC\_MAIN. For a list of supported GUIDs, see [Direct3D 12 Video GUIDs](/windows/desktop/medfound/direct3d-12-video-guids). + + + A member of the D3D12\_BITSTREAM\_ENCRYPTION\_TYPE enumeration specifying the type of bitstream encryption. For no encryption, use D3D12\_BITSTREAM\_ENCRYPTION\_TYPE\_NONE. + + + A member of the D3D12\_VIDEO\_FRAME\_CODED\_INTERLACE\_TYPE enumeration the desired interlace type used by the coded frames. + + + + Specifies the level of support for programmable sample positions that's offered by the adapter. + Microsoft Docs: + + + + Indicates that there's no support for programmable sample positions. + + + Indicates that there's tier 1 support for programmable sample positions. In tier 1, a single sample pattern can be specified to repeat for every pixel (SetSamplePosition parameter NumPixels = 1) and ResolveSubResource is supported. + + + Indicates that there's tier 2 support for programmable sample positions. In tier 2, four separate sample patterns can be specified for each pixel in a 2x2 grid (SetSamplePosition parameter NumPixels = 1) that repeats over the render-target or viewport, aligned on even coordinates . + + + + This method enables or disables GPU-based validation (GBV) before creating a device with the debug layer enabled. + Microsoft Docs: + TRUE to enable GPU-based validation, otherwise FALSE. + + + + + Specifies an orientation operation to be performed by a video processor. + Microsoft Docs: + + + + No change in orientation. 0 degrees. + + + The image is flipped horizontally. + + + The image is rotated 90 degrees clockwise. + + + The image is rotated 90 degrees clockwise and then flipped horizontally. + + + The image is rotated 180 degrees clockwise. + + + The image is flipped vertically. + + + The image is rotated 270 degrees clockwise. + + + The image is rotated 270 degrees clockwise and then flipped horizontally. + + + + Adds support for motion estimation. + Microsoft Docs: + + + + + Represents a virtual adapter. This interface extends ID3D12Device3. + Microsoft Docs: + + + + + This interface controls Device Removed Extended Data (DRED) settings. + Microsoft Docs: + + + + + Describes a resource, such as a texture, including a mip region. This structure is used in several methods. + Microsoft Docs: + + + + One member of D3D12_RESOURCE_DIMENSION, specifying the dimensions of the resource (for example, D3D12_RESOURCE_DIMENSION_TEXTURE1D), or whether it is a buffer ((D3D12_RESOURCE_DIMENSION_BUFFER). + + + Specifies the alignment. + + + Specifies the width of the resource. + + + Specifies the height of the resource. + + + Specifies the depth of the resource, if it is 3D, or the array size if it is an array of 1D or 2D resources. + + + Specifies the number of MIP levels. + + + Specifies one member of DXGI_FORMAT. + + + Specifies a DXGI_SAMPLE_DESC structure. + + + Specifies one member of D3D12_TEXTURE_LAYOUT. + + + Bitwise-OR'd flags, as D3D12_RESOURCE_FLAGS enumeration constants. + + + A D3D12_MIP_REGION struct. + + + + Describes minimum precision support options for shaders in the current graphics driver. + Microsoft Docs: + + + + The driver supports only full 32-bit precision for all shader stages. + + + The driver supports 10-bit precision. + + + The driver supports 16-bit precision. + + + + Describes a function. + Microsoft Docs: + + + + The shader version. + See also D3D12_SHADER_VERSION_TYPE. + + + The name of the originator of the function. + + + A combination of D3DCOMPILE Constants that are combined by using a bitwise OR operation. The resulting value specifies shader compilation and parsing. + + + The number of constant buffers for the function. + + + The number of bound resources for the function. + + + The number of emitted instructions for the function. + + + The number of temporary registers used by the function. + + + The number of temporary arrays used by the function. + + + The number of constant defines for the function. + + + The number of declarations (input + output) for the function. + + + The number of non-categorized texture instructions for the function. + + + The number of texture load instructions for the function. + + + The number of texture comparison instructions for the function. + + + The number of texture bias instructions for the function. + + + The number of texture gradient instructions for the function. + + + The number of floating point arithmetic instructions used by the function. + + + The number of signed integer arithmetic instructions used by the function. + + + The number of unsigned integer arithmetic instructions used by the function. + + + The number of static flow control instructions used by the function. + + + The number of dynamic flow control instructions used by the function. + + + The number of macro instructions used by the function. + + + The number of array instructions used by the function. + + + The number of mov instructions used by the function. + + + The number of movc instructions used by the function. + + + The number of type conversion instructions used by the function. + + + The number of bitwise arithmetic instructions used by the function. + + + A D3D_FEATURE_LEVEL-typed value that specifies the minimum Direct3D feature level target of the function byte code. + + + A value that contains a combination of one or more shader requirements flags; each flag specifies a requirement of the shader. A default value of 0 means there are no requirements. For a list of values, see ID3D12ShaderReflection::GetRequiresFlags. + + + The name of the function. + + + The number of logical parameters in the function signature, not including the return value. + + + Indicates whether the function returns a value. TRUE indicates it returns a value; otherwise, FALSE (it is a subroutine). + + + Indicates whether there is a Direct3D 10Level9 vertex shader blob. TRUE indicates there is a 10Level9 vertex shader blob; otherwise, FALSE. + + + Indicates whether there is a Direct3D 10Level9 pixel shader blob. TRUE indicates there is a 10Level9 pixel shader blob; otherwise, FALSE. + + + + Gets a shader-variable description. + Microsoft Docs: + A pointer to a shader-variable description (see D3D12_SHADER_VARIABLE_DESC). + + + + + Inherits from ID3D12VideoProcessor and provides support for protected resources. + Microsoft Docs: + + + + + Gets a constant-buffer description. + Microsoft Docs: + A shader-buffer description, as a pointer to a D3D12_SHADER_BUFFER_DESC structure. + + + + + Sets a constant in the compute root signature. + Microsoft Docs: + The slot number for binding. + The source data for the constant to set. + The offset, in 32-bit values, to set the constant in the root signature. + + + + + This method configures the sample positions used by subsequent draw, copy, resolve, and similar operations. + Microsoft Docs: + SAL: _In_ + +Specifies the number of samples to take, per pixel. This value can be 1, 2, 4, 8, or 16, otherwise the SetSamplePosition call is dropped. The number of samples must match the sample count configured in the PSO at draw time, otherwise the behavior is undefined. + SAL: _In_ + +Specifies the number of pixels that sample patterns are being specified for. This value can be either 1 or 4, otherwise the SetSamplePosition call is dropped. A value of 1 configures a single sample pattern to be used for each pixel; a value of 4 configures separate sample patterns for each pixel in a 2x2 pixel grid which is repeated over the render-target or viewport space, aligned to even coordintes. + +Note that the maximum number of combined samples can't exceed 16, otherwise the call is dropped. If NumPixels is set to 4, NumSamplesPerPixel can specify no more than 4 samples. + SAL: _In_reads_(NumSamplesPerPixel*NumPixels) + +Specifies an array of D3D12_SAMPLE_POSITION elements. The size of the array is NumPixels * NumSamplesPerPixel. If NumPixels is set to 4, then the first group of sample positions corresponds to the upper-left pixel in the 2x2 grid of pixels; the next group of sample positions corresponds to the upper-right pixel, the next group to the lower-left pixel, and the final group to the lower-right pixel. + +If centroid interpolation is used during rendering, the order of positions for each pixel determines centroid-sampling prioritiy. That is, the first covered sample in the order specified is chosen as the centroid sample location. + + + + + Represents a resource in which all UAV accesses must complete before any future UAV accesses can begin. + Microsoft Docs: + + + + The resource used in the transition, as a pointer to ID3D12Resource. + + + + Describes bindings (fixed for the duration of the render pass) to one or more render target views (RTVs), as well as their beginning and ending access characteristics. + Microsoft Docs: + + + + A D3D12_CPU_DESCRIPTOR_HANDLE. The CPU descriptor handle corresponding to the render target view(s) (RTVs). + + + A D3D12_RENDER_PASS_BEGINNING_ACCESS. The access to the RTV(s) requested at the transition into a render pass. + + + A D3D12_RENDER_PASS_ENDING_ACCESS. The access to the RTV(s) requested at the transition out of a render pass. + + + + Describes parameters needed to allocate resources, including offset. + Microsoft Docs: + + + + The offset, in bytes, of the resource. + + + The alignment value for the resource; one of 4KB (4096), 64KB (65536), or 4MB (4194304) alignment. + + + The size, in bytes, of the resource. + + + + Enumerates the types of shaders that Direct3D recognizes. Used to encode the Version member of the D3D12_SHADER_DESC structure. + Microsoft Docs: + + + + Pixel shader. + + + Vertex shader. + + + Geometry shader. + + + Hull shader. + + + Domain shader. + + + Compute shader. + + + Indicates the end of the enumeration. + + + + Specifies support for protected resources in video operations. + Microsoft Docs: + + + + Protected resources are not supported. + + + Protected resources are supported. + + + + Specifies the interlace type of coded video frames. + Microsoft Docs: + + + + The coded frames are not interlaced, often referred to as "progressive". + + + The coded frames may be interlaced. + + + + Gets the status of the protected session. + Microsoft Docs: + + + + + Specifies options for view instancing. + Microsoft Docs: + + + + Indicates a default view instancing configuration. + + + Enables view instance masking. + + + + Provides input data for calls to ID3D12VideoEncodeCommandList::ResolveMotionVectorHeap. + Microsoft Docs: + + + + The ID3D12VideoMotionVectorHeap containing the hardware-dependent data layout of the motion search. + + + The pixel width of the texture that the motion estimation operation was performed on. The motion estimator heap may be allocated to support a size range, this parameter informs the size of the last motion estimation operation. + + + The pixel height of the texture that the motion estimation operation was performed on. The motion estimator heap may be allocated to support a size range, this parameter informs the size of the last motion estimation operation. + + + + Writes a number of 32-bit immediate values to the specified buffer locations directly from the command stream. + Microsoft Docs: + The number of D3D12_WRITEBUFFERIMMEDIATE_PARAMETER structures that are pointed to by pParams and pModes. + The address of an array containing a number of D3D12_WRITEBUFFERIMMEDIATE_PARAMETER structures equal to Count. + The address of an array containing a number of D3D12_WRITEBUFFERIMMEDIATE_MODE structures equal to Count. The default value is null; passing null causes the system to write all immediate values using D3D12_WRITEBUFFERIMMEDIATE_MODE_DEFAULT. + + + + + Specifies resources that are supported for a provided format. + Microsoft Docs: + + + + No resources are supported. + + + Buffer resources supported. + + + Vertex buffers supported. + + + Index buffers supported. + + + Streaming output buffers supported. + + + 1D texture resources supported. + + + 2D texture resources supported. + + + 3D texture resources supported. + + + Cube texture resources supported. + + + The HLSL Load function for texture objects is supported. + + + The HLSL Sample function for texture objects is supported. + +
Note  If the device supports the format as a resource (1D, 2D, 3D, or cube map) but doesn't support this option, the resource can still use the Sample method but must use only the point filtering sampler state to perform the sample.
+
 
+
+ + The HLSL SampleCmp and SampleCmpLevelZero functions for texture objects are supported. + +
Note  Windows 8 and later might provide limited support for these functions on Direct3D feature levels 9_1, 9_2, and 9_3. For more info, see Implementing shadow buffers for Direct3D feature level 9. +
+
 
+
+ + Reserved. + + + Mipmaps are supported. + + + Render targets are supported. + + + Blend operations supported. + + + Depth stencils supported. + + + Multisample antialiasing (MSAA) resolve operations are supported. For more info, see ID3D12GraphicsCommandList::ResolveSubresource. + + + Format can be displayed on screen. + + + Format can't be cast to another format. + + + Format can be used as a multi-sampled render target. + + + Format can be used as a multi-sampled texture and read into a shader with the HLSL Load function. + + + Format can be used with the HLSL gather function. This value is available in DirectX 10.1 or higher. + + + Format supports casting when the resource is a back buffer. + + + Format can be used for an unordered access view. + + + Format can be used with the HLSL gather with comparison function. + + + Format can be used with the decoder output. + + + Format can be used with the video processor output. + + + Format can be used with the video processor input. + + + Format can be used with the video encoder. + + + + Represents a GPU virtual address range. + Microsoft Docs: + + + + The beginning of the virtual address range. + + + The size of the virtual address range, in bytes. + + + + Creates a heap that can be used with placed resources and reserved resources. + Microsoft Docs: + A pointer to a constant D3D12_HEAP_DESC structure that describes the heap. + A reference to the globally unique identifier (GUID) of the heap interface to return in ppvHeap. + +While riidResource is most commonly the GUID of ID3D12Heap, it may be the GUID of any interface. If the resource object doesn't support the interface for this GUID, then creation fails with E_NOINTERFACE. + An optional pointer to a memory block that receives the requested interface pointer to the created heap object. + +ppvHeap can be nullptr, to enable capability testing. When ppvHeap is nullptr, no object is created, and S_FALSE is returned when pDesc is valid. + + + + + Describes query data for stream output. + Microsoft Docs: + + + + Specifies the number of primitives written. + + + Specifies the total amount of storage needed by the primitives. + + + + Defines constants that specify the stage of a parameter to a meta command. + Microsoft Docs: + + + + Specifies that the parameter is used at the meta command creation stage. + + + Specifies that the parameter is used at the meta command initialization stage. + + + Specifies that the parameter is used at the meta command execution stage. + + + + Changes the currently bound descriptor heaps that are associated with a command list. + Microsoft Docs: + Number of descriptor heaps to bind. + A pointer to an array of ID3D12DescriptorHeap objects for the heaps to set on the command list. + +You can only bind descriptor heaps of type [D3D12_DESCRIPTOR_HEAP_TYPE_CBV_SRV_UAV](/windows/win32/api/d3d12/nf-d3d12-id3d12graphicscommandlist-setdescriptorheaps) and [D3D12_DESCRIPTOR_HEAP_TYPE_SAMPLER](/windows/win32/api/d3d12/nf-d3d12-id3d12graphicscommandlist-setdescriptorheaps). + +Only one descriptor heap of each type can be set at one time, which means a maximum of 2 heaps (one sampler, one CBV/SRV/UAV) can be set at one time. + + + + + Specifies input stream arguments for an input stream passed to ID3D12VideoProcessCommandList1::ProcessFrames1, which supports changing the field type for each call. + Microsoft Docs: + + + + An array of D3D12_VIDEO_PROCESS_INPUT_STREAM structures containing the set of references for video processing. If the stereo format is D3D12_VIDEO_PROCESS_STEREO_FORMAT_SEPARATE, then two sets of input streams must be supplied. For all other stereo formats, the first set of reference must be supplied, and the second should be zero initialized. + + + A D3D12_VIDEO_PROCESS_TRANSFORM structure specifying the flip, rotation, scale and destination translation for the video input. + + + A value from the D3D12_VIDEO_PROCESS_INPUT_STREAM_FLAGS enumeration specifying the options for the input stream. + + + A D3D12_VIDEO_PROCESS_INPUT_STREAM_RATE structure specifying the framerate and input and output indicies for framerate conversion and deinterlacing. + + + The level to apply for each enabled filter. The filter level is specified in the order that filters appear in the D3D12_VIDEO_PROCESS_FILTER_FLAGS enumeration. Specify 0 if a filter is not enabled or the filter index is reserved. + + + A D3D12_VIDEO_PROCESS_ALPHA_BLENDING structure specifying the planar alpha for an input stream on the video processor. + + + A value from the D3D12_VIDEO_FIELD_TYPE enumeration specfying the interlaced field type of the input source. When working with mixed content, use [ID3D12VideoProcessCommandList1::ProcessFrames1](nf-d3d12video-id3d12videoprocesscommandlist1-processframes1.md) which supports changing the field type for each call. + + + + Describes a ID3D12VideoDecoderHeap. + Microsoft Docs: + + + + The node mask specifying the physical adapter on which the video processor will be used. For single GPU operation, set this to zero. If there are multiple GPU nodes, set a bit to identify the node, i.e. the device's physical adapter, to which the command queue applies. Each bit in the mask corresponds to a single node. Only 1 bit may be set. + + + A D3D12_VIDEO_DECODE_CONFIGURATION structure specifying the configuration of the video decoder. + + + The decode width of the bitstream to be decoded. + + + The decode height of the bitstream to be decoded. + + + A DXGI_FORMAT structure specifying the format of the bitstream to be decoded. + + + The frame rate of the input video stream. For more information, see the Remarks section. + + + The average bits per second data compression rate for the compressed video stream. For more information, see the Remarks section. + + + The maximum number of decode picture buffers this stream can have. + + + + Represents Device Removed Extended Data (DRED) version 1.0 data. + Microsoft Docs: + + + + An input parameter of type D3D12_DRED_FLAGS, specifying control flags for the Direct3D runtime. + + + An output parameter of type pointer to D3D12_AUTO_BREADCRUMB_NODE representing the returned auto-breadcrumb object(s). This is a pointer to the head of a linked list of auto-breadcrumb objects. All of the nodes in the linked list represent potentially incomplete command list execution on the GPU at the time of the device-removal event. + + + + Specifies the type of a raytracing hit group state subobject. Use a value from this enumeration with the D3D12_HIT_GROUP_DESC structure. + Microsoft Docs: + + + + The hit group uses a list of triangles to calculate ray hits. Hit groups that use triangles can’t contain an intersection shader. + + + The hit group uses a procedural primitive within a bounding box to calculate ray hits. Hit groups that use procedural primitives must contain an intersection shader. + + + + Represents data for a video decode statistics query invoked by calling ID3D12VideoDecodeCommandList::EndQuery. + Microsoft Docs: + + + + A member of the D3D12_VIDEO_DECODE_STATUS enumeration indicating the video decoding status. + + + If Status is not 0, this member contains the accelerator's estimate of the number of super-blocks in the decoded frame that were adversely affected by the reported problem. If the accelerator does not provide an estimate, the value is D3D12\_VIDEO\_DECODE\_MACROBLOCKS\_AFFECTED\_UNKNOWN (0xFFFFFFFFFFFFFFFF). + + + The decode frame rate. + + + When the Status returned is D3D12_VIDEO_DECODE_STATUS_RATE_EXCEEDED, this field reports the bitrate that would succeed. This value may be used to recreate the decoder and try again. A value of zero here is valid to indicate that the worst case bit rate should be assumed. + +For all other Status values, BitRate is set to zero. + + + + Determines whether shader instrumentation is enabled. + Microsoft Docs: + + + + + Monitors the validity of a protected resource session. + Microsoft Docs: + + + + + Specifies flags for video processing input streams. + Microsoft Docs: + + + + No flags specified. + + + Set this flag when not processing frames in order, such as seeking between frames + + + Set this flag when applying video process operation to the same set of inputs. + + + + Gets a shader-variable type. + Microsoft Docs: + + + + + Specifies a range of tile mappings. + Microsoft Docs: + + + + No tile-mapping flags are specified. + + + The tile range is NULL. + + + Skip the tile range. + + + Reuse a single tile in the tile range. + + + + Represents a GPU virtual address range and stride. + Microsoft Docs: + + + + The beginning of the virtual address range. + + + The size of the virtual address range, in bytes. + + + Defines the record-indexing stride within the memory range. + + + + Set a boolean that turns the debug output on or off. + Microsoft Docs: + Disable/Enable the debug output (true to disable or mute the output, false to enable the output). + + + + + This method configures the level of GPU-based validation that the debug device is to perform at runtime. + Microsoft Docs: + Specifies the level of GPU-based validation to perform at runtime. + + + + + Defines a global root signature state suboject that will be used with associated shaders. + Microsoft Docs: + + + + The root signature that will function as a global root signature. A state object holds a reference to this signature. + + + + Describes Direct3D 12 feature options in the current graphics driver. + Microsoft Docs: + + + + Specifies whether double types are allowed for shader operations. + If TRUE, double types are allowed; otherwise FALSE. + The supported operations are equivalent to Direct3D 11's ExtendedDoublesShaderInstructions member of the D3D11_FEATURE_DATA_D3D11_OPTIONS structure. + + +To use any HLSL shader that is compiled with a double type, + the runtime must set DoublePrecisionFloatShaderOps to TRUE. + + + Specifies whether logic operations are available in blend state. The runtime sets this member to TRUE if logic operations are available in blend state and FALSE otherwise. This member is FALSE for feature level 9.1, 9.2, and 9.3. This member is optional for feature level 10, 10.1, and 11. This member is TRUE for feature level 11.1 and 12. + + + A combination of D3D12_SHADER_MIN_PRECISION_SUPPORT-typed values that are combined by using a bitwise OR operation. The resulting value specifies minimum precision levels that the driver supports for shader stages. A value of zero indicates that the driver supports only full 32-bit precision for all shader stages. + + + Specifies whether the hardware and driver support tiled resources. The runtime sets this member to a D3D12_TILED_RESOURCES_TIER-typed value that indicates if the hardware and driver support tiled resources and at what tier level. + + + Specifies the level at which the hardware and driver support resource binding. The runtime sets this member to a D3D12_RESOURCE_BINDING_TIER-typed value that indicates the tier level. + + + Specifies whether pixel shader stencil ref is supported. If TRUE, it's supported; otherwise FALSE. + + + Specifies whether the loading of additional formats for typed unordered-access views (UAVs) is supported. + If TRUE, it's supported; otherwise FALSE. + + + Specifies whether Rasterizer Order Views (ROVs) are supported. If TRUE, they're supported; otherwise FALSE. + + + Specifies the level at which the hardware and driver support conservative rasterization. The runtime sets this member to a D3D12_CONSERVATIVE_RASTERIZATION_TIER-typed value that indicates the tier level. + + + Don't use this field; instead, use the D3D12_FEATURE_DATA_GPU_VIRTUAL_ADDRESS_SUPPORT query + (a structure with a MaxGPUVirtualAddressBitsPerResource member), which is more accurate. + + + TRUE if the hardware supports textures with the 64KB standard swizzle pattern. + Support for this pattern enables zero-copy texture optimizations while providing near-equilateral locality for each dimension within the texture. + For texture swizzle options and restrictions, see D3D12_TEXTURE_LAYOUT. + + + A D3D12_CROSS_NODE_SHARING_TIER enumeration constant that specifies the level of sharing across nodes of an adapter that has multiple nodes, + such as Tier 1 Emulated, Tier 1, or Tier 2. + + + FALSE means the device only supports copy operations to and from cross-adapter row-major textures. + TRUE means the device supports shader resource views, unordered access views, and render target views of cross-adapter row-major textures. + "Cross-adapter" means between multiple adapters (even from different IHVs). + + + Whether the viewport (VP) and Render Target (RT) array index from any shader feeding the rasterizer are supported without geometry shader emulation. + Compare the VPAndRTArrayIndexFromAnyShaderFeedingRasterizer member of the D3D11_FEATURE_DATA_D3D11_OPTIONS3 structure. + In ID3D12ShaderReflection::GetRequiresFlags, see the #define D3D_SHADER_REQUIRES_VIEWPORT_AND_RT_ARRAY_INDEX_FROM_ANY_SHADER_FEEDING_RASTERIZER. + + + Specifies the level at which the hardware and driver require heap attribution related to resource type. + The runtime sets this member to a D3D12_RESOURCE_HEAP_TIER enumeration constant. + + + + Specifies RGB or alpha blending operations. + Microsoft Docs: + + + + Add source 1 and source 2. + + + Subtract source 1 from source 2. + + + Subtract source 2 from source 1. + + + Find the minimum of source 1 and source 2. + + + Find the maximum of source 1 and source 2. + + + + Reports the number of physical adapters (nodes) that are associated with this device. + Microsoft Docs: + + + + + Get a boolean that determines if debug output is on or off. + Microsoft Docs: + + + + + Specifies how GPU-Based Validation handles patched pipeline states during ID3D12Device::CreateGraphicsPipelineState and ID3D12Device::CreateComputePipelineState. + Microsoft Docs: + + + + This is the default value. Indicates no patching of pipeline states should be done during PSO creation. Instead PSO’s are patched on first use in a command list. This can help to reduce the up-front cost of PSO creation but may instead slow down command list recording until a steady-state is reached. + + + Indicates that state-tracking GPU-Based Validation PSO’s should be created along with the original PSO at create time. + + + Indicates that unguarded GPU-Based Validation PSO’s should be created along with the original PSO at create time. + + + Indicates that guarded GPU-Based Validation PSO’s should be created along with the original PSO at create time. + + + Internal use only. + + + + Describes the elements in a buffer to use in a unordered-access view. + Microsoft Docs: + + + + The zero-based index of the first element to be accessed. + + + The number of elements in the resource. For structured buffers, this is the number of structures in the buffer. + + + The size of each element in the buffer structure (in bytes) when the buffer represents a structured buffer. + + + The counter offset, in bytes. + + + A D3D12_BUFFER_UAV_FLAGS-typed value that specifies the view options for the resource. + + + + Writes the contents of the library to the provided memory, to be provided back to the runtime at a later time. + Microsoft Docs: + Specifies a pointer to the data. This memory must be readable and writeable up to the input size. This data can be saved and provided to CreatePipelineLibrary at a later time, including future instances of this or other processes. The data becomes invalidated if the runtime or driver is updated, and is not portable to other hardware or devices. + The size provided must be at least the size returned from GetSerializedSize. + + + + + Specifies whether or not protected resources can be accessed by subsequent commands in the command list. + Microsoft Docs: + An optional pointer to an ID3D12ProtectedResourceSession. You can obtain an ID3D12ProtectedResourceSession by calling [ID3D12Device4::CreateProtectedResourceSession](./nf-d3d12-id3d12device4-createprotectedresourcesession.md). + + + + + Sets the fence to the specified value. + Microsoft Docs: + The value to set the fence to. + + + + + Specifies how to access a resource used in a depth-stencil view. + Microsoft Docs: + + + + D3D12_DSV_DIMENSION_UNKNOWN is not a valid value for D3D12_DEPTH_STENCIL_VIEW_DESC and is not used. + + + The resource will be accessed as a 1D texture. + + + The resource will be accessed as an array of 1D textures. + + + The resource will be accessed as a 2D texture. + + + The resource will be accessed as an array of 2D textures. + + + The resource will be accessed as a 2D texture with multi sampling. + + + The resource will be accessed as an array of 2D textures with multi sampling. + + + + Gets an output-parameter description for a shader. + Microsoft Docs: + A zero-based parameter index. + A shader-output-parameter description, as a pointer to a D3D12_SIGNATURE_PARAMETER_DESC structure. + + + + + Describes a function parameter. + Microsoft Docs: + + + + The name of the function parameter. + + + The HLSL semantic that is associated with this function parameter. This name includes the index, for example, SV_Target[n]. + + + A D3D_SHADER_VARIABLE_TYPE-typed value that identifies the variable type for the parameter. + + + A D3D_SHADER_VARIABLE_CLASS-typed value that identifies the variable class for the parameter as one of scalar, vector, matrix, object, and so on. + + + The number of rows for a matrix parameter. + + + The number of columns for a matrix parameter. + + + A D3D_INTERPOLATION_MODE-typed value that identifies the interpolation mode for the parameter. + + + A combination of D3D_PARAMETER_FLAGS-typed values that are combined by using a bitwise OR operation. The resulting value specifies semantic flags for the parameter. + + + The first input register for this parameter. + + + The first input register component for this parameter. + + + The first output register for this parameter. + + + The first output register component for this parameter. + + + + Describes a pipeline state stream. + Microsoft Docs: + + + + SAL: _In_ + +Specifies the size of the opaque data structure pointed to by the pPipelineStateSubobjectStream member, in bytes. + + + SAL: _In_reads_(_Inexpressible_("Dependentonsizeofsubobjects")) + +Specifies the address of a data structure that describes as a bytestream an arbitrary pipeline state subobject. + + + + Provides detail about each adapter's architectural details, so that your application can better optimize for certain adapter properties. + Microsoft Docs: + + + + In multi-adapter operation, this indicates which physical adapter of the device is relevant. + See Multi-adapter systems. + NodeIndex is filled out by the application before calling CheckFeatureSupport, as the application can retrieve details about the architecture of each adapter. + + + Specifies whether the hardware and driver support a tile-based renderer. + The runtime sets this member to TRUE if the hardware and driver support a tile-based renderer. + + + Specifies whether the hardware and driver support UMA. + The runtime sets this member to TRUE if the hardware and driver support UMA. + + + Specifies whether the hardware and driver support cache-coherent UMA. + The runtime sets this member to TRUE if the hardware and driver support cache-coherent UMA. + + + SAL: _Out_ + +Specifies whether the hardware and driver support isolated Memory Management Unit (MMU). + The runtime sets this member to TRUE if the GPU honors CPU page table properties like MEM_WRITE_WATCH (for more information, see VirtualAlloc) and PAGE_READONLY (for more information, see Memory Protection Constants). + +If TRUE, the application must take care to no use memory with these page table properties with the GPU, as the GPU might trigger these page table properties in unexpected ways. For example, GPU write operations might be coarser than the application expects, particularly writes from within shaders. Certain write-watch pages migth appear dirty, even when it isn't obvious how GPU writes may have affected them. GPU operations associated with upload and readback heap usage scenarios work well with write-watch pages, but might occasionally generate false positives that can be safely ignored. + + + + Identifies unordered-access view options for a buffer resource. + Microsoft Docs: + + + + Indicates a default view. + + + Resource contains raw, unstructured data. Requires the UAV format to be DXGI_FORMAT_R32_TYPELESS. + For more info about raw viewing of buffers, see Raw Views of Buffers. + + + + Gets a shader-reflection variable by index. + Microsoft Docs: + Zero-based index. + + + + + Copies a source acceleration structure to destination memory while applying the specified transformation. + Microsoft Docs: + The destination memory. The required size can be discovered by calling EmitRaytracingAccelerationStructurePostbuildInfo beforehand, if necessary for the specified Mode. + +The destination start address must be aligned to 256 bytes, defined as D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BYTE_ALIGNMENT, regardless of the specified Mode. + +The destination memory range cannot overlap source. Otherwise, results are undefined. + +The resource state that the memory pointed to must be in depends on the Mode parameter. For more information, see D3D12_RAYTRACING_ACCELERATION_STRUCTURE_COPY_MODE. + The address of the acceleration structure or other type of data to copy/transform based on the specified Mode. The data remains unchanged and usable. The operation only copies the data pointed to by SourceAccelerationStructureData and not any other data, such as acceleration structures, that the source data may point to. For example, in the case of a top-level acceleration structure, any bottom-level acceleration structures that it points to are not copied in the operation. + +The source memory must be aligned to 256 bytes, defined as D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BYTE_ALIGNMENT, regardless of the specified Mode. + +The resource state that the memory pointed to must be in depends on the Mode parameter. For more information, see D3D12_RAYTRACING_ACCELERATION_STRUCTURE_COPY_MODE. + The type of copy operation to perform. For more information, see D3D12_RAYTRACING_ACCELERATION_STRUCTURE_COPY_MODE. + + + + + Defines the inputs for a raytracing acceleration structure build operation. This structure is used by ID3D12GraphicsCommandList4::BuildRaytracingAccelerationStructure and ID3D12Device5::GetRaytracingAccelerationStructurePrebuildInfo. + Microsoft Docs: + + + + The type of acceleration structure to build. + + + The build flags. + + + If Type is D3D12_RAYTRACING_ACCELERATION_STRUCTURE_TOP_LEVEL, this value is the number of instances, laid out based on DescsLayout. + +If Type is D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BOTTOM_LEVEL, this value is the number of elements referred to by pGeometryDescs or ppGeometryDescs. Which of these fields is used depends on DescsLayout. + + + How geometry descriptions are specified; either an array of descriptions or an array of pointers to descriptions. + + + If Type is D3D12_RAYTRACING_ACCELERATION_STRUCTURE_TOP_LEVEL, this refers to NumDescsD3D12_RAYTRACING_INSTANCE_DESC structures in GPU memory describing instances. Each instance must be aligned to 16 bytes, defined as D3D12_RAYTRACING_INSTANCE_DESC_BYTE_ALIGNMENT. + +If Type is not D3D12_RAYTRACING_ACCELERATION_STRUCTURE_TOP_LEVEL, this parameter is unused. + +If DescLayout is D3D12_ELEMENTS_LAYOUT_ARRAY, InstanceDescs points to an array of instance descriptions in GPU memory. + +If DescLayout is D3D12_ELEMENTS_LAYOUT_ARRAY_OF_POINTERS, InstanceDescs points to an array in GPU memory of D3D12_GPU_VIRTUAL_ADDRESS pointers to instance descriptions. + +The memory pointed to must be in state D3D12_RESOURCE_STATE_NON_PIXEL_SHADER_RESOURCE. + + + If Type is D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BOTTOM_LEVEL, and DescsLayout is D3D12_ELEMENTS_LAYOUT_ARRAY, this field is used and points to NumDescs contiguous D3D12_RAYTRACING_GEOMETRY_DESC structures on the CPU, describing individual geometries. + +If Type is not D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BOTTOM_LEVEL or DescsLayout is not D3D12_ELEMENTS_LAYOUT_ARRAY, this parameter is unused. + + + If Type is D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BOTTOM_LEVEL, and DescsLayout is D3D12_ELEMENTS_LAYOUT_ARRAY_OF_POINTERS, this field is used and points to an array of NumDescs pointers to D3D12_RAYTRACING_GEOMETRY_DESC structures on the CPU, describing individual geometries. + + + + Specifies a type of resource barrier (transition in resource use) description. + Microsoft Docs: + + + + A transition barrier that indicates a transition of a set of subresources between different usages. The caller must specify the before and after usages of the subresources. + + + An aliasing barrier that indicates a transition between usages of 2 different resources that have mappings into the same tile pool. The caller can specify both the before and the after resource. Note that one or both resources can be NULL, which indicates that any tiled resource could cause aliasing. + + + An unordered access view (UAV) barrier that indicates all UAV accesses (reads or writes) to a particular resource must complete before any future UAV accesses (read or write) can begin. + + + + Gets a shader-reflection-variable type by name. + Microsoft Docs: + Member name. + + + + + Enables the debug layer. + Microsoft Docs: + + + + + Describes a video extension command. + Microsoft Docs: + + + + The unique identifier for the video extension command. + + + A pointer to a wide string containing the name of the command. + + + A member of the D3D12_COMMAND_LIST_SUPPORT_FLAGS enumeration. Indicates the video command queue that the video extension targets. Only one value from the enumeration can be set. + + + + Describes stencil operations that can be performed based on the results of stencil test. + Microsoft Docs: + + + + A D3D12_STENCIL_OP-typed value that identifies the stencil operation to perform when stencil testing fails. + + + A D3D12_STENCIL_OP-typed value that identifies the stencil operation to perform when stencil testing passes and depth testing fails. + + + A D3D12_STENCIL_OP-typed value that identifies the stencil operation to perform when stencil testing and depth testing both pass. + + + A D3D12_COMPARISON_FUNC-typed value that identifies the function that compares stencil data against existing stencil data. + + + + Represents a virtual adapter; it is used to create command allocators, command lists, command queues, fences, resources, pipeline state objects, heaps, root signatures, samplers, and many resource views. + Microsoft Docs: + + + + + Defines constants that specify heap serialization support. + Microsoft Docs: + + + + Indicates that heap serialization is not supported. + + + Indicates that heap serialization is supported. Your application can serialize resource data in heaps through copying APIs such as CopyResource, without necessarily requiring an explicit [state transition](/windows/desktop/direct3d12/using-resource-barriers-to-synchronize-resource-states-in-direct3d-12#implicit-state-transitions) of resources on those heaps. + + + + Enables or disables dependent command queue synchronization when using a D3D12 device with the debug layer enabled. + Microsoft Docs: + TRUE to enable Dependent Command Queue Synchronization, otherwise FALSE. + + + + + Describes the subresources from a resource that are accessible by using a render-target view. + Microsoft Docs: + + + + A DXGI_FORMAT-typed value that specifies the viewing format. + + + A D3D12_RTV_DIMENSION-typed value that specifies how the render-target resource will be accessed. This type specifies how the resource will be accessed. This member also determines which _RTV to use in the following union. + + + A D3D12_BUFFER_RTV structure that specifies which buffer elements can be accessed. + + + A D3D12_TEX1D_RTV structure that specifies the subresources in a 1D texture that can be accessed. + + + A D3D12_TEX1D_ARRAY_RTV structure that specifies the subresources in a 1D texture array that can be accessed. + + + A D3D12_TEX2D_RTV structure that specifies the subresources in a 2D texture that can be accessed. + + + A D3D12_TEX2D_ARRAY_RTV structure that specifies the subresources in a 2D texture array that can be accessed. + + + A D3D12_TEX2DMS_RTV structure that specifies a single subresource because a multisampled 2D texture only contains one subresource. + + + A D3D12_TEX2DMS_ARRAY_RTV structure that specifies the subresources in a multisampled 2D texture array that can be accessed. + + + A D3D12_TEX3D_RTV structure that specifies subresources in a 3D texture that can be accessed. + + + + Emits post-build properties for a set of acceleration structures. This enables applications to know the output resource requirements for performing acceleration structure operations via ID3D12GraphicsCommandList4::CopyRaytracingAccelerationStructure. + Microsoft Docs: + Description of pos-tbuild information to generate. + Number of pointers to acceleration structure GPU virtual addresses pointed to by pSourceAccelerationStructureData. This number also affects the destination (output), which will be a contiguous array of NumSourceAccelerationStructures output structures, where the type of the structures depends on InfoType field of the supplied in the pDesc description. + Pointer to array of GPU virtual addresses of size NumSourceAccelerationStructures. + +The address must be aligned to 256 bytes, defined as D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BYTE_ALIGNMENT. + +The memory pointed to must be in state D3D12_RESOURCE_STATE_RAYTRACING_ACCELERATION_STRUCTURE. + + + + + Adds a user-defined message to the message queue and sends that message to debug output. + Microsoft Docs: + Severity of a message. + Specifies the message string. + + + + + Flags passed to the TraceRay function to override transparency, culling, and early-out behavior. + Microsoft Docs: + + + + No options selected. + + + All ray-primitive intersections encountered in a raytrace are treated as opaque. So no any hit shaders will be executed regardless of whether or not the hit geometry specifies D3D12_RAYTRACING_GEOMETRY_FLAG_OPAQUE, and regardless of the instance flags on the instance that was hit. + +This flag is mutually exclusive with RAY_FLAG_FORCE_NON_OPAQUE, RAY_FLAG_CULL_OPAQUE and RAY_FLAG_CULL_NON_OPAQUE. + + + All ray-primitive intersections encountered in a raytrace are treated as non-opaque. So any hit shaders, if present, will be executed regardless of whether or not the hit geometry specifies D3D12_RAYTRACING_GEOMETRY_FLAG_OPAQUE, and regardless of the instance flags on the instance that was hit. This flag is mutually exclusive with RAY_FLAG_FORCE_\OPAQUE, RAY_FLAG_CULL_OPAQUE and RAY_FLAG_CULL_NON_OPAQUE. + + + The first ray-primitive intersection encountered in a raytrace automatically causes AcceptHitAndEndSearch to be called immediately after the any hit shader, including if there is no any hit shader. + +The only exception is when the preceding any hit shader calls IgnoreHit, in which case the ray continues unaffected such that the next hit becomes another candidate to be the first hit. For this exception to apply, the any hit shader has to actually be executed. So if the any hit shader is skipped because the hit is treated as opaque (e.g. due to RAY_FLAG_FORCE_OPAQUE or D3D12_RAYTRACING_GEOMETRY_FLAG_OPAQUE or D3D12_RAYTRACING_INSTANCE_FLAG_OPAQUE being set), then AcceptHitAndEndSearch is called. + +If a closest hit shader is present at the first hit, it gets invoked unless RAY_FLAG_SKIP_CLOSEST_HIT_SHADER is also present. The one hit that was found is considered “closest”, even though other potential hits that might be closer on the ray may not have been visited. + +A typical use for this flag is for shadows, where only a single hit needs to be found. + + + Even if at least one hit has been committed, and the hit group for the closest hit contains a closest hit shader, skip execution of that shader. + + + Enables culling of back facing triangles. See D3D12_RAYTRACING_INSTANCE_FLAGS for selecting which triangles are back facing, per-instance. + +On instances that specify D3D12_RAYTRACING_INSTANCE_FLAG_TRIANGLE_CULL_DISABLE, this flag has no effect. + +On geometry types other than D3D12_RAYTRACING_GEOMETRY_TYPE_TRIANGLES, this flag has no effect. + +This flag is mutually exclusive with RAY_FLAG_CULL_FRONT_FACING_TRIANGLES. + + + Enables culling of front facing triangles. See D3D12_RAYTRACING_INSTANCE_FLAGS for selecting which triangles are back facing, per-instance. + +On instances that specify D3D12_RAYTRACING_INSTANCE_FLAG_TRIANGLE_CULL_DISABLE, this flag has no effect. + +On geometry types other than D3D12_RAYTRACING_GEOMETRY_TYPE_TRIANGLES, this flag has no effect. + +This flag is mutually exclusive with RAY_FLAG_CULL_FRONT_FACING_TRIANGLES. + + + Culls all primitives that are considered opaque based on their geometry and instance flags. + +This flag is mutually exclusive with RAY_FLAG_FORCE_OPAQUE, RAY_FLAG_FORCE_NON_OPAQUE, and RAY_FLAG_CULL_NON_OPAQUE. + + + Culls all primitives that are considered non-opaque based on their geometry and instance flags. + +This flag is mutually exclusive with RAY_FLAG_FORCE_OPAQUE, RAY_FLAG_FORCE_NON_OPAQUE, and RAY_FLAG_CULL_OPAQUE. + + + + Manages a query heap. A query heap holds an array of queries, referenced by indexes. + Microsoft Docs: + + + + + Enables the page-out of data, which precludes GPU access of that data. + Microsoft Docs: + The number of objects in the ppObjects array to evict from the device. + A pointer to a memory block that contains an array of ID3D12Pageable interface pointers for the objects. + + +Even though most D3D12 objects inherit from ID3D12Pageable, residency changes are only supported on the following objects: +Descriptor Heaps, Heaps, Committed Resources, and Query Heaps + + + + + Describes the level of support for shader caching in the current graphics driver. + Microsoft Docs: + + + + Indicates that the driver does not support shader caching. + + + Indicates that the driver supports the CachedPSO member of the D3D12_GRAPHICS_PIPELINE_STATE_DESC and D3D12_COMPUTE_PIPELINE_STATE_DESC structures. This is always supported. + + + Indicates that the driver supports the ID3D12PipelineLibrary interface, which provides application-controlled PSO grouping and caching. This is supported by drivers targetting the Windows 10 Anniversary Update. + + + Indicates that the driver supports an OS-managed shader cache that stores compiled shaders in memory during the current run of the application. + + + Indicates that the driver supports an OS-managed shader cache that stores compiled shaders on disk to accelerate future runs of the application. + + + + Signals a shared fence between the D3D layers and diagnostics tools. + Microsoft Docs: + A pointer to the shared fence to signal. + An unsigned 64bit value to signal the shared fence with. + + + + + Retrieves the list of video extension commands from the driver. + Microsoft Docs: + + + + For single GPU operation, set this to zero. If there are multiple GPU nodes, set a bit to identify the node (the device's physical adapter) to which the command queue applies. Each bit in the mask corresponds to a single node. Only 1 bit may be set. + + + The supported number of video extension commands. This value must be the count returned by a call to[ID3D12VideoDevice::CheckFeatureSupport](nf-d3d12video-id3d12videodevice-checkfeaturesupport.md) with D3D12_FEATURE_VIDEO_EXTENSION_COMMAND_COUNT specified as the feature. + + + Receives a list of D3D12_VIDEO_EXTENSION_COMMAND_INFO structures describing video extension commands. + + + + Indicates the level of support that the adapter provides for depth-bounds tests and programmable sample positions. + Microsoft Docs: + + + + SAL: _Out_ + +On return, contains true if depth-bounds tests are supported; otherwise, false. + + + SAL: _Out_ + +On return, contains a value that indicates the level of support offered for programmable sample positions. + + + + Gets the reason that the device was removed. + Microsoft Docs: + + + + + Describes the arguments (parameters) of a command signature. + Microsoft Docs: + + + + Specifies the size of each argument of a command signature, in bytes. + + + Specifies the number of arguments in the command signature. + + + An array of D3D12_INDIRECT_ARGUMENT_DESC structures, + containing details of the arguments, including whether the argument is a vertex buffer, constant, constant buffer view, shader resource view, or unordered access view. + + + For single GPU operation, set this to zero. If there are multiple GPU nodes, set bits to identify the nodes (the device's physical adapters) for which the command signature is to apply. + Each bit in the mask corresponds to a single node. + Refer to Multi-adapter systems. + + + + Describes the width, height, format, and color space of a picture buffer. + Microsoft Docs: + + + + The width of the sample. + + + The height of the sample. + + + A D3D12_VIDEO_FORMAT structure describing the format and colorspace of the sample. + + + + Specifies a type of descriptor heap. + Microsoft Docs: + + + + The descriptor heap for the combination of constant-buffer, shader-resource, and unordered-access views. + + + The descriptor heap for the sampler. + + + The descriptor heap for the render-target view. + + + The descriptor heap for the depth-stencil view. + + + The number of types of descriptor heaps. + + + + Returns the ID3D12ShaderReflectionConstantBuffer of the present ID3D12ShaderReflectionVariable. + Microsoft Docs: + + + + + Flags to control pipeline state. + Microsoft Docs: + + + + Indicates no flags. + + + Indicates that the pipeline state should be compiled with additional information to assist debugging. + This can only be set on WARP devices. + + + + Describes the subresource from a multi sampled 2D texture to use in a render-target view. + Microsoft Docs: + + + + Integer of any value. See remarks. + + + + Specifies options for working with resources. + Microsoft Docs: + + + + No options are specified. + + + Allows a render target view to be created for the resource, as well as enables the resource to transition into the state of D3D12_RESOURCE_STATE_RENDER_TARGET. Some adapter architectures allocate extra memory for textures with this flag to reduce the effective bandwidth during common rendering. This characteristic may not be beneficial for textures that are never rendered to, nor is it available for textures compressed with BC formats. Applications should avoid setting this flag when rendering will never occur. + + +The following restrictions and interactions apply: + +
    +
  • Either the texture format must support render target capabilities at the current feature level. Or, when the format is a typeless format, a format within the same typeless group must support render target capabilities at the current feature level.
  • +
  • Cannot be set in conjunction with textures that have D3D12_TEXTURE_LAYOUT_ROW_MAJOR when D3D12_FEATURE_DATA_D3D12_OPTIONS::CrossAdapterRowMajorTextureSupported is FALSE nor in conjunction with textures that have D3D12_TEXTURE_LAYOUT_64KB_STANDARD_SWIZZLE when D3D12_FEATURE_DATA_D3D12_OPTIONS::StandardSwizzle64KBSupported is FALSE. +
  • +
  • Cannot be used with 4KB alignment, D3D12_RESOURCE_FLAG_ALLOW_DEPTH_STENCIL, nor usage with heaps that have D3D12_HEAP_FLAG_DENY_RT_DS_TEXTURES.
  • +
+
+ + Allows a depth stencil view to be created for the resource, as well as enables the resource to transition into the state of D3D12_RESOURCE_STATE_DEPTH_WRITE and/or D3D12_RESOURCE_STATE_DEPTH_READ. Most adapter architectures allocate extra memory for textures with this flag to reduce the effective bandwidth and maximize optimizations for early depth-test. Applications should avoid setting this flag when depth operations will never occur. + + +The following restrictions and interactions apply: + +
    +
  • Either the texture format must support depth stencil capabilities at the current feature level. Or, when the format is a typeless format, a format within the same typeless group must support depth stencil capabilities at the current feature level.
  • +
  • Cannot be used with D3D12_RESOURCE_DIMENSION_BUFFER, 4KB alignment, D3D12_RESOURCE_FLAG_ALLOW_RENDER_TARGET, D3D12_RESOURCE_FLAG_ALLOW_UNORDERED_ACCESS, D3D12_RESOURCE_FLAG_ALLOW_SIMULTANEOUS_ACCESS, D3D12_TEXTURE_LAYOUT_64KB_STANDARD_SWIZZLE, D3D12_TEXTURE_LAYOUT_ROW_MAJOR, nor used with heaps that have D3D12_HEAP_FLAG_DENY_RT_DS_TEXTURES or D3D12_HEAP_FLAG_ALLOW_DISPLAY. +
  • +
  • Precludes usage of WriteToSubresource and ReadFromSubresource. +
  • +
  • Precludes GPU copying of a subregion. CopyTextureRegion must copy a whole subresource to or from resources with this flag.
  • +
+
+ + Allows an unordered access view to be created for the resource, as well as enables the resource to transition into the state of D3D12_RESOURCE_STATE_UNORDERED_ACCESS. Some adapter architectures must resort to less efficient texture layouts in order to provide this functionality. If a texture is rarely used for unordered access, it may be worth having two textures around and copying between them. One texture would have this flag, while the other wouldn't. Applications should avoid setting this flag when unordered access operations will never occur. + + +The following restrictions and interactions apply: + +
    +
  • Either the texture format must support unordered access capabilities at the current feature level. Or, when the format is a typeless format, a format within the same typeless group must support unordered access capabilities at the current feature level. +
  • +
  • Cannot be set in conjunction with textures that have D3D12_TEXTURE_LAYOUT_ROW_MAJOR when D3D12_FEATURE_DATA_D3D12_OPTIONS::CrossAdapterRowMajorTextureSupported is FALSE nor in conjunction with textures that have D3D12_TEXTURE_LAYOUT_64KB_STANDARD_SWIZZLE when D3D12_FEATURE_DATA_D3D12_OPTIONS::StandardSwizzle64KBSupported is FALSE, nor when the feature level is less than 11.0. +
  • +
  • Cannot be used with MSAA textures.
  • +
+
+ + Disallows a shader resource view to be created for the resource, as well as disables the resource to transition into the state of D3D12_RESOURCE_STATE_NON_PIXEL_SHADER_RESOURCE or D3D12_RESOURCE_STATE_PIXEL_SHADER_RESOURCE. Some adapter architectures experience increased bandwidth for depth stencil textures when shader resource views are precluded. If a texture is rarely used for shader resource, it may be worth having two textures around and copying between them. One texture would have this flag and the other wouldn't. Applications should set this flag when depth stencil textures will never be used from shader resource views. + + +The following restrictions and interactions apply: + + +
    +
  • Must be used with D3D12_RESOURCE_FLAG_ALLOW_DEPTH_STENCIL. +
  • +
+
+ + Allows the resource to be used for cross-adapter data, as well as the same features enabled by ALLOW_SIMULTANEOUS_ACCESS. Cross adapter resources commonly preclude techniques that reduce effective texture bandwidth during usage, and some adapter architectures may require different caching behavior. Applications should avoid setting this flag when the resource data will never be used with another adapter. + +The following restrictions and interactions apply: + + +
    +
  • Must be used with heaps that have D3D12_HEAP_FLAG_SHARED_CROSS_ADAPTER.
  • +
  • Cannot be used with heaps that have D3D12_HEAP_FLAG_ALLOW_DISPLAY.
  • +
+
+ + Allows a resource to be simultaneously accessed by multiple different queues, devices or processes (for example, allows a resource to be used with ResourceBarrier transitions performed in more than one command list + executing at the same time). + +Simultaneous access allows multiple readers and one writer, as long as the writer doesn't concurrently modify the texels that other readers are accessing. Some adapter architectures cannot leverage techniques to reduce effective texture bandwidth during usage. + +However, applications should avoid setting this flag when multiple readers are not required during frequent, non-overlapping writes to textures. Use of this flag can compromise resource fences to perform waits, and prevents any compression being used with a resource. + +These restrictions and interactions apply. + +- Can't be used with D3D12_RESOURCE_DIMENSION_BUFFER; but buffers always have the properties represented by this flag. +- Can't be used with MSAA textures. +- Can't be used with [D3D12_RESOURCE_FLAG_ALLOW_DEPTH_STENCIL](). + + + This resource may only be used as a decode reference frame. It may only be written to or read by the video decode operation. + +D3D12_VIDEO_DECODE_TIER_1 and D3D12_VIDEO_DECODE_TIER_2 may report D3D12_VIDEO_DECODE_CONFIGURATION_FLAG_REFERENCE_ONLY_ALLOCATIONS_REQUIRED in the D3D12_FEATURE_DATA_VIDEO_DECODE_SUPPORT structure configuration flag. If so, the application must allocate reference frames with the new D3D12\_RESOURCE\_VIDEO\_DECODE\_REFERENCE\_ONLY resource flag. D3D12_VIDEO_DECODE_TIER_3 must not set the [D3D12_VIDEO_DECODE_CONFIGURATION_FLAG_REFERENCE_ONLY_ALLOCATIONS_REQUIRED] +(../d3d12video/ne-d3d12video-d3d12_video_decode_configuration_flags)) configuration flag and must not require the use of this resource flag. + + + + Atomically copies a primary data element of type UINT from one resource to another, along with optional dependent resources. + Microsoft Docs: + SAL: _In_ + +The resource that the UINT primary data element is copied into. + An offset into the destination resource buffer that specifies where the primary data element is copied into, in bytes. This offset combined with the base address of the resource buffer must result in a memory address that's naturally aligned for UINT values. + SAL: _In_ + +The resource that the UINT primary data element is copied from. This data is typically an address, index, or other handle that shader code can use to locate the most-recent version of latency-sensitive information. + An offset into the source resource buffer that specifies where the primary data element is copied from, in bytes. This offset combined with the base address of the resource buffer must result in a memory address that's naturally aligned for UINT values. + The number of dependent resources. + SAL: _In_reads_(Dependencies) + +An array of resources that contain the dependent elements of the data payload. + SAL: _In_reads_(Dependencies) + +An array of subresource ranges that specify the dependent elements of the data payload. These elements are completely updated before the primary data element is itself atomically copied. This ensures that the entire operation is logically atomic; that is, the primary data element never refers to an incomplete data payload. + + + + + Represents a meta command. A meta command is a Direct3D 12 object representing an algorithm that is accelerated by independent hardware vendors (IHVs). It's an opaque reference to a command generator that is implemented by the driver. + Microsoft Docs: + + + + + Specifies the result of a call to ID3D12Device5::CheckDriverMatchingIdentifier which queries whether serialized data is compatible with the current device and driver version. + Microsoft Docs: + + + + Serialized data is compatible with the current device/driver. + + + The specified D3D12_SERIALIZED_DATA_TYPE specified is unknown or unsupported. + + + Format of the data in D3D12_SERIALIZED_DATA_DRIVER_MATCHING_IDENTIFIER is unrecognized. This could indicate either corrupt data or the identifier was produced by a different hardware vendor. + + + Serialized data is recognized, but its version is not compatible with the current driver. This result may indicate that the device is from the same hardware vendor but is an incompatible version. + + + D3D12_SERIALIZED_DATA_TYPE specifies a data type that is not compatible with the type of serialized data. As long as there is only a single defined serialized data type this error cannot not be produced. + + + + Defines constants that specify a cross-API sharing support tier. + Microsoft Docs: + + + + Specifies that the most basic level of cross-API sharing is supported, including the following resource data formats. + +* DXGI_FORMAT_R8G8B8A8_UNORM +* DXGI_FORMAT_R8G8B8A8_UNORM_SRGB +* DXGI_FORMAT_B8G8R8A8_UNORM +* DXGI_FORMAT_B8G8R8A8_UNORM_SRGB +* DXGI_FORMAT_B8G8R8X8_UNORM +* DXGI_FORMAT_B8G8R8X8_UNORM_SRGB +* DXGI_FORMAT_R10G10B10A2_UNORM +* DXGI_FORMAT_R16G16B16A16_FLOAT + + + Specifies that cross-API sharing functionality of Tier 0 is supported, plus the following formats. + +* DXGI_FORMAT_R16G16B16A16_TYPELESS +* DXGI_FORMAT_R10G10B10A2_TYPELESS +* DXGI_FORMAT_R8G8B8A8_TYPELESS +* DXGI_FORMAT_R8G8B8X8_TYPELESS +* DXGI_FORMAT_R16G16_TYPELESS +* DXGI_FORMAT_R8G8_TYPELESS +* DXGI_FORMAT_R32_TYPELESS +* DXGI_FORMAT_R16_TYPELESS +* DXGI_FORMAT_R8_TYPELESS + +This level support is built into WDDM 2.4. + +Also see [Extended support for shared Texture2D resources](/windows/win32/direct3d11/direct3d-11-1-features#extended-support-for-shared-texture2d-resources). + + + Specifies that cross-API sharing functionality of Tier 1 is supported, plus the following formats. + +* DXGI_FORMAT_NV12 (also see [Extended NV12 texture support](/windows/win32/direct3d11/direct3d-11-4-features#extended-nv12-texture-support)) + + + Specifies that cross-API sharing functionality of Tier 2 is supported, plus the following formats. + +* DXGI_FORMAT_R11G11B10_FLOAT + + + + Describes a video extension command. + Microsoft Docs: + + + + For single GPU operation, set this to zero. If there are multiple GPU nodes, set a bit to identify the node (the device's physical adapter) to which the command queue applies. Each bit in the mask corresponds to a single node. Only 1 bit may be set. + + + The unique identifier for the video extension command. + + + + Specifies the type of access that an application is given to the specified resource(s) at the transition into a render pass. + Microsoft Docs: + + + + Indicates that your application doesn't have any dependency on the prior contents of the resource(s). You also shouldn't have any expectations about those contents, because a display driver may return the previously-written contents, or it may return uninitialized data. You can be assured that reading from the resource(s) won't hang the GPU, even if you do get undefined data back. +A read is defined as a traditional read from an unordered access view (UAV), a shader resource view (SRV), a constant buffer view (CBV), a vertex buffer view (VBV), an index buffer view (IBV), an IndirectArg binding/read, or a blend/depth-testing-induced read. + + + Indicates that your application has a dependency on the prior contents of the resource(s), so the contents must be loaded from main memory. + + + Indicates that your application needs the resource(s) to be cleared to a specific value (a value that your application specifies). This clear occurs whether or not you interact with the resource(s) during the render pass. You specify the clear value at +BeginRenderPass time, in the Clear member of your D3D12_RENDER_PASS_BEGINNING_ACCESS structure. + + + Indicates that your application will neither read from nor write to the resource(s) during the render pass. You would most likely use this value to indicate that you won't be accessing the depth/stencil plane for a depth/stencil view (DSV). You must pair this value with D3D12_RENDER_PASS_ENDING_ACCESS_TYPE_NO_ACCESS in the corresponding D3D12_RENDER_PASS_ENDING_ACCESS structure. + + + + Enables the debug layer. + Microsoft Docs: + + + + + Describes the space currently used by an acceleration structure.. + Microsoft Docs: + + + + Space currently used by an acceleration structure. If the acceleration structure hasn’t had a compaction operation performed on it, this size is the same one reported by GetRaytracingAccelerationStructurePrebuildInfo, and if it has been compacted this size is the same reported for post-build info with D3D12_RAYTRACING_ACCELERATION_STRUCTURE_POSTBUILD_INFO_COMPACTED_SIZE. + + + + Specifies the type of heap. When resident, heaps reside in a particular physical memory pool with certain CPU cache properties. + Microsoft Docs: + + + + Specifies the default heap. + This heap type experiences the most bandwidth for the GPU, but cannot provide CPU access. + The GPU can read and write to the memory from this pool, and resource transition barriers may be changed. + The majority of heaps and resources are expected to be located here, and are typically populated through resources in upload heaps. + + + Specifies a heap used for uploading. + This heap type has CPU access optimized for uploading to the GPU, but does not experience the maximum amount of bandwidth for the GPU. + This heap type is best for CPU-write-once, GPU-read-once data; but GPU-read-once is stricter than necessary. + GPU-read-once-or-from-cache is an acceptable use-case for the data; but such usages are hard to judge due to differing GPU cache designs and sizes. + If in doubt, stick to the GPU-read-once definition or profile the difference on many GPUs between copying the data to a _DEFAULT heap vs. reading the data from an _UPLOAD heap. + + +Resources in this heap must be created with D3D12_RESOURCE_STATE_GENERIC_READ and cannot be changed away from this. + The CPU address for such heaps is commonly not efficient for CPU reads. + + +The following are typical usages for _UPLOAD heaps: + + +
    +
  • Initializing resources in a _DEFAULT heap with data from the CPU. +
  • +
  • Uploading dynamic data in a constant buffer that is read, repeatedly, by each vertex or pixel. +
  • +
+The following are likely not good usages for _UPLOAD heaps: + + +
    +
  • Re-initializing the contents of a resource every frame. +
  • +
  • Uploading constant data which is only used every other Draw call, where each Draw uses a non-trivial amount of other data. +
  • +
+
+ + Specifies a heap used for reading back. + This heap type has CPU access optimized for reading data back from the GPU, but does not experience the maximum amount of bandwidth for the GPU. + This heap type is best for GPU-write-once, CPU-readable data. + The CPU cache behavior is write-back, which is conducive for multiple sub-cache-line CPU reads. + + +Resources in this heap must be created with D3D12_RESOURCE_STATE_COPY_DEST, and cannot be changed away from this. + + + Specifies a custom heap. + The application may specify the memory pool and CPU cache properties directly, which can be useful for UMA optimizations, multi-engine, multi-adapter, or other special cases. + To do so, the application is expected to understand the adapter architecture to make the right choice. + For more details, see + D3D12_FEATURE_ARCHITECTURE, + D3D12_FEATURE_DATA_ARCHITECTURE, and + GetCustomHeapProperties. + + + + Represents a Direct3D 12 video decoder that contains resolution-independent resources and state for performing the decode operation. Adds support for protected resources. + Microsoft Docs: + + + + + Retrieves the requested PSO from the library. + Microsoft Docs: + The unique name of the PSO. + Specifies a description of the required PSO in a D3D12_GRAPHICS_PIPELINE_STATE_DESC structure. This input description is matched against the data in the current library database, and stored in order to prevent duplication of PSO contents. + Specifies a REFIID for the ID3D12PipelineState object. Typically set this, and the following parameter, with the macro IID_PPV_ARGS(&PSO1), where PSO1 is the name of the object. + Specifies a pointer that will reference the returned PSO. + + + + + Describes the shape of a tile by specifying its dimensions. + Microsoft Docs: + + + + The width in texels of the tile. + + + The height in texels of the tile. + + + The depth in texels of the tile. + + + + Description of the post-build information to generate from an acceleration structure. Use this structure in calls to EmitRaytracingAccelerationStructurePostbuildInfo and BuildRaytracingAccelerationStructure. + Microsoft Docs: + + + + Storage for the post-build info result. Size required and the layout of the contents written by the system depend on the value of the InfoType field. + +The memory pointed to must be in state D3D12_RESOURCE_STATE_UNORDERED_ACCESS. The memory must be aligned to the natural alignment for the members of the particular output structure being generated (e.g. 8 bytes for a struct with the largest members being UINT64). + + + The type of post-build information to retrieve. + + + + Describes parameters for drawing indexed instances. + Microsoft Docs: + + + + The number of indices read from the index buffer for each instance. + + + The number of instances to draw. + + + The location of the first index read by the GPU from the index buffer. + + + A value added to each index before reading a vertex from the vertex buffer. + + + A value added to each index before reading per-instance data from a vertex buffer. + + + + Indicates whether a shader is a sample frequency shader. + Microsoft Docs: + + + + + Allow or deny certain types of messages to pass through a filter. + Microsoft Docs: + + + + Number of message categories to allow or deny. + + + Array of message categories to allow or deny. Array must have at least NumCategories members (see D3D12_MESSAGE_CATEGORY). + + + Number of message severity levels to allow or deny. + + + Array of message severity levels to allow or deny. Array must have at least NumSeverities members (see D3D12_MESSAGE_SEVERITY). + + + Number of message IDs to allow or deny. + + + Array of message IDs to allow or deny. Array must have at least NumIDs members (see D3D12_MESSAGE_ID). + + + + Reports the compatibility of serialized data, such as a serialized raytracing acceleration structure resulting from a call to CopyRaytracingAccelerationStructure with mode D3D12_RAYTRACING_ACCELERATION_STRUCTURE_COPY_MODE_SERIALIZE, with the current device/driver. + Microsoft Docs: + The type of the serialized data. For more information, see D3D12_SERIALIZED_DATA_TYPE. + Identifier from the header of the serialized data to check with the driver. For more information, see D3D12_SERIALIZED_DATA_DRIVER_MATCHING_IDENTIFIER. + + + + + Describes a 3D box. + Microsoft Docs: + + + + The x position of the left hand side of the box. + + + The y position of the top of the box. + + + The z position of the front of the box. + + + The x position of the right hand side of the box, plus 1. This means that right - left equals the width of the box. + + + The y position of the bottom of the box, plus 1. This means that bottom - top equals the height of the box. + + + The z position of the back of the box, plus 1. This means that back - front equals the depth of the box. + + + + Provides data for calls to ID3D12VideoDevice::CheckFeatureSupport when the feature specified is D3D12_FEATURE_VIDEO_MOTION_ESTIMATOR. Retrieves the motion estimation capabilities for a video encoder. + Microsoft Docs: + + + + In multi-adapter operation, identifies the physical adapter of the device this operation applies to. + + + A DXGI_FORMAT structure specifying the format of the input resources. + + + A bitwise OR combination of values from the D3D12_VIDEO_MOTION_ESTIMATOR_SEARCH_BLOCK_SIZE_FLAGS enumeration specifying the encoder's supported search block sizes for motion estimation. + + + A bitwise OR combination of values from the D3D12_VIDEO_MOTION_ESTIMATOR_VECTOR_PRECISION_FLAGS enumeration specifying the encoder's supported vector precision for motion estimation. + + + A D3D12_VIDEO_SIZE_RANGE structure representing the minimum and maximum input size supported by the driver. The driver sets the fields of this structure to zero if motion estimation is unsupported. + + + + Specifies whether a video decoding operation is supported. + Microsoft Docs: + + + + The video decoding operation isn't supported. + + + The video decoding operation is supported. + + + + Specifies the type of the indirect parameter. + Microsoft Docs: + + + + Indicates the type is a Draw call. + + + Indicates the type is a DrawIndexed call. + + + Indicates the type is a Dispatch call. + + + Indicates the type is a vertex buffer view. + + + Indicates the type is an index buffer view. + + + Indicates the type is a constant. + + + Indicates the type is a constant buffer view (CBV). + + + Indicates the type is a shader resource view (SRV). + + + Indicates the type is an unordered access view (UAV). + + + + Creates a graphics pipeline state object. + Microsoft Docs: + A pointer to a D3D12_GRAPHICS_PIPELINE_STATE_DESC structure that describes graphics pipeline state. + The globally unique identifier (GUID) for the pipeline state interface (ID3D12PipelineState). + The REFIID, or GUID, of the interface to the pipeline state can be obtained by using the __uuidof() macro. + For example, __uuidof(ID3D12PipelineState) will get the GUID of the interface to a pipeline state. + A pointer to a memory block that receives a pointer to the ID3D12PipelineState interface for the pipeline state object. + The pipeline state object is an immutable state object. It contains no methods. + + + + + Copy a multi-sampled resource into a non-multi-sampled resource. + Microsoft Docs: + Destination resource. Must be a created on a D3D12_HEAP_TYPE_DEFAULT heap and be single-sampled. See ID3D12Resource. + A zero-based index, that identifies the destination subresource. Use D3D12CalcSubresource to calculate the subresource index if the parent resource is complex. + Source resource. Must be multisampled. + The source subresource of the source resource. + A DXGI_FORMAT that indicates how the multisampled resource will be resolved to a single-sampled resource. See remarks. + + + + + A library-reflection interface accesses library info. + Microsoft Docs: + + + + + Push a copy of retrieval filter currently on the top of the retrieval-filter stack onto the retrieval-filter stack. + Microsoft Docs: + + + + + Describes parameters for drawing instances. + Microsoft Docs: + + + + Specifies the number of vertices to draw, per instance. + + + Specifies the number of instances. + + + Specifies an index to the first vertex to start drawing from. + + + Specifies an index to the first instance to start drawing from. + + + + Describes the index buffer to view. + Microsoft Docs: + + + + The GPU virtual address of the index buffer. + D3D12_GPU_VIRTUAL_ADDRESS is a typedef'd synonym of UINT64. + + + The size in bytes of the index buffer. + + + A DXGI_FORMAT-typed value for the index-buffer format. + + + + Specifies flags for raytracing geometry in a D3D12_RAYTRACING_GEOMETRY_DESC structure. + Microsoft Docs: + + + + No options specified. + + + When rays encounter this geometry, the geometry acts as if no any hit shader is present. It is recommended that apps use this flag liberally, as it can enable important ray-processing optimizations. Note that this behavior can be overridden on a per-instance basis with D3D12_RAYTRACING_INSTANCE_FLAGS and on a per-ray basis using ray flags in TraceRay. + + + By default, the system is free to trigger an any hit shader more than once for a given ray-primitive intersection. This flexibility helps improve the traversal efficiency of acceleration structures in certain cases. For instance, if the acceleration structure is implemented internally with bounding volumes, the implementation may find it beneficial to store relatively long triangles in multiple bounding boxes rather than a larger single box. However, some application use cases require that intersections be reported to the any hit shader at most once. This flag enables that guarantee for the given geometry, potentially with some performance impact. + +This flag applies to all geometry types. + + + + The type of a state subobject. Use with D3D12_STATE_SUBOBJECT. + Microsoft Docs: + + + + Subobject type is D3D12_STATE_OBJECT_CONFIG. + + + Subobject type is D3D12_GLOBAL_ROOT_SIGNATURE. + + + Subobject type is D3D12_LOCAL_ROOT_SIGNATURE. + + + Subobject type is D3D12_NODE_MASK. + +> [!IMPORTANT] +> On some versions of the DirectX Runtime, specifying a node via [D3D12_NODE_MASK](/windows/win32/api/d3d12/ns-d3d12-d3d12_node_mask) in a [D3D12_STATE_SUBOBJECT](/windows/win32/api/d3d12/ns-d3d12-d3d12_state_subobject) with type D3D12_STATE_SUBOBJECT_TYPE_NODE_MASK, the runtime will incorrectly handle a node mask value of 0, which should use node #1, which will lead to errors when attempting to use the state object later. Specify an explicit node value of 1, or omit the [D3D12_NODE_MASK](/windows/win32/api/d3d12/ns-d3d12-d3d12_node_mask) subobject to avoid this issue. + + + Subobject type is D3D12_DXIL_LIBRARY_DESC. + + + Subobject type is D3D12_EXISTING_COLLECTION_DESC. + + + Subobject type is D3D12_SUBOBJECT_TO_EXPORTS_ASSOCIATION. + + + Subobject type is D3D12_DXIL_SUBOBJECT_TO_EXPORTS_ASSOCIATION. + + + Subobject type is D3D12_RAYTRACING_SHADER_CONFIG. + + + Subobject type is D3D12_RAYTRACING_PIPELINE_CONFIG. + + + Subobject type is D3D12_HIT_GROUP_DESC + + + The maximum valid subobject type value. + + + + A state subobject that represents a shader configuration. + Microsoft Docs: + + + + The maximum storage for scalars (counted as 4 bytes each) in ray payloads in raytracing pipelines that contain this program. + + + The maximum number of scalars (counted as 4 bytes each) that can be used for attributes in pipelines that contain this shader. The value cannot exceed D3D12_RAYTRACING_MAX_ATTRIBUTE_SIZE_IN_BYTES. + + + + Defines vector precision values for video motion estimation. + Microsoft Docs: + + + + The vector precision is quarter-pixel motion. + + + + Describes the level of shader caching supported in the current graphics driver. + Microsoft Docs: + + + + SAL: _Out_ + +Indicates the level of caching supported. + + + + Specifies the types of parameters for video extension commands. + Microsoft Docs: + + + + Unsigned 8-bit integer. + + + Unsigned 16-bit integer. + + + Unsigned 32-bit integer. + + + Unsigned 64-bit integer. + + + Signed 8-bit integer. + + + Signed 16-bit integer. + + + Signed 32-bit integer. + + + Signed 64-bit integer. + + + IEEE 32-bit floating point number + + + IEEE 64-bit floating point number + + + A D3D12DDI_HRESOURCE handle. The caller must use resource barriers to transition to the state appropriate for the parameter. + +| D3D12_COMMAND_LIST_SUPPORT_FLAGS value | Read | Write | +|-------------------|---------------------------|------------------------| +| D3D12_COMMAND_LIST_SUPPORT_FLAG_VIDEO_DECODE | D3D12_RESOURCE_STATE_VIDEO_DECODE_READ | D3D12_RESOURCE_STATE_VIDEO_DECODE_WRITE | +| D3D12_COMMAND_LIST_SUPPORT_FLAG_VIDEO_PROCESS | D3D12_RESOURCE_STATE_VIDEO_PROCESS_READ | D3D12_RESOURCE_STATE_VIDEO_PROCESS_WRITE | +| D3D12_COMMAND_LIST_SUPPORT_FLAG_VIDEO_ENCODE | D3D12_RESOURCE_STATE_VIDEO_ENCODE_READ | D3D12_RESOURCE_STATE_VIDEO_ENCODE_WRITE | + + + + Details the adapter's GPU virtual address space limitations, including maximum address bits per resource and per process. + Microsoft Docs: + + + + The maximum GPU virtual address bits per resource. + +Some adapters have significantly less bits available per resource than per process, while other adapters have significantly greater bits available per resource than per process. The latter scenario tends to happen in less common scenarios, like when running a 32-bit process on certain UMA adapters. +When per resource capabilities are greater than per process, the greater per resource capabilities can only be leveraged by reserved resources or NULL mapped pages. + + + The maximum GPU virtual address bits per process. + +When this value is nearly equal to the available residency budget, Evict will not be a feasible option to manage residency. See MakeResident for more details. + + + + Describes which resources are supported by the current graphics driver for a given format. + Microsoft Docs: + + + + A DXGI_FORMAT-typed value for the format to return info about. + + + A combination of D3D12_FORMAT_SUPPORT1-typed values that are combined by using a bitwise OR operation. The resulting value specifies which resources are supported. + + + A combination of D3D12_FORMAT_SUPPORT2-typed values that are combined by using a bitwise OR operation. The resulting value specifies which unordered resource options are supported. + + + + Returns the debug feature flags that have been set on a command list. + Microsoft Docs: + + + + + Gets optional device-wide Debug Layer settings. + Microsoft Docs: + Specifies a D3D12_DEBUG_DEVICE_PARAMETER_TYPE value that indicates which debug parameter data to set. + Points to the memory that will be filled with a copy of the debug parameter data. The interpretation of this data depends on the D3D12_DEBUG_DEVICE_PARAMETER_TYPE given in the Type parameter. + Size in bytes of the memory buffer pointed to by pData. + + + + + Specifies depth-stencil view options. + Microsoft Docs: + + + + Indicates a default view. + + + Indicates that depth values are read only. + + + Indicates that stencil values are read only. + + + + Describes the access to resource(s) that is requested by an application at the transition out of a render pass. + Microsoft Docs: + + + + A D3D12_RENDER_PASS_ENDING_ACCESS_TYPE. The type of access being requested. + + + A D3D12_RENDER_PASS_ENDING_ACCESS_RESOLVE_PARAMETERS. Appropriate when Type is D3D12_RENDER_PASS_ENDING_ACCESS_TYPE_RESOLVE. Description of the resource to resolve to. + + + + Gets an ID3D12ShaderReflectionType Interface interface containing the variable base class type. + Microsoft Docs: + + + + + Provides detail about whether the adapter supports creating heaps from existing system memory. + Microsoft Docs: + + + + TRUE if the adapter can create a heap from existing system memory. Otherwise, FALSE. + + + + Gets the function reflector. + Microsoft Docs: + The zero-based index of the function reflector to retrieve. + + + + + Represents prebuild information about a raytracing acceleration structure. Get an instance of this stucture by calling GetRaytracingAccelerationStructurePrebuildInfo. + Microsoft Docs: + + + + Size required to hold the result of an acceleration structure build based on the specified inputs. + + + Scratch storage on the GPU required during acceleration structure build based on the specified inputs. + + + + Defines constants that specify the shading rate (for variable-rate shading, or VRS). + Microsoft Docs: + + + + Specifies no change to the shading rate. + + + Specifies that the shading rate should reduce vertical resolution 2x. + + + Specifies that the shading rate should reduce horizontal resolution 2x. + + + Specifies that the shading rate should reduce the resolution of both axes 2x. + + + Specifies that the shading rate should reduce horizontal resolution 2x, and reduce vertical resolution 4x. + + + Specifies that the shading rate should reduce horizontal resolution 4x, and reduce vertical resolution 2x. + + + Specifies that the shading rate should reduce the resolution of both axes 4x. + + + + Describes an array of unordered-access 1D texture resources. + Microsoft Docs: + + + + The mipmap slice index. + + + The zero-based index of the first array slice to be accessed. + + + The number of slices in the array. + + + + Gets application-defined data from a device object. + Microsoft Docs: + The GUID that is associated with the data. + A pointer to a variable that on input contains the size, in bytes, of the buffer that pData points to, and on output contains the size, in bytes, of the amount of data that GetPrivateData retrieved. + A pointer to a memory block that receives the data from the device object if pDataSize points to a value that specifies a buffer large enough to hold the data. + + + + + Retrieves support information for video decoding. + Microsoft Docs: + + + + For single GPU operation, set this to zero. If there are multiple GPU nodes, set a bit to identify the node (the device's physical adapter) to which the command queue applies. Each bit in the mask corresponds to a single node. Only 1 bit may be set. + + + A D3D12\_VIDEO\_DECODE\_CONFIGURATION structure specifying the decode profile, bitstream encryption, and interlace type of the source stream. + + + The decode width of the source stream. + + + The decode height of the source stream + + + The DXGI\_FORMAT to use as the decode format. This format is the output format if no decoder conversion is specified. + + + The frame rate of the video format. A value of 0 means the frame rate is unknown. + + + The average bits per second data compression rate for the compressed video stream. This information is used by the driver to determine whether the video can be decoded in real-time. A value of 0 means the bit rate is unknown. + + + A combination of values from the D3D12\_VIDEO\_DECODE\_SUPPORT\_FLAGS enumeration indicating the support for video decoding. This value is populated by the call to ID3D12Device::CheckFeatureSupport. + + + A combination of values from the D3D12\_VIDEO\_DECODE\_CONFIGURATION\_FLAGS eumeration describing the video decode configuration. This value is populated by the call to ID3D12Device::CheckFeatureSupport. + + + A member of the D3D12\_VIDEO\_DECODE\_TIER enumeration specifying the decoding tier of a hardware video decoder. + + + + Specifies indices for arrays of per component histogram information. + Microsoft Docs: + + + + If the format is a YUV format, indicates a histogram for the Y component. + + + If the format is a YUV format, indicates a histogram for the U component. + + + If the format is a YUV format, indicates a histogram for the V component. + + + If the format is an RGB/BGR format, indicates a histogram for the R component. + + + If the format is an RGB/BGR format, indicates a histogram for the G component. + + + If the format is an RGB/BGR format, indicates a histogram for the B component. + + + If the format has an alpha channel, indicates a histogram for the A component. + + + + Identifies the portion of a depth-stencil buffer for writing depth data. + Microsoft Docs: + + + + Turn off writes to the depth-stencil buffer. + + + Turn on writes to the depth-stencil buffer. + + + + Creates a shader-resource view for accessing data in a resource. + Microsoft Docs: + A pointer to the ID3D12Resource object that represents the shader resource. + +At least one of pResource or pDesc must be provided. +A null pResource is used to initialize a null descriptor, which guarantees D3D11-like null binding behavior (reading 0s, writes are discarded), but must have a valid pDesc in order to determine the descriptor type. + A pointer to a D3D12_SHADER_RESOURCE_VIEW_DESC structure that describes the shader-resource view. + +A null pDesc is used to initialize a default descriptor, if possible. This behavior is identical to the D3D11 null descriptor behavior, where defaults are filled in. This behavior inherits the resource format and dimension (if not typeless) and for buffers SRVs target a full buffer and are typed (not raw or structured), and for textures SRVs target a full texture, all mips and all array slices. Not all resources support null descriptor initialization. + Describes the CPU descriptor handle that represents the shader-resource view. This handle can be created in a shader-visible or non-shader-visible descriptor heap. + + + + + Defines constants that specify protected resource session flags. + Microsoft Docs: + + + + Specifies no flag. + + + + The root signature defines what resources are bound to the graphics pipeline. A root signature is configured by the app and links command lists to the resources the shaders require. Currently, there is one graphics and one compute root signature per app. + Microsoft Docs: + + + + + Contains methods to return the deserialized D3D12_ROOT_SIGNATURE_DESC1 data structure, of any version of a serialized root signature. + Microsoft Docs: + + + + + Represents a virtual adapter. This interface extends ID3D12Device5. + Microsoft Docs: + + + + + Encapsulates a list of graphics commands for video encoding, including motion estimation. + Microsoft Docs: + + + + + A command signature object enables apps to specify indirect drawing, including the buffer format, command type and resource bindings to be used. + Microsoft Docs: + + + + + Get the number of messages that are able to pass through a retrieval filter. + Microsoft Docs: + + + + + Get a message identifier to break on when a message with that identifier passes through the storage filter. + Microsoft Docs: + Message identifier to break on. + + + + + Contains the reference frames needed to perform video processing. + Microsoft Docs: + + + + The number of past reference frames provided in ppPastFrames. + + + A pointer to an array of ID3D12Resource surfaces. The number of elements in the array is NumPastFrames. + + + An array of subresource indices for the list of ppPastFrames textures. NULL indicates subresource 0 for each resource. + + + The number of future reference frames provided in ppPastFrames. + + + A pointer to an array of ID3D12Resource surfaces. The number of elements in the array is NumFutureFrames. + + + An array of subresource indices for the list of ppFutureFrames textures. NULL indicates subresource 0 for each resource. + + + + Sets a descriptor table into the graphics root signature. + Microsoft Docs: + The slot number for binding. + A GPU_descriptor_handle object for the base descriptor to set. + + + + + Indicates root signature version support. + Microsoft Docs: + + + + On input, specifies the highest version D3D_ROOT_SIGNATURE_VERSION to check for. On output specifies the highest version, up to the input version specified, actually available. + + + + Deserializes a root signature so you can determine the layout definition (D3D12_ROOT_SIGNATURE_DESC). + Microsoft Docs: + A pointer to the source data for the serialized root signature. + The size, in bytes, of the block of memory that pSrcData points to. + The globally unique identifier (GUID) for the root signature deserializer interface. See remarks. + A pointer to a memory block that receives a pointer to the root signature deserializer. + + + + + A descriptor heap is a collection of contiguous allocations of descriptors, one allocation for every descriptor. + Microsoft Docs: + + + + + Asynchronously makes objects resident for the device. + Microsoft Docs: + Controls whether the objects should be made resident if the application is over its memory budget. + The number of objects in the ppObjects array to make resident for the device. + A pointer to a memory block; contains an array of ID3D12Pageable interface pointers for the objects. + + +Even though most D3D12 objects inherit from ID3D12Pageable, residency changes are only supported on the following: + +
    +
  • descriptor heaps
  • +
  • heaps
  • +
  • committed resources
  • +
  • query heaps
  • +
+ A pointer to the fence used to signal when the work is done. + An unsigned 64-bit value signaled to the fence when the work is done. +
+
+ + + Describes a compute pipeline state object. + Microsoft Docs: + + + + A pointer to the ID3D12RootSignature object. + + + A D3D12_SHADER_BYTECODE structure that describes the compute shader. + + + For single GPU operation, set this to zero. If there are multiple GPU nodes, set bits to identify the nodes (the device's physical adapters) for which the compute pipeline state is to apply. + Each bit in the mask corresponds to a single node. + Refer to Multi-adapter systems. + + + A cached pipeline state object, as a D3D12_CACHED_PIPELINE_STATE structure. pCachedBlob and CachedBlobSizeInBytes may be set to NULL and 0 respectively. + + + A D3D12_PIPELINE_STATE_FLAGS enumeration constant such as for "tool debug". + + + + Get the retrieval filter at the top of the retrieval-filter stack. + Microsoft Docs: + Retrieval filter at the top of the retrieval-filter stack. + Size of the retrieval filter in bytes. If pFilter is NULL, the size of the retrieval filter will be output to this parameter. + + + + + Sets a group of constants in the compute root signature. + Microsoft Docs: + The slot number for binding. + The number of constants to set in the root signature. + The source data for the group of constants to set. + The offset, in 32-bit values, to set the first constant of the group in the root signature. + + + + + Describes the subresource from a multi sampled 2D texture that is accessible to a depth-stencil view. + Microsoft Docs: + + + + Unused. + + + + Sets a state object on the command list. + Microsoft Docs: + The state object to set on the command list. In the current release, this can only be of type D3D12_STATE_OBJECT_TYPE_RAYTRACING_PIPELINE. + + + + + Flags for a raytracing acceleration structure instance. These flags can be used to override D3D12_RAYTRACING_GEOMETRY_FLAGS for individual instances. + Microsoft Docs: + + + + No options specified. + + + Disables front/back face culling for this instance. The Ray flags RAY_FLAG_CULL_BACK_FACING_TRIANGLES and RAY_FLAG_CULL_FRONT_FACING_TRIANGLES will have no effect on this instance. + + + This flag reverses front and back facings, which is useful if the application’s natural winding order differs from the default. By default, a triangle is front facing if its vertices appear clockwise from the ray origin and back facing if its vertices appear counter-clockwise from the ray origin, in object space in a left-handed coordinate system. + +Since these winding direction rules are defined in object space, they are unaffected by instance transforms. For example, an instance transform matrix with negative determinant (e.g. mirroring some geometry) does not change the facing of the triangles within the instance. Per-geometry transforms defined in D3D12_RAYTRACING_GEOMETRY_TRIANGLES_DESC , by contrast, get combined with the associated vertex data in object space, so a negative determinant matrix there does flip triangle winding. + + + The instance will act as if D3D12_RAYTRACING_GEOMETRY_FLAG_OPAQUE had been specified for all the geometries in the bottom-level acceleration structure referenced by the instance. Note that this behavior can be overridden by the ray flag RAY_FLAG_FORCE_NON_OPAQUE. + +This flag is mutually exclusive to the D3D12_RAYTRACING_INSTANCE_FLAG_FORCE_NON_OPAQUE flag. + + + The instance will act as if D3D12_RAYTRACING_GEOMETRY_FLAG_OPAQUE had not been specified for any of the geometries in the bottom-level acceleration structure referenced by the instance. Note that this behavior can be overridden by the ray flag RAY_FLAG_FORCE_OPAQUE. + +This flag is mutually exclusive to the D3D12_RAYTRACING_INSTANCE_FLAG_FORCE_OPAQUE flag. + + + + Describes a shader constant-buffer. + Microsoft Docs: + + + + The name of the buffer. + + + A D3D_CBUFFER_TYPE-typed value that indicates the intended use of the constant data. + + + The number of unique variables. + + + The size of the buffer, in bytes. + + + A combination of D3D_SHADER_CBUFFER_FLAGS-typed values that are combined by using a bitwise OR operation. The resulting value specifies properties for the shader constant-buffer. + + + + Defines the header for a serialized raytracing acceleration structure. + Microsoft Docs: + + + + The driver-matching identifier. + + + The size of serialized data. + + + Size of the memory that will be consumed when the acceleration structure is deserialized. This value is less than or equal to the size of the original acceleration structure before it was serialized. + + + Size of the array of D3D12_GPU_VIRTUAL_ADDRESS values that follow the header. For more information, see D3D12_RAYTRACING_ACCELERATION_STRUCTURE_POSTBUILD_INFO_SERIALIZATION_DESC. + + + + Gets a bit field of flags that indicates which debug features are on or off. + Microsoft Docs: + + + + + Sets all shaders and programs most of the fixed-function state of the graphics processing unit (GPU) pipeline. + Microsoft Docs: + Pointer to the ID3D12PipelineState containing the pipeline state data. + + + + + Provides detail about the adapter architecture, so that your application can better optimize for certain adapter properties. + Microsoft Docs: + + + + In multi-adapter operation, this indicates which physical adapter of the device is relevant. + See Multi-adapter systems. + NodeIndex is filled out by the application before calling CheckFeatureSupport, as the application can retrieve details about the architecture of each adapter. + + + Specifies whether the hardware and driver support a tile-based renderer. + The runtime sets this member to TRUE if the hardware and driver support a tile-based renderer. + + + Specifies whether the hardware and driver support UMA. + The runtime sets this member to TRUE if the hardware and driver support UMA. + + + Specifies whether the hardware and driver support cache-coherent UMA. + The runtime sets this member to TRUE if the hardware and driver support cache-coherent UMA. + + + + Gets a shader-reflection-variable type. + Microsoft Docs: + Zero-based index. + + + + + This interface enables modification of additional command list debug layer settings. + Microsoft Docs: + + + + + Gets an input-parameter description for a shader. + Microsoft Docs: + A zero-based parameter index. + A pointer to a shader-input-signature description. See D3D12_SIGNATURE_PARAMETER_DESC. + + + + + Sets application-defined data to a device object and associates that data with an application-defined GUID. + Microsoft Docs: + The GUID to associate with the data. + The size in bytes of the data. + A pointer to a memory block that contains the data to be stored with this device object. If pData is NULL, DataSize must also be 0, and any data that was previously associated with the GUID specified in guid will be destroyed. + + + + + Marks the beginning of a render pass by binding a set of output resources for the duration of the render pass. These bindings are to one or more render target views (RTVs), and/or to a depth stencil view (DSV). + Microsoft Docs: + A UINT. The number of render targets being bound. + A pointer to a constant D3D12_RENDER_PASS_RENDER_TARGET_DESC, which describes bindings (fixed for the duration of the render pass) to one or more render target views (RTVs), as well as their beginning and ending access characteristics. + A pointer to a constant D3D12_RENDER_PASS_DEPTH_STENCIL_DESC, which describes a binding (fixed for the duration of the render pass) to a depth stencil view (DSV), as well as its beginning and ending access characteristics. + A D3D12_RENDER_PASS_FLAGS. The nature/requirements of the render pass; for example, whether it is a suspending or a resuming render pass, or whether it wants to write to unordered access view(s). + + + + + Retrieves the list of supported profiles. + Microsoft Docs: + + + + For single GPU operation, set this to zero. If there are multiple GPU nodes, set a bit to identify the node (the device's physical adapter) to which the command queue applies. Each bit in the mask corresponds to a single node. Only 1 bit may be set. + + + A D3D12\_VIDEO\_DECODE\_CONFIGURATION structure describing the decode configuration. + + + A D3D12\_VIDEO\_SAMPLE structure representing the source decoded as sample description. + + + A D3D12\_VIDEO\_FORMAT structure containing the output sample description. + + + The frame rate of the video content. This is used by the driver to determine whether the video can be decoded in real-time. + + + The average bits per second data compression rate for the compressed video stream. This is used by the driver to determine whether the video can be decoded in real-time. + + + A combination of values from the D3D12\_VIDEO\_DECODE\_CONVERSION\_SUPPORT\_FLAGS indicating the support for the specified conversion. + + + A D3D12\_VIDEO\_SCALE\_SUPPORT structure representing the output size range for decode conversion. + + + + This interface is used to configure the runtime for tools such as PIX. Its not intended or supported for any other scenario. + Microsoft Docs: + + + + + Represents a fence. This interface extends ID3D12Fence, and supports the retrieval of the flags used to create the original fence. + Microsoft Docs: + + + + + Specifies the parameters for decode output conversion. + Microsoft Docs: + + + + A boolean value indicating whether decode conversion should be used. + + + A pointer to an ID3D12Resource containing the native decoding output. When downsampling is enabled, the output at native decode resolution, color space, and format may be required for future decode submissions (as reference frames, for instance). + + + The subresource index of the resource provided in pDecodeTexture2D to use. + + + A value from the DXGI_COLOR_SPACE_TYPE enumeration specifying the target color space of the output. + + + A value from the DXGI_COLOR_SPACE_TYPE enumeration specifying the source-decoded color space before conversion. + + + The output width, in pixels. + + + The output width, in pixels. + + + + Describes a meta command. + Microsoft Docs: + + + + A GUID uniquely identifying the meta command. + + + The meta command name. + + + Declares the command list states that are modified by the call to initialize the meta command. If all state bits are set, then that's equivalent to calling ID3D12GraphicsCommandList::ClearState. + + + Declares the command list states that are modified by the call to execute the meta command. If all state bits are set, then that's equivalent to calling ID3D12GraphicsCommandList::ClearState. + + + + Describes a shader-resource view. + Microsoft Docs: + + + + A DXGI_FORMAT-typed value that specifies the viewing format. See remarks. + + + A D3D12_SRV_DIMENSION-typed value that specifies the resource type of the view. This type is the same as the resource type of the underlying resource. This member also determines which _SRV to use in the union below. + + + A value, constructed using the D3D12_ENCODE_SHADER_4_COMPONENT_MAPPING macro. The D3D12_SHADER_COMPONENT_MAPPING enumeration specifies what values from memory should be returned when the texture is accessed in a shader via this shader resource view (SRV). For example, it can route component 1 (green) from memory, or the constant 0, into component 2 (.b) of the value given to the shader. + + + A D3D12_BUFFER_SRV structure that views the resource as a buffer. + + + A D3D12_TEX1D_SRV structure that views the resource as a 1D texture. + + + A D3D12_TEX1D_ARRAY_SRV structure that views the resource as a 1D-texture array. + + + A D3D12_TEX2D_SRV structure that views the resource as a 2D-texture. + + + A D3D12_TEX2D_ARRAY_SRV structure that views the resource as a 2D-texture array. + + + A D3D12_TEX2DMS_SRV structure that views the resource as a 2D-multisampled texture. + + + A D3D12_TEX2DMS_ARRAY_SRV structure that views the resource as a 2D-multisampled-texture array. + + + A D3D12_TEX3D_SRV structure that views the resource as a 3D texture. + + + A D3D12_TEXCUBE_SRV structure that views the resource as a 3D-cube texture. + + + A D3D12_TEXCUBE_ARRAY_SRV structure that views the resource as a 3D-cube-texture array. + + + A D3D12_RAYTRACING_ACCELERATION_STRUCTURE_SRV structure that views the resource as a raytracing acceleration structure. + + + + Push an empty storage filter onto the storage-filter stack. + Microsoft Docs: + + + + + Get the number of messages that were allowed to pass through a storage filter. + Microsoft Docs: + + + + + This shader-reflection interface provides access to variable type. + Microsoft Docs: + + + + + Describes the subresource from a 2D texture to use in a render-target view. + Microsoft Docs: + + + + The index of the mipmap level to use. + + + The index (plane slice number) of the plane to use in the texture. + + + + Specifies constraints for state objects. Use values from this enumeration in the D3D12_STATE_OBJECT_CONFIG structure. + Microsoft Docs: + + + + No state object constraints. + + + This flag applies to state objects of type collection only. Otherwise this flag is ignored. + +The exports from this collection are allowed to have unresolved references (dependencies) that would have to be resolved (defined) when the collection is included in a containing state object, such as a raytracing pipeline state object (RTPSO). This includes depending on externally defined subobject associations to associate an external subobject (e.g. root signature) to a local export. + +In the absence of this flag, all exports in this collection must have their dependencies fully locally resolved, including any necessary subobject associations being defined locally. Advanced implementations/drivers will have enough information to compile the code in the collection and not need to keep around any uncompiled code (unless the D3D12_STATE_OBJECT_FLAG_ALLOW_EXTERNAL_DEPENDENCIES_ON_LOCAL_DEFINITIONS flag is set), so that when the collection is used in a containing state object (e.g. RTPSO), minimal work needs to be done by the driver, ideally a “cheap” link at most. + + + This flag applies to state objects of type collection only. Otherwise this flag is ignored. + +If this collection is included in another state object (e.g. RTPSO), shaders / functions in the rest of the containing state object are allowed to depend on (e.g. call) exports from this collection. + +In the absence of this flag (default), exports from this collection cannot be directly referenced by other parts of containing state objects (e.g. RTPSO). This can reduce memory footprint for the collection slightly since drivers don’t need to keep uncompiled code in the collection on the off chance that it may get called by some external function that would then compile all the code together. That said, if not all necessary subobject associations have been locally defined for code in this collection, the driver may not be able to compile shader code yet and may still need to keep uncompiled code around. + +A subobject association defined externally that associates an external subobject to a local export does not count as an external dependency on a local definition, so the presence or absence of this flag does not affect whether the association is allowed or not. On the other hand if the current collection defines a subobject association for a locally defined subobject to an external export (e.g. shader), that counts as an external dependency on a local definition and this flag must be set. + +Regardless of the presence or absence of this flag, shader entrypoints (such as hit groups or miss shaders) in the collection are visible as entrypoints to a containing state object (e.g. RTPSO) if exported by it. In the case of an RTPSO, the exported entrypoints can be used in shader tables for raytracing. + + + + Represents a virtual adapter. This interface extends ID3D12Device6. + Microsoft Docs: + + + + + Specifies support for the image filters defined by the D3D12_VIDEO_PROCESS_FILTER enumeration. + Microsoft Docs: + + + + The video processor doesn't support any filters. + + + The video processor can adjust the brightness level. + + + The video processor can adjust the contrast level. + + + The video processor can adjust hue. + + + The video processor can adjust the saturation level. + + + The video processor can perform noise reduction. + + + The video processor can perform edge enhancement. + + + The video processor can perform anamorphic scaling. Anamorphic scaling can be used to stretch 4:3 content to a widescreen 16:9 aspect ratio. + + + For stereo 3D video, the video processor can adjust the offset between the left and right views, allowing the user to reduce potential eye strain. + + + + Represents a fence, an object used for synchronization of the CPU and one or more GPUs. + Microsoft Docs: + + + + + Describes descriptors inline in the root signature version 1.1 that appear in shaders. + Microsoft Docs: + + + + The shader register. + + + The register space. + + + Specifies the D3D12_ROOT_DESCRIPTOR_FLAGS that determine the volatility of descriptors and the data they reference. + + + + Copy a region of a multisampled or compressed resource into a non-multisampled or non-compressed resource. + Microsoft Docs: + SAL: _In_ + +Destination resource. Must be created with the D3D11_USAGE_DEFAULT flag and must be single-sampled unless its to be resolved from a compressed resource (D3D12_RESOLVE_MODE_DECOMPRESS); in this case it must have the same sample count as the compressed source. + SAL: _In_ + +A zero-based index that identifies the destination subresource. Use D3D12CalcSubresource to calculate the subresource index if the parent resource is complex. + SAL: _In_ + +The X coordinate of the left-most edge of the destination region. The width of the destination region is the same as the width of the source rect. + SAL: _In_ + +The Y coordinate of the top-most edge of the destination region. The height of the destination region is the same as the height of the source rect. + SAL: _In_ + +Source resource. Must be multisampled or compressed. + SAL: _In_ + +A zero-based index that identifies the source subresource. + SAL: _In_opt_ + +Specifies the rectangular region of the source resource to be resolved. Passing NULL for pSrcRect specifies that the entire subresource is to be resolved. + SAL: _In_ + +A DXGI_FORMAT that specifies how the source and destination resource formats are consolidated. + SAL: _In_ + +Specifies the operation used to resolve the source samples. + +When using the D3D12_RESOLVE_MODE_DECOMPRESS operation, the sample count can be larger than 1 as long as the source and destination have the same sample count, and source and destination may specify the same resource as long as the source rect aligns with the destination X and Y coordinates, in which case decompression occurs in place. + +When using the D3D12_RESOLVE_MODE_MIN, D3D12_RESOLVE_MODE_MAX, or D3D12_RESOLVE_MODE_AVERAGE operation, the destination must have a sample count of 1. + + + + + Extracts data from a query. ResolveQueryData works with all heap types (default, upload, and readback).  ResolveQueryData works with all heap types (default, upload, and readback). . + Microsoft Docs: + Specifies the ID3D12QueryHeap containing the queries to resolve. + Specifies the type of query, one member of D3D12_QUERY_TYPE. + Specifies an index of the first query to resolve. + Specifies the number of queries to resolve. + Specifies an ID3D12Resource destination buffer, which must be in the state + D3D12_RESOURCE_STATE_COPY_DEST. + Specifies an alignment offset into the destination buffer. + Must be a multiple of 8 bytes. + + + + + Gets the cached blob representing the pipeline state. + Microsoft Docs: + After this method returns, points to the cached blob representing the pipeline state. + + + + + Describes the properties of a ray dispatch operation initiated with a call to ID3D12GraphicsCommandList4::DispatchRays. + Microsoft Docs: + + + + The shader record for the ray generation shader to use. + +The memory pointed to must be in state D3D12_RESOURCE_STATE_NON_PIXEL_SHADER_RESOURCE. + +The address must be aligned to 64 bytes, defined as D3D12_RAYTRACING_SHADER_TABLE_BYTE_ALIGNMENT, and in the range [0...4096] bytes. + + + The shader table for miss shaders. + +The stride is record stride, and must be aligned to 32 bytes, defined as D3D12_RAYTRACING_SHADER_RECORD_BYTE_ALIGNMENT, and in the range [0...4096] bytes. 0 is allowed. + +The memory pointed to must be in state D3D12_RESOURCE_STATE_NON_PIXEL_SHADER_RESOURCE. + +The address must be aligned to 64 bytes, defined as D3D12_RAYTRACING_SHADER_TABLE_BYTE_ALIGNMENT. + + + The shader table for hit groups. + +The stride is record stride, and must be aligned to 32 bytes, defined as D3D12_RAYTRACING_SHADER_RECORD_BYTE_ALIGNMENT, and in the range [0...4096] bytes. 0 is allowed. + +The memory pointed to must be in state D3D12_RESOURCE_STATE_NON_PIXEL_SHADER_RESOURCE. + +The address must be aligned to 64 bytes, defined as D3D12_RAYTRACING_SHADER_TABLE_BYTE_ALIGNMENT. + + + The shader table for callable shaders. + +The stride is record stride, and must be aligned to 32 bytes, defined as D3D12_RAYTRACING_SHADER_RECORD_BYTE_ALIGNMENT. 0 is allowed. + +The memory pointed to must be in state D3D12_RESOURCE_STATE_NON_PIXEL_SHADER_RESOURCE. + +The address must be aligned to 64 bytes, defined as D3D12_RAYTRACING_SHADER_TABLE_BYTE_ALIGNMENT. + + + The width of the generation shader thread grid. + + + The height of the generation shader thread grid. + + + The depth of the generation shader thread grid. + + + + Gets a description of how a resource is bound to a function. + Microsoft Docs: + A zero-based resource index. + A pointer to a D3D12_SHADER_INPUT_BIND_DESC structure that describes input binding of the resource. + + + + + Retrieves the number of video extension commands. + Microsoft Docs: + + + + For single GPU operation, set this to zero. If there are multiple GPU nodes, set a bit to identify the node (the device's physical adapter) to which the command queue applies. Each bit in the mask corresponds to a single node. Only 1 bit may be set. + + + The supported number of video extension commands. + + + + This method is used to determine the rate at which the GPU timestamp counter increments. + Microsoft Docs: + The GPU timestamp counter frequency (in ticks/second). + + + + + Specifies fence options. + Microsoft Docs: + + + + No options are specified. + + + The fence is shared. + + + The fence is shared with another GPU adapter. + + + The fence is of the non-monitored type. Non-monitored fences should only be used when the adapter doesn't support monitored fences, or when a fence is shared with an adapter that doesn't support monitored fences. + + + + Describes the coordinates of a tiled resource. + Microsoft Docs: + + + + The x-coordinate of the tiled resource. + + + The y-coordinate of the tiled resource. + + + The z-coordinate of the tiled resource. + + + The index of the subresource for the tiled resource. + +For mipmaps that use nonstandard tiling, or are packed, or both use nonstandard tiling and are packed, any subresource value that indicates any of the packed mipmaps all refer to the same tile. Additionally, the X coordinate is used to indicate a tile within the packed mip region, rather than a logical region of a single subresource. The Y and Z coordinates must be zero. + + + + Specifies the usage of the associated video extension command parameter. + Microsoft Docs: + + + + None. Set for simple data type parameters. + + + The resource parameter is read. This flag is for ID3D12Resource only and is not valid for simple data type parameters. + + + The resource parameter is written. This flag is for ID3D12Resource only and is not valid for simple data type parameters. + + + + Describes descriptors inline in the root signature version 1.0 that appear in shaders. + Microsoft Docs: + + + + The shader register. + + + The register space. + + + + Manages a pipeline library, in particular loading and retrieving individual PSOs. + Microsoft Docs: + + + + + Sets a CPU descriptor handle for the constant buffer in the compute root signature. + Microsoft Docs: + The slot number for binding. + Specifies the D3D12_GPU_VIRTUAL_ADDRESS of the constant buffer. + + + + + Describes dispatch parameters, for use by the compute shader. + Microsoft Docs: + + + + The size, in thread groups, of the x-dimension of the thread-group grid. + + + The size, in thread groups, of the y-dimension of the thread-group grid. + + + The size, in thread groups, of the z-dimension of the thread-group grid. + + + + Identifies which components of each pixel of a render target are writable during blending. + Microsoft Docs: + + + + Allow data to be stored in the red component. + + + Allow data to be stored in the green component. + + + Allow data to be stored in the blue component. + + + Allow data to be stored in the alpha component. + + + Allow data to be stored in all components. + + + + Specifies a range so that, for example, if part of a descriptor table has 100 shader-resource views (SRVs) that range can be declared in one entry rather than 100. + Microsoft Docs: + + + + Specifies a range of SRVs. + + + Specifies a range of unordered-access views (UAVs). + + + Specifies a range of constant-buffer views (CBVs). + + + Specifies a range of samplers. + + + + Specifies output stream arguments for the output passed to ID3D12VideoCommandList::ProcessFrames. + Microsoft Docs: + + + + An array of D3D12_VIDEO_PROCESS_OUTPUT_STREAM structures representing the output surfaces for the video process command. If stereo output is enabled, index zero contains the left output while index 1 contains the right input. If stereo output is not enabled, only index 0 is used to specify the output while index 1 should be set to nullptr. + + + The target rectangle is the area within the destination surface where the output will be drawn. The target rectangle is given in pixel coordinates, relative to the destination surface. + + + + Gets a patch-constant parameter description for a shader. + Microsoft Docs: + A zero-based parameter index. + A pointer to a shader-input-signature description. See D3D12_SIGNATURE_PARAMETER_DESC. + + + + + Describes a shader signature. + Microsoft Docs: + + + + A per-parameter string that identifies how the data will be used. For more info, see Semantics. + + + Semantic index that modifies the semantic. Used to differentiate different parameters that use the same semantic. + + + The register that will contain this variable's data. + + + A D3D_NAME-typed value that identifies a predefined string that determines the functionality of certain pipeline stages. + + + A D3D_REGISTER_COMPONENT_TYPE-typed value that identifies the per-component-data type that is stored in a register. Each register can store up to four-components of data. + + + Mask which indicates which components of a register are used. + + + Mask which indicates whether a given component is never written (if the signature is an output signature) or always read (if the signature is an input signature). + + + Indicates which stream the geometry shader is using for the signature parameter. + + + A D3D_MIN_PRECISION-typed value that indicates the minimum desired interpolation precision. For more info, see Using HLSL minimum precision. + + + + This method sets residency priorities of a specified list of objects. + Microsoft Docs: + Specifies the number of objects in the ppObjects and pPriorities arrays. + Specifies an array, of length NumObjects, containing references to ID3D12Pageable objects. + Specifies an array, of length NumObjects, of D3D12_RESIDENCY_PRIORITY values for the list of objects. + + + + + Creates a command allocator object. + Microsoft Docs: + A D3D12_COMMAND_LIST_TYPE-typed value that specifies the type of command allocator to create. + The type of command allocator can be the type that records either direct command lists or bundles. + The globally unique identifier (GUID) for the command allocator interface (ID3D12CommandAllocator). + The REFIID, or GUID, of the interface to the command allocator can be obtained by using the __uuidof() macro. + For example, __uuidof(ID3D12CommandAllocator) will get the GUID of the interface to a command allocator. + A pointer to a memory block that receives a pointer to the ID3D12CommandAllocator interface for the command allocator. + + + + + Gets a locally unique identifier for the current device (adapter). + Microsoft Docs: + + + + + Creates a fence object. + Microsoft Docs: + The initial value for the fence. + A combination of D3D12_FENCE_FLAGS-typed values that are combined by using a bitwise OR operation. + The resulting value specifies options for the fence. + The globally unique identifier (GUID) for the fence interface (ID3D12Fence). + The REFIID, or GUID, of the interface to the fence can be obtained by using the __uuidof() macro. + For example, __uuidof(ID3D12Fence) will get the GUID of the interface to a fence. + A pointer to a memory block that receives a pointer to the ID3D12Fence interface that is used to access the fence. + + + + + Describes flags for a protected resource session, per adapter. + Microsoft Docs: + + + + The node mask. For single GPU operation, set this to zero. If there are multiple GPU nodes, then set a bit to identify the node (the device's physical adapter) to which the protected session applies. Each bit in the mask corresponds to a single node. Only 1 bit may be set. + + + Specifies the supported crypto sessions options. + + + + Gets a constant buffer by name. + Microsoft Docs: + The constant-buffer name. + + + + + Gets the size of the handle increment for the given type of descriptor heap. This value is typically used to increment a handle into a descriptor array by the correct amount. + Microsoft Docs: + The D3D12_DESCRIPTOR_HEAP_TYPE-typed value that specifies the type of descriptor heap to get the size of the handle increment for. + + + + + Get a message severity level to break on when a message with that severity level passes through the storage filter. + Microsoft Docs: + Message severity level to break on. + + + + + Specifies the type of access that an application is given to the specified resource(s) at the transition out of a render pass. + Microsoft Docs: + + + + Indicates that your application won't have any future dependency on any data that you wrote to the resource(s) during this render pass. For example, a depth buffer that won't be textured from before it's written to again. + + + Indicates that your application will have a dependency on the written contents of the resource(s) in the future, and so they must be preserved. + + + Indicates that the resource(s)—for example, a multi-sample anti-aliasing (MSAA) surface—should be directly resolved to a separate resource at the conclusion of the render pass. For a tile-based deferred renderer (TBDR), this should ideally happenwhile the MSAA contents are still in the tile cache. You should ensure that the resolve destination is in the D3D12_RESOURCE_STATE_RESOLVE_DEST resource state when the render pass ends. The resolve source is left in its initial resource state at the time the render pass ends. A resolve operation submitted by a render pass doesn't implicitly change the state of any resource. + + + Indicates that your application will neither read from nor write to the resource(s) during the render pass. You would most likely use this value to indicate that you won't be accessing the depth/stencil plane for a depth/stencil view (DSV). You must pair this value with D3D12_RENDER_PASS_BEGINNING_ACCESS_TYPE_NO_ACCESS in the corresponding D3D12_RENDER_PASS_BEGINNING_ACCESS structure. + + + + Creates a resource that is reserved, and not yet mapped to any pages in a heap. + Microsoft Docs: + A pointer to a D3D12_RESOURCE_DESC structure that describes the resource. + The initial state of the resource, as a bitwise-OR'd combination of D3D12_RESOURCE_STATES enumeration constants. + Specifies a D3D12_CLEAR_VALUE structure that describes the default value for a clear color. + +pOptimizedClearValue specifies a value for which clear operations are most optimal. When the created resource is a texture with either the D3D12_RESOURCE_FLAG_ALLOW_RENDER_TARGET or D3D12_RESOURCE_FLAG_ALLOW_DEPTH_STENCIL flags, you should choose the value with which the clear operation will most commonly be called. You can call the clear operation with other values, but those operations won't be as efficient as when the value matches the one passed in to resource creation. + +When you use D3D12_RESOURCE_DIMENSION_BUFFER, you must set pOptimizedClearValue to nullptr. + A reference to the globally unique identifier (GUID) of the resource interface to return in ppvResource. See Remarks. + +While riidResource is most commonly the GUID of ID3D12Resource, it may be the GUID of any interface. If the resource object doesn't support the interface for this GUID, then creation fails with E_NOINTERFACE. + An optional pointer to a memory block that receives the requested interface pointer to the created resource object. + +ppvResource can be nullptr, to enable capability testing. When ppvResource is nullptr, no object is created, and S_FALSE is returned when pDesc is valid. + + + + + Describes a command queue. + Microsoft Docs: + + + + Specifies one member of D3D12_COMMAND_LIST_TYPE. + + + The priority for the command queue, as a + D3D12_COMMAND_QUEUE_PRIORITYenumeration constant to select normal or high priority. + + + Specifies any flags from the D3D12_COMMAND_QUEUE_FLAGS enumeration. + + + For single GPU operation, set this to zero. If there are multiple GPU nodes, set a bit to identify the node (the device's physical adapter) to which the command queue applies. + Each bit in the mask corresponds to a single node. + Only 1 bit must be set. + Refer to Multi-adapter systems. + + + + Submits an array of command lists for execution. + Microsoft Docs: + The number of command lists to be executed. + The array of ID3D12CommandList command lists to be executed. + + + + + Represents a virtual adapter. This interface extends ID3D12Device7. + Microsoft Docs: + + + + + Draws non-indexed, instanced primitives. + Microsoft Docs: + Number of vertices to draw. + Number of instances to draw. + Index of the first vertex. + A value added to each index before reading per-instance data from a vertex buffer. + + + + + Represents a virtual adapter. This interface extends ID3D12Device1 to create pipeline state objects from pipeline state stream descriptions. + Microsoft Docs: + + + + + Gets the heap description. + Microsoft Docs: + + + + + Describes the subresources from an array of 2D textures that are accessible to a depth-stencil view. + Microsoft Docs: + + + + The index of the first mipmap level to use. + + + The index of the first texture to use in an array of textures. + + + Number of textures to use. + + + + Sets a descriptor table into the compute root signature. + Microsoft Docs: + The slot number for binding. + A GPU_descriptor_handle object for the base descriptor to set. + + + + + Defines the encryption byte mapping of sub samples for video decoding. + Microsoft Docs: + + + + This field is unused. + + + This field is unused. + + + + Specifies the data type of the memory pointed to by the pData parameter of ID3D12DebugDevice1::SetDebugParameter and ID3D12DebugDevice1::GetDebugParameter. + Microsoft Docs: + + + + Indicates pData points to a D3D12_DEBUG_FEATURE value. + + + Indicates pData points to a D3D12_DEBUG_DEVICE_GPU_BASED_VALIDATION_SETTINGS structure. + + + Indicates pData points to a D3D12_DEBUG_DEVICE_GPU_SLOWDOWN_PERFORMANCE_FACTOR structure. + + + + Modifies optional Debug Layer settings of a command list. + Microsoft Docs: + Specifies a D3D12_DEBUG_COMMAND_LIST_PARAMETER_TYPE value that indicates which debug parameter data to set. + Pointer to debug parameter data to set. The interpretation of this data depends on the D3D12_DEBUG_COMMAND_LIST_PARAMETER_TYPE given in the Type parameter. + Specifies the size in bytes of the debug parameter pData. + + + + + Uses the CPU to copy data from a subresource, enabling the CPU to read the contents of most textures with undefined layouts. + Microsoft Docs: + A pointer to the destination data in memory. + The distance from one row of destination data to the next row. + The distance from one depth slice of destination data to the next. + Specifies the index of the subresource to read from. + A pointer to a box that defines the portion of the destination subresource to copy the resource data from. + If NULL, the data is read from the destination subresource with no offset. + The dimensions of the destination must fit the destination (see + D3D12_BOX). + + +An empty box results in a no-op. + A box is empty if the top value is greater than or equal to the bottom value, or the left value is greater than or equal to the right value, or the front value is greater than or equal to the back value. + When the box is empty, this method doesn't perform any operation. + + + + + Specifies the type of copy operation performed when calling CopyRaytracingAccelerationStructure. + Microsoft Docs: + + + + Copy an acceleration structure while fixing any self-referential pointers that may be present so that the destination is a self-contained copy of the source. Any external pointers to other acceleration structures remain unchanged from source to destination in the copy. The size of the destination is identical to the size of the source. + +> [!IMPORTANT] +> The source memory must be in state [D3D12_RESOURCE_STATE_RAYTRACING_ACCELERATION_STRUCTURE](/windows/desktop/api/d3d12/ne-d3d12-d3d12_resource_states). +> The destination memory must be in state [D3D12_RESOURCE_STATE_RAYTRACING_ACCELERATION_STRUCTURE](/windows/desktop/api/d3d12/ne-d3d12-d3d12_resource_states). + + + Produces a functionally equivalent acceleration structure to source in the destination, similar to the clone mode, but also fits the destination into a potentially smaller, and certainly not larger, memory footprint. The size required for the destination can be retrieved beforehand from EmitRaytracingAccelerationStructurePostbuildInfo. + +This mode is only valid if the source acceleration structure was originally built with the D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BUILD_FLAG_ALLOW_COMPACTION flag, otherwise results are undefined. + +Compacting geometry requires the entire acceleration structure to be constructed, which is why you must first build and then compact the structure. + +> [!IMPORTANT] +> The source memory must be in state [D3D12_RESOURCE_STATE_RAYTRACING_ACCELERATION_STRUCTURE](/windows/desktop/api/d3d12/ne-d3d12-d3d12_resource_states). +> The destination memory must be in state [D3D12_RESOURCE_STATE_RAYTRACING_ACCELERATION_STRUCTURE](/windows/desktop/api/d3d12/ne-d3d12-d3d12_resource_states). + + + The destination is takes the layout described in D3D12_BUILD_RAYTRACING_ACCELERATION_STRUCTURE_TOOLS_VISUALIZATION_HEADER. The size required for the destination can be retrieved beforehand from EmitRaytracingAccelerationStructurePostbuildInfo. + +This mode is only intended for tools such as PIX, though nothing stops any app from using it. The output is essentially the inverse of an acceleration structure build. This overall structure with is sufficient for tools/PIX to be able to give the application some visual sense of the acceleration structure the driver made out of the app’s input. Visualization can help reveal driver bugs in acceleration structures if what is shown grossly mismatches the data the application used to create the acceleration structure, beyond allowed tolerances. + +For top-level acceleration structures, the output includes a set of instance descriptions that are identical to the data used in the original build and in the same order. For bottom-level acceleration structures, the output includes a set of geometry descriptions roughly matching the data used in the original build. The output is only a rough match for the original in part because of the tolerances allowed in the specification for acceleration structures and in part due to the inherent complexity of reporting exactly the same structure as is conceptually encoded. For example. axis-aligned bounding boxes (AABBs) returned for procedural primitives could be more conservative (larger) in volume and even different in number than what is actually in the acceleration structure representation. Geometries, each with its own geometry description, appear in the same order as in the original acceleration, as shader table indexing calculations depend on this. + + +> [!IMPORTANT] +> The source memory must be in state [D3D12_RESOURCE_STATE_RAYTRACING_ACCELERATION_STRUCTURE](/windows/desktop/api/d3d12/ne-d3d12-d3d12_resource_states). +> The destination memory must be in state [D3D12_RESOURCE_STATE_UNORDERED_ACCESS](/windows/desktop/api/d3d12/ne-d3d12-d3d12_resource_states). + +This mode is only permitted when developer mode is enabled in the OS. + + + Destination takes the layout and size described in the documentation for D3D12_RAYTRACING_ACCELERATION_STRUCTURE_POSTBUILD_INFO_SERIALIZATION_DESC, itself a structure generated with a call to EmitRaytracingAccelerationStructurePostbuildInfo. + +This mode serializes an acceleration structure so that an app or tools can store it to a file for later reuse, typically on a different device instance, via deserialization. + +When serializing a top-level acceleration structure, the bottom-level acceleration structures it refers to do not have to still be present or intact in memory. Likewise, bottom-level acceleration structures can be serialized independent of whether any top-level acceleration structures are pointing to them. In other words, the order of serialization of acceleration structures doesn’t matter. + +> [!IMPORTANT] +> The source memory must be in state [D3D12_RESOURCE_STATE_RAYTRACING_ACCELERATION_STRUCTURE](/windows/desktop/api/d3d12/ne-d3d12-d3d12_resource_states). +> The destination memory must be in state [D3D12_RESOURCE_STATE_UNORDERED_ACCESS](/windows/desktop/api/d3d12/ne-d3d12-d3d12_resource_states). + + + The source must be a serialized acceleration structure, with any pointers, directly after the header, fixed to point to their new locations. For more information, see D3D12_RAYTRACING_ACCELERATION_STRUCTURE_POSTBUILD_INFO_SERIALIZATION_DESC. + +The destination gets an acceleration structure that is functionally equivalent to the acceleration structure that was originally serialized. It does not matter what order top-level and bottom-level acceleration structures are deserialized, as long as by the time a top-level acceleration structure is used for raytracing or acceleration structure updates the bottom-level acceleration structures it references are present. + +Deserialization can only be performed on the same device and driver version on which the data was serialized. Otherwise, the results are undefined. + +This mode is only intended for tools such as PIX, though nothing stops any app from using it, but this mode is only permitted when developer mode is enabled in the OS. This copy operation is not intended to be used for caching acceleration structures, because running a full acceleration structure build is likely to be faster than loading one from disk. + + +> [!IMPORTANT] +> The source memory must be in state [D3D12_RESOURCE_STATE_NON_PIXEL_SHADER_RESOURCE](/windows/desktop/api/d3d12/ne-d3d12-d3d12_resource_states). +> The destination memory must be in state [D3D12_RESOURCE_STATE_RAYTRACING_ACCELERATION_STRUCTURE](/windows/desktop/api/d3d12/ne-d3d12-d3d12_resource_states). + + + + Specifies the type of shader patching used by GPU-Based Validation at either the device or command list level. + Microsoft Docs: + + + + No shader patching is to be done. This will retain the original shader bytecode. Can lead to errors in some of the GPU-Based Validation state tracking as the unpatched shader may still change resource state (see Common state promotion) but the promotion will be untracked without patching the shader. This can improve performance but no validation will be performed and may also lead to misleading GPU-Based Validation errors. Use this mode very carefully. + + + Shaders can be patched with resource state tracking code but no validation. This may improve performance but no validation will be performed. + + + The default. Shaders are patched with validation code but erroneous instructions will still be executed. + + + Shaders are patched with validation code and erroneous instructions are skipped in execution. This can help avoid crashes or device removal. + + + Unused, simply the count of the number of modes. + + + + Describes a DXGI data format and plane count. + Microsoft Docs: + + + + A DXGI_FORMAT-typed value for the format to return info about. + + + The number of planes to provide information about. + + + + Describes the subresources from an array of 2D textures to use in a render-target view. + Microsoft Docs: + + + + The index of the mipmap level to use mip slice. + + + The index of the first texture to use in an array of textures. + + + Number of textures in the array to use in the render target view, starting from FirstArraySlice. + + + The index (plane slice number) of the plane to use in an array of textures. + + + + Describes a value used to optimize clear operations for a particular resource. + Microsoft Docs: + + + + Specifies one member of the DXGI_FORMAT enum. + +The format of the commonly cleared color follows the same validation rules as a view/ descriptor creation. In general, the format of the clear color can be any format in the same typeless group that the resource format belongs to. + +This Format must match the format of the view used during the clear operation. It indicates whether the Color or the DepthStencil member is valid and how to convert the values for usage with the resource. + + + Specifies a 4-entry array of float values, determining the RGBA value. The order of RGBA matches the order used with ClearRenderTargetView. + + + Specifies one member of D3D12_DEPTH_STENCIL_VALUE. These values match the semantics of Depth and Stencil in ClearDepthStencilView. + + + + Provides data for calls to ID3D12VideoDevice::CheckFeatureSupport when the feature specified is D3D12_FEATURE_VIDEO_PROCESS_SUPPORT. + Microsoft Docs: + + + + An integer indicating which physical adapter of the device the operation applies to, in a multi-adapter operation. + + + A D3D12\_VIDEO\_SAMPLE structure defining the width, height, and format of the input sample. + + + A member of the D3D12\_VIDEO\_FIELD\_TYPE enumeration specifying the interlaced field type of the input sample. + + + A member of the D3D12\_VIDEO\_FRAME\_STEREO\_FORMAT enumeration specifying the stereo format of the input sample. + + + The input frame rate. + + + A D3D12\_VIDEO\_FORMAT structure specifying the output DXGI format and color space. + + + A member of the D3D12\_VIDEO\_FRAME\_STEREO\_FORMAT enumeration specifying the stereo format of the output. + + + The output frame rate. + + + A member of the D3D12\_VIDEO\_PROCESS\_SUPPORT\_FLAGS indicating whether the requested format and colorspace conversion is supported. This value is populated by the call to ID3D12Device::CheckFeatureSupport. + + + A D3D12\_VIDEO\_SCALE\_SUPPORT structure specifying the supported scaling capabilities. This value is populated by the call to ID3D12Device::CheckFeatureSupport. + + + A bitwise OR combination of values from the D3D12\_VIDEO\_PROCESS\_FEATURE\_FLAGS enumeration specifying the supported video processing features. This value is populated by the call to ID3D12Device::CheckFeatureSupport. + + + A member of the D3D12\_VIDEO\_PROCESS\_DEINTERLACE\_FLAGS enumeration specifying the supported deinterlacing capabilities. This value is populated by the call to ID3D12Device::CheckFeatureSupport. + + + A member of the D3D12\_VIDEO\_PROCESS\_AUTO\_PROCESSING\_FLAGS specifying the supported automatic processing capabilities. This value is populated by the call to ID3D12Device::CheckFeatureSupport. + + + A bitwise OR combination of values from the D3D12\_VIDEO\_PROCESS\_FILTER\_FLAGS enumeration specifying the supported video filtering features. This value is populated by the call to ID3D12Device::CheckFeatureSupport. + + + An array of D3D12\_VIDEO\_PROCESS\_FILTER\_RANGE structures representing the filter range values. This value is populated by the call to ID3D12Device::CheckFeatureSupport. The calling application must allocate the memory for the filter range list before calling CheckFeatureSupport. + + + + Indicates that recording to the command list has finished. + Microsoft Docs: + + + + + Indicates the level of support for the sharing of resources between different adapters—for example, multiple GPUs. + Microsoft Docs: + + + + Indicates the tier of cross-adapter sharing support. + + + Indicates there is support for shader instructions which operate across adapters. + + + + Describes a video extension command parameter. + Microsoft Docs: + + + + A pointer to a wide string containing the name of the command. + + + A member of the D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_TYPE specifying the type of the parameter. + + + A member of the D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_FLAGS enumeration specifying the usage of the parameter. + + + + Describes the subresources from an array of multi sampled 2D textures to use in a render-target view. + Microsoft Docs: + + + + The index of the first texture to use in an array of textures. + + + The number of textures to use. + + + + Describes the allocation size of a video decoder heap. + Microsoft Docs: + + + + For single GPU operation, set this to zero. If there are multiple GPU nodes, set a bit to identify the node (the device's physical adapter) to which the command queue applies. Each bit in the mask corresponds to a single node. Only 1 bit may be set. + + + A pointer to a D3D12\_VIDEO\_PROCESS\_OUTPUT\_STREAM\_DESC(ns-d3d12video-d3d12_video_process_output_stream_desc) structure describing the output stream. + + + The number of input streams provided in the pInputStreamDescs parameter. + + + A pointer to a list of D3D12\_VIDEO\_PROCESS\_INPUT\_STREAM\_DESC(ns-d3d12video-d3d12_video_process_input_stream_desc) structures the input streams. + + + The allocation size of the video processor in the L0 memory pool. L0 is the physical system memory pool. When the adapter is discrete/NUMA, this pool has greater bandwidth for the CPU and less bandwidth for the GPU. When the adapter is UMA, this pool is the only one which is valid. For more information, see Residency. + + + The allocation size of the video processor in the L1 memory pool. L1 is typically known as the physical video memory pool. L1 is only available when the adapter is discrete/NUMA, and has greater bandwidth for the GPU and cannot even be accessed by the CPU. When the adapter is UMA, this pool is not available. For more information, see Residency. + + + + Initializes the specified meta command. + Microsoft Docs: + A pointer to an ID3D12MetaCommand representing the meta command to initialize. + An optional pointer to a constant structure containing the values of the parameters for initializing the meta command. + A SIZE_T containing the size of the structure pointed to by pInitializationParametersData, if set, otherwise 0. + + + + + Congruent with, and numerically equivalent to, 3D12DDI_HANDLETYPE enumeration values. + Microsoft Docs: + + + + + Indicates the debug parameter type used by ID3D12DebugCommandList1::SetDebugParameter and ID3D12DebugCommandList1::GetDebugParameter. + Microsoft Docs: + + + + Indicates the parameter is type D3D12_DEBUG_COMMAND_LIST_GPU_BASED_VALIDATION_SETTINGS. + + + + A function-parameter-reflection interface accesses function-parameter info. + Microsoft Docs: + + + + + Get the number of messages that were denied passage through a storage filter. + Microsoft Docs: + + + + + Retrieves the supported number of parameters for the specified parameter stage. + Microsoft Docs: + + + + The unique identifier for the video extension command for which the parameter count is queried. + + + A member of the D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_STAGE enumeration specifying the parameter stage for which the parameter count is retrieved. + + + Receives the number of parameters in the parameter stage. + + + Receives the parameter packing for the parameter stage. + + + + Represents a virtual adapter, and expands on the range of methods provided by ID3D12Device. + Microsoft Docs: + + + + + This shader-reflection interface provides access to a variable. + Microsoft Docs: + + + + + Clear all messages from the message queue. + Microsoft Docs: + + + + + Specifies options for root signature layout. + Microsoft Docs: + + + + Indicates default behavior. + + + The app is opting in to using the Input Assembler (requiring an input layout that defines a set of vertex buffer bindings). Omitting this flag can result in one root argument space being saved on some hardware. Omit this flag if the Input Assembler is not required, though the optimization is minor. + + + Denies the vertex shader access to the root signature. + + + Denies the hull shader access to the root signature. + + + Denies the domain shader access to the root signature. + + + Denies the geometry shader access to the root signature. + + + Denies the pixel shader access to the root signature. + + + The app is opting in to using Stream Output. Omitting this flag can result in one root argument space being saved on some hardware. Omit this flag if Stream Output is not required, though the optimization is minor. + + + The root signature is to be used with raytracing shaders to define resource bindings sourced from shader records in shader tables. This flag cannot be combined with any other root signature flags, which are all related to the graphics pipeline. The absence of the flag means the root signature can be used with graphics or compute, where the compute version is also shared with raytracing’s global root signature. + + + + Query information about graphics-pipeline activity in between calls to BeginQuery and EndQuery. + Microsoft Docs: + + + + Number of vertices read by input assembler. + + + Number of primitives read by the input assembler. This number can be different depending on the primitive topology used. For example, a triangle strip with 6 vertices will produce 4 triangles, however a triangle list with 6 vertices will produce 2 triangles. + + + Specifies the number of vertex shader invocations. Direct3D invokes the vertex shader once per vertex. + + + Specifies the number of geometry shader invocations. When the geometry shader is set to NULL, this statistic may or may not increment depending on the graphics adapter. + + + Specifies the number of geometry shader output primitives. + + + Number of primitives that were sent to the rasterizer. When the rasterizer is disabled, this will not increment. + + + Number of primitives that were rendered. This may be larger or smaller than CInvocations because after a primitive is clipped sometimes it is either broken up into more than one primitive or completely culled. + + + Specifies the number of pixel shader invocations. + + + Specifies the number of hull shader invocations. + + + Specifies the number of domain shader invocations. + + + Specifies the number of compute shader invocations. + + + + Describes a descriptor range, with flags to determine their volatility. + Microsoft Docs: + + + + A D3D12_DESCRIPTOR_RANGE_TYPE-typed value that specifies the type of descriptor range. + + + The number of descriptors in the range. Use -1 or UINT_MAX to specify unbounded size. Only the last entry in a table can have unbounded size. + + + The base shader register in the range. For example, for shader-resource views (SRVs), 3 maps to ": register(t3);" in HLSL. + + + The register space. Can typically be 0, but allows multiple descriptor arrays of unknown size to not appear to overlap. + For example, for SRVs, by extending the example in the BaseShaderRegister member description, 5 maps to ": register(t3,space5);" in HLSL. + + + Specifies the D3D12_DESCRIPTOR_RANGE_FLAGS that determine descriptor and data volatility. + + + The offset in descriptors from the start of the root signature. This value can be D3D12_DESCRIPTOR_RANGE_OFFSET_APPEND, which indicates this range should immediately follow the preceding range. + + + + Defines a local root signature state subobject that will be used with associated shaders. + Microsoft Docs: + + + + The root signature that will function as a local root signature. A state object holds a reference to this signature. + + + + Encapsulates a list of graphics commands for video decoding. + Microsoft Docs: + + + + + Stores a pipeline state. + Microsoft Docs: + + + + Specifies pointer that references the memory location of the cache. + + + Specifies the size of the cache in bytes. + + + + Specifies an event that should be fired when the fence reaches a certain value. + Microsoft Docs: + The fence value when the event is to be signaled. + A handle to the event object. + + + + + Checks the allocation size of a video extension command. + Microsoft Docs: + + + + For single GPU operation, set this to zero. If there are multiple GPU nodes, set a bit to identify the node (the device's physical adapter) to which the command queue applies. Each bit in the mask corresponds to a single node. Only 1 bit may be set. + + + The unique identifier for the video extension command for which size is queried. + + + A pointer to the creation parameters structure, which is defined by the command. The parameters structure must match the parameters enumerated by a call to [ID3D12VideoDevice::CheckFeatureSupport](nf-d3d12video-id3d12videodevice-checkfeaturesupport.md) with the feature value of D3D12_FEATURE_VIDEO_EXTENSION_COMMAND_PARAMETERS and a parameter stage value of D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_STAGE_CREATION. + + + The size of the pCreationParameters parameter structure, in bytes. + + + The allocation size of the video extension command in the L0 memory pool. L0 is the physical system memory pool. When the adapter is discrete/NUMA, this pool has greater bandwidth for the CPU and less bandwidth for the GPU. When the adapter is UMA, this pool is the only one which is valid. For more information, see Residency. + + + The allocation size of the video extension command heap in the L1 memory pool. L1 is typically known as the physical video memory pool. L1 is only available when the adapter is discrete/NUMA, and has greater bandwidth for the GPU and cannot even be accessed by the CPU. When the adapter is UMA, this pool is not available. For more information, see Residency. + + + + Gets a group of flags that indicates the requirements of a shader. + Microsoft Docs: + + + + + Encapsulates a list of graphics commands for rendering, extending the interface to support programmable sample positions, atomic copies for implementing late-latch techniques, and optional depth-bounds testing. + Microsoft Docs: + + + + + Makes objects resident for the device. + Microsoft Docs: + The number of objects in the ppObjects array to make resident for the device. + A pointer to a memory block that contains an array of ID3D12Pageable interface pointers for the objects. + + +Even though most D3D12 objects inherit from ID3D12Pageable, residency changes are only supported on the following objects: +Descriptor Heaps, Heaps, Committed Resources, and Query Heaps + + + + + Gets the number of bitwise instructions. + Microsoft Docs: + + + + + Specifies broad residency priority buckets useful for quickly establishing an application priority scheme. + Microsoft Docs: + + + + Indicates a minimum priority. + + + Indicates a low priority. + + + Indicates a normal, medium, priority. + + + Indicates a high priority. Applications are discouraged from using priories greater than this. For more information see ID3D12Device1::SetResidencyPriority. + + + Indicates a maximum priority. Applications are discouraged from using priorities greater than this; D3D12_RESIDENCY_PRIORITY_MAXIMUM is not guaranteed to be available. For more information see ID3D12Device1::SetResidencyPriority + + + + Defines constants that specify a Direct3D 12 feature or feature set to query about. + Microsoft Docs: + + + + Indicates a query for the level of support for basic Direct3D 12 feature options. The corresponding data structure for this value is D3D12_FEATURE_DATA_D3D12_OPTIONS. + + + Indicates a query for the adapter's architectural details, so that your application can better optimize for certain adapter properties. The corresponding data structure for this value is D3D12_FEATURE_DATA_ARCHITECTURE. + +
Note  This value has been superseded by the D3D_FEATURE_DATA_ARCHITECTURE1 value. If your application targets Windows 10, version 1703 (Creators' Update) or higher, then use the D3D_FEATURE_DATA_ARCHITECTURE1 value instead.
+
 
+
+ + Indicates a query for info about the feature levels supported. The corresponding data structure for this value is D3D12_FEATURE_DATA_FEATURE_LEVELS. + + + Indicates a query for the resources supported by the current graphics driver for a given format. The corresponding data structure for this value is D3D12_FEATURE_DATA_FORMAT_SUPPORT. + + + Indicates a query for the image quality levels for a given format and sample count. The corresponding data structure for this value is D3D12_FEATURE_DATA_MULTISAMPLE_QUALITY_LEVELS. + + + Indicates a query for the DXGI data format. The corresponding data structure for this value is D3D12_FEATURE_DATA_FORMAT_INFO. + + + Indicates a query for the GPU's virtual address space limitations. The corresponding data structure for this value is D3D12_FEATURE_DATA_GPU_VIRTUAL_ADDRESS_SUPPORT. + + + Indicates a query for the supported shader model. The corresponding data structure for this value is D3D12_FEATURE_DATA_SHADER_MODEL. + + + Indicates a query for the level of support for HLSL 6.0 wave operations. The corresponding data structure for this value is D3D12_FEATURE_DATA_D3D12_OPTIONS1. + + + Indicates a query for the level of support for protected resource sessions. The corresponding data structure for this value is D3D12_FEATURE_DATA_PROTECTED_RESOURCE_SESSION_SUPPORT. + + + Indicates a query for root signature version support. The corresponding data structure for this value is D3D12_FEATURE_DATA_ROOT_SIGNATURE. + + + Indicates a query for each adapter's architectural details, so that your application can better optimize for certain adapter properties. The corresponding data structure for this value is D3D12_FEATURE_DATA_ARCHITECTURE1. + +
Note  This value supersedes the D3D_FEATURE_DATA_ARCHITECTURE value. If your application targets Windows 10, version 1703 (Creators' Update) or higher, then use D3D_FEATURE_DATA_ARCHITECTURE1.
+
 
+
+ + Indicates a query for the level of support for depth-bounds tests and programmable sample positions. The corresponding data structure for this value is D3D12_FEATURE_DATA_D3D12_OPTIONS2. + + + Indicates a query for the level of support for shader caching. The corresponding data structure for this value is D3D12_FEATURE_DATA_SHADER_CACHE. + + + Indicates a query for the adapter's support for prioritization of different command queue types. The corresponding data structure for this value is D3D12_FEATURE_DATA_COMMAND_QUEUE_PRIORITY. + + + Indicates a query for the level of support for timestamp queries, format-casting, immediate write, view instancing, and barycentrics. The corresponding data structure for this value is D3D12_FEATURE_DATA_D3D12_OPTIONS3. + + + Indicates a query for whether or not the adapter supports creating heaps from existing system memory. The corresponding data structure for this value is D3D12_FEATURE_DATA_EXISTING_HEAPS. + + + Indicates a query for the level of support for 64KB-aligned MSAA textures, cross-API sharing, and native 16-bit shader operations. The corresponding data structure for this value is D3D12_FEATURE_DATA_D3D12_OPTIONS4. + + + Indicates a query for the level of support for heap serialization. The corresponding data structure for this value is D3D12_FEATURE_DATA_SERIALIZATION. + + + Indicates a query for the level of support for the sharing of resources between different adapters—for example, multiple GPUs. The corresponding data structure for this value is D3D12_FEATURE_DATA_CROSS_NODE. + + + Starting with Windows 10, version 1809 (10.0; Build 17763), indicates a query for the level of support for render passes, ray tracing, and shader-resource view tier 3 tiled resources. The corresponding data structure for this value is D3D12_FEATURE_DATA_D3D12_OPTIONS5. + + + Starting with Windows 10, version 1903 (10.0; Build 18362), indicates a query for the level of support for variable-rate shading (VRS), and indicates whether or not background processing is supported. For more info, see Variable-rate shading (VRS), and the Direct3D 12 background processing spec. + + + Indicates a query for the level of support for metacommands. The corresponding data structure for this value is D3D12_FEATURE_DATA_QUERY_META_COMMAND. + + + + Specifies options for a heap. + Microsoft Docs: + + + + Indicates default usage of a heap. + + + The flag D3D12_DESCRIPTOR_HEAP_FLAG_SHADER_VISIBLE can optionally be set on a descriptor heap to indicate it is be bound on a command list for reference by shaders. Descriptor heaps created without this flag allow applications the option to stage descriptors in CPU memory before copying them to a shader visible descriptor heap, as a convenience. But it is also fine for applications to directly create descriptors into shader visible descriptor heaps with no requirement to stage anything on the CPU. + +Descriptor heaps bound via [ID3D12GraphicsCommandList::SetDescriptorHeaps](/windows/win32/api/d3d12/nf-d3d12-id3d12graphicscommandlist-setdescriptorheaps) must have the D3D12_DESCRIPTOR_HEAP_FLAG_SHADER_VISIBLE flag set, else the debug layer will produce an error. + +Descriptor heaps with the D3D12_DESCRIPTOR_HEAP_FLAG_SHADER_VISIBLE flag can't be used as the source heaps in calls to [ID3D12Device::CopyDescriptors](/windows/win32/api/d3d12/nf-d3d12-id3d12device-copydescriptors) or [ID3D12Device::CopyDescriptorsSimple](/windows/win32/api/d3d12/nf-d3d12-id3d12device-copydescriptorssimple), because they could be resident in WRITE_COMBINE memory or GPU-local memory, which is very inefficient to read from. + +This flag only applies to CBV/SRV/UAV descriptor heaps, and sampler descriptor heaps. It does not apply to other descriptor heap types since shaders do not directly reference the other types. Attempting to create an RTV/DSV heap with D3D12_DESCRIPTOR_HEAP_FLAG_SHADER_VISIBLE results in a debug layer error. + + + + Describes rasterizer state. + Microsoft Docs: + + + + A D3D12_FILL_MODE-typed value that specifies the fill mode to use when rendering. + + + A D3D12_CULL_MODE-typed value that specifies that triangles facing the specified direction are not drawn. + + + Determines if a triangle is front- or back-facing. If this member is TRUE, a triangle will be considered front-facing if its vertices are counter-clockwise on the render target and considered back-facing if they are clockwise. If this parameter is FALSE, the opposite is true. + + + Depth value added to a given pixel. For info about depth bias, see Depth Bias. + + + Maximum depth bias of a pixel. For info about depth bias, see Depth Bias. + + + Scalar on a given pixel's slope. For info about depth bias, see Depth Bias. + + + Specifies whether to enable clipping based on distance. + + +The hardware always performs x and y clipping of rasterized coordinates. When DepthClipEnable is set to the default–TRUE, the hardware also clips the z value (that is, the hardware performs the last step of the following algorithm). + + +

+0 < w
+-w <= x <= w (or arbitrarily wider range if implementation uses a guard band to reduce clipping burden)
+-w <= y <= w (or arbitrarily wider range if implementation uses a guard band to reduce clipping burden)
+0 <= z <= w
+
+When you set DepthClipEnable to FALSE, the hardware skips the z clipping (that is, the last step in the preceding algorithm). However, the hardware still performs the "0 < w" clipping. When z clipping is disabled, improper depth ordering at the pixel level might result. However, when z clipping is disabled, stencil shadow implementations are simplified. In other words, you can avoid complex special-case handling for geometry that goes beyond the back clipping plane.
+
+ + Specifies whether to use the quadrilateral or alpha line anti-aliasing algorithm on multisample antialiasing (MSAA) render targets. Set to TRUE to use the quadrilateral line anti-aliasing algorithm and to FALSE to use the alpha line anti-aliasing algorithm. For more info about this member, see Remarks. + + + Specifies whether to enable line antialiasing; only applies if doing line drawing and MultisampleEnable is FALSE. For more info about this member, see Remarks. + + + The sample count that is forced while UAV rendering or rasterizing. Valid values are 0, 1, 2, 4, 8, and optionally 16. 0 indicates that the sample count is not forced. + +
Note  If you want to render with ForcedSampleCount set to 1 or greater, you must follow these guidelines: + +
    +
  • Don't bind depth-stencil views.
  • +
  • Disable depth testing.
  • +
  • Ensure the shader doesn't output depth.
  • +
  • If you have any render-target views bound (D3D12_DESCRIPTOR_HEAP_TYPE_RTV) and ForcedSampleCount is greater than 1, ensure that every render target has only a single sample.
  • +
  • Don't operate the shader at sample frequency. Therefore, ID3D12ShaderReflection::IsSampleFrequencyShader returns FALSE.
  • +
Otherwise, rendering behavior is undefined.
+
+
+ + A D3D12_CONSERVATIVE_RASTERIZATION_MODE-typed value that identifies whether conservative rasterization is on or off. + + + + Describes the subresources from an array of multi sampled 2D textures to use in a shader-resource view. + Microsoft Docs: + + + + The index of the first texture to use in an array of textures. + + + Number of textures to use. + + + + Represents a variable amount of configuration state, including shaders, that an application manages as a single unit and which is given to a driver atomically to process, such as compile or optimize. + Microsoft Docs: + + + + + Get the maximum number of messages that can be added to the message queue. + Microsoft Docs: + + + + + Describes a shader-variable type. + Microsoft Docs: + + + + A D3D_SHADER_VARIABLE_CLASS-typed value that identifies the variable class as one of scalar, vector, matrix, object, and so on. + + + A D3D_SHADER_VARIABLE_TYPE-typed value that identifies the variable type. + + + Number of rows in a matrix. Otherwise a numeric type returns 1, any other type returns 0. + + + Number of columns in a matrix. Otherwise a numeric type returns 1, any other type returns 0. + + + Number of elements in an array; otherwise 0. + + + Number of members in the structure; otherwise 0. + + + Offset, in bytes, between the start of the parent structure and this variable. Can be 0 if not a structure member. + + + Name of the shader-variable type. This member can be NULL if it isn't used. This member supports dynamic shader linkage interface types, which have names. For more info about dynamic shader linkage, see Dynamic Linking. + + + + Part of a contract between D3D11On12 diagnostic layers and graphics diagnostics tools. + Microsoft Docs: + + + + + Describes the subresources from a 3D texture to use in a shader-resource view. + Microsoft Docs: + + + + Index of the most detailed mipmap level to use; this number is between 0 and MipLevels (from the original Texture3D for which ID3D12Device::CreateShaderResourceView creates a view) -1. + + + The maximum number of mipmap levels for the view of the texture. See the remarks in D3D12_TEX1D_SRV. + +Set to -1 to indicate all the mipmap levels from MostDetailedMip on down to least detailed. + + + A value to clamp sample LOD values to. For example, if you specify 2.0f for the clamp value, you ensure that no individual sample accesses a mip level less than 2.0f. + + + + Specifies a bitstream encryption type. + Microsoft Docs: + + + + The bistream is not encrypted. + + + + Set a message identifier to break on when a message with that identifier passes through the storage filter. + Microsoft Docs: + Message identifier to break on. + Turns this breaking condition on or off (true for on, false for off). + + + + + Offers base functionality that allows for a consistent way to monitor the validity of a session across the different types of sessions. + Microsoft Docs: + + + + + Specifies flags to be used when creating a command queue. + Microsoft Docs: + + + + Indicates a default command queue. + + + Indicates that the GPU timeout should be disabled for this command queue. + + + + Encapsulates a list of graphics commands for rendering. Includes APIs for instrumenting the command list execution, and for setting and clearing the pipeline state. + Microsoft Docs: + + + + + Indicates the tier level at which view instancing is supported. + Microsoft Docs: + + + + View instancing is not supported. + + + View instancing is supported by draw-call level looping only. + + + View instancing is supported by draw-call level looping at worst, but the GPU can perform view instancing more efficiently in certain circumstances which are architecture-dependent. + + + View instancing is supported and instancing begins with the first shader stage that references SV_ViewID or with rasterization if no shader stage references SV_ViewID. This means that redundant work is eliminated across view instances when it's not dependent on SV_ViewID. Before rasterization, work that doesn't directly depend on SV_ViewID is shared across all views; only work that depends on SV_ViewID is repeated for each view. + +
Note  If a hull shader produces tessellation factors that are dependent on SV_ViewID, then tessellation and all subsequent work must be repeated per-view. Similarly, if the amount of geometry produced by the geometry shader depends on SV_ViewID, then the geometry shader must be repeated per-view before proceeding to rasterization.
+
 
+View instance masking only effects whether work that directly depends on SV_ViewID is performed, not the entire loop iteration (per-view). If the view instance mask is non-0, some work that depends on SV_ViewID might still be performed on masked-off pixels but will have no externally-visible effect; for example, no UAV writes are performed and clipping/rasterzation is not invoked. If the view instance mask is 0 no work is performed, including work that's not dependent on SV_ViewID.
+
+ + + Sets a CPU descriptor handle for the unordered-access-view resource in the graphics root signature. + Microsoft Docs: + The slot number for binding. + The GPU virtual address of the buffer. + D3D12_GPU_VIRTUAL_ADDRESS is a typedef'd alias of UINT64. + + + + + Describes the size and layout of the serialized acceleration structure and header. + Microsoft Docs: + + + + The size of the serialized acceleration structure, including a header. The header is D3D12_SERIALIZED_RAYTRACING_ACCELERATION_STRUCTURE_HEADER followed by followed by a list of pointers to bottom-level acceleration structures. + + + The number of 64-bit GPU virtual addresses that will be at the start of the serialized acceleration structure, after the D3D12_SERIALIZED_RAYTRACING_ACCELERATION_STRUCTURE_HEADER. For a bottom-level acceleration structure this will be 0. For a top-level acceleration structure, the pointers indicate the acceleration structures being referred to. + +When deserialization occurs, these pointers to bottom-level pointers must be initialized by the app in the serialized data (just after the header) to the new locations where the bottom level acceleration structures will reside. It is not required that these new locations to have already been populated with bottom-level acceleration structures at deserialization time, as long as they are initialized with the expected deserialized data structures before being used in raytracing. During deserialization, the driver reads the new pointers, using them to produce an equivalent top-level acceleration structure to the original. + + + + Gets a description of how a resource is bound to a shader. + Microsoft Docs: + A zero-based resource index. + A pointer to an input-binding description. See D3D12_SHADER_INPUT_BIND_DESC. + + + + + Queues a GPU-side wait, and returns immediately. A GPU-side wait is where the GPU waits until the specified fence reaches or exceeds the specified value. + Microsoft Docs: + A pointer to the ID3D12Fence object. + The value that the command queue is waiting for the fence to reach or exceed. So when ID3D12Fence::GetCompletedValue is greater than or equal to Value, the wait is terminated. + + + + + Specifies the parameters for the input stream for a video decode operation. + Microsoft Docs: + + + + The count of frame parameters provided in the FrameArguments field. The maximum number of frame arguments is 10. + + + An array of D3D12_VIDEO_DECODE_FRAME_ARGUMENT structures containing the parameters to decode a frame. + + + A D3D12_VIDEO_DECODE_REFERENCE_FRAMES structure containing the reference frames needed to decode a frame. + + + A D3D12_VIDEO_DECODE_COMPRESSED_BITSTREAM structure representing the compressed bitstream in a single continuous buffer. + + + An ID3D12VideoDecoderHeap representing a pointer to the heap for the current decode resolution. + + + + Gets the number of Movc instructions. + Microsoft Docs: + + + + + Specifies the nature of the render pass; for example, whether it is a suspending or a resuming render pass. + Microsoft Docs: + + + + Indicates that the render pass has no special requirements. + + + Indicates that writes to unordered access view(s) should be allowed during the render pass. + + + Indicates that this is a suspending render pass. + + + Indicates that this is a resuming render pass. + + + + Gets the resource description. + Microsoft Docs: + + + + + Defines supported search block sizes for video motion estimation. + Microsoft Docs: + + + + The search block size is 8x8 pixels. + + + The search block size is 16x16 pixels. + + + + Gets the description of a shader-reflection-variable type. + Microsoft Docs: + A pointer to a shader-type description (see D3D12_SHADER_TYPE_DESC). + + + + + Identifies the tier level of conservative rasterization. + Microsoft Docs: + + + + Conservative rasterization is not supported. + + + Tier 1 enforces a maximum 1/2 pixel uncertainty region and does not support post-snap degenerates. This is good for tiled rendering, a texture atlas, light map generation and sub-pixel shadow maps. + + + Tier 2 reduces the maximum uncertainty region to 1/256 and requires post-snap degenerates not be culled. This tier is helpful for CPU-based algorithm acceleration (such as voxelization). + + + Tier 3 maintains a maximum 1/256 uncertainty region and adds support for inner input coverage. Inner input coverage adds the new value SV_InnerCoverage to High Level Shading Language (HLSL). This is a 32-bit scalar integer that can be specified on input to a pixel shader, and represents the underestimated conservative rasterization information (that is, whether a pixel is guaranteed-to-be-fully covered). This tier is helpful for occlusion culling. + + + + Encapsulates a list of graphics commands for video processing. + Microsoft Docs: + + + + + Gets a CPU pointer to the specified subresource in the resource, but may not disclose the pointer value to applications. Map also invalidates the CPU cache, when necessary, so that CPU reads to this address reflect any modifications made by the GPU. + Microsoft Docs: + Specifies the index number of the subresource. + A pointer to a D3D12_RANGE structure that describes the range of memory to access. + +This indicates the region the CPU might read, and the coordinates are subresource-relative. A null pointer indicates the entire subresource might be read by the CPU. It is valid to specify the CPU won't read any data by passing a range where End is less than or equal to Begin. + A pointer to a memory block that receives a pointer to the resource data. + +A null pointer is valid and is useful to cache a CPU virtual address range for methods like WriteToSubresource. When ppData is not NULL, the pointer returned is never offset by any values in pReadRange. + + + + + Describes the space requirement for acceleration structure after compaction. + Microsoft Docs: + + + + The space requirement for acceleration structure after compaction. + +It is guaranteed that a compacted acceleration structure doesn’t consume more space than a non-compacted acceleration structure. + +Pre-compaction, it is guaranteed that the size requirements reported by GetRaytracingAccelerationStructurePrebuildInfo for a given build configuration (triangle counts etc.) will be sufficient to store any acceleration structure whose build inputs are reduced (e.g. reducing triangle counts). This non-increasing property for smaller builds does not apply post-compaction, however. In other words, it is not guaranteed that having fewer items in an acceleration structure means it compresses to a smaller size than compressing an acceleration structure with more items. + + + + Contains input information for the video processor blend functionality. + Microsoft Docs: + + + + An ID3D12Resource representing the current input field or frame. + + + The subresource index to use of the pInputTexture argument. + + + A D3D12_VIDEO_PROCESS_REFERENCE_SET containing the set of references for video processing. Some video processing algorithms require forward or backward frame references. For more information, see D3D12_FEATURE_VIDEO_PROCESS_REFERENCE_INFO. + + + + Gets optional Command List Debug Layer settings. + Microsoft Docs: + Specifies a D3D12_DEBUG_COMMAND_LIST_PARAMETER_TYPE value that determines which debug parameter data to copy to the memory pointed to by pData. + Points to the memory that will be filled with a copy of the debug parameter data. The interpretation of this data depends on the D3D12_DEBUG_COMMAND_LIST_PARAMETER_TYPE given in the Type parameter. + Size in bytes of the memory buffer pointed to by pData. + + + + + Specifies the alpha fill mode for video processing. + Microsoft Docs: + + + + Alpha values inside the target rectangle are set to opaque. + + + Alpha values inside the target rectangle are set to the alpha value specified in the background color. + + + Existing alpha values remain unchanged in the output surface. + + + Alpha values are taken from an input stream, scaled, and copied to the corresponding destination rectangle for that stream. The input stream is specified in the AlphaFillModeSourceStreamIndex member of D3D12_VIDEO_PROCESS_OUTPUT_STREAM_ARGUMENTS. + +If the input stream does not have alpha data, the video processor sets the alpha values in the target rectangle to opaque. If the input stream is disabled or the source rectangle is empty, the alpha values in the target rectangle are not modified. + + + + Queries reflection metadata about the parameters of the specified meta command. + Microsoft Docs: + A reference to the globally unique identifier (GUID) of the meta command whose parameters you wish to be returned in pParameterDescs. + A D3D12_META_COMMAND_PARAMETER_STAGE specifying the stage of the parameters that you wish to be included in the query. + An optional pointer to a UINT containing the size of the structure containing the parameter values, which you pass when creating/initializing/executing the meta command, as appropriate. + A pointer to a UINT containing the number of parameters to query for. This field determines the size of the pParameterDescs array, unless pParameterDescs is nullptr. + An optional pointer to an array of D3D12_META_COMMAND_PARAMETER_DESC containing the descriptions of the parameters. Pass nullptr to have the parameter count returned in pParameterCount. + + + + + Retrieves the maximum number of enabled input streams supported by the video processor. + Microsoft Docs: + + + + An integer indicating which physical adapter of the device the operation applies to, in a multi-adapter operation. + + + The maximum number of streams that can be enabled for the video processor at the same time. + + + + Creates a constant-buffer view for accessing resource data. + Microsoft Docs: + A pointer to a D3D12_CONSTANT_BUFFER_VIEW_DESC structure that describes the constant-buffer view. + Describes the CPU descriptor handle that represents the start of the heap that holds the constant-buffer view. + + + + + A development-time aid for certain types of profiling and experimental prototyping. + Microsoft Docs: + Specifies a BOOL that turns the stable power state on or off. + + + + + Sets a CPU descriptor handle for the shader resource in the graphics root signature. + Microsoft Docs: + The slot number for binding. + The GPU virtual address of the Buffer. + Textures are not supported. D3D12_GPU_VIRTUAL_ADDRESS is a typedef'd alias of UINT64. + + + + + Manages a pipeline library. This interface extends ID3D12PipelineLibrary to load PSOs from a pipeline state stream description. + Microsoft Docs: + + + + + Represents the output stream for video processing commands. + Microsoft Docs: + + + + A pointer to a ID3D12Resource representing the output surfaces for the video process command. + + + The subresource indices to use within the resource specified pTexture2D resource. + + + + Flags for optional D3D12 Debug Layer features. + Microsoft Docs: + + + + The default. No optional Debug Layer features. + + + The Debug Layer is allowed to deliberately change functional behavior of an application in order to help identify potential errors. By default, the Debug Layer allows most invalid API usage to run the natural course. + + + Performs additional resource state validation of resources set in descriptors at the time ID3D12CommandQueue::ExecuteCommandLists is called. By design descriptors can be changed even after submitting command lists assuming proper synchronization. Conservative resource state tracking ignores this allowance and validates all resources used in descriptor tables when ExecuteCommandLists is called. The result may be false validation errors. + + + Disables validation of bundle commands by virtually injecting checks into the calling command list validation paths. + + + Internal use only. + + + + Describes the subresources from a resource that are accessible by using an unordered-access view. + Microsoft Docs: + + + + A DXGI_FORMAT-typed value that specifies the viewing format. + + + A D3D12_UAV_DIMENSION-typed value that specifies the resource type of the view. This type specifies how the resource will be accessed. This member also determines which _UAV to use in the union below. + + + A D3D12_BUFFER_UAV structure that specifies which buffer elements can be accessed. + + + A D3D12_TEX1D_UAV structure that specifies the subresources in a 1D texture that can be accessed. + + + A D3D12_TEX1D_ARRAY_UAV structure that specifies the subresources in a 1D texture array that can be accessed. + + + A D3D12_TEX2D_UAV structure that specifies the subresources in a 2D texture that can be accessed. + + + A D3D12_TEX2D_ARRAY_UAV structure that specifies the subresources in a 2D texture array that can be accessed. + + + A D3D12_TEX3D_UAV structure that specifies subresources in a 3D texture that can be accessed. + + + + Provides methods to monitor and debug a command queue. + Microsoft Docs: + + + + + An information-queue interface stores, retrieves, and filters debug messages. The queue consists of a message queue, an optional storage filter stack, and a optional retrieval filter stack. + Microsoft Docs: + + + + + Gets the size and alignment of memory required for a collection of resources on this adapter. + Microsoft Docs: + For single-GPU operation, set this to zero. If there are multiple GPU nodes, then set bits to identify the nodes (the device's physical adapters). Each bit in the mask corresponds to a single node. Also see [Multi-adapter systems](/windows/win32/direct3d12/multi-engine). + The number of resource descriptors in the pResourceDescs array. + An array of D3D12_RESOURCE_DESC structures that described the resources to get info about. + + + + + Push a copy of storage filter currently on the top of the storage-filter stack onto the storage-filter stack. + Microsoft Docs: + + + + + Describes a raytracing acceleration structure. Pass this structure into ID3D12GraphicsCommandList4::BuildRaytracingAccelerationStructure to describe the acceleration structure to be built. + Microsoft Docs: + + + + Location to store resulting acceleration structure. ID3D12Device5::GetRaytracingAccelerationStructurePrebuildInfo reports the amount of memory required for the result here given a set of acceleration structure build parameters. + +The address must be aligned to 256 bytes, defined as D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BYTE_ALIGNMENT. + +> [!IMPORTANT] +> The memory must be in state [D3D12_RESOURCE_STATE_RAYTRACING_ACCELERATION_STRUCTURE](/windows/desktop/api/d3d12/ne-d3d12-d3d12_resource_states). + + + Description of the input data for the acceleration structure build. This is data is stored in a separate structure because it is also used with GetRaytracingAccelerationStructurePrebuildInfo. + + + Address of an existing acceleration structure if an acceleration structure update (an incremental build) is being requested, by setting D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BUILD_FLAG_PERFORM_UPDATE in the Flags parameter. Otherwise this address must be NULL. + +If this address is the same as DestAccelerationStructureData, the update is to be performed in-place. Any other form of overlap of the source and destination memory is invalid and produces undefined behavior. + +The address must be aligned to 256 bytes, defined as D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BYTE_ALIGNMENT, which should automatically be the case because any existing acceleration structure passed in here would have already been required to be placed with such alignment. + +> [!IMPORTANT] +> The memory must be in state [D3D12_RESOURCE_STATE_RAYTRACING_ACCELERATION_STRUCTURE](/windows/desktop/api/d3d12/ne-d3d12-d3d12_resource_states). + + + + Draws indexed, instanced primitives. + Microsoft Docs: + Number of indices read from the index buffer for each instance. + Number of instances to draw. + The location of the first index read by the GPU from the index buffer. + A value added to each index before reading a vertex from the vertex buffer. + A value added to each index before reading per-instance data from a vertex buffer. + + + + + Adds configurable levels of GPU-based validation to the debug layer. + Microsoft Docs: + + + + + Describes a raytracing hit group state subobject that can be included in a state object. + Microsoft Docs: + + + + The name of the hit group. + + + A value from the D3D12_HIT_GROUP_TYPE enumeration specifying the type of the hit group. + + + Optional name of the any-hit shader associated with the hit group. This field can be used with all hit group types. + + + Optional name of the closest-hit shader associated with the hit group. This field can be used with all hit group types. + + + Optional name of the intersection shader associated with the hit group. This field can only be used with hit groups of type procedural primitive. + + + + Describes the subresources of a texture that are accessible from a depth-stencil view. + Microsoft Docs: + + + + A DXGI_FORMAT-typed value that specifies the viewing format. For allowable formats, see Remarks. + + + A D3D12_DSV_DIMENSION-typed value that specifies how the depth-stencil resource will be accessed. This member also determines which _DSV to use in the following union. + + + A combination of D3D12_DSV_FLAGS enumeration constants that are combined by using a bitwise OR operation. + The resulting value specifies whether the texture is read only. + Pass 0 to specify that it isn't read only; otherwise, pass one or more of the members of the D3D12_DSV_FLAGS enumerated type. + + + A D3D12_TEX1D_DSV structure that specifies a 1D texture subresource. + + + A D3D12_TEX1D_ARRAY_DSV structure that specifies an array of 1D texture subresources. + + + A D3D12_TEX2D_DSV structure that specifies a 2D texture subresource. + + + A D3D12_TEX2D_ARRAY_DSV structure that specifies an array of 2D texture subresources. + + + A D3D12_TEX2DMS_DSV structure that specifies a multisampled 2D texture. + + + A D3D12_TEX2DMS_ARRAY_DSV structure that specifies an array of multisampled 2D textures. + + + + Specifies device-wide debug layer settings. + Microsoft Docs: + + + + + This subobject is unsupported in the current release. + Microsoft Docs: + + + + Size of the pExports array. If 0, this is being explicitly defined as a default association. Another way to define a default association is to omit this subobject association for that subobject completely. + + + The array of exports with which the subobject is associated. + + + + Gets the layout of the root signature, without converting between root signature versions. + Microsoft Docs: + + + + + Gets the layout of the root signature. + Microsoft Docs: + + + + + Specifies the settings used for luma keying. + Microsoft Docs: + + + + A boolean value specifying whether luma keying is enabled. + + + The lower bound for the luma key. The valid range is [0…1]. If Enable is FALSE, this parameter is ignored. + + + The upper bound for the luma key. The valid range is [0…1]. If Enable is FALSE, this parameter is ignored. + + + + Specifies the type of a raytracing acceleration structure. + Microsoft Docs: + + + + Top-level acceleration structure. + + + Bottom-level acceleration structure. + + + + Sets CPU descriptor handles for the render targets and depth stencil. + Microsoft Docs: + The number of entries in the pRenderTargetDescriptors array (ranges between 0 and D3D12_SIMULTANEOUS_RENDER_TARGET_COUNT). If this parameter is nonzero, the number of entries in the array to which pRenderTargetDescriptors points must equal the number in this parameter. + Specifies an array of D3D12_CPU_DESCRIPTOR_HANDLE structures that describe the CPU descriptor handles that represents the start of the heap of render target descriptors. If this parameter is NULL and NumRenderTargetDescriptors is 0, no render targets are bound. + True means the handle passed in is the pointer to a contiguous range of NumRenderTargetDescriptors descriptors. This case is useful if the set of descriptors to bind already happens to be contiguous in memory (so all that’s needed is a handle to the first one). For example, if NumRenderTargetDescriptors is 3 then the memory layout is taken as follows: + +Memory layout with parameter set to true +In this case the driver dereferences the handle and then increments the memory being pointed to. + +False means that the handle is the first of an array of NumRenderTargetDescriptors handles. The false case allows an application to bind a set of descriptors from different locations at once. Again assuming that NumRenderTargetDescriptors is 3, the memory layout is taken as follows: + +Memory layout with parameter set to false +In this case the driver dereferences three handles that are expected to be adjacent to each other in memory. + A pointer to a D3D12_CPU_DESCRIPTOR_HANDLE structure that describes the CPU descriptor handle that represents the start of the heap that holds the depth stencil descriptor. If this parameter is NULL, no depth stencil descriptor is bound. + + + + + Gets information about the features that are supported by the current graphics driver. + Microsoft Docs: + A constant from the D3D12_FEATURE enumeration describing the feature(s) that you want to query for support. + A pointer to a data structure that corresponds to the value of the Feature parameter. To determine the corresponding data structure for each constant, see D3D12_FEATURE. + The size of the structure pointed to by the pFeatureSupportData parameter. + + + + + Describes the level of GPU-based validation to perform at runtime. + Microsoft Docs: + + + + Default behavior; resource states, descriptors, and descriptor tables are all validated. + + + When set, GPU-based validation does not perform resource state validation which greatly reduces the performance cost of GPU-based validtion. Descriptors and descriptor heaps are still validated. + + + + Describes a ID3D12VideoMotionEstimatorHeap. Pass this structure into ID3D12VideoDevice1::CreateVideoMotionEstimatorHeap to create an instance of ID3D12VideoMotionEstimatorHeap. + Microsoft Docs: + + + + The node mask specifying the physical adapter on which the video processor will be used. For single GPU operation, set this to zero. If there are multiple GPU nodes, set a bit to identify the node, i.e. the device's physical adapter, to which the command queue applies. Each bit in the mask corresponds to a single node. Only 1 bit may be set. + + + A value from the DXGI_FORMAT enumeration specifying the format of the input and reference frames. + + + A value from the D3D12_VIDEO_MOTION_ESTIMATOR_SEARCH_BLOCK_SIZE enumeration specifying the search block size the video motion estimator will use. + + + A value from the D3D12_VIDEO_MOTION_ESTIMATOR_VECTOR_PRECISION enumeration specifying the vector precision the video motion estimator will use. + + + A D3D12_VIDEO_SIZE_RANGE structure representing the minimum and maximum input and reference frame size, in pixels, that the motion estimator will accept. + + + + Sets a rendering predicate. + Microsoft Docs: + The buffer, as an ID3D12Resource, which must be in the [D3D12_RESOURCE_STATE_PREDICATION](/windows/win32/api/d3d12/ne-d3d12-d3d12_resource_states) or [D3D21_RESOURCE_STATE_INDIRECT_ARGUMENT](/windows/win32/api/d3d12/ne-d3d12-d3d12_resource_states) state (both values are identical, and provided as aliases for clarity), or NULL to disable predication. + The aligned buffer offset, as a UINT64. + Specifies a D3D12_PREDICATION_OP, such as D3D12_PREDICATION_OP_EQUAL_ZERO or D3D12_PREDICATION_OP_NOT_EQUAL_ZERO. + + + + + Enables a list of experimental features. + Microsoft Docs: + The number of experimental features to enable. + SAL: __in_ecount(NumFeatures) + +A pointer to an array of IDs that specify which of the available experimental features to enable. + SAL: __in_ecount(NumFeatures) + +Structures that contain additional configuration details that some experimental features might need to be enabled. + SAL: __in_ecount(NumFeatures) + +The sizes of any configuration structs passed in pConfigurationStructs parameter. + + + + + Describes an array of unordered-access 2D texture resources. + Microsoft Docs: + + + + The mipmap slice index. + + + The zero-based index of the first array slice to be accessed. + + + The number of slices in the array. + + + The index (plane slice number) of the plane to use in an array of textures. + + + + Describes a graphics pipeline state object. + Microsoft Docs: + + + + A pointer to the ID3D12RootSignature object. + + + A D3D12_SHADER_BYTECODE structure that describes the vertex shader. + + + A D3D12_SHADER_BYTECODE structure that describes the pixel shader. + + + A D3D12_SHADER_BYTECODE structure that describes the domain shader. + + + A D3D12_SHADER_BYTECODE structure that describes the hull shader. + + + A D3D12_SHADER_BYTECODE structure that describes the geometry shader. + + + A D3D12_STREAM_OUTPUT_DESC structure that describes a streaming output buffer. + + + A D3D12_BLEND_DESC structure that describes the blend state. + + + The sample mask for the blend state. + + + A D3D12_RASTERIZER_DESC structure that describes the rasterizer state. + + + A D3D12_DEPTH_STENCIL_DESC structure that describes the depth-stencil state. + + + A D3D12_INPUT_LAYOUT_DESC structure that describes the input-buffer data for the input-assembler stage. + + + Specifies the properties of the index buffer in a D3D12_INDEX_BUFFER_STRIP_CUT_VALUE structure. + + + A D3D12_PRIMITIVE_TOPOLOGY_TYPE-typed value for the type of primitive, and ordering of the primitive data. + + + The number of render target formats in the RTVFormats member. + + + An array of DXGI_FORMAT-typed values for the render target formats. + + + A DXGI_FORMAT-typed value for the depth-stencil format. + + + A DXGI_SAMPLE_DESC structure that specifies multisampling parameters. + + + For single GPU operation, set this to zero. If there are multiple GPU nodes, set bits to identify the nodes (the device's physical adapters) for which the graphics pipeline state is to apply. + Each bit in the mask corresponds to a single node. + Refer to Multi-adapter systems. + + + A cached pipeline state object, as a D3D12_CACHED_PIPELINE_STATE structure. pCachedBlob and CachedBlobSizeInBytes may be set to NULL and 0 respectively. + + + A D3D12_PIPELINE_STATE_FLAGS enumeration constant such as for "tool debug". + + + + Describes a subresource memory range. + Microsoft Docs: + + + + The index of the subresource. + + + A memory range within the subresource. + + + + This shader-reflection interface provides access to a constant buffer. + Microsoft Docs: + + + + + Resets a command list back to its initial state as if a new command list was just created. + Microsoft Docs: + A pointer to the ID3D12CommandAllocator object that the device creates command lists from. + A pointer to the ID3D12PipelineState object that contains the initial pipeline state for the command list. This is optional and can be NULL. If NULL, the runtime sets a dummy initial pipeline state so that drivers don't have to deal with undefined state. The overhead for this is low, particularly for a command list, for which the overall cost of recording the command list likely dwarfs the cost of one initial state setting. So there is little cost in not setting the initial pipeline state parameter if it isn't convenient. + +For bundles on the other hand, it might make more sense to try to set the initial state parameter since bundles are likely smaller overall and can be reused frequently. + + + + + Copies the entire contents of the source resource to the destination resource. + Microsoft Docs: + A pointer to the ID3D12Resourceinterface that represents the destination resource. + A pointer to the ID3D12Resourceinterface that represents the source resource. + + + + + Describes the transition of subresources between different usages. + Microsoft Docs: + + + + A pointer to the ID3D12Resource object that represents the resource used in the transition. + + + The index of the subresource for the transition. + Use the D3D12_RESOURCE_BARRIER_ALL_SUBRESOURCES flag ( 0xffffffff ) to transition all subresources in a resource at the same time. + + + The "before" usages of the subresources, as a bitwise-OR'd combination of D3D12_RESOURCE_STATES enumeration constants. + + + The "after" usages of the subresources, as a bitwise-OR'd combination of D3D12_RESOURCE_STATES enumeration constants. + + + + Specifies the type of a sub-object in a pipeline state stream description. + Microsoft Docs: + + + + Indicates a root signature subobject type. +The corresponding subobject type is ID3D12RootSignature. + + + Indicates a vertex shader subobject type. +The corresponding subobject type is D3D12_SHADER_BYTECODE. + + + Indicates a pixel shader subobject type. +The corresponding subobject type is D3D12_SHADER_BYTECODE. + + + Indicates a domain shader subobject type. +The corresponding subobject type is D3D12_SHADER_BYTECODE. + + + Indicates a hull shader subobject type. +The corresponding subobject type is D3D12_SHADER_BYTECODE. + + + Indicates a geometry shader subobject type. +The corresponding subobject type is D3D12_SHADER_BYTECODE. + + + Indicates a compute shader subobject type. +The corresponding subobject type is D3D12_SHADER_BYTECODE. + + + Indicates a stream-output subobject type. +The corresponding subobject type is D3D12_STREAM_OUTPUT_DESC. + + + Indicates a blend subobject type. +The corresponding subobject type is D3D12_BLEND_DESC. + + + Indicates a sample mask subobject type. +The corresponding subobject type is UINT. + + + Indicates indicates a rasterizer subobject type. +The corresponding subobject type is D3D12_RASTERIZER_DESC. + + + Indicates a depth stencil subobject type. +The corresponding subobject type is D3D12_DEPTH_STENCIL_DESC. + + + Indicates an input layout subobject type. +The corresponding subobject type is D3D12_INPUT_LAYOUT_DESC. + + + Indicates an index buffer strip cut value subobject type. +The corresponding subobject type is D3D12_INDEX_BUFFER_STRIP_CUT_VALUE. + + + Indicates a primitive topology subobject type. +The corresponding subobject type is D3D12_PRIMITIVE_TOPOLOGY_TYPE. + + + Indicates a render target formats subobject type. The corresponding subobject type is D3D12_RT_FORMAT_ARRAY structure, which wraps an array of render target formats along with a count of the array elements. + + + Indicates a depth stencil format subobject. +The corresponding subobject type is DXGI_FORMAT. + + + Indicates a sample description subobject type. +The corresponding subobject type is DXGI_SAMPLE_DESC. + + + Indicates a node mask subobject type. +The corresponding subobject type is D3D12_NODE_MASK or UINT. + + + Indicates a cached pipeline state object subobject type. +The corresponding subobject type is D3D12_CACHED_PIPELINE_STATE. + + + Indicates a flags subobject type. +The corresponding subobject type is D3D12_PIPELINE_STATE_FLAGS. + + + Indicates an expanded depth stencil subobject type. This expansion of the depth stencil subobject supports optional depth bounds checking. +The corresponding subobject type is D3D12_DEPTH_STENCIL_DESC1. + + + Indicates a view instancing subobject type. +The corresponding subobject type is D3D12_VIEW_INSTANCING_DESC. + + + Indicates an amplification shader subobject type. +The corresponding subobject type is D3D12_SHADER_BYTECODE. + + + Indicates a mesh shader subobject type. +The corresponding subobject type is D3D12_SHADER_BYTECODE. + + + A sentinel value that marks the exclusive upper-bound of valid values this enumeration represents. + + + + This method uses the GPU to copy texture data between two locations. Both the source and the destination may reference texture data located within either a buffer resource or a texture resource. + Microsoft Docs: + Specifies the destination D3D12_TEXTURE_COPY_LOCATION. The subresource referred to must be in the D3D12_RESOURCE_STATE_COPY_DEST state. + The x-coordinate of the upper left corner of the destination region. + The y-coordinate of the upper left corner of the destination region. For a 1D subresource, this must be zero. + The z-coordinate of the upper left corner of the destination region. For a 1D or 2D subresource, this must be zero. + Specifies the source D3D12_TEXTURE_COPY_LOCATION. + The subresource referred to must be in the D3D12_RESOURCE_STATE_COPY_SOURCE state. + Specifies an optional D3D12_BOX that sets the size of the source texture to copy. + + + + + Gets a pointer to the device that created this interface. + Microsoft Docs: + The globally unique identifier (GUID) for the device interface. + The REFIID, or GUID, of the interface to the device can be obtained by using the __uuidof() macro. + For example, __uuidof(ID3D12Device) will get the GUID of the interface to a device. + A pointer to a memory block that receives a pointer to the ID3D12Device interface for the device. + + + + + Defines constants that specify protected resource session support. + Microsoft Docs: + + + + Indicates that protected resource sessions are not supported. + + + Indicates that protected resource sessions are supported. + + + + Specifies the scaling capabilities of the video scaler. + Microsoft Docs: + + + + All possible output size width/height combinations that exist between the maximum size and minimum size for the extent, inclusive, are supported. + + + The scaler only supports output sizes at a power of two scale factors within the range. The x and y scale factors must be the same for both dimensions when this flag is set. + + + The scaler only supports output sizes with even output dimensions. + + + + Describes a sampler state. + Microsoft Docs: + + + + A D3D12_FILTER-typed value that specifies the filtering method to use when sampling a texture. + + + A D3D12_TEXTURE_ADDRESS_MODE-typed value that specifies the method to use for resolving a u texture coordinate that is outside the 0 to 1 range. + + + A D3D12_TEXTURE_ADDRESS_MODE-typed value that specifies the method to use for resolving a v texture coordinate that is outside the 0 to 1 range. + + + A D3D12_TEXTURE_ADDRESS_MODE-typed value that specifies the method to use for resolving a w texture coordinate that is outside the 0 to 1 range. + + + Offset from the calculated mipmap level. For example, if the runtime calculates that a texture should be sampled at mipmap level 3 and MipLODBias is 2, the texture will be sampled at mipmap level 5. + + + Clamping value used if D3D12_FILTER_ANISOTROPIC or D3D12_FILTER_COMPARISON_ANISOTROPIC is specified in Filter. Valid values are between 1 and 16. + + + A D3D12_COMPARISON_FUNC-typed value that specifies a function that compares sampled data against existing sampled data. + + + Border color to use if D3D12_TEXTURE_ADDRESS_MODE_BORDER is specified for AddressU, AddressV, or AddressW. Range must be between 0.0 and 1.0 inclusive. + + + Lower end of the mipmap range to clamp access to, where 0 is the largest and most detailed mipmap level and any level higher than that is less detailed. + + + Upper end of the mipmap range to clamp access to, where 0 is the largest and most detailed mipmap level and any level higher than that is less detailed. This value must be greater than or equal to MinLOD. To have no upper limit on LOD, set this member to a large value. + + + + Describes a resource to resolve to at the conclusion of a render pass. + Microsoft Docs: + + + + A pointer to an ID3D12Resource. The source resource. + + + A pointer to an ID3D12Resource. The destination resource. + + + A UINT. The number of subresources. + + + A pointer to a constant array of D3D12_RENDER_PASS_ENDING_ACCESS_RESOLVE_SUBRESOURCE_PARAMETERS. These subresources can be a subset of the render target's array slices, but you can't target subresources that aren't part of the render target view (RTV) or the depth/stencil view (DSV). + +> [!NOTE] +> This pointer is directly referenced by the command list, and the memory for this array must remain alive and intact until EndRenderPass is called. + + + A DXGI_FORMAT. The data format of the resources. + + + A D3D12_RESOLVE_MODE. The resolve operation. + + + A BOOL. TRUE to preserve the resolve source, otherwise FALSE. + + + + Represents a virtual adapter. This interface extends ID3D12Device4. + Microsoft Docs: + + + + + Retrieves video extension command support using command-defined input and output structures. + Microsoft Docs: + + + + For single GPU operation, set this to zero. If there are multiple GPU nodes, set a bit to identify the node (the device's physical adapter) to which the command queue applies. Each bit in the mask corresponds to a single node. Only 1 bit may be set. + + + The unique identifier for the video extension command for which support is queried. + + + Input data for the capability query allocated by the caller with a size of InputDataSizeInBytes. This struct is enumerable as the D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_STAGE_CAPS_INPUT parameter stage. + + + The byte size of the input data allocation. + + + Output data for the capability query allocated by the caller with a size of OutputDataSizeInBytes. This struct is enumerable as the D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_STAGE_CAPS_OUTPUT parameter stage. + + + The byte size of the output data allocation. + + + + Describes a streaming output buffer. + Microsoft Docs: + + + + An array of D3D12_SO_DECLARATION_ENTRY structures. Can't be NULL if NumEntries > 0. + + + The number of entries in the stream output declaration array that the pSODeclaration member points to. + + + An array of buffer strides; each stride is the size of an element for that buffer. + + + The number of strides (or buffers) that the pBufferStrides member points to. + + + The index number of the stream to be sent to the rasterizer stage. + + + + Bind an array of viewports to the rasterizer stage of the pipeline. + Microsoft Docs: + Number of viewports to bind. + The range of valid values is (0, D3D12_VIEWPORT_AND_SCISSORRECT_OBJECT_COUNT_PER_PIPELINE). + An array of D3D12_VIEWPORT structures to bind to the device. + + + + + Describes depth-stencil state. + Microsoft Docs: + + + + Specifies whether to enable depth testing. Set this member to TRUE to enable depth testing. + + + A D3D12_DEPTH_WRITE_MASK-typed value that identifies a portion of the depth-stencil buffer that can be modified by depth data. + + + A D3D12_COMPARISON_FUNC-typed value that identifies a function that compares depth data against existing depth data. + + + Specifies whether to enable stencil testing. Set this member to TRUE to enable stencil testing. + + + Identify a portion of the depth-stencil buffer for reading stencil data. + + + Identify a portion of the depth-stencil buffer for writing stencil data. + + + A D3D12_DEPTH_STENCILOP_DESC structure that describes how to use the results of the depth test and the stencil test for pixels whose surface normal is facing towards the camera. + + + A D3D12_DEPTH_STENCILOP_DESC structure that describes how to use the results of the depth test and the stencil test for pixels whose surface normal is facing away from the camera. + + + + Describes a static sampler. + Microsoft Docs: + + + + The filtering method to use when sampling a texture, as a D3D12_FILTER enumeration constant. + + + Specifies the D3D12_TEXTURE_ADDRESS_MODE mode to use for resolving a u texture coordinate that is outside the 0 to 1 range. + + + Specifies the D3D12_TEXTURE_ADDRESS_MODE mode to use for resolving a v texture coordinate that is outside the 0 to 1 range. + + + Specifies the D3D12_TEXTURE_ADDRESS_MODE mode to use for resolving a w texture coordinate that is outside the 0 to 1 range. + + + Offset from the calculated mipmap level. For example, if Direct3D calculates that a texture should be sampled at mipmap level 3 and MipLODBias is 2, then the texture will be sampled at mipmap level 5. + + + Clamping value used if D3D12_FILTER_ANISOTROPIC or D3D12_FILTER_COMPARISON_ANISOTROPIC is specified as the filter. Valid values are between 1 and 16. + + + A function that compares sampled data against existing sampled data. + The function options are listed in D3D12_COMPARISON_FUNC. + + + One member of D3D12_STATIC_BORDER_COLOR, the border color to use if D3D12_TEXTURE_ADDRESS_MODE_BORDER is specified for AddressU, AddressV, or AddressW. + Range must be between 0.0 and 1.0 inclusive. + + + Lower end of the mipmap range to clamp access to, where 0 is the largest and most detailed mipmap level and any level higher than that is less detailed. + + + Upper end of the mipmap range to clamp access to, where 0 is the largest and most detailed mipmap level and any level higher than that is less detailed. This value must be greater than or equal to MinLOD. To have no upper limit on LOD set this to a large value such as D3D12_FLOAT32_MAX. + + + The ShaderRegister and RegisterSpace parameters correspond to the binding syntax of HLSL. For example, in HLSL: + + +
Texture2D<float4> a : register(t2, space3);
+This corresponds to a ShaderRegister of 2 (indicating the type is SRV), and RegisterSpace is 3. + + +The ShaderRegister and RegisterSpace pair is needed to establish correspondence between shader resources and runtime heap descriptors, using the root signature data structure.
+
+ + See the description for ShaderRegister. + Register space is optional; the default register space is 0. + + + Specifies the visibility of the sampler to the pipeline shaders, one member of D3D12_SHADER_VISIBILITY. + + + + This method enables tools such as PIX to instrument shaders. + Microsoft Docs: + TRUE to enable shader instrumentation; otherwise, FALSE. + + + + + Indicates the level of support for 64KB-aligned MSAA textures, cross-API sharing, and native 16-bit shader operations. + Microsoft Docs: + + + + Indicates whether 64KB-aligned MSAA textures are supported. + + + Indicates the tier of cross-API sharing support. + + + Indicates native 16-bit shader operations are supported. These operations require shader model 6_2. For more information, see the [16-Bit Scalar Types](https://github.com/microsoft/DirectXShaderCompiler/wiki/16-Bit-Scalar-Types) HLSL reference. + + + + Specifies an event that should be fired when one or more of a collection of fences reach specific values. + Microsoft Docs: + An array of length NumFences that specifies the ID3D12Fence objects. + An array of length NumFences that specifies the fence values required for the event is to be signaled. + Specifies the number of fences to be included. + Specifies one of the D3D12_MULTIPLE_FENCE_WAIT_FLAGS that determines how to proceed. + A handle to the event object. + + + + + Describes a GPU descriptor handle. + Microsoft Docs: + + + + The address of the descriptor. + + + + A debug message in the Information Queue. + Microsoft Docs: + + + + The category of the message. See D3D12_MESSAGE_CATEGORY. + + + The severity of the message. See D3D12_MESSAGE_SEVERITY. + + + The ID of the message. See D3D12_MESSAGE_ID. + + + The message string. + + + The length of pDescription, in bytes. + + + + The flags to apply when exporting symbols from a state subobject. + Microsoft Docs: + + + + No export flags. + + + + Gets the flags used to create the fence represented by the current instance. + Microsoft Docs: + + + + + A state subobject that represents a raytracing pipeline configuration. + Microsoft Docs: + + + + Limit on ray recursion for the raytracing pipeline. It must be in the range of 0 to 31. Below the maximum recursion depth, shader invocations such as closest hit or miss shaders can call TraceRay any number of times. At the maximum recursion depth, TraceRay calls result in the device going into removed state. + + + + Describes a heap. + Microsoft Docs: + + + + The size, in bytes, of the heap. + To avoid wasting memory, applications should pass SizeInBytes values which are multiples of the effective Alignment; + but non-aligned SizeInBytes is also supported, for convenience. + To find out how large a heap must be to support textures with undefined layouts and adapter-specific sizes, call ID3D12Device::GetResourceAllocationInfo. + + + A D3D12_HEAP_PROPERTIES structure that describes the heap properties. + + + The alignment value for the heap. Valid values: + + + + + + + + + + + + + + + + + + + +
ValueDescription
0 + An alias for 64KB. +
D3D12_DEFAULT_RESOURCE_PLACEMENT_ALIGNMENT + #defined as 64KB. +
D3D12_DEFAULT_MSAA_RESOURCE_PLACEMENT_ALIGNMENT + #defined as 4MB. + An application must decide whether the heap will contain multi-sample anti-aliasing (MSAA), in which case, the application must choose D3D12_DEFAULT_MSAA_RESOURCE_PLACEMENT_ALIGNMENT. +
+
+ + A combination of D3D12_HEAP_FLAGS-typed values that are combined by using a bitwise-OR operation. + The resulting value identifies heap options. + When creating heaps to support adapters with resource heap tier 1, an application must choose some flags. + + + + Specifies parameters used during view instancing configuration. + Microsoft Docs: + + + + Specifies the number of views to be used, up to D3D12_MAX_VIEW_INSTANCE_COUNT. + + + The address of a memory location that contains ViewInstanceCount view instance location structures that specify the location of viewport/scissor and render target details of each view instance. + + + Configures view instancing with additional options. + + + + Creates a shared handle to an heap, resource, or fence object. + Microsoft Docs: + A pointer to the ID3D12DeviceChild interface that represents the heap, resource, or fence object to create for sharing. + The following interfaces (derived from ID3D12DeviceChild) are supported: + + + + A pointer to a SECURITY_ATTRIBUTESstructure that contains two separate but related data members: an optional security descriptor, and a Booleanvalue that determines whether child processes can inherit the returned handle. + + +Set this parameter to NULL if you want child processes that the + application might create to not inherit the handle returned by + CreateSharedHandle, and if you want the resource that is associated with the returned handle to get a default security + descriptor. + + +The lpSecurityDescriptor member of the structure specifies a + SECURITY_DESCRIPTOR for the resource. + Set this member to NULL if you want the runtime to assign a default security descriptor to the resource that is associated with the returned handle. + The ACLs in the default security descriptor for the resource come from the primary or impersonation token of the creator. + For more info, see Synchronization Object Security and Access Rights. + Currently the only value this parameter accepts is GENERIC_ALL. + A NULL-terminated UNICODE string that contains the name to associate with the shared heap. + The name is limited to MAX_PATH characters. + Name comparison is case-sensitive. + + +If Name matches the name of an existing resource, CreateSharedHandle fails with DXGI_ERROR_NAME_ALREADY_EXISTS. + This occurs because these objects share the same namespace. + + +The name can have a "Global\" or "Local\" prefix to explicitly create the object in the global or session namespace. + The remainder of the name can contain any character except the backslash character (\\). + For more information, see + Kernel Object Namespaces. + Fast user switching is implemented using Terminal Services sessions. + Kernel object names must follow the guidelines outlined for Terminal Services so that applications can support multiple users. + + +The object can be created in a private namespace. + For more information, see Object Namespaces. + A pointer to a variable that receives the NT HANDLE value to the resource to share. + You can use this handle in calls to access the resource. + + + + + Represents a subobject within a state object description. Use with D3D12_STATE_OBJECT_DESC. + Microsoft Docs: + + + + A D3D12_STATE_SUBOBJECT_TYPE specifying the type of the state subobject. + + + Pointer to state object description of the type specified in the Type parameter. + + + + Encapsulates a list of graphics commands for rendering. + Microsoft Docs: + + + + + Generates an interface that can return the deserialized data structure, via GetUnconvertedRootSignatureDesc. + Microsoft Docs: + A pointer to the source data for the serialized root signature. + The size, in bytes, of the block of memory that pSrcData points to. + The globally unique identifier (GUID) for the root signature deserializer interface. See remarks. + A pointer to a memory block that receives a pointer to the root signature deserializer. + + + + + Encapsulates a list of graphics commands for rendering, extending the interface to support variable-rate shading (VRS). + Microsoft Docs: + + + + + Queries reflection metadata about available meta commands. + Microsoft Docs: + A pointer to a UINT containing the number of meta commands to query for. This field determines the size of the pDescs array, unless pDescs is nullptr. + An optional pointer to an array of D3D12_META_COMMAND_DESC containing the descriptions of the available meta commands. Pass nullptr to have the number of available meta commands returned in pNumMetaCommands. + + + + + Describes the subresources from a multi sampled 2D texture to use in a shader-resource view. + Microsoft Docs: + + + + Integer of any value. See remarks. + + + + Creates an instance of the specified meta command. + Microsoft Docs: + A reference to the globally unique identifier (GUID) of the meta command that you wish to instantiate. + For single-adapter operation, set this to zero. If there are multiple adapter nodes, set a bit to identify the node (one of the device's physical adapters) to which the meta command applies. Each bit in the mask corresponds to a single node. Only one bit must be set. See Multi-adapter systems. + An optional pointer to a constant structure containing the values of the parameters for creating the meta command. + A SIZE_T containing the size of the structure pointed to by pCreationParametersData, if set, otherwise 0. + A reference to the globally unique identifier (GUID) of the interface that you wish to be returned in ppMetaCommand. This is expected to be the GUID of ID3D12MetaCommand. + A pointer to a memory block that receives a pointer to the meta command. This is the address of a pointer to an ID3D12MetaCommand, representing the meta command created. + + + + + Specifies a resolve operation. + Microsoft Docs: + + + + Resolves compressed source samples to their uncompressed values. When using this operation, the source and destination resources must have the same sample count, unlike the min, max, and average operations that require the destination to have a sample count of 1. + + + Resolves the source samples to their minimum value. It can be used with any render target or depth stencil format. + + + Resolves the source samples to their maximum value. It can be used with any render target or depth stencil format. + + + Resolves the source samples to their average value. It can be used with any non-integer render target format, including the depth plane. It can't be used with integer render target formats, including the stencil plane. + + + + Not intended to be called directly.  Use the PIX event runtime to insert events into a command list. + Microsoft Docs: + + + + + Description of a state object. Pass this structure into ID3D12Device::CreateStateObject. + Microsoft Docs: + + + + The type of the state object. + + + Size of the pSubobjects array. + + + An array of subobject definitions. + + + + Describes the slot of a root signature version 1.0. + Microsoft Docs: + + + + A D3D12_ROOT_PARAMETER_TYPE-typed value that specifies the type of root signature slot. This member determines which type to use in the union below. + + + A D3D12_ROOT_DESCRIPTOR_TABLE structure that describes the layout of a descriptor table as a collection of descriptor ranges that appear one after the other in a descriptor heap. + + + A D3D12_ROOT_CONSTANTS structure that describes constants inline in the root signature that appear in shaders as one constant buffer. + + + A D3D12_ROOT_DESCRIPTOR structure that describes descriptors inline in the root signature that appear in shaders. + + + A D3D12_SHADER_VISIBILITY-typed value that specifies the shaders that can access the contents of the root signature slot. + + + + Describes an export from a state subobject such as a DXIL library or a collection state object. + Microsoft Docs: + + + + The name to be exported. If the name refers to a function that is overloaded, a modified version of the name (e.g. encoding function parameter information in name string) can be provided to disambiguate which overload to use. The modified name for a function can be retrieved using HLSL compiler reflection. + +If the ExportToRename field is non-null, Name refers to the new name to use for it when exported. In this case Name must be the unmodified name, whereas ExportToRename can be either a modified or unmodified name. A given internal name may be exported multiple times with different renames (and/or not renamed). + + + If non-null, this is the name of an export to use but then rename when exported. + + + + Describes a constant buffer to view. + Microsoft Docs: + + + + The D3D12_GPU_VIRTUAL_ADDRESS of the constant buffer. + D3D12_GPU_VIRTUAL_ADDRESS is a typedef'd alias of UINT64. + + + The size in bytes of the constant buffer. + + + + Describes the root signature 1.0 layout of a descriptor table as a collection of descriptor ranges that are all relative to a single base descriptor handle. + Microsoft Docs: + + + + The number of descriptor ranges in the table layout. + + + An array of D3D12_DESCRIPTOR_RANGE structures that describe the descriptor ranges. + + + + Specifies the parameters for the input stream for a video process operation. + Microsoft Docs: + + + + A value from the DXGI_FORMAT enumeration specifying the format of the input stream. In the case of stereo, this format is the format of both inputs. + + + A value from the DXGI_COLOR_SPACE_TYPE enumeration specifying the color space of the video processor input and reference surfaces. + + + A DXGI_RATIONAL structure specifying the source aspect ratio. + + + A DXGI_RATIONAL structure specifying the destination aspect ratio. + + + A DXGI_RATIONAL structure specifying the frame rate of the input video stream. + + + A D3D12_VIDEO_SIZE_RANGE structure representing the size of the source rectangle. This argument specifies the input range size this video processor must support for ProcessFrames. If a source size exceeds the range, the video processor must be recreated. + + + A D3D12_VIDEO_SIZE_RANGE structure representing the size of the destination rectangle. This argument specifies the destination range size this video processor must support for ProcessFrames. If a source size exceeds the range, the video processor must be recreated. + + + A boolean value specifying whether the video processor should support all D3D12_VIDEO_PROCESS_ORIENTATION for ProcessFrames. + + + A bitwise OR combination of one or more flags from the D3D12_VIDEO_PROCESS_FILTER_FLAGS enumeration specifying the filters to enable. + + + A value from the D3D12_VIDEO_FRAME_STEREO_FORMAT enumeration specifies whether the stream is stereo or not. A value of D3D12_VIDEO_PROCESS_STEREO_FORMAT_SEPARATE indicates that there will be two sets of input textures, and two sets of references for the stereo interlaced case. + + + A value from the D3D12_VIDEO_FIELD_TYPE enumeration specfying the interlaced field type of the input source. When working with mixed content, use [ID3D12VideoProcessCommandList1::ProcessFrames1](nf-d3d12video-id3d12videoprocesscommandlist1-processframes1.md) which supports changing the field type for each call. + + + A value from the D3D12_VIDEO_PROCESS_DEINTERLACE_FLAGS enumeration specifying the deinterlace mode to use. + + + A boolean value specifying whether alpha blending is enabled. Alpha blending settings are provided to ProcessFrames with AlphaBlending the field of the D3D12_VIDEO_PROCESS_INPUT_STREAM_ARGUMENTS structure. + + + A D3D12_VIDEO_PROCESS_LUMA_KEY structure specifying the luma key for an input stream on the video processor. + + + An integer specifying the number of past reference frames. + + + An integer specifying the number of future reference frames. + + + A boolean value specifying wither automatic processing features are enabled for the video processor. + + + + Specifies what to clear from the depth stencil view. + Microsoft Docs: + + + + Indicates the depth buffer should be cleared. + + + Indicates the stencil buffer should be cleared. + + + + Identifies the stencil operations that can be performed during depth-stencil testing. + Microsoft Docs: + + + + Keep the existing stencil data. + + + Set the stencil data to 0. + + + Set the stencil data to the reference value set by calling ID3D12GraphicsCommandList::OMSetStencilRef. + + + Increment the stencil value by 1, and clamp the result. + + + Decrement the stencil value by 1, and clamp the result. + + + Invert the stencil data. + + + Increment the stencil value by 1, and wrap the result if necessary. + + + Decrement the stencil value by 1, and wrap the result if necessary. + + + + Fills the function descriptor structure for the function. + Microsoft Docs: + A pointer to a D3D12_FUNCTION_DESC structure that receives a description of the function. + + + + + Specifies output stream arguments for the output passed to ID3D12VideoProcessCommandList::ProcessFrames. + Microsoft Docs: + + + + A DXGI_FORMAT structure specifying the format of the output resources. + + + A DXGI_COLOR_SPACE_TYPE value that specifies the colorspace for the video processor output surface. + + + A value from the D3D12_VIDEO_PROCESS_ALPHA_FILL_MODE enumeration specifying the alpha fill mode for data that the video processor writes to the render target. + + + The zero-based index of an input stream. This parameter is used if AlphaFillMode is D3D12_VIDEO_PROCESS_ALPHA_FILL_MODE_SOURCE_STREAM. Otherwise, the parameter is ignored. + + + The video processor uses the background color to fill areas of the target rectangle that do not contain a video image. Areas outside the target rectangle are not affected. The meaning of the values are specified by the ColorSpace parameter. + +| BackgroundColor | YCbCrA | RGBA | +|-------------------|----------|---------| +| BackgroundColor[0]| Y | R | +| BackgroundColor[1]| Cb | G | +| BackgroundColor[2]| Cr | B | +| BackgroundColor[3]| A | A | + + + A DXGI_RATIONAL structure specifying the frame rate of the output video stream. + + + If TRUE, stereo output is enabled. Otherwise, the video processor produces mono video frames. + + + + Represents the histogram output buffer for a single component. + Microsoft Docs: + + + + The offset location in pBuffer to write the component histogram. Must be 256-byte aligned. Set to zero when a component is disabled. + + + And ID3D12Resource representing the target buffer for hardware to write the components histogram. Set to a nullptr when the component histogram is disabled. + + + + Flags for setting split resource barriers. + Microsoft Docs: + + + + No flags. + + + This starts a barrier transition in a new state, putting a resource in a temporary no-access condition. + + + This barrier completes a transition, setting a new state and restoring active access to a resource. + + + + Defines constants that specify render/compute GPU operations. + Microsoft Docs: + + + + + Describes the range of supported sizes for a video scaler. + Microsoft Docs: + + + + The largest output width to which content can be scaled. The largest value allowed is D3D12\_REQ\_TEXTURE2D\_U\_OR\_V\_DIMENSION (16384). + + + The largest output height to which content can be scaled. The largest value allowed is D3D12\_REQ\_TEXTURE2D\_U\_OR\_V\_DIMENSION (16384). + + + The smallest output width to which content can be scaled. The smallest allowed value is 1. + + + The smallest output height to which content can be scaled. The smallest allowed value is 1. + + + + Adds a debug message to the message queue and sends that message to debug output. + Microsoft Docs: + Category of a message. + Severity of a message. + Unique identifier of a message. + User-defined message. + + + + + Identifies how to view a buffer resource. + Microsoft Docs: + + + + Indicates a default view. + + + View the buffer as raw. For more info about raw viewing of buffers, see Raw Views of Buffers. + + + + Specifies a depth and stencil value. + Microsoft Docs: + + + + Specifies the depth value. + + + Specifies the stencil value. + + + + Describes the transition between usages of two different resources that have mappings into the same heap. + Microsoft Docs: + + + + A pointer to the ID3D12Resource object that represents the before resource used in the transition. + + + A pointer to the ID3D12Resource object that represents the after resource used in the transition. + + + + Launch the threads of a ray generation shader. + Microsoft Docs: + A description of the ray dispatch + + + + + Describes a set of triangles used as raytracing geometry. The geometry pointed to by this struct are always in triangle list form, indexed or non-indexed. Triangle strips are not supported. + Microsoft Docs: + + + + Address of a 3x4 affine transform matrix in row-major layout to be applied to the vertices in the VertexBuffer during an acceleration structure build. The contents of VertexBuffer are not modified. If a 2D vertex format is used, the transformation is applied with the third vertex component assumed to be zero. + +If Transform3x4 is NULL the vertices will not be transformed. Using Transform3x4 may result in increased computation and/or memory requirements for the acceleration structure build. + + +The memory pointed to must be in state D3D12_RESOURCE_STATE_NON_PIXEL_SHADER_RESOURCE. The address must be aligned to 16 bytes, defined as D3D12_RAYTRACING_TRANSFORM3X4_BYTE_ALIGNMENT. + + + Format of the indices in the IndexBuffer. Must be one of the following: + +
    +
  • DXGI_FORMAT_UNKNOWN - when IndexBuffer is NULL
  • +
  • DXGI_FORMAT_R32_UINT
  • +
  • DXGI_FORMAT_R16_UINT
  • +
+
+ + Format of the vertices in VertexBuffer. Must be one of the following: + +
    +
  • DXGI_FORMAT_R32G32_FLOAT - third component is assumed 0
  • +
  • DXGI_FORMAT_R32G32B32_FLOAT
  • +
  • DXGI_FORMAT_R16G16_FLOAT - third component is assumed 0
  • +
  • DXGI_FORMAT_R16G16B16A16_FLOAT - A16 component is ignored, other data can be packed there, such as setting vertex stride to 6 bytes.
  • +
  • DXGI_FORMAT_R16G16_SNORM - third component is assumed 0
  • +
  • DXGI_FORMAT_R16G16B16A16_SNORM - A16 component is ignored, other data can be packed there, such as setting vertex stride to 6 bytes.
  • +
+
+ + Number of indices in IndexBuffer. Must be 0 if IndexBuffer is NULL. + + + Number of vertices in VertexBuffer. + + + Array of vertex indices. If NULL, triangles are non-indexed. Just as with graphics, the address must be aligned to the size of IndexFormat. + +The memory pointed to must be in state D3D12_RESOURCE_STATE_NON_PIXEL_SHADER_RESOURCE. Note that if an app wants to share index buffer inputs between graphics input assembler and raytracing acceleration structure build input, it can always put a resource into a combination of read states simultaneously, e.g. D3D12_RESOURCE_STATE_INDEX_BUFFER | D3D12_RESOURCE_STATE_NON_PIXEL_SHADER_RESOURCE. + + + Array of vertices including a stride. The alignment on the address and stride must be a multiple of the component size, so 4 bytes for formats with 32bit components and 2 bytes for formats with 16bit components. Unlike graphics, there is no constraint on the stride, other than that the bottom 32bits of the value are all that are used – the field is UINT64 purely to make neighboring fields align cleanly/obviously everywhere. Each vertex position is expected to be at the start address of the stride range and any excess space is ignored by acceleration structure builds. This excess space might contain other app data such as vertex attributes, which the app is responsible for manually fetching in shaders, whether it is interleaved in vertex buffers or elsewhere. + +The memory pointed to must be in state D3D12_RESOURCE_STATE_NON_PIXEL_SHADER_RESOURCE. Note that if an app wants to share vertex buffer inputs between graphics input assembler and raytracing acceleration structure build input, it can always put a resource into a combination of read states simultaneously, e.g. D3D12_RESOURCE_STATE_VERTEX_AND_CONSTANT_BUFFER | D3D12_RESOURCE_STATE_NON_PIXEL_SHADER_RESOURCE + + + + Describes a vertex buffer view. + Microsoft Docs: + + + + Specifies a D3D12_GPU_VIRTUAL_ADDRESS that identifies the address of the buffer. + + + Specifies the size in bytes of the buffer. + + + Specifies the size in bytes of each vertex entry. + + + + Add storage filters to the top of the retrieval-filter stack. + Microsoft Docs: + Array of retrieval filters. + + + + + Provides video decoding and processing capabilities of a Microsoft Direct3D 12 device including the ability to query video capabilities and instantiating video decoders and processors. + Microsoft Docs: + + + + + Describes subresource data. + Microsoft Docs: + + + + A pointer to a memory block that contains the subresource data. + + + The row pitch, or width, or physical size, in bytes, of the subresource data. + + + The depth pitch, or width, or physical size, in bytes, of the subresource data. + + + + Provides information about the stream rate. + Microsoft Docs: + + + + The zero-based index number of the output frame. The OutputIndex member is a zero-based cyclic number that indicates the frame index number of the output. The driver uses this output-index information to perform the video processing in a certain pattern or cycle, especially when the driver performs deinterlacing or frame-rate conversion. For example, with the following output-index pattern, the driver performs the indicated video processing: + +- Progressive format at normal and half rate: + - OutputInde = 0, 0,... +- Progressive format at 2/1 custom rate (double frame-rate conversion, OutputFrames=2): + - OutputInde = 0, 1, 0, 1,... +- Interlaced format at normal rate: + - OutputInde = 0, 1, 0, 1,... (0: first field, 1: second field) +- Interlaced format at half rate: + - OutputInde = 0, 0,... (for example, first and second fields are blended to one frame) +- Interlaced at 4/5 custom rate (3:2 inverse telecine, OutputFrames=4): + - OutputInde = 0, 1, 2, 3, 0, 1, 2, 3,... (0:A, 1:B, 2:C, 3:D film frame) + + + The zero-based index number of the input frame or field. The InputFrameOrField member is a zero-based number that indicates the frame or the field number of the input surface. For example, with the following input-frame-or-field number, the driver can perform the indicated video processing: + +- Progressive format and interlaced format at normal rate: + - InputFrameOrField = 0, 1, 2,... +- Progressive format and interlaced format at half rate: + - InputFrameOrField = 0, 2, 4,... +- Interlaced format at 4/5 custom rate (3:2 inverse telecine, OutputFrames=4 and InputFrameOrField=10): + - InputFrameOrField = 0, 0, 0, 0, 10, 10, 10, 10, 20, 20, 20, 20,... +- Interlaced format at 4/15 custom rate (8:7 inverse telecine, OutputFrames=2 and InputFrameOrField=15): + - InputFrameOrField = 0, 0, 15, 15, 30, 30,... + + + + Clears the depth-stencil resource. + Microsoft Docs: + Describes the CPU descriptor handle that represents the start of the heap for the depth stencil to be cleared. + A combination of D3D12_CLEAR_FLAGS values that are combined by using a bitwise OR operation. The resulting value identifies the type of data to clear (depth buffer, stencil buffer, or both). + A value to clear the depth buffer with. This value will be clamped between 0 and 1. + A value to clear the stencil buffer with. + The number of rectangles in the array that the pRects parameter specifies. + An array of D3D12_RECT structures for the rectangles in the resource view to clear. If NULL, ClearDepthStencilView clears the entire resource view. + + + + + Specifies what type of texture copy is to take place. + Microsoft Docs: + + + + Indicates a subresource, identified by an index, is to be copied. + + + Indicates a place footprint, identified by a D3D12_PLACED_SUBRESOURCE_FOOTPRINT structure, is to be copied. + + + + Specifies the type of a command list. + Microsoft Docs: + + + + Specifies a command buffer that the GPU can execute. A direct command list doesn't inherit any GPU state. + + + Specifies a command buffer that can be executed only directly via a direct command list. A bundle command list inherits all GPU state (except for the currently set pipeline state object and primitive topology). + + + Specifies a command buffer for computing. + + + Specifies a command buffer for copying. + + + Specifies a command buffer for video decoding. + + + Specifies a command buffer for video processing. + + + + Describes the subresource from a cube texture to use in a shader-resource view. + Microsoft Docs: + + + + Index of the most detailed mipmap level to use; this number is between 0 and MipLevels (from the original TextureCube for which ID3D12Device::CreateShaderResourceView creates a view) -1. + + + The maximum number of mipmap levels for the view of the texture. See the remarks in D3D12_TEX1D_SRV. + +Set to -1 to indicate all the mipmap levels from MostDetailedMip on down to least detailed. + + + A value to clamp sample LOD values to. For example, if you specify 2.0f for the clamp value, you ensure that no individual sample accesses a mip level less than 2.0f. + + + + Specifies the parameters for the output stream for a video decode operation. + Microsoft Docs: + + + + An ID3D12Resource representing the output texture. If decode conversion is enabled, this texture will contain the post-conversion output. If decode conversion is not enabled, this texture will contain the decode output. + + + The index of the output subresource of pOutputTexture2D to use. This allows you to specify array indices if the output is an array. + + + An optional D3D12_VIDEO_DECODE_CONVERSION_ARGUMENTS structure containing output conversion parameters. + + + + Defines the range of supported values for an image filter. + Microsoft Docs: + + + + The minimum value of the filter. + + + The maximum value of the filter. + + + The default value of the filter. + + + A multiplier. Use the following formula to translate the filter setting into the actual filter value: + +Actual Value = Set Value × Multiplier. + + + + Flags for indicating a subset of components used with video decode histogram. + Microsoft Docs: + + + + No associated component. + + + If the format is a YUV format, indicates the Y component. + + + If the format is a YUV format, indicates the U component. + + + If the format is a YUV format, indicates the V component. + + + If the format is an RGB/BGR format, indicates the R component. + + + If the format is an RGB/BGR format, indicates the G component. + + + If the format is an RGB/BGR format, indicates the B component. + + + If the format is an RGB/BGR format, indicates the A component. + + + + Describes a parameter to a meta command. + Microsoft Docs: + + + + The parameter name. + + + A D3D12_META_COMMAND_PARAMETER_TYPE specifying the parameter type. + + + A D3D12_META_COMMAND_PARAMETER_FLAGS specifying the parameter flags. + + + A D3D12_RESOURCE_STATES specifying the expected state of a resource parameter. + + + The 4-byte aligned offset for this parameter, within the structure containing the parameter values, which you pass when creating/initializing/executing the meta command, as appropriate. + + + + This method configures the level of GPU-based validation that the debug device is to perform at runtime. + Microsoft Docs: + Specifies the level of GPU-based validation to perform at runtime. + + + + + Gets an interface by index. + Microsoft Docs: + Zero-based index. + + + + + Specifies the type of serialized data. Use a value from this enumeration when calling ID3D12Device5::CheckDriverMatchingIdentifier. + Microsoft Docs: + + + + The serialized data is a raytracing acceleration structure. + + + + Specifes the status of a video decode operation. + Microsoft Docs: + + + + The operation succeeded. + + + There was a minor problem in the data format, but the host decoder should continue processing. + + + There was a significant problem in the data format. The host decoder should continue processing, but should skip display. + + + There was a severe problem in the data format. The host decoder should restart the entire decoding process, starting at a sequence or random-access entry point. + + + + Describes a unordered-access 3D texture resource. + Microsoft Docs: + + + + The mipmap slice index. + + + The zero-based index of the first depth slice to be accessed. + + + The number of depth slices. + + + + Describes a library. + Microsoft Docs: + + + + The name of the originator of the library. + + + A combination of D3DCOMPILE Constants that are combined by using a bitwise OR operation. The resulting value specifies how the compiler compiles. + + + The number of functions exported from the library. + + + + Specifies the amount of information to report on a device object's lifetime. + Microsoft Docs: + A value from the D3D12_RLDO_FLAGS enumeration. This method uses the value in Flags to determine the amount of information to report about a device object's lifetime. + + + + + Debug message severity levels for an information queue. + Microsoft Docs: + + + + Indicates a corruption error. + + + Indicates an error. + + + Indicates a warning. + + + Indicates an information message. + + + Indicates a message other than corruption, error, warning or information. + + + + Encapsulates a list of graphics commands for rendering, extending the interface to support writing immediate values directly to a buffer. + Microsoft Docs: + + + + + Describes the GPU memory layout of an acceleration structure visualization. + Microsoft Docs: + + + + The type of acceleration structure. + + + The number of descriptions. + + + + Gets the descriptor heap description. + Microsoft Docs: + + + + + Defines constants that specify a shading rate tier (for variable-rate shading, or VRS). + Microsoft Docs: + + + + Specifies that variable-rate shading is not supported. + + + Specifies that variable-rate shading tier 1 is supported. + + + Specifies that variable-rate shading tier 2 is supported. + + + + Indicates whether two ID3D12ShaderReflectionType Interface pointers have the same underlying type. + Microsoft Docs: + A pointer to a ID3D12ShaderReflectionType Interface. + + + + + Creates a view for unordered accessing. + Microsoft Docs: + A pointer to the ID3D12Resource object that represents the unordered access. + +At least one of pResource or pDesc must be provided. + +A null pResource is used to initialize a null descriptor, which guarantees Direct3D 11-like null binding behavior (reading 0s, writes are discarded), but must have a valid pDesc in order to determine the descriptor type. + The ID3D12Resource for the counter (if any) associated with the UAV. + +If pCounterResource is not specified, then the CounterOffsetInBytes member of the D3D12_BUFFER_UAV structure must be 0. + +If pCounterResource is specified, then there is a counter associated with the UAV, and the runtime performs validation of the following requirements: + +
    +
  • The StructureByteStride member of the D3D12_BUFFER_UAV structure must be greater than 0. +
  • +
  • The format must be DXGI_FORMAT_UNKNOWN. +
  • +
  • The D3D12_BUFFER_UAV_FLAG_RAW flag (a D3D12_BUFFER_UAV_FLAGS enumeration constant) must not be set. +
  • +
  • Both of the resources (pResource and pCounterResource) must be buffers. +
  • +
  • The CounterOffsetInBytes member of the D3D12_BUFFER_UAV structure must be a multiple of D3D12_UAV_COUNTER_PLACEMENT_ALIGNMENT (4096), and must be within the range of the counter resource. +
  • +
  • pResource cannot be NULL +
  • +
  • pDesc cannot be NULL. +
  • +
+ A pointer to a D3D12_UNORDERED_ACCESS_VIEW_DESC structure that describes the unordered-access view. + +A null pDesc is used to initialize a default descriptor, if possible. This behavior is identical to the D3D11 null descriptor behavior, where defaults are filled in. This behavior inherits the resource format and dimension (if not typeless) and for buffers UAVs target a full buffer and are typed, and for textures UAVs target the first mip and all array slices. Not all resources support null descriptor initialization. + Describes the CPU descriptor handle that represents the start of the heap that holds the unordered-access view. +
+
+ + + Specifies which unordered resource options are supported for a provided format. + Microsoft Docs: + + + + No unordered resource options are supported. + + + Format supports atomic add. + + + Format supports atomic bitwise operations. + + + Format supports atomic compare with store or exchange. + + + Format supports atomic exchange. + + + Format supports atomic min and max. + + + Format supports atomic unsigned min and max. + + + Format supports a typed load. + + + Format supports a typed store. + + + Format supports logic operations in blend state. + + + Format supports tiled resources. Refer to Volume Tiled Resources. + + + Format supports multi-plane overlays. + + + + Creates a render-target view for accessing resource data. + Microsoft Docs: + A pointer to the ID3D12Resource object that represents the render target. + + +At least one of pResource or pDesc must be provided. +A null pResource is used to initialize a null descriptor, which guarantees D3D11-like null binding behavior (reading 0s, writes are discarded), but must have a valid pDesc in order to determine the descriptor type. + A pointer to a D3D12_RENDER_TARGET_VIEW_DESC structure that describes the render-target view. + +A null pDesc is used to initialize a default descriptor, if possible. This behavior is identical to the D3D11 null descriptor behavior, where defaults are filled in. This behavior inherits the resource format and dimension (if not typeless) and RTVs target the first mip and all array slices. Not all resources support null descriptor initialization. + Describes the CPU descriptor handle that represents the destination where the newly-created render target view will reside. + + + + + Sets the layout of the graphics root signature. + Microsoft Docs: + A pointer to the ID3D12RootSignature object. + + + + + Describes the purpose of a query heap. A query heap contains an array of individual queries. + Microsoft Docs: + + + + Specifies one member of D3D12_QUERY_HEAP_TYPE. + + + Specifies the number of queries the heap should contain. + + + For single GPU operation, set this to zero. If there are multiple GPU nodes, set a bit to identify the node (the device's physical adapter) to which the query heap applies. + Each bit in the mask corresponds to a single node. + Only 1 bit must be set. + Refer to Multi-adapter systems. + + + + Serializes a root signature version 1.0 that can be passed to ID3D12Device::CreateRootSignature. + Microsoft Docs: + The description of the root signature, as a pointer to a D3D12_ROOT_SIGNATURE_DESC structure. + A D3D_ROOT_SIGNATURE_VERSION-typed value that specifies the version of root signature. + A pointer to a memory block that receives a pointer to the ID3DBlob interface that you can use to access the serialized root signature. + A pointer to a memory block that receives a pointer to the ID3DBlob interface that you can use to access serializer error messages, or NULL if there are no errors. + + + + + Describes the dimensions of a mip region. + Microsoft Docs: + + + + The width of the mip region. + + + The height of the mip region. + + + The depth of the mip region. + + + + Performs a raytracing acceleration structure build on the GPU and optionally outputs post-build information immediately after the build. + Microsoft Docs: + Description of the acceleration structure to build. + Size of the pPostbuildInfoDescs array. Set to 0 if no post-build info is needed. + Optional array of descriptions for post-build info to generate describing properties of the acceleration structure that was built. + + + + + Gets a constant buffer by index. + Microsoft Docs: + Zero-based index. + + + + + Describes a DXIL library state subobject that can be included in a state object. + Microsoft Docs: + + + + The library to include in the state object. Must have been compiled with library target 6.3 or higher. It is fine to specify the same library multiple times either in the same state object / collection or across multiple, as long as the names exported each time don’t conflict in a given state object. + + + The size of pExports array. If 0, everything gets exported from the library. + + + + Describes flags and protection type for a protected resource session, per adapter. + Microsoft Docs: + + + + The node mask. For single GPU operation, set this to zero. If there are multiple GPU nodes, then set a bit to identify the node (the device's physical adapter) to which the protected session applies. Each bit in the mask corresponds to a single node. Only 1 bit may be set. + + + Specifies the supported crypto sessions options. + + + The GUID that represents the protection type. Microsoft defines D3D12_PROTECTED_RESOURCES_SESSION_HARDWARE_PROTECTED. + +Using the D3D12_PROTECTED_RESOURCES_SESSION_HARDWARE_PROTECTED GUID is equivalent to calling [ID3D12Device4::CreateProtectedResourceSession](./nf-d3d12-id3d12device4-createprotectedresourcesession.md). + + + + Sets the reference value for depth stencil tests. + Microsoft Docs: + Reference value to perform against when doing a depth-stencil test. + + + + + Specifies the argument type of a D3D12_VIDEO_DECODE_FRAME_ARGUMENT + Microsoft Docs: + + + + The argument is a picture decoding parameter buffer. + + + The argument is an inverse quantization matrix buffer. + + + The argument is a slice control buffer. + + + TBD + + + + Gets a variable by name. + Microsoft Docs: + A pointer to a string containing the variable name. + + + + + Receives output data from calls to ID3D12VideoEncodeCommandList::ResolveMotionVectorHeap. + Microsoft Docs: + + + + An ID3D12Resource representing the output resource for resolved motion vectors. Motion vectors are resolved to DXGI_FORMAT_R16G16_SINT 2D textures. The resolved data is a signed 16-byte integer with quarter PEL units with the X vector component stored in the R component and the Y vector component stored in the G component. Motion vectors are stored in a 2D layout that corresponds to the pixel layout of the original input textures. + + + A D3D12_RESOURCE_COORDINATE structure specifying the output origin of the motion vectors. The remaining sub-region must be large enough to store all motion vectors per block specified by the input pixel with and pixel height and the specified D3D12_VIDEO_MOTION_ESTIMATOR_SEARCH_BLOCK_SIZE. + + + + Fills the library descriptor structure for the library reflection. + Microsoft Docs: + A pointer to a D3D12_LIBRARY_DESC structure that receives a description of the library reflection. + + + + + Describes the elements in a buffer resource to use in a render-target view. + Microsoft Docs: + + + + Number of bytes between the beginning of the buffer and the first element to access. + + + The total number of elements in the view. + + + + Specifies the type of magnification or minification sampler filters. + Microsoft Docs: + + + + Point filtering is used as a texture magnification or minification filter. The texel with coordinates nearest to the desired pixel value is used. The texture filter to be used between mipmap levels is nearest-point mipmap filtering. The rasterizer uses the color from the texel of the nearest mipmap texture. + + + Bilinear interpolation filtering is used as a texture magnification or minification filter. A weighted average of a 2 x 2 area of texels surrounding the desired pixel is used. The texture filter to use between mipmap levels is trilinear mipmap interpolation. The rasterizer linearly interpolates pixel color, using the texels of the two nearest mipmap textures. + + + + Specifies the subresource from a 1D texture to use in a shader-resource view. + Microsoft Docs: + + + + Index of the most detailed mipmap level to use; this number is between 0 and MipLevels (from the original Texture1D for which ID3D12Device::CreateShaderResourceView creates a view) -1. + + + The maximum number of mipmap levels for the view of the texture. See the remarks. + +Set to -1 to indicate all the mipmap levels from MostDetailedMip on down to least detailed. + + + A value to clamp sample LOD values to. For example, if you specify 2.0f for the clamp value, you ensure that no individual sample accesses a mip level less than 2.0f. + + + + Specifies heap options, such as whether the heap can contain textures, and whether resources are shared across adapters. + Microsoft Docs: + + + + No options are specified. + + + The heap is shared. Refer to Shared Heaps. + + + The heap isn't allowed to contain buffers. + + + The heap is allowed to contain swap-chain surfaces. + + + The heap is allowed to share resources across adapters. Refer to Shared Heaps. + + + The heap is not allowed to store Render Target (RT) and/or Depth-Stencil (DS) textures. + + + The heap is not allowed to contain resources with D3D12_RESOURCE_DIMENSION_TEXTURE1D, D3D12_RESOURCE_DIMENSION_TEXTURE2D, or D3D12_RESOURCE_DIMENSION_TEXTURE3D unless either D3D12_RESOURCE_FLAG_ALLOW_RENDER_TARGET or D3D12_RESOURCE_FLAG_ALLOW_DEPTH_STENCIL are present. Refer to D3D12_RESOURCE_DIMENSION and D3D12_RESOURCE_FLAGS. + + + Unsupported. Do not use. + + + The heap supports MEM_WRITE_WATCH functionality, which causes the system to track the pages that are written to in the commited memory region. This flag can't be combined with the D3D12_HEAP_TYPE_DEFAULT or D3D12_CPU_PAGE_PROPERTY_UNKNOWN flags. Applications are discouraged from using this flag themselves because it prevents tools from using this functionality. + + + Ensures that atomic operations will be atomic on this heap's memory, according to components able to see the memory. + +Creating a heap with this flag will fail under either of these conditions. +- The heap type is D3D12_HEAP_TYPE_DEFAULT, and the heap can be visible on multiple nodes, but the device does not support [D3D12_CROSS_NODE_SHARING_TIER_3](./ne-d3d12-d3d12_cross_node_sharing_tier.md). +- The heap is CPU-visible, but the heap type is not D3D12_HEAP_TYPE_CUSTOM. + +Note that heaps with this flag might be a limited resource on some systems. + + + The heap is created in a non-resident state and must be made resident using [ID3D12Device::MakeResident](./nf-d3d12-id3d12device-makeresident.md) or [ID3D12Device3::EnqueueMakeResident](./nf-d3d12-id3d12device3-enqueuemakeresident.md). + +By default, the final step of heap creation is to make the heap resident, so this flag skips this step and allows the application to decide when to do so. + + + Allows the OS to not zero the heap created. By default, committed resources and heaps are almost always zeroed upon creation. This flag allows this to be elided in some scenarios. However, it doesn't guarantee it. For example, memory coming from other processes still needs to be zeroed for data protection and process isolation. This can lower the overhead of creating the heap. + + + The heap is allowed to store all types of buffers and/or textures. This is an alias; for more details, see "Aliases" in the Remarks section. + + + The heap is only allowed to store buffers. This is an alias; for more details, see "Aliases" in the Remarks section. + + + The heap is only allowed to store non-RT, non-DS textures. This is an alias; for more details, see "Aliases" in the Remarks section. + + + The heap is only allowed to store RT and/or DS textures. This is an alias; for more details, see "Aliases" in the Remarks section. + + + + Gets the number of interfaces. + Microsoft Docs: + + + + + Defines constants that specify a shading rate combiner (for variable-rate shading, or VRS). + Microsoft Docs: + + + + Specifies the combiner C.xy = A.xy, for combiner (C) and inputs (A and B). + + + Specifies the combiner C.xy = B.xy, for combiner (C) and inputs (A and B). + + + Specifies the combiner C.xy = max(A.xy, B.xy), for combiner (C) and inputs (A and B). + + + Specifies the combiner C.xy = min(A.xy, B.xy), for combiner (C) and inputs (A and B). + + + Specifies the combiner C.xy = min(maxRate, A.xy + B.xy)`, for combiner (C) and inputs (A and B). + + + + Push a storage filter onto the storage-filter stack. + Microsoft Docs: + Pointer to a storage filter. + + + + + Adds GPU-Based Validation and Dependent Command Queue Synchronization to the debug layer. + Microsoft Docs: + + + + + Marks the ending of a render pass. + Microsoft Docs: + + + + + Sets a CPU descriptor handle for the unordered-access-view resource in the compute root signature. + Microsoft Docs: + The slot number for binding. + The GPU virtual address of the buffer. + D3D12_GPU_VIRTUAL_ADDRESS is a typedef'd alias of UINT64. + + + + + Specifies triangles facing a particular direction are not drawn. + Microsoft Docs: + + + + Always draw all triangles. + + + Do not draw triangles that are front-facing. + + + Do not draw triangles that are back-facing. + + + + Used with the EnqueuMakeResident function to choose how residency operations proceed when the memory budget is exceeded. + Microsoft Docs: + + + + Specifies the default residency policy, which allows residency operations to succeed regardless of the application's current memory budget. EnqueueMakeResident returns E_OUTOFMEMORY only when there is no memory available. + + + Specifies that the EnqueueMakeResident function should return E_OUTOFMEMORY when the residency operation would exceed the application's current memory budget. + + + + Retrieves the requested PSO from the library. The input desc is matched against the data in the current library database, and remembered in order to prevent duplication of PSO contents. + Microsoft Docs: + The unique name of the PSO. + Specifies a description of the required PSO in a D3D12_COMPUTE_PIPELINE_STATE_DESC structure. This input description is matched against the data in the current library database, and stored in order to prevent duplication of PSO contents. + Specifies a REFIID for the ID3D12PipelineState object. Typically set this, and the following parameter, with the macro IID_PPV_ARGS(&PSO1), where PSO1 is the name of the object. + Specifies a pointer that will reference the returned PSO. + + + + + When using triangle strip primitive topology, vertex positions are interpreted as vertices of a continuous triangle “strip”. + Microsoft Docs: + + + + Indicates that there is no cut value. + + + Indicates that 0xFFFF should be used as the cut value. + + + Indicates that 0xFFFFFFFF should be used as the cut value. + + + + Retrieves the sizes, in units of threads, of the X, Y, and Z dimensions of the shader's thread-group grid. + Microsoft Docs: + A pointer to the size, in threads, of the x-dimension of the thread-group grid. The maximum size is 1024. + A pointer to the size, in threads, of the y-dimension of the thread-group grid. The maximum size is 1024. + A pointer to the size, in threads, of the z-dimension of the thread-group grid. The maximum size is 64. + + + + + Uses the CPU to copy data into a subresource, enabling the CPU to modify the contents of most textures with undefined layouts. + Microsoft Docs: + Specifies the index of the subresource. + A pointer to a box that defines the portion of the destination subresource to copy the resource data into. + If NULL, the data is written to the destination subresource with no offset. + The dimensions of the source must fit the destination (see + D3D12_BOX). + + +An empty box results in a no-op. + A box is empty if the top value is greater than or equal to the bottom value, or the left value is greater than or equal to the right value, + or the front value is greater than or equal to the back value. + When the box is empty, this method doesn't perform any operation. + A pointer to the source data in memory. + The distance from one row of source data to the next row. + The distance from one depth slice of source data to the next. + + + + + This method samples the CPU and GPU timestamp counters at the same moment in time. + Microsoft Docs: + The value of the GPU timestamp counter. + The value of the CPU timestamp counter. + + + + + Defines constants that specify the lifetime state of a lifetime-tracked object. + Microsoft Docs: + + + + Specifies that the lifetime-tracked object is in use. + + + Specifies that the lifetime-tracked object is not in use. + + + + Specifies the viewport/stencil and render target associated with a view instance. + Microsoft Docs: + + + + The index of the viewport in the viewports array to be used by the view instance associated with this location. + + + The index of the render target in the render targets array to be used by the view instance associated with this location. + + + + Describes a stream output buffer. + Microsoft Docs: + + + + A D3D12_GPU_VIRTUAL_ADDRESS (a UINT64) that points to the stream output buffer. + If SizeInBytes is 0, this member isn't used and can be any value. + + + The size of the stream output buffer in bytes. + + + The location of the value of how much data has been filled into the buffer, as a D3D12_GPU_VIRTUAL_ADDRESS (a UINT64). + This member can't be NULL; a filled size location must be supplied (which the hardware will increment as data is output). + If SizeInBytes is 0, this member isn't used and can be any value. + + + + Creates a depth-stencil view for accessing resource data. + Microsoft Docs: + A pointer to the ID3D12Resource object that represents the depth stencil. + + +At least one of pResource or pDesc must be provided. +A null pResource is used to initialize a null descriptor, which guarantees D3D11-like null binding behavior (reading 0s, writes are discarded), but must have a valid pDesc in order to determine the descriptor type. + A pointer to a D3D12_DEPTH_STENCIL_VIEW_DESC structure that describes the depth-stencil view. + + +A null pDesc is used to initialize a default descriptor, if possible. This behavior is identical to the D3D11 null descriptor behavior, where defaults are filled in. This behavior inherits the resource format and dimension (if not typeless) and DSVs target the first mip and all array slices. Not all resources support null descriptor initialization. + Describes the CPU descriptor handle that represents the start of the heap that holds the depth-stencil view. + + + + + Describes the subresource from a 2D texture that is accessible to a depth-stencil view. + Microsoft Docs: + + + + The index of the first mipmap level to use. + + + + Represents Device Removed Extended Data (DRED) version 1.1 data. + Microsoft Docs: + + + + An HRESULT containing the reason the device was removed (matches the return value of GetDeviceRemovedReason). Also see [COM Error Codes (UI, Audio, DirectX, Codec)](/windows/desktop/com/com-error-codes-10). + + + A D3D12_DRED_AUTO_BREADCRUMBS_OUTPUT value that contains the auto-breadcrumb state prior to device removal. + + + An output parameter of type pointer to D3D12_AUTO_BREADCRUMB_NODE representing the returned auto-breadcrumb object(s). This is a pointer to the head of a linked list of auto-breadcrumb node objects. All of the nodes in the linked list represent potentially incomplete command list execution on the GPU at the time of the device-removal event. + + + A D3D12_DRED_PAGE_FAULT_OUTPUT value that contains page fault data if device removal was the result of a GPU page fault. + + + + Gets the CPU descriptor handle that represents the start of the heap. + Microsoft Docs: + + + + + Set a message category to break on when a message with that category passes through the storage filter. + Microsoft Docs: + Message category to break on. + Turns this breaking condition on or off (true for on, false for off). + + + + + Describes constants inline in the root signature that appear in shaders as one constant buffer. + Microsoft Docs: + + + + The shader register. + + + The register space. + + + The number of constants that occupy a single shader slot (these constants appear like a single constant buffer). + All constants occupy a single root signature bind slot. + + + + Describes the space requirement for decoding an acceleration structure into a form that can be visualized by tools. + Microsoft Docs: + + + + The space requirement for decoding an acceleration structure into a form that can be visualized by tools. + + + + Sets a CPU descriptor handle for the shader resource in the compute root signature. + Microsoft Docs: + The slot number for binding. + The GPU virtual address of the buffer. + D3D12_GPU_VIRTUAL_ADDRESS is a typedef'd alias of UINT64. + + + + + Set a bit field of flags that will turn debug features on and off. + Microsoft Docs: + Feature-mask flags, as a bitwise-OR'd combination of D3D12_DEBUG_FEATURE enumeration constants. + If a flag is present, that feature will be set to on; otherwise, the feature will be set to off. + + + + + Gets a description of how a resource is bound to a function. + Microsoft Docs: + The constant-buffer name of the resource. + A pointer to a D3D12_SHADER_INPUT_BIND_DESC structure that describes input binding of the resource. + + + + + Describes the descriptor heap. + Microsoft Docs: + + + + A D3D12_DESCRIPTOR_HEAP_TYPE-typed value that specifies the types of descriptors in the heap. + + + The number of descriptors in the heap. + + + A combination of D3D12_DESCRIPTOR_HEAP_FLAGS-typed values that are combined by using a bitwise OR operation. The resulting value specifies options for the heap. + + + For single-adapter operation, set this to zero. + If there are multiple adapter nodes, set a bit to identify the node (one of the device's physical adapters) to which the descriptor heap applies. + Each bit in the mask corresponds to a single node. + Only one bit must be set. + See Multi-adapter systems. + + + + Create a sampler object that encapsulates sampling information for a texture. + Microsoft Docs: + A pointer to a D3D12_SAMPLER_DESC structure that describes the sampler. + Describes the CPU descriptor handle that represents the start of the heap that holds the sampler. + + + + + Describes the multi-sampling image quality levels for a given format and sample count. + Microsoft Docs: + + + + A DXGI_FORMAT-typed value for the format to return info about. + + + The number of multi-samples per pixel to return info about. + + + Flags to control quality levels, as a bitwise-OR'd combination of D3D12_MULTISAMPLE_QUALITY_LEVEL_FLAGS enumeration constants. + The resulting value specifies options for determining quality levels. + + + The number of quality levels. + + + + Gets the amount of stack memory required to invoke a raytracing shader in HLSL. + Microsoft Docs: + The shader entrypoint in the state object for which to retrieve stack size. For hit groups, an individual shader within the hit group must be specified using the syntax: + +hitGroupName::shaderType + +Where hitGroupName is the entrypoint name for the hit group and shaderType is one of: + +
    +
  • intersection
  • +
  • anyhit
  • +
  • closesthit
  • +
+These values are all case-sensitive. + +An example value is: "myTreeLeafHitGroup::anyhit". +
+
+ + + Describes details for the discard-resource operation. + Microsoft Docs: + + + + The number of rectangles in the array that the pRects member specifies. + + + An array of D3D12_RECT structures for the rectangles in the resource to discard. + If NULL, DiscardResource discards the entire resource. + + + Index of the first subresource in the resource to discard. + + + The number of subresources in the resource to discard. + + + + Wraps an array of render target formats. + Microsoft Docs: + + + + Specifies a fixed-size array of DXGI_FORMAT values that define the format of up to 8 render targets. + + + Specifies the number of render target formats stored in the array. + + + + Describes a descriptor range. + Microsoft Docs: + + + + A D3D12_DESCRIPTOR_RANGE_TYPE-typed value that specifies the type of descriptor range. + + + The number of descriptors in the range. Use -1 or UINT_MAX to specify an unbounded size. If a given descriptor range is unbounded, then it must either be the last range in the table definition, or else the following range in the table definition must have a value for OffsetInDescriptorsFromTableStart that is not [D3D12_DESCRIPTOR_RANGE_OFFSET_APPEND](). + + + The base shader register in the range. For example, for shader-resource views (SRVs), 3 maps to ": register(t3);" in HLSL. + + + The register space. Can typically be 0, but allows multiple descriptor arrays of unknown size to not appear to overlap. + For example, for SRVs, by extending the example in the BaseShaderRegister member description, 5 maps to ": register(t3,space5);" in HLSL. + + + The offset in descriptors, from the start of the descriptor table which was set as the root argument value for this parameter slot. This value can be D3D12_DESCRIPTOR_RANGE_OFFSET_APPEND, which indicates this range should immediately follow the preceding range. + + + + Specifies comparison options. + Microsoft Docs: + + + + Never pass the comparison. + + + If the source data is less than the destination data, the comparison passes. + + + If the source data is equal to the destination data, the comparison passes. + + + If the source data is less than or equal to the destination data, the comparison passes. + + + If the source data is greater than the destination data, the comparison passes. + + + If the source data is not equal to the destination data, the comparison passes. + + + If the source data is greater than or equal to the destination data, the comparison passes. + + + Always pass the comparison. + + + + Describes a tiled subresource volume. + Microsoft Docs: + + + + The width in tiles of the subresource. + + + The height in tiles of the subresource. + + + The depth in tiles of the subresource. + + + The index of the tile in the overall tiled subresource to start with. + + + + Sets the blend factor that modulate values for a pixel shader, render target, or both. + Microsoft Docs: + Array of blend factors, one for each RGBA component. + + + + + Gets the geometry-shader input-primitive description. + Microsoft Docs: + + + + + Specifies the memory pool for the heap. + Microsoft Docs: + + + + The memory pool is unknown. + + + The memory pool is L0. + L0 is the physical system memory pool. + When the adapter is discrete/NUMA, this pool has greater bandwidth for the CPU and less bandwidth for the GPU. + When the adapter is UMA, this pool is the only one which is valid. + + + The memory pool is L1. + L1 is typically known as the physical video memory pool. + L1 is only available when the adapter is discrete/NUMA, and has greater bandwidth for the GPU and cannot even be accessed by the CPU. + When the adapter is UMA, this pool is not available. + + + + Retrieves the list of supported profiles. + Microsoft Docs: + + + + For single GPU operation, set this to zero. If there are multiple GPU nodes, set a bit to identify the node (the device's physical adapter) to which the command queue applies. Each bit in the mask corresponds to a single node. Only 1 bit may be set. + + + The number of profiles to retrieve. This number must match the value returned from a call [ID3D12VideoDevice::CheckFeatureSupport](nf-d3d12video-id3d12videodevice-checkfeaturesupport.md) when the feature specified is D3D12\_FEATURE\_VIDEO\_DECODE\_PROFILE\_COUNT. + + + A list of GUIDs representing the supported profiles. The calling application must allocate storage for the profile list before calling CheckFeatureSupport. + + + + Specifies the input parameters for calls to ID3D12VideoEncodeCommandList::EstimateMotion. + Microsoft Docs: + + + + An ID3D12Resource representing the current frame. The motion estimation operation applies to the entire frame. + + + The base plane of the MIP and array slice to use for the input. + + + An ID3D12Resource representing the reference frame, or past frame, used for motion estimation. + + + The base plane of the MIP and array slice to use for the reference. + + + An ID3D12VideoMotionVectorHeap representing the buffer containing the hardware-dependent output of the previous motion estimator operation which may be used for hinting the current operation. This parameter may be NULL, indicating that previous motion estimator output should not be considered for the current operation. + + + + Returns the amount of memory required to serialize the current contents of the database. + Microsoft Docs: + + + + + Describes the subresource from a 1D texture that is accessible to a depth-stencil view. + Microsoft Docs: + + + + The index of the first mipmap level to use. + + + + Defines constants that specify the flags for a parameter to a meta command. Values can be bitwise OR'd together. + Microsoft Docs: + + + + Specifies that the parameter is an input resource. + + + Specifies that the parameter is an output resource. + + + No flags specified. + + + + Specifies the volatility of both descriptors and the data they reference in a Root Signature 1.1 description, which can enable some driver optimizations. + Microsoft Docs: + + + + Default behavior. Descriptors are static, and default assumptions are made for data (for SRV/CBV: DATA_STATIC_WHILE_SET_AT_EXECUTE, and for UAV: DATA_VOLATILE). + + + If this is the only flag set, then descriptors are volatile and default assumptions are made about data (for SRV/CBV: DATA_STATIC_WHILE_SET_AT_EXECUTE, and for UAV: DATA_VOLATILE). + +If this flag is combined with DATA_VOLATILE, then both descriptors and data are volaille, which is equivalent to Root Signature Version 1.0. + +If this flag is combined with DATA_STATIC_WHILE_SET_AT_EXECUTE, then descriptors are volatile. This still doesn’t allow them to change during command list execution so it is valid to combine the additional declaration that data is static while set via root descriptor table during execution – the underlying descriptors are effectively static for longer than the data is being promised to be static. + + + Descriptors are static and the data is volatile. + + + Descriptors are static and data is static while set at execute. + + + Both descriptors and data are static. This maximizes the potential for driver optimization. + + + Provides the same benefits as static descriptors (see D3D12_DESCRIPTOR_RANGE_FLAG_NONE), except that the driver is not allowed to promote buffers to root descriptors as an optimization, because they must maintain bounds checks and root descriptors do not have those. + + + + Represents versioned Device Removed Extended Data (DRED) data. + Microsoft Docs: + + + + A D3D12_DRED_VERSION value, specifying a DRED version. This value determines which inner data member (of the union) is active. + + + A D3D12_DEVICE_REMOVED_EXTENDED_DATA value, containing DRED version 1.0 data. + + + A D3D12_DEVICE_REMOVED_EXTENDED_DATA1 value, containing DRED version 1.1 data. + + + + Remove a storage filter from the top of the storage-filter stack. + Microsoft Docs: + + + + + Specifies flags for the build of a raytracing acceleration structure. Use a value from this enumeration with the D3D12_BUILD_RAYTRACING_ACCELERATION_STRUCTURE_INPUTS structure that provides input to the acceleration structure build operation. + Microsoft Docs: + + + + No options specified for the acceleration structure build. + + + Build the acceleration structure such that it supports future updates (via the flag D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BUILD_FLAG_PERFORM_UPDATE) instead of the app having to entirely rebuild the structure. This option may result in increased memory consumption, build times, and lower raytracing performance. Future updates, however, should be faster than building the equivalent acceleration structure from scratch. + +This flag can only be set on an initial acceleration structure build, or on an update where the source acceleration structure specified D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BUILD_FLAG_ALLOW_UPDATE. In other words, after an acceleration structure was been built without D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BUILD_FLAG_ALLOW_UPDATE, no other acceleration structures can be created from it via updates. + + + Enables the option to compact the acceleration structure by calling CopyRaytracingAccelerationStructure using compact mode, specified with D3D12_RAYTRACING_ACCELERATION_STRUCTURE_COPY_MODE_COMPACT. + +This option may result in increased memory consumption and build times. After future compaction, however, the resulting acceleration structure should consume a smaller memory footprint than building the acceleration structure from scratch. + +This flag is compatible with all other flags. If specified as part of an acceleration structure update, the source acceleration structure must have also been built with this flag. In other words, after an acceleration structure was been built without D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BUILD_FLAG_ALLOW_COMPACTION, no other acceleration structures can be created from it via updates that specify D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BUILD_FLAG_ALLOW_COMPACTION. + + + +Specifying ALLOW_COMPACTION may increase pre-compaction acceleration structure size versus not specifying ALLOW_COMPACTION. + + + +If multiple incremental builds are performed before finally compacting, there may be redundant compaction related work performed. + + +The size required for the compacted acceleration structure can be queried before compaction via EmitRaytracingAccelerationStructurePostbuildInfo. See D3D12_RAYTRACING_ACCELERATION_STRUCTURE_POSTBUILD_INFO_COMPACTED_SIZE_DESC for more information on properties of compacted acceleration structure size. + +
Note  WhenD3D12_RAYTRACING_ACCELERATION_STRUCTURE_BUILD_FLAG_ALLOW_UPDATE is specified, there is certain information that needs to be retained in the acceleration structure, and compaction will only help so much. However, if the pipeline knows that the acceleration structure will no longer be updated, it can make the structure more compact. Some apps may benefit from compacting twice - once after the initial build, and again after the acceleration structure has settled to a static state, if that occurs.
+
 
+
+ + Construct a high quality acceleration structure that maximizes raytracing performance at the expense of additional build time. Typically, the implementation will take 2-3 times the build time than the default setting in order to get better tracing performance. + +This flag is recommended for static geometry in particular. It is compatible with all other flags except for D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BUILD_FLAG_PREFER_FAST_BUILD. + + + Construct a lower quality acceleration structure, trading raytracing performance for build speed. Typically, the implementation will take 1/2 to 1/3 the build time than default setting, with a sacrifice in tracing performance. + +This flag is compatible with all other flags except for D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BUILD_FLAG_PREFER_FAST_BUILD. + + + Minimize the amount of scratch memory used during the acceleration structure build as well as the size of the result. This option may result in increased build times and/or raytracing times. This is orthogonal to the D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BUILD_FLAG_ALLOW_COMPACTION flag and the explicit acceleration structure compaction that it enables. Combining the flags can mean both the initial acceleration structure as well as the result of compacting it use less memory. + +The impact of using this flag for a build is reflected in the result of calling GetRaytracingAccelerationStructurePrebuildInfo before doing the build to retrieve memory requirements for the build. + +This flag is compatible with all other flags. + + + Perform an acceleration structure update, as opposed to building from scratch. This is faster than a full build, but can negatively impact raytracing performance, especially if the positions of the underlying objects have changed significantly from the original build of the acceleration structure before updates. + +If the addresses of the source and destination acceleration structures are identical, the update is performed in-place. Any other overlapping of address ranges of the source and destination is invalid. For non-overlapping source and destinations, the source acceleration structure is unmodified. The memory requirement for the output acceleration structure is the same as in the input acceleration structure + +The source acceleration structure must have been built with D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BUILD_FLAG_ALLOW_UPDATE. + +This flag is compatible with all other flags. The other flags selections, aside from D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BUILD_FLAG_ALLOW_UPDATE and D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BUILD_FLAG_PERFORM_UPDATE, must match the flags in the source acceleration structure. + +Acceleration structure updates can be performed in unlimited succession, as long as the source acceleration structure was created with D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BUILD_FLAG_ALLOW_UPDATE and the flags for the update build continue to specify D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BUILD_FLAG_ALLOW_UPDATE. + + + + Copies descriptors from a source to a destination. + Microsoft Docs: + The number of descriptors to copy. + A D3D12_CPU_DESCRIPTOR_HANDLE that describes the destination descriptors to start to copy to. + +The destination and source descriptors must be in heaps of the same D3D12_DESCRIPTOR_HEAP_TYPE. + A D3D12_CPU_DESCRIPTOR_HANDLE that describes the source descriptors to start to copy from. + +> [!IMPORTANT] +> The SrcDescriptorRangeStart parameter must be in a non shader-visible descriptor heap. This is because shader-visible descriptor heaps may be created in WRITE_COMBINE memory or GPU local memory, which is prohibitively slow to read from. If your application manages descriptor heaps via copying the descriptors required for a given pass or frame from local "storage" descriptor heaps to the GPU-bound descriptor heap, then use shader-opaque heaps for the storage heaps and copy into the GPU-visible heap as required. + The D3D12_DESCRIPTOR_HEAP_TYPE-typed value that specifies the type of descriptor heap to copy with. This is required as different descriptor types may have different sizes. + +Both the source and destination descriptor heaps must have the same type, else the debug layer will emit an error. + + + + + Gets the number of interface slots in a shader. + Microsoft Docs: + + + + + This interface maintains context for video motion estimation operations. + Microsoft Docs: + + + + + Copies descriptors from a source to a destination. + Microsoft Docs: + The number of destination descriptor ranges to copy to. + An array of D3D12_CPU_DESCRIPTOR_HANDLE objects to copy to. + +All the destination and source descriptors must be in heaps of the same D3D12_DESCRIPTOR_HEAP_TYPE. + An array of destination descriptor range sizes to copy to. + The number of source descriptor ranges to copy from. + An array of D3D12_CPU_DESCRIPTOR_HANDLE objects to copy from. + +> [!IMPORTANT] +> All elements in the pSrcDescriptorRangeStarts parameter must be in a non shader-visible descriptor heap. This is because shader-visible descriptor heaps may be created in WRITE_COMBINE memory or GPU local memory, which is prohibitively slow to read from. If your application manages descriptor heaps via copying the descriptors required for a given pass or frame from local "storage" descriptor heaps to the GPU-bound descriptor heap, use shader-opaque heaps for the storage heaps and copy into the GPU-visible heap as required. + An array of source descriptor range sizes to copy from. + The D3D12_DESCRIPTOR_HEAP_TYPE-typed value that specifies the type of descriptor heap to copy with. This is required as different descriptor types may have different sizes. + +Both the source and destination descriptor heaps must have the same type, else the debug layer will emit an error. + + + + + An interface from which other core interfaces inherit from, including (but not limited to) ID3D12PipelineLibrary, ID3D12CommandList, ID3D12Pageable, and ID3D12RootSignature. It provides a method to get back to the device object it was created against. + Microsoft Docs: + + + + + Serializes a root signature of any version that can be passed to ID3D12Device::CreateRootSignature. + Microsoft Docs: + Specifies a D3D12_VERSIONED_ROOT_SIGNATURE_DESC that contains a description of any version of a root signature. + A pointer to a memory block that receives a pointer to the ID3DBlob interface that you can use to access the serialized root signature. + A pointer to a memory block that receives a pointer to the ID3DBlob interface that you can use to access serializer error messages, or NULL if there are no errors. + + + + + Represents a heap in which estimated motion vectors are stored. + Microsoft Docs: + + + + + Get the storage filter at the top of the storage-filter stack. + Microsoft Docs: + Storage filter at the top of the storage-filter stack. + Size of the storage filter in bytes. If pFilter is NULL, the size of the storage filter will be output to this parameter. + + + + + Specifies the motion estimation vector precision that a video encoder supports. + Microsoft Docs: + + + + Vector precision is not supported by the encoder. + + + The vector precision is quarter-pixel motion. + + + + Describes subresource data. + Microsoft Docs: + + + + Offset, in bytes, between the start of the parent resource and this subresource. + + + The row pitch, or width, or physical size, in bytes, of the subresource data. + + + The depth pitch, or width, or physical size, in bytes, of the subresource data. + + + + Specifies the type of filter reduction. + Microsoft Docs: + + + + The filter type is standard. + + + The filter type is comparison. + + + The filter type is minimum. + + + The filter type is maximum. + + + + Describes a resource barrier (transition in resource use). + Microsoft Docs: + + + + A D3D12_RESOURCE_BARRIER_TYPE-typed value that specifies the type of resource barrier. + This member determines which type to use in the union below. + + + Specifies a D3D12_RESOURCE_BARRIER_FLAGS enumeration constant such as for "begin only" or "end only". + + + A D3D12_RESOURCE_TRANSITION_BARRIER structure that describes the transition of subresources between different usages. + Members specify the before and after usages of the subresources. + + + A + D3D12_RESOURCE_ALIASING_BARRIERstructure that describes the transition between usages of two different resources that have mappings into the same heap. + + + A + D3D12_RESOURCE_UAV_BARRIERstructure that describes a resource in which all UAV accesses (reads or writes) must complete before any future UAV accesses (read or write) can begin. + + + + Specifies how a video frame is interlaced. + Microsoft Docs: + + + + The frame is progressive. + + + The frame is interlaced. The top field of each frame is displayed first. + + + The frame is interlaced. The bottom field of each frame is displayed first. + + + + Binds an array of scissor rectangles to the rasterizer stage. + Microsoft Docs: + The number of scissor rectangles to bind. + An array of scissor rectangles. + + + + + Checks whether a resource, or subresource, is in a specified state, or not. + Microsoft Docs: + Specifies the ID3D12Resource to check. + The index of the subresource to check. + This can be set to an index, or D3D12_RESOURCE_BARRIER_ALL_SUBRESOURCES. + Specifies the state to check for. This can be one or more D3D12_RESOURCE_STATES flags Or'ed together. + + + + + Describes a set of geometry that is used in the D3D12_BUILD_RAYTRACING_ACCELERATION_STRUCTURE_INPUTS structure to provide input data to a raytracing acceleration structure build operation. + Microsoft Docs: + + + + The type of geometry. + + + The geometry flags + + + A D3D12_RAYTRACING_GEOMETRY_TRIANGLES_DESC describing triangle geometry, if Type is D3D12_RAYTRACING_GEOMETRY_TYPE_TRIANGLES. Otherwise this parameter is unused. + + + A D3D12_RAYTRACING_GEOMETRY_AABBS_DESC describing triangle geometry, if Type is D3D12_RAYTRACING_GEOMETRY_TYPE_PROCEDURAL_PRIMITIVE_AABBS. Otherwise this parameter is unused. + + + + Describes the blend state for a render target. + Microsoft Docs: + + + + Specifies whether to enable (or disable) blending. Set to TRUE to enable blending. + +> [!NOTE] +> It's not valid for LogicOpEnable and BlendEnable to both be TRUE. + + + Specifies whether to enable (or disable) a logical operation. Set to TRUE to enable a logical operation. + +> [!NOTE] +> It's not valid for LogicOpEnable and BlendEnable to both be TRUE. + + + A D3D12_BLEND-typed value that specifies the operation to perform on the RGB value that the pixel shader outputs. The BlendOp member defines how to combine the SrcBlend and DestBlend operations. + + + A D3D12_BLEND-typed value that specifies the operation to perform on the current RGB value in the render target. The BlendOp member defines how to combine the SrcBlend and DestBlend operations. + + + A D3D12_BLEND_OP-typed value that defines how to combine the SrcBlend and DestBlend operations. + + + A D3D12_BLEND-typed value that specifies the operation to perform on the alpha value that the pixel shader outputs. Blend options that end in _COLOR are not allowed. The BlendOpAlpha member defines how to combine the SrcBlendAlpha and DestBlendAlpha operations. + + + A D3D12_BLEND-typed value that specifies the operation to perform on the current alpha value in the render target. Blend options that end in _COLOR are not allowed. The BlendOpAlpha member defines how to combine the SrcBlendAlpha and DestBlendAlpha operations. + + + A D3D12_BLEND_OP-typed value that defines how to combine the SrcBlendAlpha and DestBlendAlpha operations. + + + A D3D12_LOGIC_OP-typed value that specifies the logical operation to configure for the render target. + + + A combination of D3D12_COLOR_WRITE_ENABLE-typed values that are combined by using a bitwise OR operation. The resulting value specifies a write mask. + + + + Describes the root signature 1.1 layout of a descriptor table as a collection of descriptor ranges that are all relative to a single base descriptor handle. + Microsoft Docs: + + + + The number of descriptor ranges in the table layout. + + + An array of D3D12_DESCRIPTOR_RANGE1 structures that describe the descriptor ranges. + + + + Opaque data structure describing driver versioning for a serialized acceleration structure. + Microsoft Docs: + + + + The opaque identifier of the driver. + + + The opaque driver versioning data. + + + + Describes the level of support for HLSL 6.0 wave operations. + Microsoft Docs: + + + + True if the driver supports HLSL 6.0 wave operations. + + + Specifies the baseline number of lanes in the SIMD wave that this implementation can support. This term is sometimes known as "wavefront size" or "warp width". Currently apps should rely only on this minimum value for sizing workloads. + + + Specifies the maximum number of lanes in the SIMD wave that this implementation can support. This capability is reserved for future expansion, and is not expected to be used by current applications. + + + Specifies the total number of SIMD lanes on the hardware. + + + Indicates transitions are possible in and out of the CBV, and indirect argument states, on compute command lists. If CheckFeatureSupport succeeds this value will always be true. + + + Indicates that 64bit integer operations are supported. + + + + Get the number of messages currently stored in the message queue. + Microsoft Docs: + + + + + Describes the allocation size of a video motion estimator heap. + Microsoft Docs: + + + + In multi-adapter operation, identifies the physical adapter of the device this operation applies to. + + + A DXGI_FORMAT structure specifying the format of the input and reference resources. + + + A value from the D3D12_VIDEO_MOTION_ESTIMATOR_SEARCH_BLOCK_SIZE specifying the search block size for motion estimation. + + + A value from the D3D12_VIDEO_MOTION_ESTIMATOR_VECTOR_PRECISION specifying the search block size for motion estimation. + + + A D3D12_VIDEO_SIZE_RANGE structure representing the minimum and maximum input and reference frame size, in pixels, used by the motion estimator. + + + TRUE if the motion estimator operates on protected resource input and produces protected output; otherwise, FALSE. + + + The allocation size of the motion vector heap in the L0 memory pool. L0 is the physical system memory pool. When the adapter is discrete/NUMA, this pool has greater bandwidth for the CPU and less bandwidth for the GPU. When the adapter is UMA, this pool is the only one which is valid. For more information, see Residency. + + + The allocation size of the motion vector heap in the L1 memory pool. L1 is typically known as the physical video memory pool. L1 is only available when the adapter is discrete/NUMA, and has greater bandwidth for the GPU and cannot even be accessed by the CPU. When the adapter is UMA, this pool is not available. For more information, see Residency. + + + The allocation size of the motion estimator heap in the L0 memory pool. L0 is the physical system memory pool. When the adapter is discrete/NUMA, this pool has greater bandwidth for the CPU and less bandwidth for the GPU. When the adapter is UMA, this pool is the only one which is valid. For more information, see Residency. + + + The allocation size of the motion estimator heap in the L1 memory pool. L1 is typically known as the physical video memory pool. L1 is only available when the adapter is discrete/NUMA, and has greater bandwidth for the GPU and cannot even be accessed by the CPU. When the adapter is UMA, this pool is not available. For more information, see Residency. + + + + Copies a region of a buffer from one resource to another. + Microsoft Docs: + Specifies the destination ID3D12Resource. + Specifies a UINT64 offset (in bytes) into the destination resource. + Specifies the source ID3D12Resource. + Specifies a UINT64 offset (in bytes) into the source resource, to start the copy from. + Specifies the number of bytes to copy. + + + + + Identifies a technique for resolving texture coordinates that are outside of the boundaries of a texture. + Microsoft Docs: + + + + Tile the texture at every (u,v) integer junction. + For example, for u values between 0 and 3, the texture is repeated three times. + + + Flip the texture at every (u,v) integer junction. + For u values between 0 and 1, for example, the texture is addressed normally; between 1 and 2, the texture is flipped (mirrored); between 2 and 3, the texture is normal again; and so on. + + + Texture coordinates outside the range [0.0, 1.0] are set to the texture color at 0.0 or 1.0, respectively. + + + Texture coordinates outside the range [0.0, 1.0] are set to the border color specified in D3D12_SAMPLER_DESC or HLSL code. + + + Similar to + D3D12_TEXTURE_ADDRESS_MODE_MIRROR + and + D3D12_TEXTURE_ADDRESS_MODE_CLAMP. + Takes the absolute value of the texture coordinate (thus, mirroring around 0), and then clamps to the maximum value. + + + + Defines constants that specify a level of dynamic optimization to apply to GPU work that's subsequently submitted. + Microsoft Docs: + + + + The default setting. Specifies that the driver may instrument workloads, and dynamically recompile shaders, in a low overhead, non-intrusive manner that avoids glitching the foreground workload. + + + Specifies that the driver may instrument as aggressively as possible. The understanding is that causing glitches is fine while in this mode, because the current work is being submitted specifically to train the system. + + + Specifies that background work should stop. This ensures that background shader recompilation won't consume CPU cycles. Available only in Developer mode. + + + Specifies that all dynamic optimization should be disabled. For example, if you're doing an A/B performance comparison, then using this constant ensures that the driver doesn't change anything that might interfere with your results. Available only in Developer mode. + + + + Specifies which resource heap tier the hardware and driver support. + Microsoft Docs: + + + + Indicates that heaps can only support resources from a single resource category. + For the list of resource categories, see Remarks. + In tier 1, these resource categories are mutually exclusive and cannot be used with the same heap. + The resource category must be declared when creating a heap, using the correct D3D12_HEAP_FLAGS enumeration constant. + Applications cannot create heaps with flags that allow all three categories. + + + Indicates that heaps can support resources from all three categories. + For the list of resource categories, see Remarks. + In tier 2, these resource categories can be mixed within the same heap. + Applications may create heaps with flags that allow all three categories; but are not required to do so. + Applications may be written to support tier 1 and seamlessly run on tier 2. + + + + Describes the format, width, height, depth, and row-pitch of the subresource into the parent resource. + Microsoft Docs: + + + + A DXGI_FORMAT-typed value that specifies the viewing format. + + + The width of the subresource. + + + The height of the subresource. + + + The depth of the subresource. + + + The row pitch, or width, or physical size, in bytes, of the subresource data. + This must be a multiple of D3D12_TEXTURE_DATA_PITCH_ALIGNMENT (256), and must be greater than or equal to the size of the data within a row. + + + + Retrieves the amount of memory required for the specified runtime parameter resource for a meta command, for the specified stage. + Microsoft Docs: + A D3D12_META_COMMAND_PARAMETER_STAGE specifying the stage to which the parameter belongs. + The zero-based index of the parameter within the stage. + + + + + Sets a CPU descriptor handle for the constant buffer in the graphics root signature. + Microsoft Docs: + The slot number for binding. + The GPU virtual address of the constant buffer. + D3D12_GPU_VIRTUAL_ADDRESS is a typedef'd alias of UINT64. + + + + + Describes the subresources from a 3D texture to use in a render-target view. + Microsoft Docs: + + + + The index of the mipmap level to use mip slice. + + + First depth level to use. + + + Number of depth levels to use in the render-target view, starting from FirstWSlice. A value of -1 indicates all of the slices along the w axis, starting from FirstWSlice. + + + + Describes the amount of artificial slowdown inserted by the debug device to simulate lower-performance graphics adapters. + Microsoft Docs: + + + + Specifies the amount of slowdown artificially applied, as a factor of the nominal time for the fence to signal. The default value is 0. + + + + Specifies the level of support for render passes on a graphics device. + Microsoft Docs: + + + + The user-mode display driver hasn't implemented render passes, and so the feature is provided only via software emulation. Render passes might not provide a performance advantage at this level of support. + + + The render passes feature is implemented by the user-mode display driver, and render target/depth buffer writes may be accelerated. Unordered access view (UAV) writes are not efficiently supported within the render pass. + + + The render passes feature is implemented by the user-mode display driver, render target/depth buffer writes may be accelerated, and unordered access view (UAV) writes (provided that writes in a render pass are not read until a subsequent render pass) are likely to be more efficient than issuing the same work without using a render pass. + + + + Describes a binding (fixed for the duration of the render pass) to a depth stencil view (DSV), as well as its beginning and ending access characteristics. + Microsoft Docs: + + + + A D3D12_CPU_DESCRIPTOR_HANDLE. The CPU descriptor handle corresponding to the depth stencil view (DSV). + + + A D3D12_RENDER_PASS_BEGINNING_ACCESS. The access to the depth buffer requested at the transition into a render pass. + + + A D3D12_RENDER_PASS_BEGINNING_ACCESS. The access to the stencil buffer requested at the transition into a render pass. + + + A D3D12_RENDER_PASS_ENDING_ACCESS. The access to the depth buffer requested at the transition out of a render pass. + + + A D3D12_RENDER_PASS_ENDING_ACCESS. The access to the stencil buffer requested at the transition out of a render pass. + + + + Describes the destination of a memory copy operation. + Microsoft Docs: + + + + A pointer to a memory block that receives the copied data. + + + The row pitch, or width, or physical size, in bytes, of the subresource data. + + + The slice pitch, or width, or physical size, in bytes, of the subresource data. + + + + Specifies categories of debug messages. + Microsoft Docs: + + + + Indicates a user defined message, see ID3D12InfoQueue::AddMessage. + + + + Provides methods for submitting command lists, synchronizing command list execution, instrumenting the command queue, and updating resource tile mappings. + Microsoft Docs: + + + + + Opens a handle for shared resources, shared heaps, and shared fences, by using HANDLE and REFIID. + Microsoft Docs: + The handle that was output by the call to + ID3D12Device::CreateSharedHandle. + The globally unique identifier (GUID) for one of the following interfaces: + + + +The REFIID, or GUID, of the interface can be obtained by using the __uuidof() macro. + For example, __uuidof(ID3D12Heap) will get the GUID of the interface to a resource. + A pointer to a memory block that receives a pointer to one of the following interfaces: + + + + + + + + Specifies the deinterlacing video processor capabilities. + Microsoft Docs: + + + + No deinterlacing capabilities are available. + + + The video processor can perform bob deinterlacing. In bob deinterlacing, missing field lines are interpolated from the lines above and below. Bob deinterlacing does not require reference frames. + + + The video processor can perform a custom high-quality deinterlacing, which requires the number of reference frames indicated in PastFrames and FutureFrames output fields of the D3D12_FEATURE_DATA_VIDEO_PROCESS_REFERENCE_INFO populated by a call to ID3D12VideoDevice::CheckFeatureSupport when the feature specified is D3D12_FEATURE_VIDEO_PROCESS_REFERENCE_INFO. If the video processor doesn’t have the necessary number of reference frames, it falls back to bob deinterlacing. + + + + Specifies the type of geometry used for raytracing. Use a value from this enumeration to specify the geometry type in a D3D12_RAYTRACING_GEOMETRY_DESC. + Microsoft Docs: + + + + The geometry consists of triangles. + + + The geometry procedurally is defined during raytracing by intersection shaders. For the purpose of acceleration structure builds, the geometry’s bounds are described with axis-aligned bounding boxes using the D3D12_RAYTRACING_GEOMETRY_AABBS_DESC structure. + + + + Describes settings used by GPU-Based Validation. + Microsoft Docs: + + + + Specifies a UINT that limits the number of messages that can be stored in the GPU-Based Validation message log. The default value is 256. Since many identical errors can be produced in a single Draw/Dispatch call it may be useful to increase this number. Note this can become a memory burden if a large number of command lists are used as there is a committed message log per command list. + + + Specifies the D3D12_GPU_BASED_VALIDATION_SHADER_PATCH_MODE that GPU-Based Validation uses when injecting validation code into shaders, except when overridden by per-command-list GPU-Based Validation settings (see D3D12_DEBUG_COMMAND_LIST_GPU_BASED_VALIDATION_SETTINGS). The default value is D3D12_GPU_BASED_VALIDATION_SHADER_PATCH_MODE_UNGUARDED_VALIDATION. + + + Specifies one of the D3D12_GPU_BASED_VALIDATION_PIPELINE_STATE_CREATE_FLAGS that indicates how GPU-Based Validation handles patching pipeline states. The default value is D3D12_GPU_BASED_VALIDATION_PIPELINE_STATE_CREATE_FLAG_NONE. + + + + Creates a query heap. A query heap contains an array of queries. + Microsoft Docs: + Specifies the query heap in a D3D12_QUERY_HEAP_DESC structure. + Specifies a REFIID that uniquely identifies the heap. + Specifies a pointer to the heap, that will be returned on successful completion of the method. + ppvHeap can be NULL, to enable capability testing. + When ppvHeap is NULL, no object will be created and S_FALSE will be returned when pDesc is valid. + + + + + Gets the corresponding interface slot for a variable that represents an interface pointer. + Microsoft Docs: + The index of the array element to get the slot number for. + For a non-array variable this value will be zero. + + + + + Identifies the tier of resource binding being used. + Microsoft Docs: + + + + Tier 1. + See Hardware Tiers. + + + Tier 2. + See Hardware Tiers. + + + Tier 3. + See Hardware Tiers. + + + + Query the driver for resource requirements to build an acceleration structure. + Microsoft Docs: + Description of the acceleration structure build. This structure is shared with BuildRaytracingAccelerationStructure. For more information, see D3D12_BUILD_RAYTRACING_ACCELERATION_STRUCTURE_INPUTS. + +The implementation is allowed to look at all the CPU parameters in this struct and nested structs. It may not inspect/dereference any GPU virtual addresses, other than to check to see if a pointer is NULL or not, such as the optional transform in D3D12_RAYTRACING_GEOMETRY_TRIANGLES_DESC, without dereferencing it. In other words, the calculation of resource requirements for the acceleration structure does not depend on the actual geometry data (such as vertex positions), rather it can only depend on overall properties, such as the number of triangles, number of instances etc. + The result of the query. + + + + + Represents a compressed bitstream from which video is decoded. + Microsoft Docs: + + + + A pointer to an ID3D12Resource representing the source buffer containing the compressed bitstream to decode. + + + The offset to the beginning of the first slice. This offset has alignment requirements based on the tier value of the video decoder. For more information on decoding tiers, see D3D12_VIDEO_DECODE_TIER. + + + The size of the subregion of pBuffer that contains the bitstream. + + + + Retrieves the list of video extension command parameters for the specified parameter stage. + Microsoft Docs: + + + + The unique identifier for the video extension command for which parameters are retrieved. + + + A member of the D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_STAGE enumeration specifying the parameter stage for which the parameters are retrieved. + + + The supported number of video extension command parameters. This value must be the count returned by a call to[ID3D12VideoDevice::CheckFeatureSupport](nf-d3d12video-id3d12videodevice-checkfeaturesupport.md) with D3D12_FEATURE_VIDEO_EXTENSION_COMMAND_PARAMETER_COUNT specified as the feature. + + + Receives a list of D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_INFO structures describing video extension command parameters. + + + + Describes the slot of a root signature version 1.1. + Microsoft Docs: + + + + A D3D12_ROOT_PARAMETER_TYPE-typed value that specifies the type of root signature slot. This member determines which type to use in the union below. + + + A D3D12_ROOT_DESCRIPTOR_TABLE1 structure that describes the layout of a descriptor table as a collection of descriptor ranges that appear one after the other in a descriptor heap. + + + A D3D12_ROOT_CONSTANTS structure that describes constants inline in the root signature that appear in shaders as one constant buffer. + + + A D3D12_ROOT_DESCRIPTOR1 structure that describes descriptors inline in the root signature that appear in shaders. + + + A D3D12_SHADER_VISIBILITY-typed value that specifies the shaders that can access the contents of the root signature slot. + + + + Gets the current pipeline stack size. + Microsoft Docs: + + + + + A function-reflection interface accesses function info. + Microsoft Docs: + + + + + Executes a compute shader on a thread group. + Microsoft Docs: + The number of groups dispatched in the x direction. ThreadGroupCountX must be less than or equal to D3D11_CS_DISPATCH_MAX_THREAD_GROUPS_PER_DIMENSION (65535). + The number of groups dispatched in the y direction. ThreadGroupCountY must be less than or equal to D3D11_CS_DISPATCH_MAX_THREAD_GROUPS_PER_DIMENSION (65535). + The number of groups dispatched in the z direction. ThreadGroupCountZ must be less than or equal to D3D11_CS_DISPATCH_MAX_THREAD_GROUPS_PER_DIMENSION (65535). + In feature level 10 the value for ThreadGroupCountZ must be 1. + + + + + Describes the dimensions of a viewport. + Microsoft Docs: + + + + X position of the left hand side of the viewport. + + + Y position of the top of the viewport. + + + Width of the viewport. + + + Height of the viewport. + + + Minimum depth of the viewport. Ranges between 0 and 1. + + + Maximum depth of the viewport. Ranges between 0 and 1. + + + + Debug message filter; contains a lists of message types to allow or deny. + Microsoft Docs: + + + + Specifies types of messages that you want to allow. See D3D12_INFO_QUEUE_FILTER_DESC. + + + Specifies types of messages that you want to deny. + + + + Describes the elements in a buffer resource to use in a shader-resource view. + Microsoft Docs: + + + + The index of the first element to be accessed by the view. + + + The number of elements in the resource. + + + The size of each element in the buffer structure (in bytes) when the buffer represents a structured buffer. + + + A D3D12_BUFFER_SRV_FLAGS-typed value that identifies view options for the buffer. Currently, the only option is to identify a raw view of the buffer. For more info about raw viewing of buffers, see Raw Views of Buffers. + + + + Specifies options for the amount of information to report about a live device object's lifetime. + Microsoft Docs: + + + + Obtain a summary about a live device object's lifetime. + + + Obtain detailed information about a live device object's lifetime. + + + This flag indicates to ignore objects which have no external refcounts keeping them alive. D3D objects are printed using an external refcount and an internal refcount. Typically, all objects are printed. This flag means ignore the objects whose external refcount is 0, because the application is not responsible for keeping them alive. + + + + Invalidates the CPU pointer to the specified subresource in the resource. Unmap also flushes the CPU cache, when necessary, so that GPU reads to this address reflect any modifications made by the CPU. + Microsoft Docs: + Specifies the index of the subresource. + A pointer to a D3D12_RANGE structure that describes the range of memory to unmap. + +This indicates the region the CPU might have modified, and the coordinates are subresource-relative. A null pointer indicates the entire subresource might have been modified by the CPU. It is valid to specify the CPU didn't write any data by passing a range where End is less than or equal to Begin. + + + + + Specifies the parameter stages for video extension commands. + Microsoft Docs: + + + + The parameter stage is in video extension command creation. + + + The parameter stage is in video extension command initialization. + + + The parameter stage is in video extension command execution. + + + The parameter stage is input parameters passed to capabilities queries. + + + The parameter stage is output parameters passed to capabilities queries. + + + The parameter stage is device execution input. + + + The parameter stage is device execution output. + + + + Identifies the type of resource being used. + Microsoft Docs: + + + + Resource is of unknown type. + + + Resource is a buffer. + + + Resource is a 1D texture. + + + Resource is a 2D texture. + + + Resource is a 3D texture. + + + + This method returns the GPU virtual address of a buffer resource. + Microsoft Docs: + + + + + Describes the layout of a root signature version 1.0. + Microsoft Docs: + + + + The number of slots in the root signature. This number is also the number of elements in the pParameters array. + + + An array of D3D12_ROOT_PARAMETER structures for the slots in the root signature. + + + Specifies the number of static samplers. + + + Pointer to one or more D3D12_STATIC_SAMPLER_DESC structures. + + + A combination of D3D12_ROOT_SIGNATURE_FLAGS-typed values that are combined by using a bitwise OR operation. + The resulting value specifies options for the root signature layout. + + + + Sets the layout of the compute root signature. + Microsoft Docs: + A pointer to the ID3D12RootSignature object. + + + + + Encapsulates a list of graphics commands for rendering, extending the interface to support ray tracing and render passes. + Microsoft Docs: + + + + + Specifies how to perform a tile-mapping operation. + Microsoft Docs: + + + + No tile-mapping flags are specified. + + + Unsupported, do not use. + + + + Describes an indirect argument (an indirect parameter), for use with a command signature. + Microsoft Docs: + + + + A single D3D12_INDIRECT_ARGUMENT_TYPE enumeration constant. + + + Specifies the slot containing the vertex buffer address. + + + Specifies the root index of the constant. + + + The offset, in 32-bit values, to set the first constant of the group. + Supports multi-value constants at a given root index. + Root constant entries must be sorted from smallest to largest DestOffsetIn32BitValues. + + + The number of 32-bit constants that are set at the given root index. + Supports multi-value constants at a given root index. + + + + Describes the subresources from an array of 1D textures to use in a render-target view. + Microsoft Docs: + + + + The index of the mipmap level to use mip slice. + + + The index of the first texture to use in an array of textures. + + + Number of textures to use. + + + + Associates an IUnknown-derived interface with the device object and associates that interface with an application-defined GUID. + Microsoft Docs: + The GUID to associate with the interface. + A pointer to the IUnknown-derived interface to be associated with the device object. + + + + + Specifies the parameters for decode output conversion. + Microsoft Docs: + + + + A boolean value indicating whether decode conversion should be used. + + + A pointer to an ID3D12Resource containing the native decoding output. When downsampling is enabled, the output at native decode resolution, color space, and format may be required for future decode submissions (as reference frames, for instance). + + + The subresource index of the resource provided in pDecodeTexture2D to use. + + + A value from the DXGI_COLOR_SPACE_TYPE enumeration specifying the target color space of the output. + + + A value from the DXGI_COLOR_SPACE_TYPE enumeration specifying the source-decoded color space before conversion. + + + + Describes a unordered-access 1D texture resource. + Microsoft Docs: + + + + The mipmap slice index. + + + + This interface represents a graphics device for debugging. + Microsoft Docs: + + + + + Retrieves the number of past and future reference frames required for the specified deinterlace mode, filter, rate conversion, or auto processing features. + Microsoft Docs: + + + + An integer indicating which physical adapter of the device the operation applies to, in a multi-adapter operation. + + + A member of the D3D12\_VIDEO\_PROCESS\_DEINTERLACE\_FLAGS enumeration specifying the deinterlacing mode for which the required past and future reference frame counts are retrieved. + + + A bitwise OR combination of values from the D3D12\_VIDEO\_PROCESS\_FILTER\_FLAGS enumeration specifying the filters for which the required past and future reference frame counts are retrieved. + + + A bitwise OR combination of values from the D3D12\_VIDEO\_PROCESS\_FEATURE\_FLAGS enumeration specifying the features for which the required past and future reference frame counts are retrieved. + + + The input frame rate of the stream for which the required past and future reference frame counts are retrieved. + + + The output frame rate of the stream for which the required past and future reference frame counts are retrieved. + + + True if autoprocessing will be used; otherwise, false. + + + The number of past frames required to support the specified processing features. + + + The number of future frames required to support the specified processing features. + + + + Specifies the CPU-page properties for the heap. + Microsoft Docs: + + + + The CPU-page property is unknown. + + + The CPU cannot access the heap, therefore no page properties are available. + + + The CPU-page property is write-combined. + + + The CPU-page property is write-back. + + + + Not intended to be called directly.  Use the PIX event runtime to insert events into a command list. + Microsoft Docs: + Internal. + Internal. + Internal. + + + + + Specifies the motion estimation search block sizes that a video encoder can support. + Microsoft Docs: + + + + Search block size is not supported by the encoder. + + + The encoder supports a search block size of 8x8 pixels. + + + The encoder supports a search block size of 16x16 pixels. + + + + Indicates the level of support that the adapter provides for metacommands. + Microsoft Docs: + + + + The fixed GUID that identfies the metacommand to query about. + + + For single GPU operation, this is zero. If there are multiple GPU nodes, a bit is set to identify a node (the device's physical adapter). Each bit in the mask corresponds to a single node. Only 1 bit must be set. Refer to [Multi-adapter systems](/windows/win32/direct3d12/multi-engine). + + + A pointer to a buffer containing the query input data. Allocate QueryInputDataSizeInBytes bytes. + + + The size of the buffer pointed to by pQueryInputData, in bytes. + + + A pointer to a buffer containing the query output data. + + + The size of the buffer pointed to by pQueryOutputData, in bytes. + + + + Gets the minimum feature level. + Microsoft Docs: + + + + + Set a mask that controls which view instances are enabled for subsequent draws. + Microsoft Docs: + A mask that specifies which views are enabled or disabled. If bit i starting from the least-significant bit is set, view instance i is enabled. + + + + + Get the number of messages that were discarded due to the message count limit. + Microsoft Docs: + + + + + Creates an ID3D12StateObject. + Microsoft Docs: + The description of the state object to create. + The GUID of the interface to create. Use __uuidof(ID3D12StateObject). + The returned state object. + + + + + Describes the subresource from a 1D texture to use in a render-target view. + Microsoft Docs: + + + + The index of the mipmap level to use mip slice. + + + + Describes a memory range in a 64-bit address space. + Microsoft Docs: + + + + The offset, in bytes, denoting the beginning of a memory range. + + + The offset, in bytes, denoting the end of a memory range. + End is one-past-the-end. + + + + Sets all the elements in a unordered-access view (UAV) to the specified integer values. + Microsoft Docs: + A D3D12_GPU_DESCRIPTOR_HANDLE that references an initialized descriptor for the unordered-access view (UAV) that is to be cleared. This descriptor must be in a shader-visible descriptor heap, which must be set on the command list via SetDescriptorHeaps. + A D3D12_CPU_DESCRIPTOR_HANDLE in a non-shader visible descriptor heap that references an initialized descriptor for the unordered-access view (UAV) that is to be cleared. + +> [!IMPORTANT] +> This descriptor must not be in a shader-visible descriptor heap. This is to allow drivers thath implement the clear as fixed-function hardware (rather than via a dispatch) to efficiently read from the descriptor, as shader-visible heaps may be created in WRITE_BACK memory (similar to D3D12_HEAP_TYPE_UPLOAD heap types), and CPU reads from this type of memory are prohibitively slow. + A pointer to the ID3D12Resource interface that represents the unordered-access-view (UAV) resource to clear. + A 4-component array that containing the values to fill the unordered-access-view resource with. + The number of rectangles in the array that the pRects parameter specifies. + An array of D3D12_RECT structures for the rectangles in the resource view to clear. If NULL, ClearUnorderedAccessViewUint clears the entire resource view. + + + + + Represents an axis-aligned bounding box (AABB) used as raytracing geometry. + Microsoft Docs: + + + + The minimum X coordinate of the box. + + + The minimum Y coordinate of the box. + + + The minimum Z coordinate of the box. + + + The maximum X coordinate of the box. + + + The maximum Y coordinate of the box. + + + The maximum Z coordinate of the box. + + + + Validates that the given state matches the state of the subresource, assuming the state of the given subresource is known during recording of a command list (e.g. + Microsoft Docs: + Specifies the ID3D12Resource to check. + The index of the subresource to check. This can be set to an index, or D3D12_RESOURCE_BARRIER_ALL_SUBRESOURCES. + Specifies the state to check for. This can be one or more D3D12_RESOURCE_STATES flags Or'ed together. + + + + + Contains the supported shader model. + Microsoft Docs: + + + + Specifies one member of D3D_SHADER_MODEL that indicates the maximum supported shader model. + + + + Defines constants that specify the shading rate (for variable-rate shading, or VRS) along a horizontal or vertical axis. + Microsoft Docs: + + + + Specifies a 1x shading rate for the axis. + + + Specifies a 2x shading rate for the axis. + + + Specifies a 4x shading rate for the axis. + + + + Describes a ID3D12VideoMotionEstimator. Pass this structure into ID3D12VideoDevice1::CreateVideoMotionEstimator to create an instance of ID3D12VideoMotionEstimator. + Microsoft Docs: + + + + The node mask specifying the physical adapter on which the video processor will be used. For single GPU operation, set this to zero. If there are multiple GPU nodes, set a bit to identify the node, i.e. the device's physical adapter, to which the command queue applies. Each bit in the mask corresponds to a single node. Only 1 bit may be set. + + + A value from the DXGI_FORMAT enumeration specifying the format of the input and reference frames. + + + A value from the D3D12_VIDEO_MOTION_ESTIMATOR_SEARCH_BLOCK_SIZE enumeration specifying the search block size the video motion estimator will use. + + + A value from the D3D12_VIDEO_MOTION_ESTIMATOR_VECTOR_PRECISION enumeration specifying the vector precision the video motion estimator will use. + + + A D3D12_VIDEO_SIZE_RANGE structure representing the minimum and maximum input and reference frame size, in pixels, that the motion estimator will accept. + + + + Represents a virtual adapter. This interface extends ID3D12Device2 to support the creation of special-purpose diagnostic heaps in system memory that persist even in the event of a GPU-fault or device-removed scenario. + Microsoft Docs: + + + + + Contains a method to return the deserialized D3D12_ROOT_SIGNATURE_DESC data structure, of a serialized root signature version 1.0. + Microsoft Docs: + + + + + Describes the layout of a root signature version 1.1. + Microsoft Docs: + + + + The number of slots in the root signature. This number is also the number of elements in the pParameters array. + + + An array of D3D12_ROOT_PARAMETER1 structures for the slots in the root signature. + + + Specifies the number of static samplers. + + + Pointer to one or more D3D12_STATIC_SAMPLER_DESC structures. + + + Specifies the D3D12_ROOT_SIGNATURE_FLAGS that determine the data volatility. + + + + Indicates whether a variable is of the specified type. + Microsoft Docs: + A pointer to a ID3D12ShaderReflectionType Interface. + + + + + Push a retrieval filter onto the retrieval-filter stack. + Microsoft Docs: + Pointer to a retrieval filter. + + + + + Notifies the driver that it needs to synchronize multiple accesses to resources. + Microsoft Docs: + The number of submitted barrier descriptions. + Pointer to an array of barrier descriptions. + + + + + Describes shader data. + Microsoft Docs: + + + + A pointer to a memory block that contains the shader data. + + + The size, in bytes, of the shader data that the pShaderBytecode member points to. + + + + Defines constants that specify render/compute GPU operations. + Microsoft Docs: + + + + Specifies that a DRED feature is enabled only when DRED is turned on by the system automatically (for example, when a user is reproducing a problem via FeedbackHub). + + + Specifies that a DRED feature should be force-disabled, regardless of the system state. + + + Specifies that a DRED feature should be force-enabled, regardless of the system state. + + + + Specifies the type of a state object. Use with D3D12_STATE_OBJECT_DESC. + Microsoft Docs: + + + + Collection state object. + + + Raytracing pipeline state object. + + + + Describes the supported scaling range of output sizes for a video scaler. + Microsoft Docs: + + + + A D3D12_VIDEO_SIZE_RANGE structure describing the supported output size range for the scaler. + + + A member of the D3D12_VIDEO_SCALE_SUPPORT_FLAGS enumeration specifying the supported scaling capabilities of the scaler. + + + + Encapsulates a generalized ability of the CPU and GPU to read and write to physical memory, or heaps. It contains abstractions for organizing and manipulating simple arrays of data as well as multidimensional data optimized for shader sampling. + Microsoft Docs: + + + + + Gets a description of how a resource is bound to a shader. + Microsoft Docs: + The constant-buffer name of the resource. + A pointer to an input-binding description. See D3D12_SHADER_INPUT_BIND_DESC. + + +
\ No newline at end of file diff --git a/src/Vortice.Win32.Direct3D12/Generated/AutoBreadcrumbNode.cs b/src/Vortice.Win32.Direct3D12/Generated/AutoBreadcrumbNode.cs index 638d49e..f2437a9 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/AutoBreadcrumbNode.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/AutoBreadcrumbNode.cs @@ -9,37 +9,37 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_AUTO_BREADCRUMB_NODE public partial struct AutoBreadcrumbNode { - /// + /// public unsafe byte* pCommandListDebugNameA; - /// + /// public unsafe ushort* pCommandListDebugNameW; - /// + /// public unsafe byte* pCommandQueueDebugNameA; - /// + /// public unsafe ushort* pCommandQueueDebugNameW; - /// + /// public unsafe ID3D12GraphicsCommandList* pCommandList; - /// + /// public unsafe ID3D12CommandQueue* pCommandQueue; - /// + /// public uint BreadcrumbCount; - /// + /// public unsafe uint* pLastBreadcrumbValue; - /// + /// public unsafe AutoBreadcrumbOperation* pCommandHistory; - /// + /// public unsafe AutoBreadcrumbNode* pNext; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/AutoBreadcrumbNode1.cs b/src/Vortice.Win32.Direct3D12/Generated/AutoBreadcrumbNode1.cs index 61d7919..93999a0 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/AutoBreadcrumbNode1.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/AutoBreadcrumbNode1.cs @@ -9,43 +9,43 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_AUTO_BREADCRUMB_NODE1 public partial struct AutoBreadcrumbNode1 { - /// + /// public unsafe byte* pCommandListDebugNameA; - /// + /// public unsafe ushort* pCommandListDebugNameW; - /// + /// public unsafe byte* pCommandQueueDebugNameA; - /// + /// public unsafe ushort* pCommandQueueDebugNameW; - /// + /// public unsafe ID3D12GraphicsCommandList* pCommandList; - /// + /// public unsafe ID3D12CommandQueue* pCommandQueue; - /// + /// public uint BreadcrumbCount; - /// + /// public unsafe uint* pLastBreadcrumbValue; - /// + /// public unsafe AutoBreadcrumbOperation* pCommandHistory; - /// + /// public unsafe AutoBreadcrumbNode1* pNext; - /// + /// public uint BreadcrumbContextsCount; - /// + /// public unsafe DredBreadcrumbContext* pBreadcrumbContexts; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/AutoBreadcrumbOperation.cs b/src/Vortice.Win32.Direct3D12/Generated/AutoBreadcrumbOperation.cs index f38fec8..6bdba2b 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/AutoBreadcrumbOperation.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/AutoBreadcrumbOperation.cs @@ -9,143 +9,143 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_AUTO_BREADCRUMB_OP public enum AutoBreadcrumbOperation : int { - /// + /// /// D3D12_AUTO_BREADCRUMB_OP_SETMARKER SetMarker = 0, - /// + /// /// D3D12_AUTO_BREADCRUMB_OP_BEGINEVENT BeginEvent = 1, - /// + /// /// D3D12_AUTO_BREADCRUMB_OP_ENDEVENT EndEvent = 2, - /// + /// /// D3D12_AUTO_BREADCRUMB_OP_DRAWINSTANCED DrawInstanced = 3, - /// + /// /// D3D12_AUTO_BREADCRUMB_OP_DRAWINDEXEDINSTANCED DrawIndexedInstanced = 4, - /// + /// /// D3D12_AUTO_BREADCRUMB_OP_EXECUTEINDIRECT ExecuteIndirect = 5, - /// + /// /// D3D12_AUTO_BREADCRUMB_OP_DISPATCH Dispatch = 6, - /// + /// /// D3D12_AUTO_BREADCRUMB_OP_COPYBUFFERREGION CopyBufferRegion = 7, - /// + /// /// D3D12_AUTO_BREADCRUMB_OP_COPYTEXTUREREGION CopyTextureRegion = 8, - /// + /// /// D3D12_AUTO_BREADCRUMB_OP_COPYRESOURCE CopyResource = 9, - /// + /// /// D3D12_AUTO_BREADCRUMB_OP_COPYTILES CopyTiles = 10, - /// + /// /// D3D12_AUTO_BREADCRUMB_OP_RESOLVESUBRESOURCE ResolveSubresource = 11, - /// + /// /// D3D12_AUTO_BREADCRUMB_OP_CLEARRENDERTARGETVIEW ClearRenderTargetView = 12, - /// + /// /// D3D12_AUTO_BREADCRUMB_OP_CLEARUNORDEREDACCESSVIEW ClearUnorderedAccessView = 13, - /// + /// /// D3D12_AUTO_BREADCRUMB_OP_CLEARDEPTHSTENCILVIEW ClearDepthStencilView = 14, - /// + /// /// D3D12_AUTO_BREADCRUMB_OP_RESOURCEBARRIER ResourceBarrier = 15, - /// + /// /// D3D12_AUTO_BREADCRUMB_OP_EXECUTEBUNDLE ExecuteBundle = 16, - /// + /// /// D3D12_AUTO_BREADCRUMB_OP_PRESENT Present = 17, - /// + /// /// D3D12_AUTO_BREADCRUMB_OP_RESOLVEQUERYDATA ResolveQueryData = 18, - /// + /// /// D3D12_AUTO_BREADCRUMB_OP_BEGINSUBMISSION BeginSubmission = 19, - /// + /// /// D3D12_AUTO_BREADCRUMB_OP_ENDSUBMISSION EndSubmission = 20, - /// + /// /// D3D12_AUTO_BREADCRUMB_OP_DECODEFRAME DecodeFrame = 21, - /// + /// /// D3D12_AUTO_BREADCRUMB_OP_PROCESSFRAMES ProcessFrames = 22, - /// + /// /// D3D12_AUTO_BREADCRUMB_OP_ATOMICCOPYBUFFERUINT AtomicCopyBufferUInt = 23, - /// + /// /// D3D12_AUTO_BREADCRUMB_OP_ATOMICCOPYBUFFERUINT64 AtomicCopyBufferUInt64 = 24, - /// + /// /// D3D12_AUTO_BREADCRUMB_OP_RESOLVESUBRESOURCEREGION ResolveSubresourceRegion = 25, - /// + /// /// D3D12_AUTO_BREADCRUMB_OP_WRITEBUFFERIMMEDIATE WriteBufferImmediate = 26, - /// + /// /// D3D12_AUTO_BREADCRUMB_OP_DECODEFRAME1 DecodeFrame1 = 27, - /// + /// /// D3D12_AUTO_BREADCRUMB_OP_SETPROTECTEDRESOURCESESSION SetProtectedResourceSession = 28, - /// + /// /// D3D12_AUTO_BREADCRUMB_OP_DECODEFRAME2 DecodeFrame2 = 29, - /// + /// /// D3D12_AUTO_BREADCRUMB_OP_PROCESSFRAMES1 ProcessFrames1 = 30, - /// + /// /// D3D12_AUTO_BREADCRUMB_OP_BUILDRAYTRACINGACCELERATIONSTRUCTURE BuildRaytracingAccelerationStructure = 31, - /// + /// /// D3D12_AUTO_BREADCRUMB_OP_EMITRAYTRACINGACCELERATIONSTRUCTUREPOSTBUILDINFO EmitRaytracingAccelerationStructurePostBuildInfo = 32, - /// + /// /// D3D12_AUTO_BREADCRUMB_OP_COPYRAYTRACINGACCELERATIONSTRUCTURE CopyRaytracingAccelerationStructure = 33, - /// + /// /// D3D12_AUTO_BREADCRUMB_OP_DISPATCHRAYS DispatchRays = 34, - /// + /// /// D3D12_AUTO_BREADCRUMB_OP_INITIALIZEMETACOMMAND InitializeMetaCommand = 35, - /// + /// /// D3D12_AUTO_BREADCRUMB_OP_EXECUTEMETACOMMAND ExecuteMetaCommand = 36, - /// + /// /// D3D12_AUTO_BREADCRUMB_OP_ESTIMATEMOTION EstimateMotion = 37, - /// + /// /// D3D12_AUTO_BREADCRUMB_OP_RESOLVEMOTIONVECTORHEAP ResolveMotionVectorHeap = 38, - /// + /// /// D3D12_AUTO_BREADCRUMB_OP_SETPIPELINESTATE1 SetPipelineState1 = 39, - /// + /// /// D3D12_AUTO_BREADCRUMB_OP_INITIALIZEEXTENSIONCOMMAND InitializeExtensionCommand = 40, - /// + /// /// D3D12_AUTO_BREADCRUMB_OP_EXECUTEEXTENSIONCOMMAND ExecuteExtensionCommand = 41, - /// + /// /// D3D12_AUTO_BREADCRUMB_OP_DISPATCHMESH DispatchMesh = 42, - /// + /// /// D3D12_AUTO_BREADCRUMB_OP_ENCODEFRAME EncodeFrame = 43, - /// + /// /// D3D12_AUTO_BREADCRUMB_OP_RESOLVEENCODEROUTPUTMETADATA ResolveEncoderOutputMetadata = 44, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/AxisShadingRate.cs b/src/Vortice.Win32.Direct3D12/Generated/AxisShadingRate.cs index 0e5e863..799bc9e 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/AxisShadingRate.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/AxisShadingRate.cs @@ -9,17 +9,17 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_AXIS_SHADING_RATE public enum AxisShadingRate : int { - /// + /// /// D3D12_AXIS_SHADING_RATE_1X Rate1x = 0, - /// + /// /// D3D12_AXIS_SHADING_RATE_2X Rate2x = 1, - /// + /// /// D3D12_AXIS_SHADING_RATE_4X Rate4x = 2, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/BackgroundProcessingMode.cs b/src/Vortice.Win32.Direct3D12/Generated/BackgroundProcessingMode.cs index cfb5c4f..9ae11ab 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/BackgroundProcessingMode.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/BackgroundProcessingMode.cs @@ -9,20 +9,20 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_BACKGROUND_PROCESSING_MODE public enum BackgroundProcessingMode : int { - /// + /// /// D3D12_BACKGROUND_PROCESSING_MODE_ALLOWED Allowed = 0, - /// + /// /// D3D12_BACKGROUND_PROCESSING_MODE_ALLOW_INTRUSIVE_MEASUREMENTS AllowIntrusiveMeasurements = 1, - /// + /// /// D3D12_BACKGROUND_PROCESSING_MODE_DISABLE_BACKGROUND_WORK DisableBackgroundWork = 2, - /// + /// /// D3D12_BACKGROUND_PROCESSING_MODE_DISABLE_PROFILING_BY_SYSTEM DisableProfilingBySystem = 3, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/Blend.cs b/src/Vortice.Win32.Direct3D12/Generated/Blend.cs index 58520a4..c24f249 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/Blend.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/Blend.cs @@ -9,59 +9,59 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_BLEND public enum Blend : int { - /// + /// /// D3D12_BLEND_ZERO Zero = 1, - /// + /// /// D3D12_BLEND_ONE One = 2, - /// + /// /// D3D12_BLEND_SRC_COLOR SrcColor = 3, - /// + /// /// D3D12_BLEND_INV_SRC_COLOR InvSrcColor = 4, - /// + /// /// D3D12_BLEND_SRC_ALPHA SrcAlpha = 5, - /// + /// /// D3D12_BLEND_INV_SRC_ALPHA InvSrcAlpha = 6, - /// + /// /// D3D12_BLEND_DEST_ALPHA DestAlpha = 7, - /// + /// /// D3D12_BLEND_INV_DEST_ALPHA InvDestAlpha = 8, - /// + /// /// D3D12_BLEND_DEST_COLOR DestColor = 9, - /// + /// /// D3D12_BLEND_INV_DEST_COLOR InvDestColor = 10, - /// + /// /// D3D12_BLEND_SRC_ALPHA_SAT SrcAlphaSat = 11, - /// + /// /// D3D12_BLEND_BLEND_FACTOR BlendFactor = 14, - /// + /// /// D3D12_BLEND_INV_BLEND_FACTOR InvBlendFactor = 15, - /// + /// /// D3D12_BLEND_SRC1_COLOR Src1Color = 16, - /// + /// /// D3D12_BLEND_INV_SRC1_COLOR InvSrc1Color = 17, - /// + /// /// D3D12_BLEND_SRC1_ALPHA Src1Alpha = 18, - /// + /// /// D3D12_BLEND_INV_SRC1_ALPHA InvSrc1Alpha = 19, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/BlendDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/BlendDescription.cs index b2cd72e..6640ef0 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/BlendDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/BlendDescription.cs @@ -9,17 +9,17 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_BLEND_DESC public partial struct BlendDescription { - /// + /// public Bool32 AlphaToCoverageEnable; - /// + /// public Bool32 IndependentBlendEnable; - /// + /// public RenderTarget__FixedBuffer RenderTarget; public unsafe struct RenderTarget__FixedBuffer diff --git a/src/Vortice.Win32.Direct3D12/Generated/BlendOperation.cs b/src/Vortice.Win32.Direct3D12/Generated/BlendOperation.cs index 242635a..bdc9d09 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/BlendOperation.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/BlendOperation.cs @@ -9,23 +9,23 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_BLEND_OP public enum BlendOperation : int { - /// + /// /// D3D12_BLEND_OP_ADD Add = 1, - /// + /// /// D3D12_BLEND_OP_SUBTRACT Subtract = 2, - /// + /// /// D3D12_BLEND_OP_REV_SUBTRACT RevSubtract = 3, - /// + /// /// D3D12_BLEND_OP_MIN Min = 4, - /// + /// /// D3D12_BLEND_OP_MAX Max = 5, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/Box.cs b/src/Vortice.Win32.Direct3D12/Generated/Box.cs index 62d89b8..bd81bd6 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/Box.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/Box.cs @@ -9,25 +9,25 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_BOX public partial struct Box { - /// + /// public uint left; - /// + /// public uint top; - /// + /// public uint front; - /// + /// public uint right; - /// + /// public uint bottom; - /// + /// public uint back; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/BufferRtv.cs b/src/Vortice.Win32.Direct3D12/Generated/BufferRtv.cs index aabed64..68dddf0 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/BufferRtv.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/BufferRtv.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_BUFFER_RTV public partial struct BufferRtv { - /// + /// public ulong FirstElement; - /// + /// public uint NumElements; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/BufferSrv.cs b/src/Vortice.Win32.Direct3D12/Generated/BufferSrv.cs index 32f1874..70cb5d2 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/BufferSrv.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/BufferSrv.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_BUFFER_SRV public partial struct BufferSrv { - /// + /// public ulong FirstElement; - /// + /// public uint NumElements; - /// + /// public uint StructureByteStride; - /// + /// public BufferSrvFlags Flags; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/BufferSrvFlags.cs b/src/Vortice.Win32.Direct3D12/Generated/BufferSrvFlags.cs index 8984de6..0d68dc3 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/BufferSrvFlags.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/BufferSrvFlags.cs @@ -9,15 +9,15 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_BUFFER_SRV_FLAGS [Flags] public enum BufferSrvFlags : uint { - /// + /// /// D3D12_BUFFER_SRV_FLAG_NONE None = 0, - /// + /// /// D3D12_BUFFER_SRV_FLAG_RAW Raw = 1, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/BufferUav.cs b/src/Vortice.Win32.Direct3D12/Generated/BufferUav.cs index 1f2829e..ac0546c 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/BufferUav.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/BufferUav.cs @@ -9,22 +9,22 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_BUFFER_UAV public partial struct BufferUav { - /// + /// public ulong FirstElement; - /// + /// public uint NumElements; - /// + /// public uint StructureByteStride; - /// + /// public ulong CounterOffsetInBytes; - /// + /// public BufferUavFlags Flags; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/BufferUavFlags.cs b/src/Vortice.Win32.Direct3D12/Generated/BufferUavFlags.cs index ddce37d..ccab177 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/BufferUavFlags.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/BufferUavFlags.cs @@ -9,15 +9,15 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_BUFFER_UAV_FLAGS [Flags] public enum BufferUavFlags : uint { - /// + /// /// D3D12_BUFFER_UAV_FLAG_NONE None = 0, - /// + /// /// D3D12_BUFFER_UAV_FLAG_RAW Raw = 1, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/BuildRaytracingAccelerationStructureDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/BuildRaytracingAccelerationStructureDescription.cs index 2af1128..f836b65 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/BuildRaytracingAccelerationStructureDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/BuildRaytracingAccelerationStructureDescription.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_BUILD_RAYTRACING_ACCELERATION_STRUCTURE_DESC public partial struct BuildRaytracingAccelerationStructureDescription { - /// + /// public ulong DestAccelerationStructureData; - /// + /// public BuildRaytracingAccelerationStructureInputs Inputs; - /// + /// public ulong SourceAccelerationStructureData; - /// + /// public ulong ScratchAccelerationStructureData; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/BuildRaytracingAccelerationStructureInputs.cs b/src/Vortice.Win32.Direct3D12/Generated/BuildRaytracingAccelerationStructureInputs.cs index 15cb900..9077eac 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/BuildRaytracingAccelerationStructureInputs.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/BuildRaytracingAccelerationStructureInputs.cs @@ -9,23 +9,23 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_BUILD_RAYTRACING_ACCELERATION_STRUCTURE_INPUTS public partial struct BuildRaytracingAccelerationStructureInputs { - /// + /// public RaytracingAccelerationStructureType Type; - /// + /// public RaytracingAccelerationStructureBuildFlags Flags; - /// + /// public uint NumDescs; - /// + /// public ElementsLayout DescsLayout; - /// + /// public _Anonymous_e__Union Anonymous; [UnscopedRef] @@ -61,15 +61,15 @@ public partial struct BuildRaytracingAccelerationStructureInputs [StructLayout(LayoutKind.Explicit)] public partial struct _Anonymous_e__Union { - /// + /// [FieldOffset(0)] public ulong InstanceDescs; - /// + /// [FieldOffset(0)] public unsafe RaytracingGeometryDescription* pGeometryDescs; - /// + /// [FieldOffset(0)] public unsafe RaytracingGeometryDescription** ppGeometryDescs; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/BuildRaytracingAccelerationStructureToolsVisualizationHeader.cs b/src/Vortice.Win32.Direct3D12/Generated/BuildRaytracingAccelerationStructureToolsVisualizationHeader.cs index 69b9d42..525ea50 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/BuildRaytracingAccelerationStructureToolsVisualizationHeader.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/BuildRaytracingAccelerationStructureToolsVisualizationHeader.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_BUILD_RAYTRACING_ACCELERATION_STRUCTURE_TOOLS_VISUALIZATION_HEADER public partial struct BuildRaytracingAccelerationStructureToolsVisualizationHeader { - /// + /// public RaytracingAccelerationStructureType Type; - /// + /// public uint NumDescs; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/CachedPipelineState.cs b/src/Vortice.Win32.Direct3D12/Generated/CachedPipelineState.cs index ddbf463..fa5fdf9 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/CachedPipelineState.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/CachedPipelineState.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_CACHED_PIPELINE_STATE public partial struct CachedPipelineState { - /// + /// public unsafe void* pCachedBlob; - /// + /// public nuint CachedBlobSizeInBytes; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ClearFlags.cs b/src/Vortice.Win32.Direct3D12/Generated/ClearFlags.cs index 63cc1af..b8e160c 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ClearFlags.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ClearFlags.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_CLEAR_FLAGS [Flags] public enum ClearFlags : uint { None = 0, - /// + /// /// D3D12_CLEAR_FLAG_DEPTH Depth = 1, - /// + /// /// D3D12_CLEAR_FLAG_STENCIL Stencil = 2, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ClearValue.cs b/src/Vortice.Win32.Direct3D12/Generated/ClearValue.cs index 57d174e..233f82f 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ClearValue.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ClearValue.cs @@ -9,14 +9,14 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_CLEAR_VALUE public partial struct ClearValue { - /// + /// public Graphics.Dxgi.Common.Format Format; - /// + /// public _Anonymous_e__Union Anonymous; [UnscopedRef] @@ -42,11 +42,11 @@ public partial struct ClearValue [StructLayout(LayoutKind.Explicit)] public partial struct _Anonymous_e__Union { - /// + /// [FieldOffset(0)] public unsafe fixed float Color[4]; - /// + /// [FieldOffset(0)] public DepthStencilValue DepthStencil; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ColorWriteEnable.cs b/src/Vortice.Win32.Direct3D12/Generated/ColorWriteEnable.cs index e786da1..b51ba48 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ColorWriteEnable.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ColorWriteEnable.cs @@ -9,25 +9,25 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_COLOR_WRITE_ENABLE [Flags] public enum ColorWriteEnable : byte { None = 0, - /// + /// /// D3D12_COLOR_WRITE_ENABLE_RED Red = 1, - /// + /// /// D3D12_COLOR_WRITE_ENABLE_GREEN Green = 2, - /// + /// /// D3D12_COLOR_WRITE_ENABLE_BLUE Blue = 4, - /// + /// /// D3D12_COLOR_WRITE_ENABLE_ALPHA Alpha = 8, - /// + /// /// D3D12_COLOR_WRITE_ENABLE_ALL All = 15, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/CommandListFlags.cs b/src/Vortice.Win32.Direct3D12/Generated/CommandListFlags.cs index 254e688..9a69362 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/CommandListFlags.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/CommandListFlags.cs @@ -9,12 +9,12 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_COMMAND_LIST_FLAGS [Flags] public enum CommandListFlags : uint { - /// + /// /// D3D12_COMMAND_LIST_FLAG_NONE None = 0, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/CommandListSupportFlags.cs b/src/Vortice.Win32.Direct3D12/Generated/CommandListSupportFlags.cs index 10ffc15..96e6c28 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/CommandListSupportFlags.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/CommandListSupportFlags.cs @@ -9,33 +9,33 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_COMMAND_LIST_SUPPORT_FLAGS [Flags] public enum CommandListSupportFlags : uint { - /// + /// /// D3D12_COMMAND_LIST_SUPPORT_FLAG_NONE None = 0, - /// + /// /// D3D12_COMMAND_LIST_SUPPORT_FLAG_DIRECT Direct = 1, - /// + /// /// D3D12_COMMAND_LIST_SUPPORT_FLAG_BUNDLE Bundle = 2, - /// + /// /// D3D12_COMMAND_LIST_SUPPORT_FLAG_COMPUTE Compute = 4, - /// + /// /// D3D12_COMMAND_LIST_SUPPORT_FLAG_COPY Copy = 8, - /// + /// /// D3D12_COMMAND_LIST_SUPPORT_FLAG_VIDEO_DECODE VideoDecode = 16, - /// + /// /// D3D12_COMMAND_LIST_SUPPORT_FLAG_VIDEO_PROCESS VideoProcess = 32, - /// + /// /// D3D12_COMMAND_LIST_SUPPORT_FLAG_VIDEO_ENCODE VideoEncode = 64, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/CommandListType.cs b/src/Vortice.Win32.Direct3D12/Generated/CommandListType.cs index 22166a3..8276045 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/CommandListType.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/CommandListType.cs @@ -9,29 +9,29 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_COMMAND_LIST_TYPE public enum CommandListType : int { - /// + /// /// D3D12_COMMAND_LIST_TYPE_DIRECT Direct = 0, - /// + /// /// D3D12_COMMAND_LIST_TYPE_BUNDLE Bundle = 1, - /// + /// /// D3D12_COMMAND_LIST_TYPE_COMPUTE Compute = 2, - /// + /// /// D3D12_COMMAND_LIST_TYPE_COPY Copy = 3, - /// + /// /// D3D12_COMMAND_LIST_TYPE_VIDEO_DECODE VideoDecode = 4, - /// + /// /// D3D12_COMMAND_LIST_TYPE_VIDEO_PROCESS VideoProcess = 5, - /// + /// /// D3D12_COMMAND_LIST_TYPE_VIDEO_ENCODE VideoEncode = 6, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/CommandPoolFlags.cs b/src/Vortice.Win32.Direct3D12/Generated/CommandPoolFlags.cs index ec609fb..337f8a0 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/CommandPoolFlags.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/CommandPoolFlags.cs @@ -9,12 +9,12 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_COMMAND_POOL_FLAGS [Flags] public enum CommandPoolFlags : uint { - /// + /// /// D3D12_COMMAND_POOL_FLAG_NONE None = 0, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/CommandQueueDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/CommandQueueDescription.cs index 0758e2d..87a138a 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/CommandQueueDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/CommandQueueDescription.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_COMMAND_QUEUE_DESC public partial struct CommandQueueDescription { - /// + /// public CommandListType Type; - /// + /// public int Priority; - /// + /// public CommandQueueFlags Flags; - /// + /// public uint NodeMask; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/CommandQueueFlags.cs b/src/Vortice.Win32.Direct3D12/Generated/CommandQueueFlags.cs index c22810e..545932d 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/CommandQueueFlags.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/CommandQueueFlags.cs @@ -9,15 +9,15 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_COMMAND_QUEUE_FLAGS [Flags] public enum CommandQueueFlags : uint { - /// + /// /// D3D12_COMMAND_QUEUE_FLAG_NONE None = 0, - /// + /// /// D3D12_COMMAND_QUEUE_FLAG_DISABLE_GPU_TIMEOUT DisableGpuTimeout = 1, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/CommandQueuePriority.cs b/src/Vortice.Win32.Direct3D12/Generated/CommandQueuePriority.cs index 279a138..8b62102 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/CommandQueuePriority.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/CommandQueuePriority.cs @@ -9,17 +9,17 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_COMMAND_QUEUE_PRIORITY public enum CommandQueuePriority : int { - /// + /// /// D3D12_COMMAND_QUEUE_PRIORITY_NORMAL Normal = 0, - /// + /// /// D3D12_COMMAND_QUEUE_PRIORITY_HIGH High = 100, - /// + /// /// D3D12_COMMAND_QUEUE_PRIORITY_GLOBAL_REALTIME GlobalRealtime = 10000, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/CommandRecorderFlags.cs b/src/Vortice.Win32.Direct3D12/Generated/CommandRecorderFlags.cs index 4c9978e..088b178 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/CommandRecorderFlags.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/CommandRecorderFlags.cs @@ -9,12 +9,12 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_COMMAND_RECORDER_FLAGS [Flags] public enum CommandRecorderFlags : uint { - /// + /// /// D3D12_COMMAND_RECORDER_FLAG_NONE None = 0, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/CommandSignatureDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/CommandSignatureDescription.cs index da41abc..901f1ac 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/CommandSignatureDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/CommandSignatureDescription.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_COMMAND_SIGNATURE_DESC public partial struct CommandSignatureDescription { - /// + /// public uint ByteStride; - /// + /// public uint NumArgumentDescs; - /// + /// public unsafe IndirectArgumentDescription* pArgumentDescs; - /// + /// public uint NodeMask; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ComparisonFunction.cs b/src/Vortice.Win32.Direct3D12/Generated/ComparisonFunction.cs index ba358e7..8357bef 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ComparisonFunction.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ComparisonFunction.cs @@ -9,32 +9,32 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_COMPARISON_FUNC public enum ComparisonFunction : int { - /// + /// /// D3D12_COMPARISON_FUNC_NEVER Never = 1, - /// + /// /// D3D12_COMPARISON_FUNC_LESS Less = 2, - /// + /// /// D3D12_COMPARISON_FUNC_EQUAL Equal = 3, - /// + /// /// D3D12_COMPARISON_FUNC_LESS_EQUAL LessEqual = 4, - /// + /// /// D3D12_COMPARISON_FUNC_GREATER Greater = 5, - /// + /// /// D3D12_COMPARISON_FUNC_NOT_EQUAL NotEqual = 6, - /// + /// /// D3D12_COMPARISON_FUNC_GREATER_EQUAL GreaterEqual = 7, - /// + /// /// D3D12_COMPARISON_FUNC_ALWAYS Always = 8, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ComputePipelineStateDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/ComputePipelineStateDescription.cs index a6e56d2..cfbe646 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ComputePipelineStateDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ComputePipelineStateDescription.cs @@ -9,22 +9,22 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_COMPUTE_PIPELINE_STATE_DESC public partial struct ComputePipelineStateDescription { - /// + /// public unsafe ID3D12RootSignature* pRootSignature; - /// + /// public ShaderBytecode CS; - /// + /// public uint NodeMask; - /// + /// public CachedPipelineState CachedPSO; - /// + /// public PipelineStateFlags Flags; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ConservativeRasterizationMode.cs b/src/Vortice.Win32.Direct3D12/Generated/ConservativeRasterizationMode.cs index 59a1017..c5f6e70 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ConservativeRasterizationMode.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ConservativeRasterizationMode.cs @@ -9,14 +9,14 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_CONSERVATIVE_RASTERIZATION_MODE public enum ConservativeRasterizationMode : int { - /// + /// /// D3D12_CONSERVATIVE_RASTERIZATION_MODE_OFF Off = 0, - /// + /// /// D3D12_CONSERVATIVE_RASTERIZATION_MODE_ON On = 1, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ConservativeRasterizationTier.cs b/src/Vortice.Win32.Direct3D12/Generated/ConservativeRasterizationTier.cs index 50d5b61..d76c776 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ConservativeRasterizationTier.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ConservativeRasterizationTier.cs @@ -9,20 +9,20 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_CONSERVATIVE_RASTERIZATION_TIER public enum ConservativeRasterizationTier : int { - /// + /// /// D3D12_CONSERVATIVE_RASTERIZATION_TIER_NOT_SUPPORTED NotSupported = 0, - /// + /// /// D3D12_CONSERVATIVE_RASTERIZATION_TIER_1 Tier1 = 1, - /// + /// /// D3D12_CONSERVATIVE_RASTERIZATION_TIER_2 Tier2 = 2, - /// + /// /// D3D12_CONSERVATIVE_RASTERIZATION_TIER_3 Tier3 = 3, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ConstantBufferViewDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/ConstantBufferViewDescription.cs index a4cb636..e6a2a12 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ConstantBufferViewDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ConstantBufferViewDescription.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_CONSTANT_BUFFER_VIEW_DESC public partial struct ConstantBufferViewDescription { - /// + /// public ulong BufferLocation; - /// + /// public uint SizeInBytes; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/CpuDescriptorHandle.cs b/src/Vortice.Win32.Direct3D12/Generated/CpuDescriptorHandle.cs index 41d050f..a19b3a1 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/CpuDescriptorHandle.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/CpuDescriptorHandle.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_CPU_DESCRIPTOR_HANDLE public partial struct CpuDescriptorHandle { - /// + /// public nuint ptr; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/CpuPageProperty.cs b/src/Vortice.Win32.Direct3D12/Generated/CpuPageProperty.cs index e14c987..44431b8 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/CpuPageProperty.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/CpuPageProperty.cs @@ -9,20 +9,20 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_CPU_PAGE_PROPERTY public enum CpuPageProperty : int { - /// + /// /// D3D12_CPU_PAGE_PROPERTY_UNKNOWN Unknown = 0, - /// + /// /// D3D12_CPU_PAGE_PROPERTY_NOT_AVAILABLE NotAvailable = 1, - /// + /// /// D3D12_CPU_PAGE_PROPERTY_WRITE_COMBINE WriteCombine = 2, - /// + /// /// D3D12_CPU_PAGE_PROPERTY_WRITE_BACK WriteBack = 3, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/CrossNodeSharingTier.cs b/src/Vortice.Win32.Direct3D12/Generated/CrossNodeSharingTier.cs index 33805b1..8196ad4 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/CrossNodeSharingTier.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/CrossNodeSharingTier.cs @@ -9,23 +9,23 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_CROSS_NODE_SHARING_TIER public enum CrossNodeSharingTier : int { - /// + /// /// D3D12_CROSS_NODE_SHARING_TIER_NOT_SUPPORTED NotSupported = 0, - /// + /// /// D3D12_CROSS_NODE_SHARING_TIER_1_EMULATED Tier1Emulated = 1, - /// + /// /// D3D12_CROSS_NODE_SHARING_TIER_1 Tier1 = 2, - /// + /// /// D3D12_CROSS_NODE_SHARING_TIER_2 Tier2 = 3, - /// + /// /// D3D12_CROSS_NODE_SHARING_TIER_3 Tier3 = 4, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/CullMode.cs b/src/Vortice.Win32.Direct3D12/Generated/CullMode.cs index 9ed7d9f..1069dd9 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/CullMode.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/CullMode.cs @@ -9,17 +9,17 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_CULL_MODE public enum CullMode : int { - /// + /// /// D3D12_CULL_MODE_NONE None = 1, - /// + /// /// D3D12_CULL_MODE_FRONT Front = 2, - /// + /// /// D3D12_CULL_MODE_BACK Back = 3, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/DebugCommandListGpuBasedValidationSettings.cs b/src/Vortice.Win32.Direct3D12/Generated/DebugCommandListGpuBasedValidationSettings.cs index 850dd22..3a05c7a 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/DebugCommandListGpuBasedValidationSettings.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/DebugCommandListGpuBasedValidationSettings.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_DEBUG_COMMAND_LIST_GPU_BASED_VALIDATION_SETTINGS public partial struct DebugCommandListGpuBasedValidationSettings { - /// + /// public GpuBasedValidationShaderPatchMode ShaderPatchMode; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/DebugCommandListParameterType.cs b/src/Vortice.Win32.Direct3D12/Generated/DebugCommandListParameterType.cs index e3e0699..13b38a4 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/DebugCommandListParameterType.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/DebugCommandListParameterType.cs @@ -9,11 +9,11 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_DEBUG_COMMAND_LIST_PARAMETER_TYPE public enum DebugCommandListParameterType : int { - /// + /// /// D3D12_DEBUG_COMMAND_LIST_PARAMETER_GPU_BASED_VALIDATION_SETTINGS GpuBasedValidationSettings = 0, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/DebugDeviceGpuBasedValidationSettings.cs b/src/Vortice.Win32.Direct3D12/Generated/DebugDeviceGpuBasedValidationSettings.cs index 76826c4..e7eb6e1 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/DebugDeviceGpuBasedValidationSettings.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/DebugDeviceGpuBasedValidationSettings.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_DEBUG_DEVICE_GPU_BASED_VALIDATION_SETTINGS public partial struct DebugDeviceGpuBasedValidationSettings { - /// + /// public uint MaxMessagesPerCommandList; - /// + /// public GpuBasedValidationShaderPatchMode DefaultShaderPatchMode; - /// + /// public GpuBasedValidationPipelineStateCreateFlags PipelineStateCreateFlags; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/DebugDeviceGpuSlowdownPerformanceFactor.cs b/src/Vortice.Win32.Direct3D12/Generated/DebugDeviceGpuSlowdownPerformanceFactor.cs index 3e64072..a62a137 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/DebugDeviceGpuSlowdownPerformanceFactor.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/DebugDeviceGpuSlowdownPerformanceFactor.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_DEBUG_DEVICE_GPU_SLOWDOWN_PERFORMANCE_FACTOR public partial struct DebugDeviceGpuSlowdownPerformanceFactor { - /// + /// public float SlowdownFactor; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/DebugDeviceParameterType.cs b/src/Vortice.Win32.Direct3D12/Generated/DebugDeviceParameterType.cs index a846ac2..b98cff1 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/DebugDeviceParameterType.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/DebugDeviceParameterType.cs @@ -9,17 +9,17 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_DEBUG_DEVICE_PARAMETER_TYPE public enum DebugDeviceParameterType : int { - /// + /// /// D3D12_DEBUG_DEVICE_PARAMETER_FEATURE_FLAGS FeatureFlags = 0, - /// + /// /// D3D12_DEBUG_DEVICE_PARAMETER_GPU_BASED_VALIDATION_SETTINGS GpuBasedValidationSettings = 1, - /// + /// /// D3D12_DEBUG_DEVICE_PARAMETER_GPU_SLOWDOWN_PERFORMANCE_FACTOR GpuSlowdownPerformanceFactor = 2, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/DebugFeature.cs b/src/Vortice.Win32.Direct3D12/Generated/DebugFeature.cs index c1547da..c44d0dd 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/DebugFeature.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/DebugFeature.cs @@ -9,23 +9,23 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_DEBUG_FEATURE public enum DebugFeature : int { - /// + /// /// D3D12_DEBUG_FEATURE_NONE None = 0, - /// + /// /// D3D12_DEBUG_FEATURE_ALLOW_BEHAVIOR_CHANGING_DEBUG_AIDS AllowBehaviorChangingDebugAids = 1, - /// + /// /// D3D12_DEBUG_FEATURE_CONSERVATIVE_RESOURCE_STATE_TRACKING ConservativeResourceStateTracking = 2, - /// + /// /// D3D12_DEBUG_FEATURE_DISABLE_VIRTUALIZED_BUNDLES_VALIDATION DisableVirtualizedBundlesValidation = 4, - /// + /// /// D3D12_DEBUG_FEATURE_EMULATE_WINDOWS7 EmulateWindows7 = 8, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/DepthStencilDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/DepthStencilDescription.cs index d82118b..e6a4750 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/DepthStencilDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/DepthStencilDescription.cs @@ -9,31 +9,31 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_DEPTH_STENCIL_DESC public partial struct DepthStencilDescription { - /// + /// public Bool32 DepthEnable; - /// + /// public DepthWriteMask DepthWriteMask; - /// + /// public ComparisonFunction DepthFunc; - /// + /// public Bool32 StencilEnable; - /// + /// public byte StencilReadMask; - /// + /// public byte StencilWriteMask; - /// + /// public DepthStencilOperationDescription FrontFace; - /// + /// public DepthStencilOperationDescription BackFace; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/DepthStencilDescription1.cs b/src/Vortice.Win32.Direct3D12/Generated/DepthStencilDescription1.cs index 105a07d..f341154 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/DepthStencilDescription1.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/DepthStencilDescription1.cs @@ -9,34 +9,34 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_DEPTH_STENCIL_DESC1 public partial struct DepthStencilDescription1 { - /// + /// public Bool32 DepthEnable; - /// + /// public DepthWriteMask DepthWriteMask; - /// + /// public ComparisonFunction DepthFunc; - /// + /// public Bool32 StencilEnable; - /// + /// public byte StencilReadMask; - /// + /// public byte StencilWriteMask; - /// + /// public DepthStencilOperationDescription FrontFace; - /// + /// public DepthStencilOperationDescription BackFace; - /// + /// public Bool32 DepthBoundsTestEnable; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/DepthStencilOperationDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/DepthStencilOperationDescription.cs index 0c03e3f..a3b525f 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/DepthStencilOperationDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/DepthStencilOperationDescription.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_DEPTH_STENCILOP_DESC public partial struct DepthStencilOperationDescription { - /// + /// public StencilOperation StencilFailOp; - /// + /// public StencilOperation StencilDepthFailOp; - /// + /// public StencilOperation StencilPassOp; - /// + /// public ComparisonFunction StencilFunc; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/DepthStencilValue.cs b/src/Vortice.Win32.Direct3D12/Generated/DepthStencilValue.cs index 2ec5545..000be5d 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/DepthStencilValue.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/DepthStencilValue.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_DEPTH_STENCIL_VALUE public partial struct DepthStencilValue { - /// + /// public float Depth; - /// + /// public byte Stencil; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/DepthStencilViewDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/DepthStencilViewDescription.cs index f0904e7..95cf5e8 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/DepthStencilViewDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/DepthStencilViewDescription.cs @@ -9,20 +9,20 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_DEPTH_STENCIL_VIEW_DESC public partial struct DepthStencilViewDescription { - /// + /// public Graphics.Dxgi.Common.Format Format; - /// + /// public DsvDimension ViewDimension; - /// + /// public DsvFlags Flags; - /// + /// public _Anonymous_e__Union Anonymous; [UnscopedRef] @@ -88,27 +88,27 @@ public partial struct DepthStencilViewDescription [StructLayout(LayoutKind.Explicit)] public partial struct _Anonymous_e__Union { - /// + /// [FieldOffset(0)] public Texture1DDsv Texture1D; - /// + /// [FieldOffset(0)] public Texture1DArrayDsv Texture1DArray; - /// + /// [FieldOffset(0)] public Texture2DDsv Texture2D; - /// + /// [FieldOffset(0)] public Texture2DArrayDsv Texture2DArray; - /// + /// [FieldOffset(0)] public Texture2DMsDsv Texture2DMS; - /// + /// [FieldOffset(0)] public Texture2DMsArrayDsv Texture2DMSArray; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/DepthWriteMask.cs b/src/Vortice.Win32.Direct3D12/Generated/DepthWriteMask.cs index 198ea63..21699d9 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/DepthWriteMask.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/DepthWriteMask.cs @@ -9,14 +9,14 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_DEPTH_WRITE_MASK public enum DepthWriteMask : int { - /// + /// /// D3D12_DEPTH_WRITE_MASK_ZERO Zero = 0, - /// + /// /// D3D12_DEPTH_WRITE_MASK_ALL All = 1, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/DescriptorHeapDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/DescriptorHeapDescription.cs index fc07a39..ed8fa69 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/DescriptorHeapDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/DescriptorHeapDescription.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_DESCRIPTOR_HEAP_DESC public partial struct DescriptorHeapDescription { - /// + /// public DescriptorHeapType Type; - /// + /// public uint NumDescriptors; - /// + /// public DescriptorHeapFlags Flags; - /// + /// public uint NodeMask; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/DescriptorHeapFlags.cs b/src/Vortice.Win32.Direct3D12/Generated/DescriptorHeapFlags.cs index a7d1154..7ead92e 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/DescriptorHeapFlags.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/DescriptorHeapFlags.cs @@ -9,15 +9,15 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_DESCRIPTOR_HEAP_FLAGS [Flags] public enum DescriptorHeapFlags : uint { - /// + /// /// D3D12_DESCRIPTOR_HEAP_FLAG_NONE None = 0, - /// + /// /// D3D12_DESCRIPTOR_HEAP_FLAG_SHADER_VISIBLE ShaderVisible = 1, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/DescriptorHeapType.cs b/src/Vortice.Win32.Direct3D12/Generated/DescriptorHeapType.cs index f58ecea..0b0c95e 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/DescriptorHeapType.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/DescriptorHeapType.cs @@ -9,23 +9,23 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_DESCRIPTOR_HEAP_TYPE public enum DescriptorHeapType : int { - /// + /// /// D3D12_DESCRIPTOR_HEAP_TYPE_CBV_SRV_UAV CbvSrvUav = 0, - /// + /// /// D3D12_DESCRIPTOR_HEAP_TYPE_SAMPLER Sampler = 1, - /// + /// /// D3D12_DESCRIPTOR_HEAP_TYPE_RTV Rtv = 2, - /// + /// /// D3D12_DESCRIPTOR_HEAP_TYPE_DSV Dsv = 3, - /// + /// /// D3D12_DESCRIPTOR_HEAP_TYPE_NUM_TYPES NumTypes = 4, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/DescriptorRange.cs b/src/Vortice.Win32.Direct3D12/Generated/DescriptorRange.cs index cf070f1..2b0aa85 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/DescriptorRange.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/DescriptorRange.cs @@ -9,22 +9,22 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_DESCRIPTOR_RANGE public partial struct DescriptorRange { - /// + /// public DescriptorRangeType RangeType; - /// + /// public uint NumDescriptors; - /// + /// public uint BaseShaderRegister; - /// + /// public uint RegisterSpace; - /// + /// public uint OffsetInDescriptorsFromTableStart; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/DescriptorRange1.cs b/src/Vortice.Win32.Direct3D12/Generated/DescriptorRange1.cs index 749df87..ae7c40c 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/DescriptorRange1.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/DescriptorRange1.cs @@ -9,25 +9,25 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_DESCRIPTOR_RANGE1 public partial struct DescriptorRange1 { - /// + /// public DescriptorRangeType RangeType; - /// + /// public uint NumDescriptors; - /// + /// public uint BaseShaderRegister; - /// + /// public uint RegisterSpace; - /// + /// public DescriptorRangeFlags Flags; - /// + /// public uint OffsetInDescriptorsFromTableStart; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/DescriptorRangeFlags.cs b/src/Vortice.Win32.Direct3D12/Generated/DescriptorRangeFlags.cs index ae28fc7..53c3ca9 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/DescriptorRangeFlags.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/DescriptorRangeFlags.cs @@ -9,27 +9,27 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_DESCRIPTOR_RANGE_FLAGS [Flags] public enum DescriptorRangeFlags : uint { - /// + /// /// D3D12_DESCRIPTOR_RANGE_FLAG_NONE None = 0, - /// + /// /// D3D12_DESCRIPTOR_RANGE_FLAG_DESCRIPTORS_VOLATILE DescriptorsVolatile = 1, - /// + /// /// D3D12_DESCRIPTOR_RANGE_FLAG_DATA_VOLATILE DataVolatile = 2, - /// + /// /// D3D12_DESCRIPTOR_RANGE_FLAG_DATA_STATIC_WHILE_SET_AT_EXECUTE DataStaticWhileSetAtExecute = 4, - /// + /// /// D3D12_DESCRIPTOR_RANGE_FLAG_DATA_STATIC DataStatic = 8, - /// + /// /// D3D12_DESCRIPTOR_RANGE_FLAG_DESCRIPTORS_STATIC_KEEPING_BUFFER_BOUNDS_CHECKS DescriptorsStaticKeepingBufferBoundsChecks = 65536, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/DescriptorRangeType.cs b/src/Vortice.Win32.Direct3D12/Generated/DescriptorRangeType.cs index 92c6a97..514c7a4 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/DescriptorRangeType.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/DescriptorRangeType.cs @@ -9,20 +9,20 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_DESCRIPTOR_RANGE_TYPE public enum DescriptorRangeType : int { - /// + /// /// D3D12_DESCRIPTOR_RANGE_TYPE_SRV Srv = 0, - /// + /// /// D3D12_DESCRIPTOR_RANGE_TYPE_UAV Uav = 1, - /// + /// /// D3D12_DESCRIPTOR_RANGE_TYPE_CBV Cbv = 2, - /// + /// /// D3D12_DESCRIPTOR_RANGE_TYPE_SAMPLER Sampler = 3, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/DeviceRemovedExtendedData.cs b/src/Vortice.Win32.Direct3D12/Generated/DeviceRemovedExtendedData.cs index b88d560..8f0e1c1 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/DeviceRemovedExtendedData.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/DeviceRemovedExtendedData.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_DEVICE_REMOVED_EXTENDED_DATA public partial struct DeviceRemovedExtendedData { - /// + /// public DredFlags Flags; - /// + /// public unsafe AutoBreadcrumbNode* pHeadAutoBreadcrumbNode; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/DeviceRemovedExtendedData1.cs b/src/Vortice.Win32.Direct3D12/Generated/DeviceRemovedExtendedData1.cs index 9855374..6e31483 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/DeviceRemovedExtendedData1.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/DeviceRemovedExtendedData1.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_DEVICE_REMOVED_EXTENDED_DATA1 public partial struct DeviceRemovedExtendedData1 { - /// + /// public HResult DeviceRemovedReason; - /// + /// public DredAutoBreadcrumbsOutput AutoBreadcrumbsOutput; - /// + /// public DredPageFaultOutput PageFaultOutput; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/DeviceRemovedExtendedData2.cs b/src/Vortice.Win32.Direct3D12/Generated/DeviceRemovedExtendedData2.cs index a3e1be1..9f586e7 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/DeviceRemovedExtendedData2.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/DeviceRemovedExtendedData2.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_DEVICE_REMOVED_EXTENDED_DATA2 public partial struct DeviceRemovedExtendedData2 { - /// + /// public HResult DeviceRemovedReason; - /// + /// public DredAutoBreadcrumbsOutput1 AutoBreadcrumbsOutput; - /// + /// public DredPageFaultOutput1 PageFaultOutput; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/DeviceRemovedExtendedData3.cs b/src/Vortice.Win32.Direct3D12/Generated/DeviceRemovedExtendedData3.cs index 6770ca4..eeabf93 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/DeviceRemovedExtendedData3.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/DeviceRemovedExtendedData3.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_DEVICE_REMOVED_EXTENDED_DATA3 public partial struct DeviceRemovedExtendedData3 { - /// + /// public HResult DeviceRemovedReason; - /// + /// public DredAutoBreadcrumbsOutput1 AutoBreadcrumbsOutput; - /// + /// public DredPageFaultOutput2 PageFaultOutput; - /// + /// public DredDeviceState DeviceState; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/DiscardRegion.cs b/src/Vortice.Win32.Direct3D12/Generated/DiscardRegion.cs index 9e31976..b0769db 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/DiscardRegion.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/DiscardRegion.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_DISCARD_REGION public partial struct DiscardRegion { - /// + /// public uint NumRects; - /// + /// public unsafe RawRect* pRects; - /// + /// public uint FirstSubresource; - /// + /// public uint NumSubresources; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/DispatchArguments.cs b/src/Vortice.Win32.Direct3D12/Generated/DispatchArguments.cs index 4c11df8..11050a4 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/DispatchArguments.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/DispatchArguments.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_DISPATCH_ARGUMENTS public partial struct DispatchArguments { - /// + /// public uint ThreadGroupCountX; - /// + /// public uint ThreadGroupCountY; - /// + /// public uint ThreadGroupCountZ; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/DispatchMeshArguments.cs b/src/Vortice.Win32.Direct3D12/Generated/DispatchMeshArguments.cs index 08a3cf2..2fdd42d 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/DispatchMeshArguments.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/DispatchMeshArguments.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_DISPATCH_MESH_ARGUMENTS public partial struct DispatchMeshArguments { - /// + /// public uint ThreadGroupCountX; - /// + /// public uint ThreadGroupCountY; - /// + /// public uint ThreadGroupCountZ; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/DispatchRaysDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/DispatchRaysDescription.cs index 3b777b7..44d3727 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/DispatchRaysDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/DispatchRaysDescription.cs @@ -9,28 +9,28 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_DISPATCH_RAYS_DESC public partial struct DispatchRaysDescription { - /// + /// public GpuVirtualAddressRange RayGenerationShaderRecord; - /// + /// public GpuVirtualAddressRangeAndStride MissShaderTable; - /// + /// public GpuVirtualAddressRangeAndStride HitGroupTable; - /// + /// public GpuVirtualAddressRangeAndStride CallableShaderTable; - /// + /// public uint Width; - /// + /// public uint Height; - /// + /// public uint Depth; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/DrawArguments.cs b/src/Vortice.Win32.Direct3D12/Generated/DrawArguments.cs index 4dbdc53..fb794d0 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/DrawArguments.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/DrawArguments.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_DRAW_ARGUMENTS public partial struct DrawArguments { - /// + /// public uint VertexCountPerInstance; - /// + /// public uint InstanceCount; - /// + /// public uint StartVertexLocation; - /// + /// public uint StartInstanceLocation; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/DrawIndexedArguments.cs b/src/Vortice.Win32.Direct3D12/Generated/DrawIndexedArguments.cs index f83f67b..d990345 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/DrawIndexedArguments.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/DrawIndexedArguments.cs @@ -9,22 +9,22 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_DRAW_INDEXED_ARGUMENTS public partial struct DrawIndexedArguments { - /// + /// public uint IndexCountPerInstance; - /// + /// public uint InstanceCount; - /// + /// public uint StartIndexLocation; - /// + /// public int BaseVertexLocation; - /// + /// public uint StartInstanceLocation; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/DredAllocationNode.cs b/src/Vortice.Win32.Direct3D12/Generated/DredAllocationNode.cs index 2622d62..a6b9cd1 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/DredAllocationNode.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/DredAllocationNode.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_DRED_ALLOCATION_NODE public partial struct DredAllocationNode { - /// + /// public unsafe byte* ObjectNameA; - /// + /// public unsafe ushort* ObjectNameW; - /// + /// public DredAllocationType AllocationType; - /// + /// public unsafe DredAllocationNode* pNext; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/DredAllocationNode1.cs b/src/Vortice.Win32.Direct3D12/Generated/DredAllocationNode1.cs index 32a4461..a6676a6 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/DredAllocationNode1.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/DredAllocationNode1.cs @@ -9,22 +9,22 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_DRED_ALLOCATION_NODE1 public partial struct DredAllocationNode1 { - /// + /// public unsafe byte* ObjectNameA; - /// + /// public unsafe ushort* ObjectNameW; - /// + /// public DredAllocationType AllocationType; - /// + /// public unsafe DredAllocationNode1* pNext; - /// + /// public unsafe IUnknown* pObject; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/DredAllocationType.cs b/src/Vortice.Win32.Direct3D12/Generated/DredAllocationType.cs index 55948fd..d00088c 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/DredAllocationType.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/DredAllocationType.cs @@ -9,95 +9,95 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_DRED_ALLOCATION_TYPE public enum DredAllocationType : int { - /// + /// /// D3D12_DRED_ALLOCATION_TYPE_COMMAND_QUEUE CommandQueue = 19, - /// + /// /// D3D12_DRED_ALLOCATION_TYPE_COMMAND_ALLOCATOR CommandAllocator = 20, - /// + /// /// D3D12_DRED_ALLOCATION_TYPE_PIPELINE_STATE PipelineState = 21, - /// + /// /// D3D12_DRED_ALLOCATION_TYPE_COMMAND_LIST CommandList = 22, - /// + /// /// D3D12_DRED_ALLOCATION_TYPE_FENCE Fence = 23, - /// + /// /// D3D12_DRED_ALLOCATION_TYPE_DESCRIPTOR_HEAP DescriptorHeap = 24, - /// + /// /// D3D12_DRED_ALLOCATION_TYPE_HEAP Heap = 25, - /// + /// /// D3D12_DRED_ALLOCATION_TYPE_QUERY_HEAP QueryHeap = 27, - /// + /// /// D3D12_DRED_ALLOCATION_TYPE_COMMAND_SIGNATURE CommandSignature = 28, - /// + /// /// D3D12_DRED_ALLOCATION_TYPE_PIPELINE_LIBRARY PipelineLibrary = 29, - /// + /// /// D3D12_DRED_ALLOCATION_TYPE_VIDEO_DECODER VideoDecoder = 30, - /// + /// /// D3D12_DRED_ALLOCATION_TYPE_VIDEO_PROCESSOR VideoProcessor = 32, - /// + /// /// D3D12_DRED_ALLOCATION_TYPE_RESOURCE Resource = 34, - /// + /// /// D3D12_DRED_ALLOCATION_TYPE_PASS Pass = 35, - /// + /// /// D3D12_DRED_ALLOCATION_TYPE_CRYPTOSESSION CryptoSession = 36, - /// + /// /// D3D12_DRED_ALLOCATION_TYPE_CRYPTOSESSIONPOLICY CryptoSessionPolicy = 37, - /// + /// /// D3D12_DRED_ALLOCATION_TYPE_PROTECTEDRESOURCESESSION ProtectedResourceSession = 38, - /// + /// /// D3D12_DRED_ALLOCATION_TYPE_VIDEO_DECODER_HEAP VideoDecoderHeap = 39, - /// + /// /// D3D12_DRED_ALLOCATION_TYPE_COMMAND_POOL CommandPool = 40, - /// + /// /// D3D12_DRED_ALLOCATION_TYPE_COMMAND_RECORDER CommandRecorder = 41, - /// + /// /// D3D12_DRED_ALLOCATION_TYPE_STATE_OBJECT StateObject = 42, - /// + /// /// D3D12_DRED_ALLOCATION_TYPE_METACOMMAND MetaCommand = 43, - /// + /// /// D3D12_DRED_ALLOCATION_TYPE_SCHEDULINGGROUP SchedulingGroup = 44, - /// + /// /// D3D12_DRED_ALLOCATION_TYPE_VIDEO_MOTION_ESTIMATOR VideoMotionEstimator = 45, - /// + /// /// D3D12_DRED_ALLOCATION_TYPE_VIDEO_MOTION_VECTOR_HEAP VideoMotionVectorHeap = 46, - /// + /// /// D3D12_DRED_ALLOCATION_TYPE_VIDEO_EXTENSION_COMMAND VideoExtensionCommand = 47, - /// + /// /// D3D12_DRED_ALLOCATION_TYPE_VIDEO_ENCODER VideoEncoder = 48, - /// + /// /// D3D12_DRED_ALLOCATION_TYPE_VIDEO_ENCODER_HEAP VideoEncoderHeap = 49, - /// + /// /// D3D12_DRED_ALLOCATION_TYPE_INVALID Invalid = -1, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/DredAutoBreadcrumbsOutput.cs b/src/Vortice.Win32.Direct3D12/Generated/DredAutoBreadcrumbsOutput.cs index 0f78653..fb5b2db 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/DredAutoBreadcrumbsOutput.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/DredAutoBreadcrumbsOutput.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_DRED_AUTO_BREADCRUMBS_OUTPUT public partial struct DredAutoBreadcrumbsOutput { - /// + /// public unsafe AutoBreadcrumbNode* pHeadAutoBreadcrumbNode; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/DredAutoBreadcrumbsOutput1.cs b/src/Vortice.Win32.Direct3D12/Generated/DredAutoBreadcrumbsOutput1.cs index 9360576..3d3c83e 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/DredAutoBreadcrumbsOutput1.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/DredAutoBreadcrumbsOutput1.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_DRED_AUTO_BREADCRUMBS_OUTPUT1 public partial struct DredAutoBreadcrumbsOutput1 { - /// + /// public unsafe AutoBreadcrumbNode1* pHeadAutoBreadcrumbNode; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/DredBreadcrumbContext.cs b/src/Vortice.Win32.Direct3D12/Generated/DredBreadcrumbContext.cs index 67b052b..5c4aa2e 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/DredBreadcrumbContext.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/DredBreadcrumbContext.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_DRED_BREADCRUMB_CONTEXT public partial struct DredBreadcrumbContext { - /// + /// public uint BreadcrumbIndex; - /// + /// public unsafe ushort* pContextString; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/DredDeviceState.cs b/src/Vortice.Win32.Direct3D12/Generated/DredDeviceState.cs index c6ce36d..dd2c526 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/DredDeviceState.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/DredDeviceState.cs @@ -9,20 +9,20 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_DRED_DEVICE_STATE public enum DredDeviceState : int { - /// + /// /// D3D12_DRED_DEVICE_STATE_UNKNOWN Unknown = 0, - /// + /// /// D3D12_DRED_DEVICE_STATE_HUNG Hung = 3, - /// + /// /// D3D12_DRED_DEVICE_STATE_FAULT Fault = 6, - /// + /// /// D3D12_DRED_DEVICE_STATE_PAGEFAULT Pagefault = 7, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/DredEnablement.cs b/src/Vortice.Win32.Direct3D12/Generated/DredEnablement.cs index 1ac51a9..d0ed530 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/DredEnablement.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/DredEnablement.cs @@ -9,17 +9,17 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_DRED_ENABLEMENT public enum DredEnablement : int { - /// + /// /// D3D12_DRED_ENABLEMENT_SYSTEM_CONTROLLED SystemControlled = 0, - /// + /// /// D3D12_DRED_ENABLEMENT_FORCED_OFF ForcedOff = 1, - /// + /// /// D3D12_DRED_ENABLEMENT_FORCED_ON ForcedOn = 2, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/DredFlags.cs b/src/Vortice.Win32.Direct3D12/Generated/DredFlags.cs index f988cfc..70aeb96 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/DredFlags.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/DredFlags.cs @@ -9,18 +9,18 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_DRED_FLAGS [Flags] public enum DredFlags : uint { - /// + /// /// D3D12_DRED_FLAG_NONE None = 0, - /// + /// /// D3D12_DRED_FLAG_FORCE_ENABLE ForceEnable = 1, - /// + /// /// D3D12_DRED_FLAG_DISABLE_AUTOBREADCRUMBS DisableAutobreadcrumbs = 2, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/DredPageFaultFlags.cs b/src/Vortice.Win32.Direct3D12/Generated/DredPageFaultFlags.cs index 595df16..f8192d9 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/DredPageFaultFlags.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/DredPageFaultFlags.cs @@ -9,12 +9,12 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_DRED_PAGE_FAULT_FLAGS [Flags] public enum DredPageFaultFlags : uint { - /// + /// /// D3D12_DRED_PAGE_FAULT_FLAGS_NONE None = 0, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/DredPageFaultOutput.cs b/src/Vortice.Win32.Direct3D12/Generated/DredPageFaultOutput.cs index 94012d7..8adc5a9 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/DredPageFaultOutput.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/DredPageFaultOutput.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_DRED_PAGE_FAULT_OUTPUT public partial struct DredPageFaultOutput { - /// + /// public ulong PageFaultVA; - /// + /// public unsafe DredAllocationNode* pHeadExistingAllocationNode; - /// + /// public unsafe DredAllocationNode* pHeadRecentFreedAllocationNode; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/DredPageFaultOutput1.cs b/src/Vortice.Win32.Direct3D12/Generated/DredPageFaultOutput1.cs index c5e9716..e887958 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/DredPageFaultOutput1.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/DredPageFaultOutput1.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_DRED_PAGE_FAULT_OUTPUT1 public partial struct DredPageFaultOutput1 { - /// + /// public ulong PageFaultVA; - /// + /// public unsafe DredAllocationNode1* pHeadExistingAllocationNode; - /// + /// public unsafe DredAllocationNode1* pHeadRecentFreedAllocationNode; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/DredPageFaultOutput2.cs b/src/Vortice.Win32.Direct3D12/Generated/DredPageFaultOutput2.cs index b7e3873..ec26a31 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/DredPageFaultOutput2.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/DredPageFaultOutput2.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_DRED_PAGE_FAULT_OUTPUT2 public partial struct DredPageFaultOutput2 { - /// + /// public ulong PageFaultVA; - /// + /// public unsafe DredAllocationNode1* pHeadExistingAllocationNode; - /// + /// public unsafe DredAllocationNode1* pHeadRecentFreedAllocationNode; - /// + /// public DredPageFaultFlags PageFaultFlags; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/DredVersion.cs b/src/Vortice.Win32.Direct3D12/Generated/DredVersion.cs index 6c134ab..302ed23 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/DredVersion.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/DredVersion.cs @@ -9,20 +9,20 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_DRED_VERSION public enum DredVersion : int { - /// + /// /// D3D12_DRED_VERSION_1_0 V1_0 = 1, - /// + /// /// D3D12_DRED_VERSION_1_1 V1_1 = 2, - /// + /// /// D3D12_DRED_VERSION_1_2 V1_2 = 3, - /// + /// /// D3D12_DRED_VERSION_1_3 V1_3 = 4, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/DriverMatchingIdentifierStatus.cs b/src/Vortice.Win32.Direct3D12/Generated/DriverMatchingIdentifierStatus.cs index 1dcd704..ac637a8 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/DriverMatchingIdentifierStatus.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/DriverMatchingIdentifierStatus.cs @@ -9,23 +9,23 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_DRIVER_MATCHING_IDENTIFIER_STATUS public enum DriverMatchingIdentifierStatus : int { - /// + /// /// D3D12_DRIVER_MATCHING_IDENTIFIER_COMPATIBLE_WITH_DEVICE CompatibleWithDevice = 0, - /// + /// /// D3D12_DRIVER_MATCHING_IDENTIFIER_UNSUPPORTED_TYPE UnsupportedType = 1, - /// + /// /// D3D12_DRIVER_MATCHING_IDENTIFIER_UNRECOGNIZED Unrecognized = 2, - /// + /// /// D3D12_DRIVER_MATCHING_IDENTIFIER_INCOMPATIBLE_VERSION IncompatibleVersion = 3, - /// + /// /// D3D12_DRIVER_MATCHING_IDENTIFIER_INCOMPATIBLE_TYPE IncompatibleType = 4, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/DsvDimension.cs b/src/Vortice.Win32.Direct3D12/Generated/DsvDimension.cs index 6b79e50..b752367 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/DsvDimension.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/DsvDimension.cs @@ -9,29 +9,29 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_DSV_DIMENSION public enum DsvDimension : int { - /// + /// /// D3D12_DSV_DIMENSION_UNKNOWN Unknown = 0, - /// + /// /// D3D12_DSV_DIMENSION_TEXTURE1D Texture1D = 1, - /// + /// /// D3D12_DSV_DIMENSION_TEXTURE1DARRAY Texture1DArray = 2, - /// + /// /// D3D12_DSV_DIMENSION_TEXTURE2D Texture2D = 3, - /// + /// /// D3D12_DSV_DIMENSION_TEXTURE2DARRAY Texture2DArray = 4, - /// + /// /// D3D12_DSV_DIMENSION_TEXTURE2DMS Texture2DMs = 5, - /// + /// /// D3D12_DSV_DIMENSION_TEXTURE2DMSARRAY Texture2DMsArray = 6, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/DsvFlags.cs b/src/Vortice.Win32.Direct3D12/Generated/DsvFlags.cs index 201a2d4..46e35fb 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/DsvFlags.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/DsvFlags.cs @@ -9,18 +9,18 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_DSV_FLAGS [Flags] public enum DsvFlags : uint { - /// + /// /// D3D12_DSV_FLAG_NONE None = 0, - /// + /// /// D3D12_DSV_FLAG_READ_ONLY_DEPTH ReadOnlyDepth = 1, - /// + /// /// D3D12_DSV_FLAG_READ_ONLY_STENCIL ReadOnlyStencil = 2, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/DxilLibraryDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/DxilLibraryDescription.cs index 7d6c81c..04af826 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/DxilLibraryDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/DxilLibraryDescription.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_DXIL_LIBRARY_DESC public partial struct DxilLibraryDescription { - /// + /// public ShaderBytecode DXILLibrary; - /// + /// public uint NumExports; - /// + /// public unsafe ExportDescription* pExports; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/DxilSubObjectToExportsAssociation.cs b/src/Vortice.Win32.Direct3D12/Generated/DxilSubObjectToExportsAssociation.cs index 8406628..bbe7b6e 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/DxilSubObjectToExportsAssociation.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/DxilSubObjectToExportsAssociation.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_DXIL_SUBOBJECT_TO_EXPORTS_ASSOCIATION public partial struct DxilSubObjectToExportsAssociation { - /// + /// public unsafe ushort* SubobjectToAssociate; - /// + /// public uint NumExports; - /// + /// public unsafe ushort** pExports; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ElementsLayout.cs b/src/Vortice.Win32.Direct3D12/Generated/ElementsLayout.cs index 4f4eeb7..9b0cbbf 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ElementsLayout.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ElementsLayout.cs @@ -9,14 +9,14 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_ELEMENTS_LAYOUT public enum ElementsLayout : int { - /// + /// /// D3D12_ELEMENTS_LAYOUT_ARRAY Array = 0, - /// + /// /// D3D12_ELEMENTS_LAYOUT_ARRAY_OF_POINTERS ArrayOfPointers = 1, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ExistingCollectionDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/ExistingCollectionDescription.cs index de52566..5793781 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ExistingCollectionDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ExistingCollectionDescription.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_EXISTING_COLLECTION_DESC public partial struct ExistingCollectionDescription { - /// + /// public unsafe ID3D12StateObject* pExistingCollection; - /// + /// public uint NumExports; - /// + /// public unsafe ExportDescription* pExports; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ExportDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/ExportDescription.cs index 46a4317..2c3839c 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ExportDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ExportDescription.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_EXPORT_DESC public partial struct ExportDescription { - /// + /// public unsafe ushort* Name; - /// + /// public unsafe ushort* ExportToRename; - /// + /// public ExportFlags Flags; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ExportFlags.cs b/src/Vortice.Win32.Direct3D12/Generated/ExportFlags.cs index 4a0b284..fdd81fb 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ExportFlags.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ExportFlags.cs @@ -9,12 +9,12 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_EXPORT_FLAGS [Flags] public enum ExportFlags : uint { - /// + /// /// D3D12_EXPORT_FLAG_NONE None = 0, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/Feature.cs b/src/Vortice.Win32.Direct3D12/Generated/Feature.cs index 8e3f3e2..42d5f88 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/Feature.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/Feature.cs @@ -9,101 +9,101 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_FEATURE public enum Feature : int { - /// + /// /// D3D12_FEATURE_D3D12_OPTIONS Options = 0, - /// + /// /// D3D12_FEATURE_ARCHITECTURE Architecture = 1, - /// + /// /// D3D12_FEATURE_FEATURE_LEVELS FeatureLevels = 2, - /// + /// /// D3D12_FEATURE_FORMAT_SUPPORT FormatSupport = 3, - /// + /// /// D3D12_FEATURE_MULTISAMPLE_QUALITY_LEVELS MultisampleQualityLevels = 4, - /// + /// /// D3D12_FEATURE_FORMAT_INFO FormatInfo = 5, - /// + /// /// D3D12_FEATURE_GPU_VIRTUAL_ADDRESS_SUPPORT GpuVirtualAddressSupport = 6, - /// + /// /// D3D12_FEATURE_SHADER_MODEL ShaderModel = 7, - /// + /// /// D3D12_FEATURE_D3D12_OPTIONS1 Options1 = 8, - /// + /// /// D3D12_FEATURE_PROTECTED_RESOURCE_SESSION_SUPPORT ProtectedResourceSessionSupport = 10, - /// + /// /// D3D12_FEATURE_ROOT_SIGNATURE RootSignature = 12, - /// + /// /// D3D12_FEATURE_ARCHITECTURE1 Architecture1 = 16, - /// + /// /// D3D12_FEATURE_D3D12_OPTIONS2 Options2 = 18, - /// + /// /// D3D12_FEATURE_SHADER_CACHE ShaderCache = 19, - /// + /// /// D3D12_FEATURE_COMMAND_QUEUE_PRIORITY CommandQueuePriority = 20, - /// + /// /// D3D12_FEATURE_D3D12_OPTIONS3 Options3 = 21, - /// + /// /// D3D12_FEATURE_EXISTING_HEAPS ExistingHeaps = 22, - /// + /// /// D3D12_FEATURE_D3D12_OPTIONS4 Options4 = 23, - /// + /// /// D3D12_FEATURE_SERIALIZATION Serialization = 24, - /// + /// /// D3D12_FEATURE_CROSS_NODE CrossNode = 25, - /// + /// /// D3D12_FEATURE_D3D12_OPTIONS5 Options5 = 27, - /// + /// /// D3D12_FEATURE_DISPLAYABLE Displayable = 28, - /// + /// /// D3D12_FEATURE_D3D12_OPTIONS6 Options6 = 30, - /// + /// /// D3D12_FEATURE_QUERY_META_COMMAND QueryMetaCommand = 31, - /// + /// /// D3D12_FEATURE_D3D12_OPTIONS7 Options7 = 32, - /// + /// /// D3D12_FEATURE_PROTECTED_RESOURCE_SESSION_TYPE_COUNT ProtectedResourceSessionTypeCount = 33, - /// + /// /// D3D12_FEATURE_PROTECTED_RESOURCE_SESSION_TYPES ProtectedResourceSessionTypes = 34, - /// + /// /// D3D12_FEATURE_D3D12_OPTIONS8 Options8 = 36, - /// + /// /// D3D12_FEATURE_D3D12_OPTIONS9 Options9 = 37, - /// + /// /// D3D12_FEATURE_D3D12_OPTIONS10 Options10 = 39, - /// + /// /// D3D12_FEATURE_D3D12_OPTIONS11 Options11 = 40, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataArchitecture.cs b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataArchitecture.cs index 3671a00..4114904 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataArchitecture.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataArchitecture.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_FEATURE_DATA_ARCHITECTURE public partial struct FeatureDataArchitecture { - /// + /// public uint NodeIndex; - /// + /// public Bool32 TileBasedRenderer; - /// + /// public Bool32 UMA; - /// + /// public Bool32 CacheCoherentUMA; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataArchitecture1.cs b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataArchitecture1.cs index c98fb82..26f9288 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataArchitecture1.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataArchitecture1.cs @@ -9,22 +9,22 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_FEATURE_DATA_ARCHITECTURE1 public partial struct FeatureDataArchitecture1 { - /// + /// public uint NodeIndex; - /// + /// public Bool32 TileBasedRenderer; - /// + /// public Bool32 UMA; - /// + /// public Bool32 CacheCoherentUMA; - /// + /// public Bool32 IsolatedMMU; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataCommandQueuePriority.cs b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataCommandQueuePriority.cs index 54a05b1..03f593a 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataCommandQueuePriority.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataCommandQueuePriority.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_FEATURE_DATA_COMMAND_QUEUE_PRIORITY public partial struct FeatureDataCommandQueuePriority { - /// + /// public CommandListType CommandListType; - /// + /// public uint Priority; - /// + /// public Bool32 PriorityForTypeIsSupported; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataCrossNode.cs b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataCrossNode.cs index 2c92fab..2d49da8 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataCrossNode.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataCrossNode.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_FEATURE_DATA_CROSS_NODE public partial struct FeatureDataCrossNode { - /// + /// public CrossNodeSharingTier SharingTier; - /// + /// public Bool32 AtomicShaderInstructions; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataD3D12Options.cs b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataD3D12Options.cs index a101d03..2f38602 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataD3D12Options.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataD3D12Options.cs @@ -9,52 +9,52 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_FEATURE_DATA_D3D12_OPTIONS public partial struct FeatureDataD3D12Options { - /// + /// public Bool32 DoublePrecisionFloatShaderOps; - /// + /// public Bool32 OutputMergerLogicOp; - /// + /// public ShaderMinPrecisionSupport MinPrecisionSupport; - /// + /// public TiledResourcesTier TiledResourcesTier; - /// + /// public ResourceBindingTier ResourceBindingTier; - /// + /// public Bool32 PSSpecifiedStencilRefSupported; - /// + /// public Bool32 TypedUAVLoadAdditionalFormats; - /// + /// public Bool32 ROVsSupported; - /// + /// public ConservativeRasterizationTier ConservativeRasterizationTier; - /// + /// public uint MaxGPUVirtualAddressBitsPerResource; - /// + /// public Bool32 StandardSwizzle64KBSupported; - /// + /// public CrossNodeSharingTier CrossNodeSharingTier; - /// + /// public Bool32 CrossAdapterRowMajorTextureSupported; - /// + /// public Bool32 VPAndRTArrayIndexFromAnyShaderFeedingRasterizerSupportedWithoutGSEmulation; - /// + /// public ResourceHeapTier ResourceHeapTier; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataD3D12Options1.cs b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataD3D12Options1.cs index 08422dd..53fa9a9 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataD3D12Options1.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataD3D12Options1.cs @@ -9,25 +9,25 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_FEATURE_DATA_D3D12_OPTIONS1 public partial struct FeatureDataD3D12Options1 { - /// + /// public Bool32 WaveOps; - /// + /// public uint WaveLaneCountMin; - /// + /// public uint WaveLaneCountMax; - /// + /// public uint TotalLaneCount; - /// + /// public Bool32 ExpandedComputeResourceStates; - /// + /// public Bool32 Int64ShaderOps; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataD3D12Options10.cs b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataD3D12Options10.cs index c4d869d..0a18115 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataD3D12Options10.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataD3D12Options10.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_FEATURE_DATA_D3D12_OPTIONS10 public partial struct FeatureDataD3D12Options10 { - /// + /// public Bool32 VariableRateShadingSumCombinerSupported; - /// + /// public Bool32 MeshShaderPerPrimitiveShadingRateSupported; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataD3D12Options11.cs b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataD3D12Options11.cs index fc8b7e3..6ad160f 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataD3D12Options11.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataD3D12Options11.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_FEATURE_DATA_D3D12_OPTIONS11 public partial struct FeatureDataD3D12Options11 { - /// + /// public Bool32 AtomicInt64OnDescriptorHeapResourceSupported; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataD3D12Options2.cs b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataD3D12Options2.cs index 762fa21..2c48e12 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataD3D12Options2.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataD3D12Options2.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_FEATURE_DATA_D3D12_OPTIONS2 public partial struct FeatureDataD3D12Options2 { - /// + /// public Bool32 DepthBoundsTestSupported; - /// + /// public ProgrammableSamplePositionsTier ProgrammableSamplePositionsTier; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataD3D12Options3.cs b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataD3D12Options3.cs index 9771c16..07c9811 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataD3D12Options3.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataD3D12Options3.cs @@ -9,22 +9,22 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_FEATURE_DATA_D3D12_OPTIONS3 public partial struct FeatureDataD3D12Options3 { - /// + /// public Bool32 CopyQueueTimestampQueriesSupported; - /// + /// public Bool32 CastingFullyTypedFormatSupported; - /// + /// public CommandListSupportFlags WriteBufferImmediateSupportFlags; - /// + /// public ViewInstancingTier ViewInstancingTier; - /// + /// public Bool32 BarycentricsSupported; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataD3D12Options4.cs b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataD3D12Options4.cs index 2242478..3393c01 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataD3D12Options4.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataD3D12Options4.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_FEATURE_DATA_D3D12_OPTIONS4 public partial struct FeatureDataD3D12Options4 { - /// + /// public Bool32 MSAA64KBAlignedTextureSupported; - /// + /// public SharedResourceCompatibilityTier SharedResourceCompatibilityTier; - /// + /// public Bool32 Native16BitShaderOpsSupported; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataD3D12Options5.cs b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataD3D12Options5.cs index d33021f..5f32cb1 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataD3D12Options5.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataD3D12Options5.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_FEATURE_DATA_D3D12_OPTIONS5 public partial struct FeatureDataD3D12Options5 { - /// + /// public Bool32 SRVOnlyTiledResourceTier3; - /// + /// public RenderPassTier RenderPassesTier; - /// + /// public RaytracingTier RaytracingTier; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataD3D12Options6.cs b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataD3D12Options6.cs index 38e0443..672efc2 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataD3D12Options6.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataD3D12Options6.cs @@ -9,22 +9,22 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_FEATURE_DATA_D3D12_OPTIONS6 public partial struct FeatureDataD3D12Options6 { - /// + /// public Bool32 AdditionalShadingRatesSupported; - /// + /// public Bool32 PerPrimitiveShadingRateSupportedWithViewportIndexing; - /// + /// public VariableShadingRateTier VariableShadingRateTier; - /// + /// public uint ShadingRateImageTileSize; - /// + /// public Bool32 BackgroundProcessingSupported; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataD3D12Options7.cs b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataD3D12Options7.cs index bf2e5f9..1f4a173 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataD3D12Options7.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataD3D12Options7.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_FEATURE_DATA_D3D12_OPTIONS7 public partial struct FeatureDataD3D12Options7 { - /// + /// public MeshShaderTier MeshShaderTier; - /// + /// public SamplerFeedbackTier SamplerFeedbackTier; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataD3D12Options8.cs b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataD3D12Options8.cs index acdb40c..006b4ce 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataD3D12Options8.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataD3D12Options8.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_FEATURE_DATA_D3D12_OPTIONS8 public partial struct FeatureDataD3D12Options8 { - /// + /// public Bool32 UnalignedBlockTexturesSupported; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataD3D12Options9.cs b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataD3D12Options9.cs index 00030e2..3a5c571 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataD3D12Options9.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataD3D12Options9.cs @@ -9,25 +9,25 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_FEATURE_DATA_D3D12_OPTIONS9 public partial struct FeatureDataD3D12Options9 { - /// + /// public Bool32 MeshShaderPipelineStatsSupported; - /// + /// public Bool32 MeshShaderSupportsFullRangeRenderTargetArrayIndex; - /// + /// public Bool32 AtomicInt64OnTypedResourceSupported; - /// + /// public Bool32 AtomicInt64OnGroupSharedSupported; - /// + /// public Bool32 DerivativesInMeshAndAmplificationShadersSupported; - /// + /// public WaveMmaTier WaveMMATier; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataDisplayable.cs b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataDisplayable.cs index 0268907..62363d0 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataDisplayable.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataDisplayable.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_FEATURE_DATA_DISPLAYABLE public partial struct FeatureDataDisplayable { - /// + /// public Bool32 DisplayableTexture; - /// + /// public SharedResourceCompatibilityTier SharedResourceCompatibilityTier; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataExistingHeaps.cs b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataExistingHeaps.cs index 6b79a0c..74a5456 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataExistingHeaps.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataExistingHeaps.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_FEATURE_DATA_EXISTING_HEAPS public partial struct FeatureDataExistingHeaps { - /// + /// public Bool32 Supported; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataFeatureLevels.cs b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataFeatureLevels.cs index 438af58..28b92ff 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataFeatureLevels.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataFeatureLevels.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_FEATURE_DATA_FEATURE_LEVELS public partial struct FeatureDataFeatureLevels { - /// + /// public uint NumFeatureLevels; - /// + /// public unsafe Graphics.Direct3D.FeatureLevel* pFeatureLevelsRequested; - /// + /// public Graphics.Direct3D.FeatureLevel MaxSupportedFeatureLevel; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataFormatInfo.cs b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataFormatInfo.cs index c94be30..d525ac5 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataFormatInfo.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataFormatInfo.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_FEATURE_DATA_FORMAT_INFO public partial struct FeatureDataFormatInfo { - /// + /// public Graphics.Dxgi.Common.Format Format; - /// + /// public byte PlaneCount; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataFormatSupport.cs b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataFormatSupport.cs index 5d2c222..1a7ff92 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataFormatSupport.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataFormatSupport.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_FEATURE_DATA_FORMAT_SUPPORT public partial struct FeatureDataFormatSupport { - /// + /// public Graphics.Dxgi.Common.Format Format; - /// + /// public FormatSupport1 Support1; - /// + /// public FormatSupport2 Support2; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataGpuVirtualAddressSupport.cs b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataGpuVirtualAddressSupport.cs index 3fe9604..df5fe07 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataGpuVirtualAddressSupport.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataGpuVirtualAddressSupport.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_FEATURE_DATA_GPU_VIRTUAL_ADDRESS_SUPPORT public partial struct FeatureDataGpuVirtualAddressSupport { - /// + /// public uint MaxGPUVirtualAddressBitsPerResource; - /// + /// public uint MaxGPUVirtualAddressBitsPerProcess; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataMultisampleQualityLevels.cs b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataMultisampleQualityLevels.cs index 9188299..78eb619 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataMultisampleQualityLevels.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataMultisampleQualityLevels.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_FEATURE_DATA_MULTISAMPLE_QUALITY_LEVELS public partial struct FeatureDataMultisampleQualityLevels { - /// + /// public Graphics.Dxgi.Common.Format Format; - /// + /// public uint SampleCount; - /// + /// public MultisampleQualityLevelFlags Flags; - /// + /// public uint NumQualityLevels; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataProtectedResourceSessionSupport.cs b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataProtectedResourceSessionSupport.cs index de06d80..547e616 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataProtectedResourceSessionSupport.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataProtectedResourceSessionSupport.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_FEATURE_DATA_PROTECTED_RESOURCE_SESSION_SUPPORT public partial struct FeatureDataProtectedResourceSessionSupport { - /// + /// public uint NodeIndex; - /// + /// public ProtectedResourceSessionSupportFlags Support; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataProtectedResourceSessionTypeCount.cs b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataProtectedResourceSessionTypeCount.cs index bcdf0b7..b11981a 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataProtectedResourceSessionTypeCount.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataProtectedResourceSessionTypeCount.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_FEATURE_DATA_PROTECTED_RESOURCE_SESSION_TYPE_COUNT public partial struct FeatureDataProtectedResourceSessionTypeCount { - /// + /// public uint NodeIndex; - /// + /// public uint Count; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataProtectedResourceSessionTypes.cs b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataProtectedResourceSessionTypes.cs index 58c8403..e835207 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataProtectedResourceSessionTypes.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataProtectedResourceSessionTypes.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_FEATURE_DATA_PROTECTED_RESOURCE_SESSION_TYPES public partial struct FeatureDataProtectedResourceSessionTypes { - /// + /// public uint NodeIndex; - /// + /// public uint Count; - /// + /// public unsafe Guid* pTypes; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataQueryMetaCommand.cs b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataQueryMetaCommand.cs index 4e1ea6f..851db02 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataQueryMetaCommand.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataQueryMetaCommand.cs @@ -9,25 +9,25 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_FEATURE_DATA_QUERY_META_COMMAND public partial struct FeatureDataQueryMetaCommand { - /// + /// public Guid CommandId; - /// + /// public uint NodeMask; - /// + /// public unsafe void* pQueryInputData; - /// + /// public nuint QueryInputDataSizeInBytes; - /// + /// public unsafe void* pQueryOutputData; - /// + /// public nuint QueryOutputDataSizeInBytes; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataRootSignature.cs b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataRootSignature.cs index c163aa0..cfc162e 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataRootSignature.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataRootSignature.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_FEATURE_DATA_ROOT_SIGNATURE public partial struct FeatureDataRootSignature { - /// + /// public RootSignatureVersion HighestVersion; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataSerialization.cs b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataSerialization.cs index 02e93df..bfa43a8 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataSerialization.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataSerialization.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_FEATURE_DATA_SERIALIZATION public partial struct FeatureDataSerialization { - /// + /// public uint NodeIndex; - /// + /// public HeapSerializationTier HeapSerializationTier; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataShaderCache.cs b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataShaderCache.cs index 68611fc..3d19b4f 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataShaderCache.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataShaderCache.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_FEATURE_DATA_SHADER_CACHE public partial struct FeatureDataShaderCache { - /// + /// public ShaderCacheSupportFlags SupportFlags; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataShaderModel.cs b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataShaderModel.cs index ef9fe17..fd1aa92 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/FeatureDataShaderModel.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/FeatureDataShaderModel.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_FEATURE_DATA_SHADER_MODEL public partial struct FeatureDataShaderModel { - /// + /// public ShaderModel HighestShaderModel; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/FenceFlags.cs b/src/Vortice.Win32.Direct3D12/Generated/FenceFlags.cs index 0927588..bd8e39c 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/FenceFlags.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/FenceFlags.cs @@ -9,21 +9,21 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_FENCE_FLAGS [Flags] public enum FenceFlags : uint { - /// + /// /// D3D12_FENCE_FLAG_NONE None = 0, - /// + /// /// D3D12_FENCE_FLAG_SHARED Shared = 1, - /// + /// /// D3D12_FENCE_FLAG_SHARED_CROSS_ADAPTER SharedCrossAdapter = 2, - /// + /// /// D3D12_FENCE_FLAG_NON_MONITORED NonMonitored = 4, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/FillMode.cs b/src/Vortice.Win32.Direct3D12/Generated/FillMode.cs index aac02d0..4f2a495 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/FillMode.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/FillMode.cs @@ -9,14 +9,14 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_FILL_MODE public enum FillMode : int { - /// + /// /// D3D12_FILL_MODE_WIREFRAME Wireframe = 2, - /// + /// /// D3D12_FILL_MODE_SOLID Solid = 3, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/Filter.cs b/src/Vortice.Win32.Direct3D12/Generated/Filter.cs index f79879b..baa558c 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/Filter.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/Filter.cs @@ -9,116 +9,116 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_FILTER public enum Filter : int { - /// + /// /// D3D12_FILTER_MIN_MAG_MIP_POINT MinMagMipPoint = 0, - /// + /// /// D3D12_FILTER_MIN_MAG_POINT_MIP_LINEAR MinMagPointMipLinear = 1, - /// + /// /// D3D12_FILTER_MIN_POINT_MAG_LINEAR_MIP_POINT MinPointMagLinearMipPoint = 4, - /// + /// /// D3D12_FILTER_MIN_POINT_MAG_MIP_LINEAR MinPointMagMipLinear = 5, - /// + /// /// D3D12_FILTER_MIN_LINEAR_MAG_MIP_POINT MinLinearMagMipPoint = 16, - /// + /// /// D3D12_FILTER_MIN_LINEAR_MAG_POINT_MIP_LINEAR MinLinearMagPointMipLinear = 17, - /// + /// /// D3D12_FILTER_MIN_MAG_LINEAR_MIP_POINT MinMagLinearMipPoint = 20, - /// + /// /// D3D12_FILTER_MIN_MAG_MIP_LINEAR MinMagMipLinear = 21, - /// + /// /// D3D12_FILTER_ANISOTROPIC Anisotropic = 85, - /// + /// /// D3D12_FILTER_COMPARISON_MIN_MAG_MIP_POINT ComparisonMinMagMipPoint = 128, - /// + /// /// D3D12_FILTER_COMPARISON_MIN_MAG_POINT_MIP_LINEAR ComparisonMinMagPointMipLinear = 129, - /// + /// /// D3D12_FILTER_COMPARISON_MIN_POINT_MAG_LINEAR_MIP_POINT ComparisonMinPointMagLinearMipPoint = 132, - /// + /// /// D3D12_FILTER_COMPARISON_MIN_POINT_MAG_MIP_LINEAR ComparisonMinPointMagMipLinear = 133, - /// + /// /// D3D12_FILTER_COMPARISON_MIN_LINEAR_MAG_MIP_POINT ComparisonMinLinearMagMipPoint = 144, - /// + /// /// D3D12_FILTER_COMPARISON_MIN_LINEAR_MAG_POINT_MIP_LINEAR ComparisonMinLinearMagPointMipLinear = 145, - /// + /// /// D3D12_FILTER_COMPARISON_MIN_MAG_LINEAR_MIP_POINT ComparisonMinMagLinearMipPoint = 148, - /// + /// /// D3D12_FILTER_COMPARISON_MIN_MAG_MIP_LINEAR ComparisonMinMagMipLinear = 149, - /// + /// /// D3D12_FILTER_COMPARISON_ANISOTROPIC ComparisonAnisotropic = 213, - /// + /// /// D3D12_FILTER_MINIMUM_MIN_MAG_MIP_POINT MinimumMinMagMipPoint = 256, - /// + /// /// D3D12_FILTER_MINIMUM_MIN_MAG_POINT_MIP_LINEAR MinimumMinMagPointMipLinear = 257, - /// + /// /// D3D12_FILTER_MINIMUM_MIN_POINT_MAG_LINEAR_MIP_POINT MinimumMinPointMagLinearMipPoint = 260, - /// + /// /// D3D12_FILTER_MINIMUM_MIN_POINT_MAG_MIP_LINEAR MinimumMinPointMagMipLinear = 261, - /// + /// /// D3D12_FILTER_MINIMUM_MIN_LINEAR_MAG_MIP_POINT MinimumMinLinearMagMipPoint = 272, - /// + /// /// D3D12_FILTER_MINIMUM_MIN_LINEAR_MAG_POINT_MIP_LINEAR MinimumMinLinearMagPointMipLinear = 273, - /// + /// /// D3D12_FILTER_MINIMUM_MIN_MAG_LINEAR_MIP_POINT MinimumMinMagLinearMipPoint = 276, - /// + /// /// D3D12_FILTER_MINIMUM_MIN_MAG_MIP_LINEAR MinimumMinMagMipLinear = 277, - /// + /// /// D3D12_FILTER_MINIMUM_ANISOTROPIC MinimumAnisotropic = 341, - /// + /// /// D3D12_FILTER_MAXIMUM_MIN_MAG_MIP_POINT MaximumMinMagMipPoint = 384, - /// + /// /// D3D12_FILTER_MAXIMUM_MIN_MAG_POINT_MIP_LINEAR MaximumMinMagPointMipLinear = 385, - /// + /// /// D3D12_FILTER_MAXIMUM_MIN_POINT_MAG_LINEAR_MIP_POINT MaximumMinPointMagLinearMipPoint = 388, - /// + /// /// D3D12_FILTER_MAXIMUM_MIN_POINT_MAG_MIP_LINEAR MaximumMinPointMagMipLinear = 389, - /// + /// /// D3D12_FILTER_MAXIMUM_MIN_LINEAR_MAG_MIP_POINT MaximumMinLinearMagMipPoint = 400, - /// + /// /// D3D12_FILTER_MAXIMUM_MIN_LINEAR_MAG_POINT_MIP_LINEAR MaximumMinLinearMagPointMipLinear = 401, - /// + /// /// D3D12_FILTER_MAXIMUM_MIN_MAG_LINEAR_MIP_POINT MaximumMinMagLinearMipPoint = 404, - /// + /// /// D3D12_FILTER_MAXIMUM_MIN_MAG_MIP_LINEAR MaximumMinMagMipLinear = 405, - /// + /// /// D3D12_FILTER_MAXIMUM_ANISOTROPIC MaximumAnisotropic = 469, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/FilterReductionType.cs b/src/Vortice.Win32.Direct3D12/Generated/FilterReductionType.cs index a39bca8..8a2d769 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/FilterReductionType.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/FilterReductionType.cs @@ -9,20 +9,20 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_FILTER_REDUCTION_TYPE public enum FilterReductionType : int { - /// + /// /// D3D12_FILTER_REDUCTION_TYPE_STANDARD Standard = 0, - /// + /// /// D3D12_FILTER_REDUCTION_TYPE_COMPARISON Comparison = 1, - /// + /// /// D3D12_FILTER_REDUCTION_TYPE_MINIMUM Minimum = 2, - /// + /// /// D3D12_FILTER_REDUCTION_TYPE_MAXIMUM Maximum = 3, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/FilterType.cs b/src/Vortice.Win32.Direct3D12/Generated/FilterType.cs index a2ba6ce..d83ce31 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/FilterType.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/FilterType.cs @@ -9,14 +9,14 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_FILTER_TYPE public enum FilterType : int { - /// + /// /// D3D12_FILTER_TYPE_POINT Point = 0, - /// + /// /// D3D12_FILTER_TYPE_LINEAR Linear = 1, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/FormatSupport1.cs b/src/Vortice.Win32.Direct3D12/Generated/FormatSupport1.cs index 3411bb7..c7a2102 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/FormatSupport1.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/FormatSupport1.cs @@ -9,99 +9,99 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_FORMAT_SUPPORT1 [Flags] public enum FormatSupport1 : uint { - /// + /// /// D3D12_FORMAT_SUPPORT1_NONE None = 0, - /// + /// /// D3D12_FORMAT_SUPPORT1_BUFFER Buffer = 1, - /// + /// /// D3D12_FORMAT_SUPPORT1_IA_VERTEX_BUFFER IAVertexBuffer = 2, - /// + /// /// D3D12_FORMAT_SUPPORT1_IA_INDEX_BUFFER IAIndexBuffer = 4, - /// + /// /// D3D12_FORMAT_SUPPORT1_SO_BUFFER SOBuffer = 8, - /// + /// /// D3D12_FORMAT_SUPPORT1_TEXTURE1D Texture1D = 16, - /// + /// /// D3D12_FORMAT_SUPPORT1_TEXTURE2D Texture2D = 32, - /// + /// /// D3D12_FORMAT_SUPPORT1_TEXTURE3D Texture3D = 64, - /// + /// /// D3D12_FORMAT_SUPPORT1_TEXTURECUBE TextureCube = 128, - /// + /// /// D3D12_FORMAT_SUPPORT1_SHADER_LOAD ShaderLoad = 256, - /// + /// /// D3D12_FORMAT_SUPPORT1_SHADER_SAMPLE ShaderSample = 512, - /// + /// /// D3D12_FORMAT_SUPPORT1_SHADER_SAMPLE_COMPARISON ShaderSampleComparison = 1024, - /// + /// /// D3D12_FORMAT_SUPPORT1_SHADER_SAMPLE_MONO_TEXT ShaderSampleMonoText = 2048, - /// + /// /// D3D12_FORMAT_SUPPORT1_MIP Mip = 4096, - /// + /// /// D3D12_FORMAT_SUPPORT1_RENDER_TARGET RenderTarget = 16384, - /// + /// /// D3D12_FORMAT_SUPPORT1_BLENDABLE Blendable = 32768, - /// + /// /// D3D12_FORMAT_SUPPORT1_DEPTH_STENCIL DepthStencil = 65536, - /// + /// /// D3D12_FORMAT_SUPPORT1_MULTISAMPLE_RESOLVE MultisampleResolve = 262144, - /// + /// /// D3D12_FORMAT_SUPPORT1_DISPLAY Display = 524288, - /// + /// /// D3D12_FORMAT_SUPPORT1_CAST_WITHIN_BIT_LAYOUT CastWithinBitLayout = 1048576, - /// + /// /// D3D12_FORMAT_SUPPORT1_MULTISAMPLE_RENDERTARGET MultisampleRendertarget = 2097152, - /// + /// /// D3D12_FORMAT_SUPPORT1_MULTISAMPLE_LOAD MultisampleLoad = 4194304, - /// + /// /// D3D12_FORMAT_SUPPORT1_SHADER_GATHER ShaderGather = 8388608, - /// + /// /// D3D12_FORMAT_SUPPORT1_BACK_BUFFER_CAST BackBufferCast = 16777216, - /// + /// /// D3D12_FORMAT_SUPPORT1_TYPED_UNORDERED_ACCESS_VIEW TypedUnorderedAccessView = 33554432, - /// + /// /// D3D12_FORMAT_SUPPORT1_SHADER_GATHER_COMPARISON ShaderGatherComparison = 67108864, - /// + /// /// D3D12_FORMAT_SUPPORT1_DECODER_OUTPUT DecoderOutput = 134217728, - /// + /// /// D3D12_FORMAT_SUPPORT1_VIDEO_PROCESSOR_OUTPUT VideoProcessorOutput = 268435456, - /// + /// /// D3D12_FORMAT_SUPPORT1_VIDEO_PROCESSOR_INPUT VideoProcessorInput = 536870912, - /// + /// /// D3D12_FORMAT_SUPPORT1_VIDEO_ENCODER VideoEncoder = 1073741824, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/FormatSupport2.cs b/src/Vortice.Win32.Direct3D12/Generated/FormatSupport2.cs index 3d3c477..b361c65 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/FormatSupport2.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/FormatSupport2.cs @@ -9,48 +9,48 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_FORMAT_SUPPORT2 [Flags] public enum FormatSupport2 : uint { - /// + /// /// D3D12_FORMAT_SUPPORT2_NONE None = 0, - /// + /// /// D3D12_FORMAT_SUPPORT2_UAV_ATOMIC_ADD UavAtomicAdd = 1, - /// + /// /// D3D12_FORMAT_SUPPORT2_UAV_ATOMIC_BITWISE_OPS UavAtomicBitwiseOps = 2, - /// + /// /// D3D12_FORMAT_SUPPORT2_UAV_ATOMIC_COMPARE_STORE_OR_COMPARE_EXCHANGE UavAtomicCompareStoreOrCompareExchange = 4, - /// + /// /// D3D12_FORMAT_SUPPORT2_UAV_ATOMIC_EXCHANGE UavAtomicExchange = 8, - /// + /// /// D3D12_FORMAT_SUPPORT2_UAV_ATOMIC_SIGNED_MIN_OR_MAX UavAtomicSignedMinOrMax = 16, - /// + /// /// D3D12_FORMAT_SUPPORT2_UAV_ATOMIC_UNSIGNED_MIN_OR_MAX UavAtomicUnsignedMinOrMax = 32, - /// + /// /// D3D12_FORMAT_SUPPORT2_UAV_TYPED_LOAD UavTypedLoad = 64, - /// + /// /// D3D12_FORMAT_SUPPORT2_UAV_TYPED_STORE UavTypedStore = 128, - /// + /// /// D3D12_FORMAT_SUPPORT2_OUTPUT_MERGER_LOGIC_OP OutputMergerLogicOp = 256, - /// + /// /// D3D12_FORMAT_SUPPORT2_TILED Tiled = 512, - /// + /// /// D3D12_FORMAT_SUPPORT2_MULTIPLANE_OVERLAY MultiplaneOverlay = 16384, - /// + /// /// D3D12_FORMAT_SUPPORT2_SAMPLER_FEEDBACK SamplerFeedback = 32768, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/FunctionDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/FunctionDescription.cs index e4b4e59..8678880 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/FunctionDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/FunctionDescription.cs @@ -9,106 +9,106 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_FUNCTION_DESC public partial struct FunctionDescription { - /// + /// public uint Version; - /// + /// public unsafe sbyte* Creator; - /// + /// public uint Flags; - /// + /// public uint ConstantBuffers; - /// + /// public uint BoundResources; - /// + /// public uint InstructionCount; - /// + /// public uint TempRegisterCount; - /// + /// public uint TempArrayCount; - /// + /// public uint DefCount; - /// + /// public uint DclCount; - /// + /// public uint TextureNormalInstructions; - /// + /// public uint TextureLoadInstructions; - /// + /// public uint TextureCompInstructions; - /// + /// public uint TextureBiasInstructions; - /// + /// public uint TextureGradientInstructions; - /// + /// public uint FloatInstructionCount; - /// + /// public uint IntInstructionCount; - /// + /// public uint UintInstructionCount; - /// + /// public uint StaticFlowControlCount; - /// + /// public uint DynamicFlowControlCount; - /// + /// public uint MacroInstructionCount; - /// + /// public uint ArrayInstructionCount; - /// + /// public uint MovInstructionCount; - /// + /// public uint MovcInstructionCount; - /// + /// public uint ConversionInstructionCount; - /// + /// public uint BitwiseInstructionCount; - /// + /// public Graphics.Direct3D.FeatureLevel MinFeatureLevel; - /// + /// public ulong RequiredFeatureFlags; - /// + /// public unsafe sbyte* Name; - /// + /// public int FunctionParameterCount; - /// + /// public Bool32 HasReturn; - /// + /// public Bool32 Has10Level9VertexShader; - /// + /// public Bool32 Has10Level9PixelShader; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/GlobalRootSignature.cs b/src/Vortice.Win32.Direct3D12/Generated/GlobalRootSignature.cs index 395c6cd..e353597 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/GlobalRootSignature.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/GlobalRootSignature.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_GLOBAL_ROOT_SIGNATURE public partial struct GlobalRootSignature { - /// + /// public unsafe ID3D12RootSignature* pGlobalRootSignature; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/GpuBasedValidationFlags.cs b/src/Vortice.Win32.Direct3D12/Generated/GpuBasedValidationFlags.cs index 7cd9d77..2d53f28 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/GpuBasedValidationFlags.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/GpuBasedValidationFlags.cs @@ -9,15 +9,15 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_GPU_BASED_VALIDATION_FLAGS [Flags] public enum GpuBasedValidationFlags : int { - /// + /// /// D3D12_GPU_BASED_VALIDATION_FLAGS_NONE None = 0, - /// + /// /// D3D12_GPU_BASED_VALIDATION_FLAGS_DISABLE_STATE_TRACKING DisableStateTracking = 1, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/GpuBasedValidationPipelineStateCreateFlags.cs b/src/Vortice.Win32.Direct3D12/Generated/GpuBasedValidationPipelineStateCreateFlags.cs index 41a23fb..f0b2b98 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/GpuBasedValidationPipelineStateCreateFlags.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/GpuBasedValidationPipelineStateCreateFlags.cs @@ -9,24 +9,24 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_GPU_BASED_VALIDATION_PIPELINE_STATE_CREATE_FLAGS [Flags] public enum GpuBasedValidationPipelineStateCreateFlags : int { - /// + /// /// D3D12_GPU_BASED_VALIDATION_PIPELINE_STATE_CREATE_FLAG_NONE None = 0, - /// + /// /// D3D12_GPU_BASED_VALIDATION_PIPELINE_STATE_CREATE_FLAG_FRONT_LOAD_CREATE_TRACKING_ONLY_SHADERS FrontLoadCreateTrackingOnlyShaders = 1, - /// + /// /// D3D12_GPU_BASED_VALIDATION_PIPELINE_STATE_CREATE_FLAG_FRONT_LOAD_CREATE_UNGUARDED_VALIDATION_SHADERS FrontLoadCreateUnguardedValidationShaders = 2, - /// + /// /// D3D12_GPU_BASED_VALIDATION_PIPELINE_STATE_CREATE_FLAG_FRONT_LOAD_CREATE_GUARDED_VALIDATION_SHADERS FrontLoadCreateGuardedValidationShaders = 4, - /// + /// /// D3D12_GPU_BASED_VALIDATION_PIPELINE_STATE_CREATE_FLAGS_VALID_MASK ValidMask = 7, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/GpuBasedValidationShaderPatchMode.cs b/src/Vortice.Win32.Direct3D12/Generated/GpuBasedValidationShaderPatchMode.cs index e56d854..5f101e4 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/GpuBasedValidationShaderPatchMode.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/GpuBasedValidationShaderPatchMode.cs @@ -9,23 +9,23 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_GPU_BASED_VALIDATION_SHADER_PATCH_MODE public enum GpuBasedValidationShaderPatchMode : int { - /// + /// /// D3D12_GPU_BASED_VALIDATION_SHADER_PATCH_MODE_NONE None = 0, - /// + /// /// D3D12_GPU_BASED_VALIDATION_SHADER_PATCH_MODE_STATE_TRACKING_ONLY StateTrackingOnly = 1, - /// + /// /// D3D12_GPU_BASED_VALIDATION_SHADER_PATCH_MODE_UNGUARDED_VALIDATION UnguardedValidation = 2, - /// + /// /// D3D12_GPU_BASED_VALIDATION_SHADER_PATCH_MODE_GUARDED_VALIDATION GuardedValidation = 3, - /// + /// /// NUM_D3D12_GPU_BASED_VALIDATION_SHADER_PATCH_MODES Count = 4, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/GpuDescriptorHandle.cs b/src/Vortice.Win32.Direct3D12/Generated/GpuDescriptorHandle.cs index 42f3b4a..08f8877 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/GpuDescriptorHandle.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/GpuDescriptorHandle.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_GPU_DESCRIPTOR_HANDLE public partial struct GpuDescriptorHandle { - /// + /// public ulong ptr; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/GpuVirtualAddressAndStride.cs b/src/Vortice.Win32.Direct3D12/Generated/GpuVirtualAddressAndStride.cs index bf0e873..b8a4a46 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/GpuVirtualAddressAndStride.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/GpuVirtualAddressAndStride.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_GPU_VIRTUAL_ADDRESS_AND_STRIDE public partial struct GpuVirtualAddressAndStride { - /// + /// public ulong StartAddress; - /// + /// public ulong StrideInBytes; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/GpuVirtualAddressRange.cs b/src/Vortice.Win32.Direct3D12/Generated/GpuVirtualAddressRange.cs index 5b82049..fd09bfc 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/GpuVirtualAddressRange.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/GpuVirtualAddressRange.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_GPU_VIRTUAL_ADDRESS_RANGE public partial struct GpuVirtualAddressRange { - /// + /// public ulong StartAddress; - /// + /// public ulong SizeInBytes; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/GpuVirtualAddressRangeAndStride.cs b/src/Vortice.Win32.Direct3D12/Generated/GpuVirtualAddressRangeAndStride.cs index 22d0fef..4a325ad 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/GpuVirtualAddressRangeAndStride.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/GpuVirtualAddressRangeAndStride.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_GPU_VIRTUAL_ADDRESS_RANGE_AND_STRIDE public partial struct GpuVirtualAddressRangeAndStride { - /// + /// public ulong StartAddress; - /// + /// public ulong SizeInBytes; - /// + /// public ulong StrideInBytes; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/GraphicsPipelineStateDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/GraphicsPipelineStateDescription.cs index b3e42e0..fded052 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/GraphicsPipelineStateDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/GraphicsPipelineStateDescription.cs @@ -9,56 +9,56 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_GRAPHICS_PIPELINE_STATE_DESC public partial struct GraphicsPipelineStateDescription { - /// + /// public unsafe ID3D12RootSignature* pRootSignature; - /// + /// public ShaderBytecode VS; - /// + /// public ShaderBytecode PS; - /// + /// public ShaderBytecode DS; - /// + /// public ShaderBytecode HS; - /// + /// public ShaderBytecode GS; - /// + /// public StreamOutputDescription StreamOutput; - /// + /// public BlendDescription BlendState; - /// + /// public uint SampleMask; - /// + /// public RasterizerDescription RasterizerState; - /// + /// public DepthStencilDescription DepthStencilState; - /// + /// public InputLayoutDescription InputLayout; - /// + /// public IndexBufferStripCutValue IBStripCutValue; - /// + /// public PrimitiveTopologyType PrimitiveTopologyType; - /// + /// public uint NumRenderTargets; - /// + /// public RTVFormats__FixedBuffer RTVFormats; public unsafe struct RTVFormats__FixedBuffer @@ -90,18 +90,18 @@ public partial struct GraphicsPipelineStateDescription } } - /// + /// public Graphics.Dxgi.Common.Format DSVFormat; - /// + /// public Graphics.Dxgi.Common.SampleDescription SampleDesc; - /// + /// public uint NodeMask; - /// + /// public CachedPipelineState CachedPSO; - /// + /// public PipelineStateFlags Flags; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/GraphicsStates.cs b/src/Vortice.Win32.Direct3D12/Generated/GraphicsStates.cs index 0925ac6..ece1384 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/GraphicsStates.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/GraphicsStates.cs @@ -9,63 +9,63 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_GRAPHICS_STATES [Flags] public enum GraphicsStates : uint { - /// + /// /// D3D12_GRAPHICS_STATE_NONE None = 0, - /// + /// /// D3D12_GRAPHICS_STATE_IA_VERTEX_BUFFERS IAVertexBuffers = 1, - /// + /// /// D3D12_GRAPHICS_STATE_IA_INDEX_BUFFER IAIndexBuffer = 2, - /// + /// /// D3D12_GRAPHICS_STATE_IA_PRIMITIVE_TOPOLOGY IAPrimitiveTopology = 4, - /// + /// /// D3D12_GRAPHICS_STATE_DESCRIPTOR_HEAP DescriptorHeap = 8, - /// + /// /// D3D12_GRAPHICS_STATE_GRAPHICS_ROOT_SIGNATURE GraphicsRootSignature = 16, - /// + /// /// D3D12_GRAPHICS_STATE_COMPUTE_ROOT_SIGNATURE ComputeRootSignature = 32, - /// + /// /// D3D12_GRAPHICS_STATE_RS_VIEWPORTS RSViewports = 64, - /// + /// /// D3D12_GRAPHICS_STATE_RS_SCISSOR_RECTS RSScissorRects = 128, - /// + /// /// D3D12_GRAPHICS_STATE_PREDICATION Predication = 256, - /// + /// /// D3D12_GRAPHICS_STATE_OM_RENDER_TARGETS OMRenderTargets = 512, - /// + /// /// D3D12_GRAPHICS_STATE_OM_STENCIL_REF OMStencilRef = 1024, - /// + /// /// D3D12_GRAPHICS_STATE_OM_BLEND_FACTOR OMBlendFactor = 2048, - /// + /// /// D3D12_GRAPHICS_STATE_PIPELINE_STATE PipelineState = 4096, - /// + /// /// D3D12_GRAPHICS_STATE_SO_TARGETS SOTargets = 8192, - /// + /// /// D3D12_GRAPHICS_STATE_OM_DEPTH_BOUNDS OMDepthBounds = 16384, - /// + /// /// D3D12_GRAPHICS_STATE_SAMPLE_POSITIONS SamplePositions = 32768, - /// + /// /// D3D12_GRAPHICS_STATE_VIEW_INSTANCE_MASK ViewInstanceMask = 65536, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/HeapDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/HeapDescription.cs index bbbec59..dc4da45 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/HeapDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/HeapDescription.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_HEAP_DESC public partial struct HeapDescription { - /// + /// public ulong SizeInBytes; - /// + /// public HeapProperties Properties; - /// + /// public ulong Alignment; - /// + /// public HeapFlags Flags; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/HeapFlags.cs b/src/Vortice.Win32.Direct3D12/Generated/HeapFlags.cs index eb11161..1de0516 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/HeapFlags.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/HeapFlags.cs @@ -9,57 +9,57 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_HEAP_FLAGS [Flags] public enum HeapFlags : uint { - /// + /// /// D3D12_HEAP_FLAG_NONE None = 0, - /// + /// /// D3D12_HEAP_FLAG_SHARED Shared = 1, - /// + /// /// D3D12_HEAP_FLAG_DENY_BUFFERS DenyBuffers = 4, - /// + /// /// D3D12_HEAP_FLAG_ALLOW_DISPLAY AllowDisplay = 8, - /// + /// /// D3D12_HEAP_FLAG_SHARED_CROSS_ADAPTER SharedCrossAdapter = 32, - /// + /// /// D3D12_HEAP_FLAG_DENY_RT_DS_TEXTURES DenyRtDSTextures = 64, - /// + /// /// D3D12_HEAP_FLAG_DENY_NON_RT_DS_TEXTURES DenyNonRtDSTextures = 128, - /// + /// /// D3D12_HEAP_FLAG_HARDWARE_PROTECTED HardwareProtected = 256, - /// + /// /// D3D12_HEAP_FLAG_ALLOW_WRITE_WATCH AllowWriteWatch = 512, - /// + /// /// D3D12_HEAP_FLAG_ALLOW_SHADER_ATOMICS AllowShaderAtomics = 1024, - /// + /// /// D3D12_HEAP_FLAG_CREATE_NOT_RESIDENT CreateNotResident = 2048, - /// + /// /// D3D12_HEAP_FLAG_CREATE_NOT_ZEROED CreateNotZeroed = 4096, - /// + /// /// D3D12_HEAP_FLAG_ALLOW_ALL_BUFFERS_AND_TEXTURES AllowAllBuffersAndTextures = 0, - /// + /// /// D3D12_HEAP_FLAG_ALLOW_ONLY_BUFFERS AllowOnlyBuffers = 192, - /// + /// /// D3D12_HEAP_FLAG_ALLOW_ONLY_NON_RT_DS_TEXTURES AllowOnlyNonRtDSTextures = 68, - /// + /// /// D3D12_HEAP_FLAG_ALLOW_ONLY_RT_DS_TEXTURES AllowOnlyRtDSTextures = 132, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/HeapProperties.cs b/src/Vortice.Win32.Direct3D12/Generated/HeapProperties.cs index 42b807c..02752ab 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/HeapProperties.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/HeapProperties.cs @@ -9,22 +9,22 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_HEAP_PROPERTIES public partial struct HeapProperties { - /// + /// public HeapType Type; - /// + /// public CpuPageProperty CPUPageProperty; - /// + /// public MemoryPool MemoryPoolPreference; - /// + /// public uint CreationNodeMask; - /// + /// public uint VisibleNodeMask; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/HeapSerializationTier.cs b/src/Vortice.Win32.Direct3D12/Generated/HeapSerializationTier.cs index 1d3baa2..bd0422b 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/HeapSerializationTier.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/HeapSerializationTier.cs @@ -9,14 +9,14 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_HEAP_SERIALIZATION_TIER public enum HeapSerializationTier : int { - /// + /// /// D3D12_HEAP_SERIALIZATION_TIER_0 Tier0 = 0, - /// + /// /// D3D12_HEAP_SERIALIZATION_TIER_10 Tier1_0 = 10, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/HeapType.cs b/src/Vortice.Win32.Direct3D12/Generated/HeapType.cs index 15005ca..1d593a3 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/HeapType.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/HeapType.cs @@ -9,20 +9,20 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_HEAP_TYPE public enum HeapType : int { - /// + /// /// D3D12_HEAP_TYPE_DEFAULT Default = 1, - /// + /// /// D3D12_HEAP_TYPE_UPLOAD Upload = 2, - /// + /// /// D3D12_HEAP_TYPE_READBACK Readback = 3, - /// + /// /// D3D12_HEAP_TYPE_CUSTOM Custom = 4, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/HitGroupDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/HitGroupDescription.cs index ce9b458..36c70a3 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/HitGroupDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/HitGroupDescription.cs @@ -9,22 +9,22 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_HIT_GROUP_DESC public partial struct HitGroupDescription { - /// + /// public unsafe ushort* HitGroupExport; - /// + /// public HitGroupType Type; - /// + /// public unsafe ushort* AnyHitShaderImport; - /// + /// public unsafe ushort* ClosestHitShaderImport; - /// + /// public unsafe ushort* IntersectionShaderImport; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/HitGroupType.cs b/src/Vortice.Win32.Direct3D12/Generated/HitGroupType.cs index e9fadce..e5e4b24 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/HitGroupType.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/HitGroupType.cs @@ -9,14 +9,14 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_HIT_GROUP_TYPE public enum HitGroupType : int { - /// + /// /// D3D12_HIT_GROUP_TYPE_TRIANGLES Triangles = 0, - /// + /// /// D3D12_HIT_GROUP_TYPE_PROCEDURAL_PRIMITIVE ProceduralPrimitive = 1, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/HitKind.cs b/src/Vortice.Win32.Direct3D12/Generated/HitKind.cs index 9c18efa..931b7a8 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/HitKind.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/HitKind.cs @@ -9,14 +9,14 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_HIT_KIND public enum HitKind : int { - /// + /// /// D3D12_HIT_KIND_TRIANGLE_FRONT_FACE TriangleFrontFace = 254, - /// + /// /// D3D12_HIT_KIND_TRIANGLE_BACK_FACE TriangleBackFace = 255, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12CommandAllocator.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12CommandAllocator.cs index 9cbaf1f..a4c23ce 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12CommandAllocator.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12CommandAllocator.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12CommandAllocator [Guid("6102dee4-af59-4b09-b999-b44d73f09b24")] [NativeTypeName("struct ID3D12CommandAllocator : ID3D12Pageable")] @@ -114,7 +114,7 @@ public unsafe partial struct ID3D12CommandAllocator : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D12CommandAllocator*)Unsafe.AsPointer(ref this), riid, ppvDevice); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public HResult Reset() diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12CommandList.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12CommandList.cs index bc1fe4b..62dd94e 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12CommandList.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12CommandList.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12CommandList [Guid("7116d91c-e7e4-47ce-b8c6-ec8168f437e5")] [NativeTypeName("struct ID3D12CommandList : ID3D12DeviceChild")] @@ -114,7 +114,7 @@ public unsafe partial struct ID3D12CommandList : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D12CommandList*)Unsafe.AsPointer(ref this), riid, ppvDevice); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public new CommandListType GetType() diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12CommandQueue.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12CommandQueue.cs index d79485c..e23fe8b 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12CommandQueue.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12CommandQueue.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12CommandQueue [Guid("0ec870a6-5d7e-4c22-8cfc-5baae07616ed")] [NativeTypeName("struct ID3D12CommandQueue : ID3D12Pageable")] @@ -114,7 +114,7 @@ public unsafe partial struct ID3D12CommandQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D12CommandQueue*)Unsafe.AsPointer(ref this), riid, ppvDevice); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public void UpdateTileMappings(ID3D12Resource* pResource, uint NumResourceRegions, TiledResourceCoordinate* pResourceRegionStartCoordinates, TileRegionSize* pResourceRegionSizes, ID3D12Heap* pHeap, uint NumRanges, TileRangeFlags* pRangeFlags, uint* pHeapRangeStartOffsets, uint* pRangeTileCounts, TileMappingFlags Flags) @@ -122,7 +122,7 @@ public unsafe partial struct ID3D12CommandQueue : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[8]))((ID3D12CommandQueue*)Unsafe.AsPointer(ref this), pResource, NumResourceRegions, pResourceRegionStartCoordinates, pResourceRegionSizes, pHeap, NumRanges, pRangeFlags, pHeapRangeStartOffsets, pRangeTileCounts, Flags); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(9)] public void CopyTileMappings(ID3D12Resource* pDstResource, TiledResourceCoordinate* pDstRegionStartCoordinate, ID3D12Resource* pSrcResource, TiledResourceCoordinate* pSrcRegionStartCoordinate, TileRegionSize* pRegionSize, TileMappingFlags Flags) @@ -130,7 +130,7 @@ public unsafe partial struct ID3D12CommandQueue : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[9]))((ID3D12CommandQueue*)Unsafe.AsPointer(ref this), pDstResource, pDstRegionStartCoordinate, pSrcResource, pSrcRegionStartCoordinate, pRegionSize, Flags); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(10)] public void ExecuteCommandLists(uint NumCommandLists, ID3D12CommandList** ppCommandLists) @@ -138,7 +138,7 @@ public unsafe partial struct ID3D12CommandQueue : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[10]))((ID3D12CommandQueue*)Unsafe.AsPointer(ref this), NumCommandLists, ppCommandLists); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(11)] public void SetMarker(uint Metadata, void* pData, uint Size) @@ -146,7 +146,7 @@ public unsafe partial struct ID3D12CommandQueue : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[11]))((ID3D12CommandQueue*)Unsafe.AsPointer(ref this), Metadata, pData, Size); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(12)] public void BeginEvent(uint Metadata, void* pData, uint Size) @@ -154,7 +154,7 @@ public unsafe partial struct ID3D12CommandQueue : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[12]))((ID3D12CommandQueue*)Unsafe.AsPointer(ref this), Metadata, pData, Size); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(13)] public void EndEvent() @@ -162,7 +162,7 @@ public unsafe partial struct ID3D12CommandQueue : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[13]))((ID3D12CommandQueue*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(14)] public HResult Signal(ID3D12Fence* pFence, ulong Value) @@ -170,7 +170,7 @@ public unsafe partial struct ID3D12CommandQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[14]))((ID3D12CommandQueue*)Unsafe.AsPointer(ref this), pFence, Value); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(15)] public HResult Wait(ID3D12Fence* pFence, ulong Value) @@ -178,7 +178,7 @@ public unsafe partial struct ID3D12CommandQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[15]))((ID3D12CommandQueue*)Unsafe.AsPointer(ref this), pFence, Value); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(16)] public HResult GetTimestampFrequency(ulong* pFrequency) @@ -186,7 +186,7 @@ public unsafe partial struct ID3D12CommandQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[16]))((ID3D12CommandQueue*)Unsafe.AsPointer(ref this), pFrequency); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(17)] public HResult GetClockCalibration(ulong* pGpuTimestamp, ulong* pCpuTimestamp) @@ -194,7 +194,7 @@ public unsafe partial struct ID3D12CommandQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[17]))((ID3D12CommandQueue*)Unsafe.AsPointer(ref this), pGpuTimestamp, pCpuTimestamp); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(18)] public CommandQueueDescription GetDesc() diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12CommandSignature.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12CommandSignature.cs index f4dede5..583ca23 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12CommandSignature.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12CommandSignature.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12CommandSignature [Guid("c36a797c-ec80-4f0a-8985-a7b2475082d1")] [NativeTypeName("struct ID3D12CommandSignature : ID3D12Pageable")] diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Debug.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Debug.cs index 4b3b633..16ec9dd 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Debug.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Debug.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12Debug [Guid("344488b7-6846-474b-b989-f027448245e0")] [NativeTypeName("struct ID3D12Debug : IUnknown")] @@ -74,7 +74,7 @@ public unsafe partial struct ID3D12Debug : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[2]))((IUnknown*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(3)] public void EnableDebugLayer() diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Debug1.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Debug1.cs index 38f1c17..f157b1a 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Debug1.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Debug1.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12Debug1 [Guid("affaa4ca-63fe-4d8e-b8ad-159000af4304")] [NativeTypeName("struct ID3D12Debug1 : IUnknown")] @@ -74,7 +74,7 @@ public unsafe partial struct ID3D12Debug1 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[2]))((IUnknown*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(3)] public void EnableDebugLayer() @@ -82,7 +82,7 @@ public unsafe partial struct ID3D12Debug1 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[3]))((ID3D12Debug1*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(4)] public void SetEnableGPUBasedValidation(Bool32 Enable) @@ -90,7 +90,7 @@ public unsafe partial struct ID3D12Debug1 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[4]))((ID3D12Debug1*)Unsafe.AsPointer(ref this), Enable); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(5)] public void SetEnableSynchronizedCommandQueueValidation(Bool32 Enable) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Debug2.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Debug2.cs index 7d1e5af..1fc8539 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Debug2.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Debug2.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12Debug2 [Guid("93a665c4-a3b2-4e5d-b692-a26ae14e3374")] [NativeTypeName("struct ID3D12Debug2 : IUnknown")] @@ -74,7 +74,7 @@ public unsafe partial struct ID3D12Debug2 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[2]))((IUnknown*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(3)] public void SetGPUBasedValidationFlags(GpuBasedValidationFlags Flags) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Debug3.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Debug3.cs index bf6e24e..7423381 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Debug3.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Debug3.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12Debug3 [Guid("5cf4e58f-f671-4ff1-a542-3686e3d153d1")] [NativeTypeName("struct ID3D12Debug3 : ID3D12Debug")] @@ -82,7 +82,7 @@ public unsafe partial struct ID3D12Debug3 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[3]))((ID3D12Debug3*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(4)] public void SetEnableGPUBasedValidation(Bool32 Enable) @@ -90,7 +90,7 @@ public unsafe partial struct ID3D12Debug3 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[4]))((ID3D12Debug3*)Unsafe.AsPointer(ref this), Enable); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(5)] public void SetEnableSynchronizedCommandQueueValidation(Bool32 Enable) @@ -98,7 +98,7 @@ public unsafe partial struct ID3D12Debug3 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[5]))((ID3D12Debug3*)Unsafe.AsPointer(ref this), Enable); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(6)] public void SetGPUBasedValidationFlags(GpuBasedValidationFlags Flags) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Debug4.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Debug4.cs index d09fa57..03b2c42 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Debug4.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Debug4.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12Debug4 [Guid("014b816e-9ec5-4a2f-a845-ffbe441ce13a")] [NativeTypeName("struct ID3D12Debug4 : ID3D12Debug3")] @@ -106,7 +106,7 @@ public unsafe partial struct ID3D12Debug4 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[6]))((ID3D12Debug4*)Unsafe.AsPointer(ref this), Flags); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(7)] public void DisableDebugLayer() diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Debug5.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Debug5.cs index 4d171bc..2c93d3e 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Debug5.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Debug5.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12Debug5 [Guid("548d6b12-09fa-40e0-9069-5dcd589a52c9")] [NativeTypeName("struct ID3D12Debug5 : ID3D12Debug4")] @@ -114,7 +114,7 @@ public unsafe partial struct ID3D12Debug5 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D12Debug5*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public void SetEnableAutoName(Bool32 Enable) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12DebugCommandList.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12DebugCommandList.cs index 3f913f2..9272424 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12DebugCommandList.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12DebugCommandList.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12DebugCommandList [Guid("09e0bf36-54ac-484f-8847-4baeeab6053f")] [NativeTypeName("struct ID3D12DebugCommandList : IUnknown")] @@ -74,7 +74,7 @@ public unsafe partial struct ID3D12DebugCommandList : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[2]))((IUnknown*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(3)] public Bool32 AssertResourceState(ID3D12Resource* pResource, uint Subresource, uint State) @@ -82,7 +82,7 @@ public unsafe partial struct ID3D12DebugCommandList : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[3]))((ID3D12DebugCommandList*)Unsafe.AsPointer(ref this), pResource, Subresource, State); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(4)] public HResult SetFeatureMask(DebugFeature Mask) @@ -90,7 +90,7 @@ public unsafe partial struct ID3D12DebugCommandList : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[4]))((ID3D12DebugCommandList*)Unsafe.AsPointer(ref this), Mask); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(5)] public DebugFeature GetFeatureMask() diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12DebugCommandList1.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12DebugCommandList1.cs index 88ebbb8..541226c 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12DebugCommandList1.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12DebugCommandList1.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12DebugCommandList1 [Guid("102ca951-311b-4b01-b11f-ecb83e061b37")] [NativeTypeName("struct ID3D12DebugCommandList1 : IUnknown")] @@ -74,7 +74,7 @@ public unsafe partial struct ID3D12DebugCommandList1 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[2]))((IUnknown*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(3)] public Bool32 AssertResourceState(ID3D12Resource* pResource, uint Subresource, uint State) @@ -82,7 +82,7 @@ public unsafe partial struct ID3D12DebugCommandList1 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[3]))((ID3D12DebugCommandList1*)Unsafe.AsPointer(ref this), pResource, Subresource, State); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(4)] public HResult SetDebugParameter(DebugCommandListParameterType Type, void* pData, uint DataSize) @@ -90,7 +90,7 @@ public unsafe partial struct ID3D12DebugCommandList1 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[4]))((ID3D12DebugCommandList1*)Unsafe.AsPointer(ref this), Type, pData, DataSize); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(5)] public HResult GetDebugParameter(DebugCommandListParameterType Type, void* pData, uint DataSize) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12DebugCommandList2.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12DebugCommandList2.cs index 260dc3b..e914992 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12DebugCommandList2.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12DebugCommandList2.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12DebugCommandList2 [Guid("aeb575cf-4e06-48be-ba3b-c450fc96652e")] [NativeTypeName("struct ID3D12DebugCommandList2 : ID3D12DebugCommandList")] @@ -98,7 +98,7 @@ public unsafe partial struct ID3D12DebugCommandList2 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[5]))((ID3D12DebugCommandList2*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(6)] public HResult SetDebugParameter(DebugCommandListParameterType Type, void* pData, uint DataSize) @@ -106,7 +106,7 @@ public unsafe partial struct ID3D12DebugCommandList2 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[6]))((ID3D12DebugCommandList2*)Unsafe.AsPointer(ref this), Type, pData, DataSize); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(7)] public HResult GetDebugParameter(DebugCommandListParameterType Type, void* pData, uint DataSize) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12DebugCommandQueue.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12DebugCommandQueue.cs index d3740a1..d13fb21 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12DebugCommandQueue.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12DebugCommandQueue.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12DebugCommandQueue [Guid("09e0bf36-54ac-484f-8847-4baeeab6053a")] [NativeTypeName("struct ID3D12DebugCommandQueue : IUnknown")] @@ -74,7 +74,7 @@ public unsafe partial struct ID3D12DebugCommandQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[2]))((IUnknown*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(3)] public Bool32 AssertResourceState(ID3D12Resource* pResource, uint Subresource, uint State) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12DebugDevice.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12DebugDevice.cs index 9abad66..1c20650 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12DebugDevice.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12DebugDevice.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12DebugDevice [Guid("3febd6dd-4973-4787-8194-e45f9e28923e")] [NativeTypeName("struct ID3D12DebugDevice : IUnknown")] @@ -74,7 +74,7 @@ public unsafe partial struct ID3D12DebugDevice : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[2]))((IUnknown*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(3)] public HResult SetFeatureMask(DebugFeature Mask) @@ -82,7 +82,7 @@ public unsafe partial struct ID3D12DebugDevice : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[3]))((ID3D12DebugDevice*)Unsafe.AsPointer(ref this), Mask); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(4)] public DebugFeature GetFeatureMask() @@ -90,7 +90,7 @@ public unsafe partial struct ID3D12DebugDevice : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[4]))((ID3D12DebugDevice*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(5)] public HResult ReportLiveDeviceObjects(ReportLiveDeviceObjectFlags Flags) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12DebugDevice1.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12DebugDevice1.cs index 02803a0..0e0b757 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12DebugDevice1.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12DebugDevice1.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12DebugDevice1 [Guid("a9b71770-d099-4a65-a698-3dee10020f88")] [NativeTypeName("struct ID3D12DebugDevice1 : IUnknown")] @@ -74,7 +74,7 @@ public unsafe partial struct ID3D12DebugDevice1 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[2]))((IUnknown*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(3)] public HResult SetDebugParameter(DebugDeviceParameterType Type, void* pData, uint DataSize) @@ -82,7 +82,7 @@ public unsafe partial struct ID3D12DebugDevice1 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[3]))((ID3D12DebugDevice1*)Unsafe.AsPointer(ref this), Type, pData, DataSize); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(4)] public HResult GetDebugParameter(DebugDeviceParameterType Type, void* pData, uint DataSize) @@ -90,7 +90,7 @@ public unsafe partial struct ID3D12DebugDevice1 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[4]))((ID3D12DebugDevice1*)Unsafe.AsPointer(ref this), Type, pData, DataSize); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(5)] public HResult ReportLiveDeviceObjects(ReportLiveDeviceObjectFlags Flags) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12DebugDevice2.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12DebugDevice2.cs index 932aec9..8fbf402 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12DebugDevice2.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12DebugDevice2.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12DebugDevice2 [Guid("60eccbc1-378d-4df1-894c-f8ac5ce4d7dd")] [NativeTypeName("struct ID3D12DebugDevice2 : ID3D12DebugDevice")] @@ -98,7 +98,7 @@ public unsafe partial struct ID3D12DebugDevice2 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[5]))((ID3D12DebugDevice2*)Unsafe.AsPointer(ref this), Flags); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(6)] public HResult SetDebugParameter(DebugDeviceParameterType Type, void* pData, uint DataSize) @@ -106,7 +106,7 @@ public unsafe partial struct ID3D12DebugDevice2 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[6]))((ID3D12DebugDevice2*)Unsafe.AsPointer(ref this), Type, pData, DataSize); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(7)] public HResult GetDebugParameter(DebugDeviceParameterType Type, void* pData, uint DataSize) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12DescriptorHeap.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12DescriptorHeap.cs index 283393b..4f9338e 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12DescriptorHeap.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12DescriptorHeap.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12DescriptorHeap [Guid("8efb471d-616c-4f49-90f7-127bb763fa51")] [NativeTypeName("struct ID3D12DescriptorHeap : ID3D12Pageable")] @@ -114,7 +114,7 @@ public unsafe partial struct ID3D12DescriptorHeap : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D12DescriptorHeap*)Unsafe.AsPointer(ref this), riid, ppvDevice); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public DescriptorHeapDescription GetDesc() @@ -123,7 +123,7 @@ public unsafe partial struct ID3D12DescriptorHeap : INativeGuid return *((delegate* unmanaged[Stdcall])(lpVtbl[8]))((ID3D12DescriptorHeap*)Unsafe.AsPointer(ref this), &result); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(9)] public CpuDescriptorHandle GetCPUDescriptorHandleForHeapStart() @@ -132,7 +132,7 @@ public unsafe partial struct ID3D12DescriptorHeap : INativeGuid return *((delegate* unmanaged[Stdcall])(lpVtbl[9]))((ID3D12DescriptorHeap*)Unsafe.AsPointer(ref this), &result); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(10)] public GpuDescriptorHandle GetGPUDescriptorHandleForHeapStart() diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Device.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Device.cs index 88e815b..cfe6256 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Device.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Device.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12Device [Guid("189819f1-1db6-4b57-be54-1821339b85f7")] [NativeTypeName("struct ID3D12Device : ID3D12Object")] @@ -106,7 +106,7 @@ public unsafe partial struct ID3D12Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[6]))((ID3D12Device*)Unsafe.AsPointer(ref this), Name); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(7)] public uint GetNodeCount() @@ -114,7 +114,7 @@ public unsafe partial struct ID3D12Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D12Device*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public HResult CreateCommandQueue(CommandQueueDescription* pDesc, Guid* riid, void** ppCommandQueue) @@ -122,7 +122,7 @@ public unsafe partial struct ID3D12Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[8]))((ID3D12Device*)Unsafe.AsPointer(ref this), pDesc, riid, ppCommandQueue); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(9)] public HResult CreateCommandAllocator(CommandListType type, Guid* riid, void** ppCommandAllocator) @@ -130,7 +130,7 @@ public unsafe partial struct ID3D12Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[9]))((ID3D12Device*)Unsafe.AsPointer(ref this), type, riid, ppCommandAllocator); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(10)] public HResult CreateGraphicsPipelineState(GraphicsPipelineStateDescription* pDesc, Guid* riid, void** ppPipelineState) @@ -138,7 +138,7 @@ public unsafe partial struct ID3D12Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[10]))((ID3D12Device*)Unsafe.AsPointer(ref this), pDesc, riid, ppPipelineState); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(11)] public HResult CreateComputePipelineState(ComputePipelineStateDescription* pDesc, Guid* riid, void** ppPipelineState) @@ -146,7 +146,7 @@ public unsafe partial struct ID3D12Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[11]))((ID3D12Device*)Unsafe.AsPointer(ref this), pDesc, riid, ppPipelineState); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(12)] public HResult CreateCommandList(uint nodeMask, CommandListType type, ID3D12CommandAllocator* pCommandAllocator, ID3D12PipelineState* pInitialState, Guid* riid, void** ppCommandList) @@ -154,7 +154,7 @@ public unsafe partial struct ID3D12Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[12]))((ID3D12Device*)Unsafe.AsPointer(ref this), nodeMask, type, pCommandAllocator, pInitialState, riid, ppCommandList); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(13)] public HResult CheckFeatureSupport(Feature Feature, void* pFeatureSupportData, uint FeatureSupportDataSize) @@ -162,7 +162,7 @@ public unsafe partial struct ID3D12Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[13]))((ID3D12Device*)Unsafe.AsPointer(ref this), Feature, pFeatureSupportData, FeatureSupportDataSize); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(14)] public HResult CreateDescriptorHeap(DescriptorHeapDescription* pDescriptorHeapDesc, Guid* riid, void** ppvHeap) @@ -170,7 +170,7 @@ public unsafe partial struct ID3D12Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[14]))((ID3D12Device*)Unsafe.AsPointer(ref this), pDescriptorHeapDesc, riid, ppvHeap); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(15)] public uint GetDescriptorHandleIncrementSize(DescriptorHeapType DescriptorHeapType) @@ -178,7 +178,7 @@ public unsafe partial struct ID3D12Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[15]))((ID3D12Device*)Unsafe.AsPointer(ref this), DescriptorHeapType); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(16)] public HResult CreateRootSignature(uint nodeMask, void* pBlobWithRootSignature, nuint blobLengthInBytes, Guid* riid, void** ppvRootSignature) @@ -186,7 +186,7 @@ public unsafe partial struct ID3D12Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[16]))((ID3D12Device*)Unsafe.AsPointer(ref this), nodeMask, pBlobWithRootSignature, blobLengthInBytes, riid, ppvRootSignature); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(17)] public void CreateConstantBufferView(ConstantBufferViewDescription* pDesc, CpuDescriptorHandle* DestDescriptor) @@ -194,7 +194,7 @@ public unsafe partial struct ID3D12Device : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[17]))((ID3D12Device*)Unsafe.AsPointer(ref this), pDesc, DestDescriptor); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(18)] public void CreateShaderResourceView(ID3D12Resource* pResource, ShaderResourceViewDescription* pDesc, CpuDescriptorHandle* DestDescriptor) @@ -202,7 +202,7 @@ public unsafe partial struct ID3D12Device : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[18]))((ID3D12Device*)Unsafe.AsPointer(ref this), pResource, pDesc, DestDescriptor); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(19)] public void CreateUnorderedAccessView(ID3D12Resource* pResource, ID3D12Resource* pCounterResource, UnorderedAccessViewDescription* pDesc, CpuDescriptorHandle* DestDescriptor) @@ -210,7 +210,7 @@ public unsafe partial struct ID3D12Device : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[19]))((ID3D12Device*)Unsafe.AsPointer(ref this), pResource, pCounterResource, pDesc, DestDescriptor); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(20)] public void CreateRenderTargetView(ID3D12Resource* pResource, RenderTargetViewDescription* pDesc, CpuDescriptorHandle* DestDescriptor) @@ -218,7 +218,7 @@ public unsafe partial struct ID3D12Device : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[20]))((ID3D12Device*)Unsafe.AsPointer(ref this), pResource, pDesc, DestDescriptor); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(21)] public void CreateDepthStencilView(ID3D12Resource* pResource, DepthStencilViewDescription* pDesc, CpuDescriptorHandle* DestDescriptor) @@ -226,7 +226,7 @@ public unsafe partial struct ID3D12Device : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[21]))((ID3D12Device*)Unsafe.AsPointer(ref this), pResource, pDesc, DestDescriptor); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(22)] public void CreateSampler(SamplerDescription* pDesc, CpuDescriptorHandle* DestDescriptor) @@ -234,7 +234,7 @@ public unsafe partial struct ID3D12Device : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[22]))((ID3D12Device*)Unsafe.AsPointer(ref this), pDesc, DestDescriptor); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(23)] public void CopyDescriptors(uint NumDestDescriptorRanges, CpuDescriptorHandle* pDestDescriptorRangeStarts, uint* pDestDescriptorRangeSizes, uint NumSrcDescriptorRanges, CpuDescriptorHandle* pSrcDescriptorRangeStarts, uint* pSrcDescriptorRangeSizes, DescriptorHeapType DescriptorHeapsType) @@ -242,7 +242,7 @@ public unsafe partial struct ID3D12Device : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[23]))((ID3D12Device*)Unsafe.AsPointer(ref this), NumDestDescriptorRanges, pDestDescriptorRangeStarts, pDestDescriptorRangeSizes, NumSrcDescriptorRanges, pSrcDescriptorRangeStarts, pSrcDescriptorRangeSizes, DescriptorHeapsType); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(24)] public void CopyDescriptorsSimple(uint NumDescriptors, CpuDescriptorHandle* DestDescriptorRangeStart, CpuDescriptorHandle* SrcDescriptorRangeStart, DescriptorHeapType DescriptorHeapsType) @@ -250,7 +250,7 @@ public unsafe partial struct ID3D12Device : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[24]))((ID3D12Device*)Unsafe.AsPointer(ref this), NumDescriptors, DestDescriptorRangeStart, SrcDescriptorRangeStart, DescriptorHeapsType); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(25)] public ResourceAllocationInfo GetResourceAllocationInfo(uint visibleMask, uint numResourceDescs, ResourceDescription* pResourceDescs) @@ -259,7 +259,7 @@ public unsafe partial struct ID3D12Device : INativeGuid return *((delegate* unmanaged[Stdcall])(lpVtbl[25]))((ID3D12Device*)Unsafe.AsPointer(ref this), &result, visibleMask, numResourceDescs, pResourceDescs); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(26)] public HeapProperties GetCustomHeapProperties(uint nodeMask, HeapType heapType) @@ -268,7 +268,7 @@ public unsafe partial struct ID3D12Device : INativeGuid return *((delegate* unmanaged[Stdcall])(lpVtbl[26]))((ID3D12Device*)Unsafe.AsPointer(ref this), &result, nodeMask, heapType); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(27)] public HResult CreateCommittedResource(HeapProperties* pHeapProperties, HeapFlags HeapFlags, ResourceDescription* pDesc, ResourceStates InitialResourceState, ClearValue* pOptimizedClearValue, Guid* riidResource, void** ppvResource) @@ -276,7 +276,7 @@ public unsafe partial struct ID3D12Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[27]))((ID3D12Device*)Unsafe.AsPointer(ref this), pHeapProperties, HeapFlags, pDesc, InitialResourceState, pOptimizedClearValue, riidResource, ppvResource); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(28)] public HResult CreateHeap(HeapDescription* pDesc, Guid* riid, void** ppvHeap) @@ -284,7 +284,7 @@ public unsafe partial struct ID3D12Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[28]))((ID3D12Device*)Unsafe.AsPointer(ref this), pDesc, riid, ppvHeap); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(29)] public HResult CreatePlacedResource(ID3D12Heap* pHeap, ulong HeapOffset, ResourceDescription* pDesc, ResourceStates InitialState, ClearValue* pOptimizedClearValue, Guid* riid, void** ppvResource) @@ -292,7 +292,7 @@ public unsafe partial struct ID3D12Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[29]))((ID3D12Device*)Unsafe.AsPointer(ref this), pHeap, HeapOffset, pDesc, InitialState, pOptimizedClearValue, riid, ppvResource); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(30)] public HResult CreateReservedResource(ResourceDescription* pDesc, ResourceStates InitialState, ClearValue* pOptimizedClearValue, Guid* riid, void** ppvResource) @@ -300,7 +300,7 @@ public unsafe partial struct ID3D12Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[30]))((ID3D12Device*)Unsafe.AsPointer(ref this), pDesc, InitialState, pOptimizedClearValue, riid, ppvResource); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(31)] public HResult CreateSharedHandle(ID3D12DeviceChild* pObject, Security.SECURITY_ATTRIBUTES* pAttributes, uint Access, ushort* Name, Handle* pHandle) @@ -308,7 +308,7 @@ public unsafe partial struct ID3D12Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[31]))((ID3D12Device*)Unsafe.AsPointer(ref this), pObject, pAttributes, Access, Name, pHandle); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(32)] public HResult OpenSharedHandle(Handle NTHandle, Guid* riid, void** ppvObj) @@ -316,7 +316,7 @@ public unsafe partial struct ID3D12Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[32]))((ID3D12Device*)Unsafe.AsPointer(ref this), NTHandle, riid, ppvObj); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(33)] public HResult OpenSharedHandleByName(ushort* Name, uint Access, Handle* pNTHandle) @@ -324,7 +324,7 @@ public unsafe partial struct ID3D12Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[33]))((ID3D12Device*)Unsafe.AsPointer(ref this), Name, Access, pNTHandle); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(34)] public HResult MakeResident(uint NumObjects, ID3D12Pageable** ppObjects) @@ -332,7 +332,7 @@ public unsafe partial struct ID3D12Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[34]))((ID3D12Device*)Unsafe.AsPointer(ref this), NumObjects, ppObjects); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(35)] public HResult Evict(uint NumObjects, ID3D12Pageable** ppObjects) @@ -340,7 +340,7 @@ public unsafe partial struct ID3D12Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[35]))((ID3D12Device*)Unsafe.AsPointer(ref this), NumObjects, ppObjects); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(36)] public HResult CreateFence(ulong InitialValue, FenceFlags Flags, Guid* riid, void** ppFence) @@ -348,7 +348,7 @@ public unsafe partial struct ID3D12Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[36]))((ID3D12Device*)Unsafe.AsPointer(ref this), InitialValue, Flags, riid, ppFence); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(37)] public HResult GetDeviceRemovedReason() @@ -356,7 +356,7 @@ public unsafe partial struct ID3D12Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[37]))((ID3D12Device*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(38)] public void GetCopyableFootprints(ResourceDescription* pResourceDesc, uint FirstSubresource, uint NumSubresources, ulong BaseOffset, PlacedSubresourceFootprint* pLayouts, uint* pNumRows, ulong* pRowSizeInBytes, ulong* pTotalBytes) @@ -364,7 +364,7 @@ public unsafe partial struct ID3D12Device : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[38]))((ID3D12Device*)Unsafe.AsPointer(ref this), pResourceDesc, FirstSubresource, NumSubresources, BaseOffset, pLayouts, pNumRows, pRowSizeInBytes, pTotalBytes); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(39)] public HResult CreateQueryHeap(QueryHeapDescription* pDesc, Guid* riid, void** ppvHeap) @@ -372,7 +372,7 @@ public unsafe partial struct ID3D12Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[39]))((ID3D12Device*)Unsafe.AsPointer(ref this), pDesc, riid, ppvHeap); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(40)] public HResult SetStablePowerState(Bool32 Enable) @@ -380,7 +380,7 @@ public unsafe partial struct ID3D12Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[40]))((ID3D12Device*)Unsafe.AsPointer(ref this), Enable); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(41)] public HResult CreateCommandSignature(CommandSignatureDescription* pDesc, ID3D12RootSignature* pRootSignature, Guid* riid, void** ppvCommandSignature) @@ -388,7 +388,7 @@ public unsafe partial struct ID3D12Device : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[41]))((ID3D12Device*)Unsafe.AsPointer(ref this), pDesc, pRootSignature, riid, ppvCommandSignature); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(42)] public void GetResourceTiling(ID3D12Resource* pTiledResource, uint* pNumTilesForEntireResource, PackedMipInfo* pPackedMipDesc, TileShape* pStandardTileShapeForNonPackedMips, uint* pNumSubresourceTilings, uint FirstSubresourceTilingToGet, SubresourceTiling* pSubresourceTilingsForNonPackedMips) @@ -396,7 +396,7 @@ public unsafe partial struct ID3D12Device : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[42]))((ID3D12Device*)Unsafe.AsPointer(ref this), pTiledResource, pNumTilesForEntireResource, pPackedMipDesc, pStandardTileShapeForNonPackedMips, pNumSubresourceTilings, FirstSubresourceTilingToGet, pSubresourceTilingsForNonPackedMips); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(43)] public Luid GetAdapterLuid() diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Device1.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Device1.cs index 80f5d4c..14ec6a2 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Device1.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Device1.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12Device1 [Guid("77acce80-638e-4e65-8895-c1f23386863e")] [NativeTypeName("struct ID3D12Device1 : ID3D12Device")] @@ -405,7 +405,7 @@ public unsafe partial struct ID3D12Device1 : INativeGuid return *((delegate* unmanaged[Stdcall])(lpVtbl[43]))((ID3D12Device1*)Unsafe.AsPointer(ref this), &result); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(44)] public HResult CreatePipelineLibrary(void* pLibraryBlob, nuint BlobLength, Guid* riid, void** ppPipelineLibrary) @@ -413,7 +413,7 @@ public unsafe partial struct ID3D12Device1 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[44]))((ID3D12Device1*)Unsafe.AsPointer(ref this), pLibraryBlob, BlobLength, riid, ppPipelineLibrary); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(45)] public HResult SetEventOnMultipleFenceCompletion(ID3D12Fence** ppFences, ulong* pFenceValues, uint NumFences, MultipleFenceWaitFlags Flags, Handle hEvent) @@ -421,7 +421,7 @@ public unsafe partial struct ID3D12Device1 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[45]))((ID3D12Device1*)Unsafe.AsPointer(ref this), ppFences, pFenceValues, NumFences, Flags, hEvent); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(46)] public HResult SetResidencyPriority(uint NumObjects, ID3D12Pageable** ppObjects, ResidencyPriority* pPriorities) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Device2.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Device2.cs index 19badf6..77083c0 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Device2.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Device2.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12Device2 [Guid("30baa41e-b15b-475c-a0bb-1af5c5b64328")] [NativeTypeName("struct ID3D12Device2 : ID3D12Device1")] @@ -429,7 +429,7 @@ public unsafe partial struct ID3D12Device2 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[46]))((ID3D12Device2*)Unsafe.AsPointer(ref this), NumObjects, ppObjects, pPriorities); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(47)] public HResult CreatePipelineState(PipelineStateStreamDescription* pDesc, Guid* riid, void** ppPipelineState) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Device3.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Device3.cs index 75a58dd..b6c359e 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Device3.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Device3.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12Device3 [Guid("81dadc15-2bad-4392-93c5-101345c4aa98")] [NativeTypeName("struct ID3D12Device3 : ID3D12Device2")] @@ -437,7 +437,7 @@ public unsafe partial struct ID3D12Device3 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[47]))((ID3D12Device3*)Unsafe.AsPointer(ref this), pDesc, riid, ppPipelineState); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(48)] public HResult OpenExistingHeapFromAddress(void* pAddress, Guid* riid, void** ppvHeap) @@ -445,7 +445,7 @@ public unsafe partial struct ID3D12Device3 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[48]))((ID3D12Device3*)Unsafe.AsPointer(ref this), pAddress, riid, ppvHeap); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(49)] public HResult OpenExistingHeapFromFileMapping(Handle hFileMapping, Guid* riid, void** ppvHeap) @@ -453,7 +453,7 @@ public unsafe partial struct ID3D12Device3 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[49]))((ID3D12Device3*)Unsafe.AsPointer(ref this), hFileMapping, riid, ppvHeap); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(50)] public HResult EnqueueMakeResident(ResidencyFlags Flags, uint NumObjects, ID3D12Pageable** ppObjects, ID3D12Fence* pFenceToSignal, ulong FenceValueToSignal) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Device4.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Device4.cs index 34fe5eb..e0cb5bb 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Device4.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Device4.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12Device4 [Guid("e865df17-a9ee-46f9-a463-3098315aa2e5")] [NativeTypeName("struct ID3D12Device4 : ID3D12Device3")] @@ -461,7 +461,7 @@ public unsafe partial struct ID3D12Device4 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[50]))((ID3D12Device4*)Unsafe.AsPointer(ref this), Flags, NumObjects, ppObjects, pFenceToSignal, FenceValueToSignal); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(51)] public HResult CreateCommandList1(uint nodeMask, CommandListType type, CommandListFlags flags, Guid* riid, void** ppCommandList) @@ -469,7 +469,7 @@ public unsafe partial struct ID3D12Device4 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[51]))((ID3D12Device4*)Unsafe.AsPointer(ref this), nodeMask, type, flags, riid, ppCommandList); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(52)] public HResult CreateProtectedResourceSession(ProtectedResourceSessionDescription* pDesc, Guid* riid, void** ppSession) @@ -477,7 +477,7 @@ public unsafe partial struct ID3D12Device4 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[52]))((ID3D12Device4*)Unsafe.AsPointer(ref this), pDesc, riid, ppSession); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(53)] public HResult CreateCommittedResource1(HeapProperties* pHeapProperties, HeapFlags HeapFlags, ResourceDescription* pDesc, ResourceStates InitialResourceState, ClearValue* pOptimizedClearValue, ID3D12ProtectedResourceSession* pProtectedSession, Guid* riidResource, void** ppvResource) @@ -485,7 +485,7 @@ public unsafe partial struct ID3D12Device4 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[53]))((ID3D12Device4*)Unsafe.AsPointer(ref this), pHeapProperties, HeapFlags, pDesc, InitialResourceState, pOptimizedClearValue, pProtectedSession, riidResource, ppvResource); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(54)] public HResult CreateHeap1(HeapDescription* pDesc, ID3D12ProtectedResourceSession* pProtectedSession, Guid* riid, void** ppvHeap) @@ -493,7 +493,7 @@ public unsafe partial struct ID3D12Device4 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[54]))((ID3D12Device4*)Unsafe.AsPointer(ref this), pDesc, pProtectedSession, riid, ppvHeap); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(55)] public HResult CreateReservedResource1(ResourceDescription* pDesc, ResourceStates InitialState, ClearValue* pOptimizedClearValue, ID3D12ProtectedResourceSession* pProtectedSession, Guid* riid, void** ppvResource) @@ -501,7 +501,7 @@ public unsafe partial struct ID3D12Device4 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[55]))((ID3D12Device4*)Unsafe.AsPointer(ref this), pDesc, InitialState, pOptimizedClearValue, pProtectedSession, riid, ppvResource); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(56)] public ResourceAllocationInfo GetResourceAllocationInfo1(uint visibleMask, uint numResourceDescs, ResourceDescription* pResourceDescs, ResourceAllocationInfo1* pResourceAllocationInfo1) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Device5.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Device5.cs index 8ae30aa..06ba113 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Device5.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Device5.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12Device5 [Guid("8b4f173b-2fea-4b80-8f58-4307191ab95d")] [NativeTypeName("struct ID3D12Device5 : ID3D12Device4")] @@ -510,7 +510,7 @@ public unsafe partial struct ID3D12Device5 : INativeGuid return *((delegate* unmanaged[Stdcall])(lpVtbl[56]))((ID3D12Device5*)Unsafe.AsPointer(ref this), &result, visibleMask, numResourceDescs, pResourceDescs, pResourceAllocationInfo1); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(57)] public HResult CreateLifetimeTracker(ID3D12LifetimeOwner* pOwner, Guid* riid, void** ppvTracker) @@ -518,7 +518,7 @@ public unsafe partial struct ID3D12Device5 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[57]))((ID3D12Device5*)Unsafe.AsPointer(ref this), pOwner, riid, ppvTracker); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(58)] public void RemoveDevice() @@ -526,7 +526,7 @@ public unsafe partial struct ID3D12Device5 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[58]))((ID3D12Device5*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(59)] public HResult EnumerateMetaCommands(uint* pNumMetaCommands, MetaCommandDescription* pDescs) @@ -534,7 +534,7 @@ public unsafe partial struct ID3D12Device5 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[59]))((ID3D12Device5*)Unsafe.AsPointer(ref this), pNumMetaCommands, pDescs); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(60)] public HResult EnumerateMetaCommandParameters(Guid* CommandId, MetaCommandParameterStage Stage, uint* pTotalStructureSizeInBytes, uint* pParameterCount, MetaCommandParameterDescription* pParameterDescs) @@ -542,7 +542,7 @@ public unsafe partial struct ID3D12Device5 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[60]))((ID3D12Device5*)Unsafe.AsPointer(ref this), CommandId, Stage, pTotalStructureSizeInBytes, pParameterCount, pParameterDescs); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(61)] public HResult CreateMetaCommand(Guid* CommandId, uint NodeMask, void* pCreationParametersData, nuint CreationParametersDataSizeInBytes, Guid* riid, void** ppMetaCommand) @@ -550,7 +550,7 @@ public unsafe partial struct ID3D12Device5 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[61]))((ID3D12Device5*)Unsafe.AsPointer(ref this), CommandId, NodeMask, pCreationParametersData, CreationParametersDataSizeInBytes, riid, ppMetaCommand); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(62)] public HResult CreateStateObject(StateObjectDescription* pDesc, Guid* riid, void** ppStateObject) @@ -558,7 +558,7 @@ public unsafe partial struct ID3D12Device5 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[62]))((ID3D12Device5*)Unsafe.AsPointer(ref this), pDesc, riid, ppStateObject); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(63)] public void GetRaytracingAccelerationStructurePrebuildInfo(BuildRaytracingAccelerationStructureInputs* pDesc, RaytracingAccelerationStructurePrebuildInfo* pInfo) @@ -566,7 +566,7 @@ public unsafe partial struct ID3D12Device5 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[63]))((ID3D12Device5*)Unsafe.AsPointer(ref this), pDesc, pInfo); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(64)] public DriverMatchingIdentifierStatus CheckDriverMatchingIdentifier(SerializedDataType SerializedDataType, SerializedDataDriverMatchingIdentifier* pIdentifierToCheck) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Device6.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Device6.cs index ba163f3..80a364b 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Device6.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Device6.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12Device6 [Guid("c70b221b-40e4-4a17-89af-025a0727a6dc")] [NativeTypeName("struct ID3D12Device6 : ID3D12Device5")] @@ -574,7 +574,7 @@ public unsafe partial struct ID3D12Device6 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[64]))((ID3D12Device6*)Unsafe.AsPointer(ref this), SerializedDataType, pIdentifierToCheck); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(65)] public HResult SetBackgroundProcessingMode(BackgroundProcessingMode Mode, MeasurementsAction MeasurementsAction, Handle hEventToSignalUponCompletion, Bool32* pbFurtherMeasurementsDesired) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Device7.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Device7.cs index 868aabf..f977256 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Device7.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Device7.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12Device7 [Guid("5c014b53-68a1-4b9b-8bd1-dd6046b9358b")] [NativeTypeName("struct ID3D12Device7 : ID3D12Device6")] @@ -582,7 +582,7 @@ public unsafe partial struct ID3D12Device7 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[65]))((ID3D12Device7*)Unsafe.AsPointer(ref this), Mode, MeasurementsAction, hEventToSignalUponCompletion, pbFurtherMeasurementsDesired); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(66)] public HResult AddToStateObject(StateObjectDescription* pAddition, ID3D12StateObject* pStateObjectToGrowFrom, Guid* riid, void** ppNewStateObject) @@ -590,7 +590,7 @@ public unsafe partial struct ID3D12Device7 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[66]))((ID3D12Device7*)Unsafe.AsPointer(ref this), pAddition, pStateObjectToGrowFrom, riid, ppNewStateObject); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(67)] public HResult CreateProtectedResourceSession1(ProtectedResourceSessionDescription1* pDesc, Guid* riid, void** ppSession) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Device8.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Device8.cs index f08a774..d5897f1 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Device8.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Device8.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12Device8 [Guid("9218e6bb-f944-4f7e-a75c-b1b2c7b701f3")] [NativeTypeName("struct ID3D12Device8 : ID3D12Device7")] @@ -598,7 +598,7 @@ public unsafe partial struct ID3D12Device8 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[67]))((ID3D12Device8*)Unsafe.AsPointer(ref this), pDesc, riid, ppSession); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(68)] public ResourceAllocationInfo GetResourceAllocationInfo2(uint visibleMask, uint numResourceDescs, ResourceDescription1* pResourceDescs, ResourceAllocationInfo1* pResourceAllocationInfo1) @@ -607,7 +607,7 @@ public unsafe partial struct ID3D12Device8 : INativeGuid return *((delegate* unmanaged[Stdcall])(lpVtbl[68]))((ID3D12Device8*)Unsafe.AsPointer(ref this), &result, visibleMask, numResourceDescs, pResourceDescs, pResourceAllocationInfo1); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(69)] public HResult CreateCommittedResource2(HeapProperties* pHeapProperties, HeapFlags HeapFlags, ResourceDescription1* pDesc, ResourceStates InitialResourceState, ClearValue* pOptimizedClearValue, ID3D12ProtectedResourceSession* pProtectedSession, Guid* riidResource, void** ppvResource) @@ -615,7 +615,7 @@ public unsafe partial struct ID3D12Device8 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[69]))((ID3D12Device8*)Unsafe.AsPointer(ref this), pHeapProperties, HeapFlags, pDesc, InitialResourceState, pOptimizedClearValue, pProtectedSession, riidResource, ppvResource); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(70)] public HResult CreatePlacedResource1(ID3D12Heap* pHeap, ulong HeapOffset, ResourceDescription1* pDesc, ResourceStates InitialState, ClearValue* pOptimizedClearValue, Guid* riid, void** ppvResource) @@ -623,7 +623,7 @@ public unsafe partial struct ID3D12Device8 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[70]))((ID3D12Device8*)Unsafe.AsPointer(ref this), pHeap, HeapOffset, pDesc, InitialState, pOptimizedClearValue, riid, ppvResource); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(71)] public void CreateSamplerFeedbackUnorderedAccessView(ID3D12Resource* pTargetedResource, ID3D12Resource* pFeedbackResource, CpuDescriptorHandle* DestDescriptor) @@ -631,7 +631,7 @@ public unsafe partial struct ID3D12Device8 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[71]))((ID3D12Device8*)Unsafe.AsPointer(ref this), pTargetedResource, pFeedbackResource, DestDescriptor); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(72)] public void GetCopyableFootprints1(ResourceDescription1* pResourceDesc, uint FirstSubresource, uint NumSubresources, ulong BaseOffset, PlacedSubresourceFootprint* pLayouts, uint* pNumRows, ulong* pRowSizeInBytes, ulong* pTotalBytes) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Device9.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Device9.cs index 084585f..8ad3bf1 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Device9.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Device9.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12Device9 [Guid("4c80e962-f032-4f60-bc9e-ebc2cfa1d83c")] [NativeTypeName("struct ID3D12Device9 : ID3D12Device8")] @@ -639,7 +639,7 @@ public unsafe partial struct ID3D12Device9 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[72]))((ID3D12Device9*)Unsafe.AsPointer(ref this), pResourceDesc, FirstSubresource, NumSubresources, BaseOffset, pLayouts, pNumRows, pRowSizeInBytes, pTotalBytes); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(73)] public HResult CreateShaderCacheSession(ShaderCacheSessionDescription* pDesc, Guid* riid, void** ppvSession) @@ -647,7 +647,7 @@ public unsafe partial struct ID3D12Device9 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[73]))((ID3D12Device9*)Unsafe.AsPointer(ref this), pDesc, riid, ppvSession); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(74)] public HResult ShaderCacheControl(ShaderCacheKindFlags Kinds, ShaderCacheControlFlags Control) @@ -655,7 +655,7 @@ public unsafe partial struct ID3D12Device9 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[74]))((ID3D12Device9*)Unsafe.AsPointer(ref this), Kinds, Control); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(75)] public HResult CreateCommandQueue1(CommandQueueDescription* pDesc, Guid* CreatorID, Guid* riid, void** ppCommandQueue) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12DeviceChild.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12DeviceChild.cs index 16f704b..b2ab742 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12DeviceChild.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12DeviceChild.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12DeviceChild [Guid("905db94b-a00c-4140-9df5-2b64ca9ea357")] [NativeTypeName("struct ID3D12DeviceChild : ID3D12Object")] @@ -106,7 +106,7 @@ public unsafe partial struct ID3D12DeviceChild : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[6]))((ID3D12DeviceChild*)Unsafe.AsPointer(ref this), Name); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(7)] public HResult GetDevice(Guid* riid, void** ppvDevice) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12DeviceRemovedExtendedData.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12DeviceRemovedExtendedData.cs index 4317716..cd9b325 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12DeviceRemovedExtendedData.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12DeviceRemovedExtendedData.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12DeviceRemovedExtendedData [Guid("98931d33-5ae8-4791-aa3c-1a73a2934e71")] [NativeTypeName("struct ID3D12DeviceRemovedExtendedData : IUnknown")] @@ -74,7 +74,7 @@ public unsafe partial struct ID3D12DeviceRemovedExtendedData : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[2]))((IUnknown*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(3)] public HResult GetAutoBreadcrumbsOutput(DredAutoBreadcrumbsOutput* pOutput) @@ -82,7 +82,7 @@ public unsafe partial struct ID3D12DeviceRemovedExtendedData : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[3]))((ID3D12DeviceRemovedExtendedData*)Unsafe.AsPointer(ref this), pOutput); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(4)] public HResult GetPageFaultAllocationOutput(DredPageFaultOutput* pOutput) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12DeviceRemovedExtendedData1.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12DeviceRemovedExtendedData1.cs index d95c883..e204c3b 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12DeviceRemovedExtendedData1.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12DeviceRemovedExtendedData1.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12DeviceRemovedExtendedData1 [Guid("9727a022-cf1d-4dda-9eba-effa653fc506")] [NativeTypeName("struct ID3D12DeviceRemovedExtendedData1 : ID3D12DeviceRemovedExtendedData")] @@ -90,7 +90,7 @@ public unsafe partial struct ID3D12DeviceRemovedExtendedData1 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[4]))((ID3D12DeviceRemovedExtendedData1*)Unsafe.AsPointer(ref this), pOutput); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(5)] public HResult GetAutoBreadcrumbsOutput1(DredAutoBreadcrumbsOutput1* pOutput) @@ -98,7 +98,7 @@ public unsafe partial struct ID3D12DeviceRemovedExtendedData1 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[5]))((ID3D12DeviceRemovedExtendedData1*)Unsafe.AsPointer(ref this), pOutput); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(6)] public HResult GetPageFaultAllocationOutput1(DredPageFaultOutput1* pOutput) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12DeviceRemovedExtendedData2.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12DeviceRemovedExtendedData2.cs index 445936d..3603237 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12DeviceRemovedExtendedData2.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12DeviceRemovedExtendedData2.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12DeviceRemovedExtendedData2 [Guid("67fc5816-e4ca-4915-bf18-42541272da54")] [NativeTypeName("struct ID3D12DeviceRemovedExtendedData2 : ID3D12DeviceRemovedExtendedData1")] @@ -106,7 +106,7 @@ public unsafe partial struct ID3D12DeviceRemovedExtendedData2 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[6]))((ID3D12DeviceRemovedExtendedData2*)Unsafe.AsPointer(ref this), pOutput); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(7)] public HResult GetPageFaultAllocationOutput2(DredPageFaultOutput2* pOutput) @@ -114,7 +114,7 @@ public unsafe partial struct ID3D12DeviceRemovedExtendedData2 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D12DeviceRemovedExtendedData2*)Unsafe.AsPointer(ref this), pOutput); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public DredDeviceState GetDeviceState() diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12DeviceRemovedExtendedDataSettings.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12DeviceRemovedExtendedDataSettings.cs index 24398e5..9d29a5c 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12DeviceRemovedExtendedDataSettings.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12DeviceRemovedExtendedDataSettings.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12DeviceRemovedExtendedDataSettings [Guid("82bc481c-6b9b-4030-aedb-7ee3d1df1e63")] [NativeTypeName("struct ID3D12DeviceRemovedExtendedDataSettings : IUnknown")] @@ -74,7 +74,7 @@ public unsafe partial struct ID3D12DeviceRemovedExtendedDataSettings : INativeGu return ((delegate* unmanaged[Stdcall])(lpVtbl[2]))((IUnknown*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(3)] public void SetAutoBreadcrumbsEnablement(DredEnablement Enablement) @@ -82,7 +82,7 @@ public unsafe partial struct ID3D12DeviceRemovedExtendedDataSettings : INativeGu ((delegate* unmanaged[Stdcall])(lpVtbl[3]))((ID3D12DeviceRemovedExtendedDataSettings*)Unsafe.AsPointer(ref this), Enablement); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(4)] public void SetPageFaultEnablement(DredEnablement Enablement) @@ -90,7 +90,7 @@ public unsafe partial struct ID3D12DeviceRemovedExtendedDataSettings : INativeGu ((delegate* unmanaged[Stdcall])(lpVtbl[4]))((ID3D12DeviceRemovedExtendedDataSettings*)Unsafe.AsPointer(ref this), Enablement); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(5)] public void SetWatsonDumpEnablement(DredEnablement Enablement) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12DeviceRemovedExtendedDataSettings1.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12DeviceRemovedExtendedDataSettings1.cs index 038e7d5..f374915 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12DeviceRemovedExtendedDataSettings1.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12DeviceRemovedExtendedDataSettings1.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12DeviceRemovedExtendedDataSettings1 [Guid("dbd5ae51-3317-4f0a-adf9-1d7cedcaae0b")] [NativeTypeName("struct ID3D12DeviceRemovedExtendedDataSettings1 : ID3D12DeviceRemovedExtendedDataSettings")] @@ -98,7 +98,7 @@ public unsafe partial struct ID3D12DeviceRemovedExtendedDataSettings1 : INativeG ((delegate* unmanaged[Stdcall])(lpVtbl[5]))((ID3D12DeviceRemovedExtendedDataSettings1*)Unsafe.AsPointer(ref this), Enablement); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(6)] public void SetBreadcrumbContextEnablement(DredEnablement Enablement) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Fence.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Fence.cs index 23c9985..48e0f8c 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Fence.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Fence.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12Fence [Guid("0a753dcf-c4d8-4b91-adf6-be5a60d95a76")] [NativeTypeName("struct ID3D12Fence : ID3D12Pageable")] @@ -114,7 +114,7 @@ public unsafe partial struct ID3D12Fence : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D12Fence*)Unsafe.AsPointer(ref this), riid, ppvDevice); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public ulong GetCompletedValue() @@ -122,7 +122,7 @@ public unsafe partial struct ID3D12Fence : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[8]))((ID3D12Fence*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(9)] public HResult SetEventOnCompletion(ulong Value, Handle hEvent) @@ -130,7 +130,7 @@ public unsafe partial struct ID3D12Fence : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[9]))((ID3D12Fence*)Unsafe.AsPointer(ref this), Value, hEvent); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(10)] public HResult Signal(ulong Value) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Fence1.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Fence1.cs index 22a464b..e403a44 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Fence1.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Fence1.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12Fence1 [Guid("433685fe-e22b-4ca0-a8db-b5b4f4dd0e4a")] [NativeTypeName("struct ID3D12Fence1 : ID3D12Fence")] @@ -138,7 +138,7 @@ public unsafe partial struct ID3D12Fence1 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[10]))((ID3D12Fence1*)Unsafe.AsPointer(ref this), Value); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(11)] public FenceFlags GetCreationFlags() diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12FunctionParameterReflection.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12FunctionParameterReflection.cs index 7758ea1..fdcb6cc 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12FunctionParameterReflection.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12FunctionParameterReflection.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12FunctionParameterReflection [Guid("ec25f42d-7006-4f2b-b33e-02cc3375733f")] public unsafe partial struct ID3D12FunctionParameterReflection : INativeGuid @@ -46,7 +46,7 @@ public unsafe partial struct ID3D12FunctionParameterReflection : INativeGuid public void** lpVtbl; - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(0)] public HResult GetDesc(ParameterDescription* pDesc) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12FunctionReflection.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12FunctionReflection.cs index 239b9ed..227ea76 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12FunctionReflection.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12FunctionReflection.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12FunctionReflection [Guid("1108795c-2772-4ba9-b2a8-d464dc7e2799")] public unsafe partial struct ID3D12FunctionReflection : INativeGuid @@ -46,7 +46,7 @@ public unsafe partial struct ID3D12FunctionReflection : INativeGuid public void** lpVtbl; - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(0)] public HResult GetDesc(FunctionDescription* pDesc) @@ -54,7 +54,7 @@ public unsafe partial struct ID3D12FunctionReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[0]))((ID3D12FunctionReflection*)Unsafe.AsPointer(ref this), pDesc); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(1)] public ID3D12ShaderReflectionConstantBuffer GetConstantBufferByIndex(uint BufferIndex) @@ -62,7 +62,7 @@ public unsafe partial struct ID3D12FunctionReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[1]))((ID3D12FunctionReflection*)Unsafe.AsPointer(ref this), BufferIndex); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(2)] public ID3D12ShaderReflectionConstantBuffer GetConstantBufferByName(sbyte* Name) @@ -70,7 +70,7 @@ public unsafe partial struct ID3D12FunctionReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[2]))((ID3D12FunctionReflection*)Unsafe.AsPointer(ref this), Name); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(3)] public HResult GetResourceBindingDesc(uint ResourceIndex, ShaderInputBindDescription* pDesc) @@ -78,7 +78,7 @@ public unsafe partial struct ID3D12FunctionReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[3]))((ID3D12FunctionReflection*)Unsafe.AsPointer(ref this), ResourceIndex, pDesc); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(4)] public ID3D12ShaderReflectionVariable GetVariableByName(sbyte* Name) @@ -86,7 +86,7 @@ public unsafe partial struct ID3D12FunctionReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[4]))((ID3D12FunctionReflection*)Unsafe.AsPointer(ref this), Name); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(5)] public HResult GetResourceBindingDescByName(sbyte* Name, ShaderInputBindDescription* pDesc) @@ -94,7 +94,7 @@ public unsafe partial struct ID3D12FunctionReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[5]))((ID3D12FunctionReflection*)Unsafe.AsPointer(ref this), Name, pDesc); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(6)] public ID3D12FunctionParameterReflection GetFunctionParameter(int ParameterIndex) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12GraphicsCommandList.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12GraphicsCommandList.cs index 294337f..5e42ac9 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12GraphicsCommandList.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12GraphicsCommandList.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12GraphicsCommandList [Guid("5b160d0f-ac1b-4185-8ba8-b3ae42a5a455")] [NativeTypeName("struct ID3D12GraphicsCommandList : ID3D12CommandList")] @@ -122,7 +122,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[8]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(9)] public HResult Close() @@ -130,7 +130,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[9]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(10)] public HResult Reset(ID3D12CommandAllocator* pAllocator, ID3D12PipelineState* pInitialState) @@ -138,7 +138,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[10]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this), pAllocator, pInitialState); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(11)] public void ClearState(ID3D12PipelineState* pPipelineState) @@ -146,7 +146,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[11]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this), pPipelineState); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(12)] public void DrawInstanced(uint VertexCountPerInstance, uint InstanceCount, uint StartVertexLocation, uint StartInstanceLocation) @@ -154,7 +154,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[12]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this), VertexCountPerInstance, InstanceCount, StartVertexLocation, StartInstanceLocation); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(13)] public void DrawIndexedInstanced(uint IndexCountPerInstance, uint InstanceCount, uint StartIndexLocation, int BaseVertexLocation, uint StartInstanceLocation) @@ -162,7 +162,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[13]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this), IndexCountPerInstance, InstanceCount, StartIndexLocation, BaseVertexLocation, StartInstanceLocation); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(14)] public void Dispatch(uint ThreadGroupCountX, uint ThreadGroupCountY, uint ThreadGroupCountZ) @@ -170,7 +170,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[14]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this), ThreadGroupCountX, ThreadGroupCountY, ThreadGroupCountZ); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(15)] public void CopyBufferRegion(ID3D12Resource* pDstBuffer, ulong DstOffset, ID3D12Resource* pSrcBuffer, ulong SrcOffset, ulong NumBytes) @@ -178,7 +178,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[15]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this), pDstBuffer, DstOffset, pSrcBuffer, SrcOffset, NumBytes); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(16)] public void CopyTextureRegion(TextureCopyLocation* pDst, uint DstX, uint DstY, uint DstZ, TextureCopyLocation* pSrc, Box* pSrcBox) @@ -186,7 +186,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[16]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this), pDst, DstX, DstY, DstZ, pSrc, pSrcBox); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(17)] public void CopyResource(ID3D12Resource* pDstResource, ID3D12Resource* pSrcResource) @@ -194,7 +194,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[17]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this), pDstResource, pSrcResource); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(18)] public void CopyTiles(ID3D12Resource* pTiledResource, TiledResourceCoordinate* pTileRegionStartCoordinate, TileRegionSize* pTileRegionSize, ID3D12Resource* pBuffer, ulong BufferStartOffsetInBytes, TileCopyFlags Flags) @@ -202,7 +202,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[18]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this), pTiledResource, pTileRegionStartCoordinate, pTileRegionSize, pBuffer, BufferStartOffsetInBytes, Flags); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(19)] public void ResolveSubresource(ID3D12Resource* pDstResource, uint DstSubresource, ID3D12Resource* pSrcResource, uint SrcSubresource, Graphics.Dxgi.Common.Format Format) @@ -210,7 +210,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[19]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this), pDstResource, DstSubresource, pSrcResource, SrcSubresource, Format); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(20)] public void IASetPrimitiveTopology(Graphics.Direct3D.PrimitiveTopology PrimitiveTopology) @@ -218,7 +218,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[20]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this), PrimitiveTopology); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(21)] public void RSSetViewports(uint NumViewports, Viewport* pViewports) @@ -226,7 +226,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[21]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this), NumViewports, pViewports); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(22)] public void RSSetScissorRects(uint NumRects, RawRect* pRects) @@ -234,7 +234,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[22]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this), NumRects, pRects); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(23)] public void OMSetBlendFactor(float* BlendFactor) @@ -242,7 +242,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[23]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this), BlendFactor); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(24)] public void OMSetStencilRef(uint StencilRef) @@ -250,7 +250,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[24]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this), StencilRef); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(25)] public void SetPipelineState(ID3D12PipelineState* pPipelineState) @@ -258,7 +258,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[25]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this), pPipelineState); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(26)] public void ResourceBarrier(uint NumBarriers, ResourceBarrier* pBarriers) @@ -266,7 +266,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[26]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this), NumBarriers, pBarriers); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(27)] public void ExecuteBundle(ID3D12GraphicsCommandList* pCommandList) @@ -274,7 +274,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[27]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this), pCommandList); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(28)] public void SetDescriptorHeaps(uint NumDescriptorHeaps, ID3D12DescriptorHeap** ppDescriptorHeaps) @@ -282,7 +282,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[28]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this), NumDescriptorHeaps, ppDescriptorHeaps); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(29)] public void SetComputeRootSignature(ID3D12RootSignature* pRootSignature) @@ -290,7 +290,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[29]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this), pRootSignature); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(30)] public void SetGraphicsRootSignature(ID3D12RootSignature* pRootSignature) @@ -298,7 +298,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[30]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this), pRootSignature); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(31)] public void SetComputeRootDescriptorTable(uint RootParameterIndex, GpuDescriptorHandle* BaseDescriptor) @@ -306,7 +306,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[31]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this), RootParameterIndex, BaseDescriptor); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(32)] public void SetGraphicsRootDescriptorTable(uint RootParameterIndex, GpuDescriptorHandle* BaseDescriptor) @@ -314,7 +314,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[32]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this), RootParameterIndex, BaseDescriptor); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(33)] public void SetComputeRoot32BitConstant(uint RootParameterIndex, uint SrcData, uint DestOffsetIn32BitValues) @@ -322,7 +322,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[33]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this), RootParameterIndex, SrcData, DestOffsetIn32BitValues); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(34)] public void SetGraphicsRoot32BitConstant(uint RootParameterIndex, uint SrcData, uint DestOffsetIn32BitValues) @@ -330,7 +330,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[34]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this), RootParameterIndex, SrcData, DestOffsetIn32BitValues); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(35)] public void SetComputeRoot32BitConstants(uint RootParameterIndex, uint Num32BitValuesToSet, void* pSrcData, uint DestOffsetIn32BitValues) @@ -338,7 +338,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[35]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this), RootParameterIndex, Num32BitValuesToSet, pSrcData, DestOffsetIn32BitValues); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(36)] public void SetGraphicsRoot32BitConstants(uint RootParameterIndex, uint Num32BitValuesToSet, void* pSrcData, uint DestOffsetIn32BitValues) @@ -346,7 +346,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[36]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this), RootParameterIndex, Num32BitValuesToSet, pSrcData, DestOffsetIn32BitValues); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(37)] public void SetComputeRootConstantBufferView(uint RootParameterIndex, ulong BufferLocation) @@ -354,7 +354,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[37]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this), RootParameterIndex, BufferLocation); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(38)] public void SetGraphicsRootConstantBufferView(uint RootParameterIndex, ulong BufferLocation) @@ -362,7 +362,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[38]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this), RootParameterIndex, BufferLocation); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(39)] public void SetComputeRootShaderResourceView(uint RootParameterIndex, ulong BufferLocation) @@ -370,7 +370,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[39]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this), RootParameterIndex, BufferLocation); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(40)] public void SetGraphicsRootShaderResourceView(uint RootParameterIndex, ulong BufferLocation) @@ -378,7 +378,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[40]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this), RootParameterIndex, BufferLocation); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(41)] public void SetComputeRootUnorderedAccessView(uint RootParameterIndex, ulong BufferLocation) @@ -386,7 +386,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[41]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this), RootParameterIndex, BufferLocation); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(42)] public void SetGraphicsRootUnorderedAccessView(uint RootParameterIndex, ulong BufferLocation) @@ -394,7 +394,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[42]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this), RootParameterIndex, BufferLocation); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(43)] public void IASetIndexBuffer(IndexBufferView* pView) @@ -402,7 +402,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[43]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this), pView); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(44)] public void IASetVertexBuffers(uint StartSlot, uint NumViews, VertexBufferView* pViews) @@ -410,7 +410,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[44]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this), StartSlot, NumViews, pViews); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(45)] public void SOSetTargets(uint StartSlot, uint NumViews, StreamOutputBufferView* pViews) @@ -418,7 +418,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[45]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this), StartSlot, NumViews, pViews); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(46)] public void OMSetRenderTargets(uint NumRenderTargetDescriptors, CpuDescriptorHandle* pRenderTargetDescriptors, Bool32 RTsSingleHandleToDescriptorRange, CpuDescriptorHandle* pDepthStencilDescriptor) @@ -426,7 +426,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[46]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this), NumRenderTargetDescriptors, pRenderTargetDescriptors, RTsSingleHandleToDescriptorRange, pDepthStencilDescriptor); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(47)] public void ClearDepthStencilView(CpuDescriptorHandle* DepthStencilView, ClearFlags ClearFlags, float Depth, byte Stencil, uint NumRects, RawRect* pRects) @@ -434,7 +434,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[47]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this), DepthStencilView, ClearFlags, Depth, Stencil, NumRects, pRects); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(48)] public void ClearRenderTargetView(CpuDescriptorHandle* RenderTargetView, float* ColorRGBA, uint NumRects, RawRect* pRects) @@ -442,7 +442,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[48]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this), RenderTargetView, ColorRGBA, NumRects, pRects); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(49)] public void ClearUnorderedAccessViewUint(GpuDescriptorHandle* ViewGPUHandleInCurrentHeap, CpuDescriptorHandle* ViewCPUHandle, ID3D12Resource* pResource, uint* Values, uint NumRects, RawRect* pRects) @@ -450,7 +450,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[49]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this), ViewGPUHandleInCurrentHeap, ViewCPUHandle, pResource, Values, NumRects, pRects); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(50)] public void ClearUnorderedAccessViewFloat(GpuDescriptorHandle* ViewGPUHandleInCurrentHeap, CpuDescriptorHandle* ViewCPUHandle, ID3D12Resource* pResource, float* Values, uint NumRects, RawRect* pRects) @@ -458,7 +458,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[50]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this), ViewGPUHandleInCurrentHeap, ViewCPUHandle, pResource, Values, NumRects, pRects); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(51)] public void DiscardResource(ID3D12Resource* pResource, DiscardRegion* pRegion) @@ -466,7 +466,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[51]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this), pResource, pRegion); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(52)] public void BeginQuery(ID3D12QueryHeap* pQueryHeap, QueryType Type, uint Index) @@ -474,7 +474,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[52]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this), pQueryHeap, Type, Index); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(53)] public void EndQuery(ID3D12QueryHeap* pQueryHeap, QueryType Type, uint Index) @@ -482,7 +482,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[53]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this), pQueryHeap, Type, Index); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(54)] public void ResolveQueryData(ID3D12QueryHeap* pQueryHeap, QueryType Type, uint StartIndex, uint NumQueries, ID3D12Resource* pDestinationBuffer, ulong AlignedDestinationBufferOffset) @@ -490,7 +490,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[54]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this), pQueryHeap, Type, StartIndex, NumQueries, pDestinationBuffer, AlignedDestinationBufferOffset); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(55)] public void SetPredication(ID3D12Resource* pBuffer, ulong AlignedBufferOffset, PredicationOperation Operation) @@ -498,7 +498,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[55]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this), pBuffer, AlignedBufferOffset, Operation); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(56)] public void SetMarker(uint Metadata, void* pData, uint Size) @@ -506,7 +506,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[56]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this), Metadata, pData, Size); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(57)] public void BeginEvent(uint Metadata, void* pData, uint Size) @@ -514,7 +514,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[57]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this), Metadata, pData, Size); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(58)] public void EndEvent() @@ -522,7 +522,7 @@ public unsafe partial struct ID3D12GraphicsCommandList : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[58]))((ID3D12GraphicsCommandList*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(59)] public void ExecuteIndirect(ID3D12CommandSignature* pCommandSignature, uint MaxCommandCount, ID3D12Resource* pArgumentBuffer, ulong ArgumentBufferOffset, ID3D12Resource* pCountBuffer, ulong CountBufferOffset) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12GraphicsCommandList1.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12GraphicsCommandList1.cs index f9564ab..1cabc4f 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12GraphicsCommandList1.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12GraphicsCommandList1.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12GraphicsCommandList1 [Guid("553103fb-1fe7-4557-bb38-946d7d0e7ca7")] [NativeTypeName("struct ID3D12GraphicsCommandList1 : ID3D12GraphicsCommandList")] @@ -530,7 +530,7 @@ public unsafe partial struct ID3D12GraphicsCommandList1 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[59]))((ID3D12GraphicsCommandList1*)Unsafe.AsPointer(ref this), pCommandSignature, MaxCommandCount, pArgumentBuffer, ArgumentBufferOffset, pCountBuffer, CountBufferOffset); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(60)] public void AtomicCopyBufferUINT(ID3D12Resource* pDstBuffer, ulong DstOffset, ID3D12Resource* pSrcBuffer, ulong SrcOffset, uint Dependencies, ID3D12Resource** ppDependentResources, SubresourceRangeUInt64* pDependentSubresourceRanges) @@ -538,7 +538,7 @@ public unsafe partial struct ID3D12GraphicsCommandList1 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[60]))((ID3D12GraphicsCommandList1*)Unsafe.AsPointer(ref this), pDstBuffer, DstOffset, pSrcBuffer, SrcOffset, Dependencies, ppDependentResources, pDependentSubresourceRanges); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(61)] public void AtomicCopyBufferUINT64(ID3D12Resource* pDstBuffer, ulong DstOffset, ID3D12Resource* pSrcBuffer, ulong SrcOffset, uint Dependencies, ID3D12Resource** ppDependentResources, SubresourceRangeUInt64* pDependentSubresourceRanges) @@ -546,7 +546,7 @@ public unsafe partial struct ID3D12GraphicsCommandList1 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[61]))((ID3D12GraphicsCommandList1*)Unsafe.AsPointer(ref this), pDstBuffer, DstOffset, pSrcBuffer, SrcOffset, Dependencies, ppDependentResources, pDependentSubresourceRanges); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(62)] public void OMSetDepthBounds(float Min, float Max) @@ -554,7 +554,7 @@ public unsafe partial struct ID3D12GraphicsCommandList1 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[62]))((ID3D12GraphicsCommandList1*)Unsafe.AsPointer(ref this), Min, Max); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(63)] public void SetSamplePositions(uint NumSamplesPerPixel, uint NumPixels, SamplePosition* pSamplePositions) @@ -562,7 +562,7 @@ public unsafe partial struct ID3D12GraphicsCommandList1 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[63]))((ID3D12GraphicsCommandList1*)Unsafe.AsPointer(ref this), NumSamplesPerPixel, NumPixels, pSamplePositions); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(64)] public void ResolveSubresourceRegion(ID3D12Resource* pDstResource, uint DstSubresource, uint DstX, uint DstY, ID3D12Resource* pSrcResource, uint SrcSubresource, RawRect* pSrcRect, Graphics.Dxgi.Common.Format Format, ResolveMode ResolveMode) @@ -570,7 +570,7 @@ public unsafe partial struct ID3D12GraphicsCommandList1 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[64]))((ID3D12GraphicsCommandList1*)Unsafe.AsPointer(ref this), pDstResource, DstSubresource, DstX, DstY, pSrcResource, SrcSubresource, pSrcRect, Format, ResolveMode); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(65)] public void SetViewInstanceMask(uint Mask) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12GraphicsCommandList2.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12GraphicsCommandList2.cs index f6fbe4a..eb13a7f 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12GraphicsCommandList2.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12GraphicsCommandList2.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12GraphicsCommandList2 [Guid("38c3e585-ff17-412c-9150-4fc6f9d72a28")] [NativeTypeName("struct ID3D12GraphicsCommandList2 : ID3D12GraphicsCommandList1")] @@ -578,7 +578,7 @@ public unsafe partial struct ID3D12GraphicsCommandList2 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[65]))((ID3D12GraphicsCommandList2*)Unsafe.AsPointer(ref this), Mask); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(66)] public void WriteBufferImmediate(uint Count, WriteBufferImmediateParameter* pParams, WriteBufferImmediateMode* pModes) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12GraphicsCommandList3.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12GraphicsCommandList3.cs index ce9c5ca..aa86822 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12GraphicsCommandList3.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12GraphicsCommandList3.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12GraphicsCommandList3 [Guid("6fda83a7-b84c-4e38-9ac8-c7bd22016b3d")] [NativeTypeName("struct ID3D12GraphicsCommandList3 : ID3D12GraphicsCommandList2")] @@ -586,7 +586,7 @@ public unsafe partial struct ID3D12GraphicsCommandList3 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[66]))((ID3D12GraphicsCommandList3*)Unsafe.AsPointer(ref this), Count, pParams, pModes); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(67)] public void SetProtectedResourceSession(ID3D12ProtectedResourceSession* pProtectedResourceSession) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12GraphicsCommandList4.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12GraphicsCommandList4.cs index 0899773..5adf2e6 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12GraphicsCommandList4.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12GraphicsCommandList4.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12GraphicsCommandList4 [Guid("8754318e-d3a9-4541-98cf-645b50dc4874")] [NativeTypeName("struct ID3D12GraphicsCommandList4 : ID3D12GraphicsCommandList3")] @@ -594,7 +594,7 @@ public unsafe partial struct ID3D12GraphicsCommandList4 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[67]))((ID3D12GraphicsCommandList4*)Unsafe.AsPointer(ref this), pProtectedResourceSession); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(68)] public void BeginRenderPass(uint NumRenderTargets, RenderPassRenderTargetDescription* pRenderTargets, RenderPassDepthStencilDescription* pDepthStencil, RenderPassFlags Flags) @@ -602,7 +602,7 @@ public unsafe partial struct ID3D12GraphicsCommandList4 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[68]))((ID3D12GraphicsCommandList4*)Unsafe.AsPointer(ref this), NumRenderTargets, pRenderTargets, pDepthStencil, Flags); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(69)] public void EndRenderPass() @@ -610,7 +610,7 @@ public unsafe partial struct ID3D12GraphicsCommandList4 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[69]))((ID3D12GraphicsCommandList4*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(70)] public void InitializeMetaCommand(ID3D12MetaCommand* pMetaCommand, void* pInitializationParametersData, nuint InitializationParametersDataSizeInBytes) @@ -618,7 +618,7 @@ public unsafe partial struct ID3D12GraphicsCommandList4 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[70]))((ID3D12GraphicsCommandList4*)Unsafe.AsPointer(ref this), pMetaCommand, pInitializationParametersData, InitializationParametersDataSizeInBytes); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(71)] public void ExecuteMetaCommand(ID3D12MetaCommand* pMetaCommand, void* pExecutionParametersData, nuint ExecutionParametersDataSizeInBytes) @@ -626,7 +626,7 @@ public unsafe partial struct ID3D12GraphicsCommandList4 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[71]))((ID3D12GraphicsCommandList4*)Unsafe.AsPointer(ref this), pMetaCommand, pExecutionParametersData, ExecutionParametersDataSizeInBytes); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(72)] public void BuildRaytracingAccelerationStructure(BuildRaytracingAccelerationStructureDescription* pDesc, uint NumPostbuildInfoDescs, RaytracingAccelerationStructurePostbuildInfoDescription* pPostbuildInfoDescs) @@ -634,7 +634,7 @@ public unsafe partial struct ID3D12GraphicsCommandList4 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[72]))((ID3D12GraphicsCommandList4*)Unsafe.AsPointer(ref this), pDesc, NumPostbuildInfoDescs, pPostbuildInfoDescs); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(73)] public void EmitRaytracingAccelerationStructurePostbuildInfo(RaytracingAccelerationStructurePostbuildInfoDescription* pDesc, uint NumSourceAccelerationStructures, ulong* pSourceAccelerationStructureData) @@ -642,7 +642,7 @@ public unsafe partial struct ID3D12GraphicsCommandList4 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[73]))((ID3D12GraphicsCommandList4*)Unsafe.AsPointer(ref this), pDesc, NumSourceAccelerationStructures, pSourceAccelerationStructureData); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(74)] public void CopyRaytracingAccelerationStructure(ulong DestAccelerationStructureData, ulong SourceAccelerationStructureData, RaytracingAccelerationStructureCopyMode Mode) @@ -650,7 +650,7 @@ public unsafe partial struct ID3D12GraphicsCommandList4 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[74]))((ID3D12GraphicsCommandList4*)Unsafe.AsPointer(ref this), DestAccelerationStructureData, SourceAccelerationStructureData, Mode); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(75)] public void SetPipelineState1(ID3D12StateObject* pStateObject) @@ -658,7 +658,7 @@ public unsafe partial struct ID3D12GraphicsCommandList4 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[75]))((ID3D12GraphicsCommandList4*)Unsafe.AsPointer(ref this), pStateObject); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(76)] public void DispatchRays(DispatchRaysDescription* pDesc) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12GraphicsCommandList5.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12GraphicsCommandList5.cs index 97f08d0..f372c86 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12GraphicsCommandList5.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12GraphicsCommandList5.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12GraphicsCommandList5 [Guid("55050859-4024-474c-87f5-6472eaee44ea")] [NativeTypeName("struct ID3D12GraphicsCommandList5 : ID3D12GraphicsCommandList4")] @@ -666,7 +666,7 @@ public unsafe partial struct ID3D12GraphicsCommandList5 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[76]))((ID3D12GraphicsCommandList5*)Unsafe.AsPointer(ref this), pDesc); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(77)] public void RSSetShadingRate(ShadingRate baseShadingRate, ShadingRateCombiner* combiners) @@ -674,7 +674,7 @@ public unsafe partial struct ID3D12GraphicsCommandList5 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[77]))((ID3D12GraphicsCommandList5*)Unsafe.AsPointer(ref this), baseShadingRate, combiners); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(78)] public void RSSetShadingRateImage(ID3D12Resource* shadingRateImage) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12GraphicsCommandList6.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12GraphicsCommandList6.cs index 231b21c..5970635 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12GraphicsCommandList6.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12GraphicsCommandList6.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12GraphicsCommandList6 [Guid("c3827890-e548-4cfa-96cf-5689a9370f80")] [NativeTypeName("struct ID3D12GraphicsCommandList6 : ID3D12GraphicsCommandList5")] @@ -682,7 +682,7 @@ public unsafe partial struct ID3D12GraphicsCommandList6 : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[78]))((ID3D12GraphicsCommandList6*)Unsafe.AsPointer(ref this), shadingRateImage); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(79)] public void DispatchMesh(uint ThreadGroupCountX, uint ThreadGroupCountY, uint ThreadGroupCountZ) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Heap.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Heap.cs index 330c134..72f5676 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Heap.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Heap.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12Heap [Guid("6b3b2502-6e51-45b3-90ee-9884265e8df3")] [NativeTypeName("struct ID3D12Heap : ID3D12Pageable")] @@ -114,7 +114,7 @@ public unsafe partial struct ID3D12Heap : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D12Heap*)Unsafe.AsPointer(ref this), riid, ppvDevice); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public HeapDescription GetDesc() diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Heap1.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Heap1.cs index c8029cc..b4e00a6 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Heap1.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Heap1.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12Heap1 [Guid("572f7389-2168-49e3-9693-d6df5871bf6d")] [NativeTypeName("struct ID3D12Heap1 : ID3D12Heap")] @@ -123,7 +123,7 @@ public unsafe partial struct ID3D12Heap1 : INativeGuid return *((delegate* unmanaged[Stdcall])(lpVtbl[8]))((ID3D12Heap1*)Unsafe.AsPointer(ref this), &result); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(9)] public HResult GetProtectedResourceSession(Guid* riid, void** ppProtectedSession) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12InfoQueue.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12InfoQueue.cs index ad0b179..4ae2f55 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12InfoQueue.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12InfoQueue.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12InfoQueue [Guid("0742a90b-c387-483f-b946-30a7e4e61458")] [NativeTypeName("struct ID3D12InfoQueue : IUnknown")] @@ -74,7 +74,7 @@ public unsafe partial struct ID3D12InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[2]))((IUnknown*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(3)] public HResult SetMessageCountLimit(ulong MessageCountLimit) @@ -82,7 +82,7 @@ public unsafe partial struct ID3D12InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[3]))((ID3D12InfoQueue*)Unsafe.AsPointer(ref this), MessageCountLimit); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(4)] public void ClearStoredMessages() @@ -90,7 +90,7 @@ public unsafe partial struct ID3D12InfoQueue : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[4]))((ID3D12InfoQueue*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(5)] public HResult GetMessage(ulong MessageIndex, Message* pMessage, nuint* pMessageByteLength) @@ -98,7 +98,7 @@ public unsafe partial struct ID3D12InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[5]))((ID3D12InfoQueue*)Unsafe.AsPointer(ref this), MessageIndex, pMessage, pMessageByteLength); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(6)] public ulong GetNumMessagesAllowedByStorageFilter() @@ -106,7 +106,7 @@ public unsafe partial struct ID3D12InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[6]))((ID3D12InfoQueue*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(7)] public ulong GetNumMessagesDeniedByStorageFilter() @@ -114,7 +114,7 @@ public unsafe partial struct ID3D12InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D12InfoQueue*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public ulong GetNumStoredMessages() @@ -122,7 +122,7 @@ public unsafe partial struct ID3D12InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[8]))((ID3D12InfoQueue*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(9)] public ulong GetNumStoredMessagesAllowedByRetrievalFilter() @@ -130,7 +130,7 @@ public unsafe partial struct ID3D12InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[9]))((ID3D12InfoQueue*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(10)] public ulong GetNumMessagesDiscardedByMessageCountLimit() @@ -138,7 +138,7 @@ public unsafe partial struct ID3D12InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[10]))((ID3D12InfoQueue*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(11)] public ulong GetMessageCountLimit() @@ -146,7 +146,7 @@ public unsafe partial struct ID3D12InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[11]))((ID3D12InfoQueue*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(12)] public HResult AddStorageFilterEntries(InfoQueueFilter* pFilter) @@ -154,7 +154,7 @@ public unsafe partial struct ID3D12InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[12]))((ID3D12InfoQueue*)Unsafe.AsPointer(ref this), pFilter); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(13)] public HResult GetStorageFilter(InfoQueueFilter* pFilter, nuint* pFilterByteLength) @@ -162,7 +162,7 @@ public unsafe partial struct ID3D12InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[13]))((ID3D12InfoQueue*)Unsafe.AsPointer(ref this), pFilter, pFilterByteLength); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(14)] public void ClearStorageFilter() @@ -170,7 +170,7 @@ public unsafe partial struct ID3D12InfoQueue : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[14]))((ID3D12InfoQueue*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(15)] public HResult PushEmptyStorageFilter() @@ -178,7 +178,7 @@ public unsafe partial struct ID3D12InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[15]))((ID3D12InfoQueue*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(16)] public HResult PushCopyOfStorageFilter() @@ -186,7 +186,7 @@ public unsafe partial struct ID3D12InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[16]))((ID3D12InfoQueue*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(17)] public HResult PushStorageFilter(InfoQueueFilter* pFilter) @@ -194,7 +194,7 @@ public unsafe partial struct ID3D12InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[17]))((ID3D12InfoQueue*)Unsafe.AsPointer(ref this), pFilter); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(18)] public void PopStorageFilter() @@ -202,7 +202,7 @@ public unsafe partial struct ID3D12InfoQueue : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[18]))((ID3D12InfoQueue*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(19)] public uint GetStorageFilterStackSize() @@ -210,7 +210,7 @@ public unsafe partial struct ID3D12InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[19]))((ID3D12InfoQueue*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(20)] public HResult AddRetrievalFilterEntries(InfoQueueFilter* pFilter) @@ -218,7 +218,7 @@ public unsafe partial struct ID3D12InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[20]))((ID3D12InfoQueue*)Unsafe.AsPointer(ref this), pFilter); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(21)] public HResult GetRetrievalFilter(InfoQueueFilter* pFilter, nuint* pFilterByteLength) @@ -226,7 +226,7 @@ public unsafe partial struct ID3D12InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[21]))((ID3D12InfoQueue*)Unsafe.AsPointer(ref this), pFilter, pFilterByteLength); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(22)] public void ClearRetrievalFilter() @@ -234,7 +234,7 @@ public unsafe partial struct ID3D12InfoQueue : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[22]))((ID3D12InfoQueue*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(23)] public HResult PushEmptyRetrievalFilter() @@ -242,7 +242,7 @@ public unsafe partial struct ID3D12InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[23]))((ID3D12InfoQueue*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(24)] public HResult PushCopyOfRetrievalFilter() @@ -250,7 +250,7 @@ public unsafe partial struct ID3D12InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[24]))((ID3D12InfoQueue*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(25)] public HResult PushRetrievalFilter(InfoQueueFilter* pFilter) @@ -258,7 +258,7 @@ public unsafe partial struct ID3D12InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[25]))((ID3D12InfoQueue*)Unsafe.AsPointer(ref this), pFilter); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(26)] public void PopRetrievalFilter() @@ -266,7 +266,7 @@ public unsafe partial struct ID3D12InfoQueue : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[26]))((ID3D12InfoQueue*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(27)] public uint GetRetrievalFilterStackSize() @@ -274,7 +274,7 @@ public unsafe partial struct ID3D12InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[27]))((ID3D12InfoQueue*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(28)] public HResult AddMessage(MessageCategory Category, MessageSeverity Severity, MessageId ID, sbyte* pDescription) @@ -282,7 +282,7 @@ public unsafe partial struct ID3D12InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[28]))((ID3D12InfoQueue*)Unsafe.AsPointer(ref this), Category, Severity, ID, pDescription); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(29)] public HResult AddApplicationMessage(MessageSeverity Severity, sbyte* pDescription) @@ -290,7 +290,7 @@ public unsafe partial struct ID3D12InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[29]))((ID3D12InfoQueue*)Unsafe.AsPointer(ref this), Severity, pDescription); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(30)] public HResult SetBreakOnCategory(MessageCategory Category, Bool32 bEnable) @@ -298,7 +298,7 @@ public unsafe partial struct ID3D12InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[30]))((ID3D12InfoQueue*)Unsafe.AsPointer(ref this), Category, bEnable); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(31)] public HResult SetBreakOnSeverity(MessageSeverity Severity, Bool32 bEnable) @@ -306,7 +306,7 @@ public unsafe partial struct ID3D12InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[31]))((ID3D12InfoQueue*)Unsafe.AsPointer(ref this), Severity, bEnable); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(32)] public HResult SetBreakOnID(MessageId ID, Bool32 bEnable) @@ -314,7 +314,7 @@ public unsafe partial struct ID3D12InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[32]))((ID3D12InfoQueue*)Unsafe.AsPointer(ref this), ID, bEnable); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(33)] public Bool32 GetBreakOnCategory(MessageCategory Category) @@ -322,7 +322,7 @@ public unsafe partial struct ID3D12InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[33]))((ID3D12InfoQueue*)Unsafe.AsPointer(ref this), Category); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(34)] public Bool32 GetBreakOnSeverity(MessageSeverity Severity) @@ -330,7 +330,7 @@ public unsafe partial struct ID3D12InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[34]))((ID3D12InfoQueue*)Unsafe.AsPointer(ref this), Severity); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(35)] public Bool32 GetBreakOnID(MessageId ID) @@ -338,7 +338,7 @@ public unsafe partial struct ID3D12InfoQueue : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[35]))((ID3D12InfoQueue*)Unsafe.AsPointer(ref this), ID); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(36)] public void SetMuteDebugOutput(Bool32 bMute) @@ -346,7 +346,7 @@ public unsafe partial struct ID3D12InfoQueue : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[36]))((ID3D12InfoQueue*)Unsafe.AsPointer(ref this), bMute); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(37)] public Bool32 GetMuteDebugOutput() diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12InfoQueue1.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12InfoQueue1.cs index d13ca92..26cabaf 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12InfoQueue1.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12InfoQueue1.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12InfoQueue1 [Guid("2852dd88-b484-4c0c-b6b1-67168500e600")] [NativeTypeName("struct ID3D12InfoQueue1 : ID3D12InfoQueue")] @@ -354,7 +354,7 @@ public unsafe partial struct ID3D12InfoQueue1 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[37]))((ID3D12InfoQueue1*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(38)] public HResult RegisterMessageCallback(delegate* unmanaged[Stdcall] CallbackFunc, MessageCallbackFlags CallbackFilterFlags, void* pContext, uint* pCallbackCookie) @@ -362,7 +362,7 @@ public unsafe partial struct ID3D12InfoQueue1 : INativeGuid return ((delegate* unmanaged[Stdcall], MessageCallbackFlags, void*, uint*, int>)(lpVtbl[38]))((ID3D12InfoQueue1*)Unsafe.AsPointer(ref this), CallbackFunc, CallbackFilterFlags, pContext, pCallbackCookie); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(39)] public HResult UnregisterMessageCallback(uint CallbackCookie) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12LibraryReflection.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12LibraryReflection.cs index ba9d3fb..b031865 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12LibraryReflection.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12LibraryReflection.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12LibraryReflection [Guid("8e349d19-54db-4a56-9dc9-119d87bdb804")] [NativeTypeName("struct ID3D12LibraryReflection : IUnknown")] @@ -74,7 +74,7 @@ public unsafe partial struct ID3D12LibraryReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[2]))((IUnknown*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(3)] public HResult GetDesc(LibraryDescription* pDesc) @@ -82,7 +82,7 @@ public unsafe partial struct ID3D12LibraryReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[3]))((ID3D12LibraryReflection*)Unsafe.AsPointer(ref this), pDesc); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(4)] public ID3D12FunctionReflection GetFunctionByIndex(int FunctionIndex) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12LifetimeOwner.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12LifetimeOwner.cs index 41e49f6..350e454 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12LifetimeOwner.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12LifetimeOwner.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12LifetimeOwner [Guid("e667af9f-cd56-4f46-83ce-032e595d70a8")] [NativeTypeName("struct ID3D12LifetimeOwner : IUnknown")] @@ -74,7 +74,7 @@ public unsafe partial struct ID3D12LifetimeOwner : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[2]))((IUnknown*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(3)] public void LifetimeStateUpdated(LifetimeState NewState) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12LifetimeTracker.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12LifetimeTracker.cs index 737f99c..5670c07 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12LifetimeTracker.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12LifetimeTracker.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12LifetimeTracker [Guid("3fd03d36-4eb1-424a-a582-494ecb8ba813")] [NativeTypeName("struct ID3D12LifetimeTracker : ID3D12DeviceChild")] @@ -114,7 +114,7 @@ public unsafe partial struct ID3D12LifetimeTracker : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D12LifetimeTracker*)Unsafe.AsPointer(ref this), riid, ppvDevice); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public HResult DestroyOwnedObject(ID3D12DeviceChild* pObject) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12MetaCommand.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12MetaCommand.cs index 11e7c41..5726898 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12MetaCommand.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12MetaCommand.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12MetaCommand [Guid("dbb84c27-36ce-4fc9-b801-f048c46ac570")] [NativeTypeName("struct ID3D12MetaCommand : ID3D12Pageable")] @@ -114,7 +114,7 @@ public unsafe partial struct ID3D12MetaCommand : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D12MetaCommand*)Unsafe.AsPointer(ref this), riid, ppvDevice); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public ulong GetRequiredParameterResourceSize(MetaCommandParameterStage Stage, uint ParameterIndex) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Object.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Object.cs index aaf9261..fef0ae8 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Object.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Object.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12Object [Guid("c4fec28f-7966-4e95-9f94-f431cb56c3b8")] [NativeTypeName("struct ID3D12Object : IUnknown")] @@ -74,7 +74,7 @@ public unsafe partial struct ID3D12Object : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[2]))((IUnknown*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(3)] public HResult GetPrivateData(Guid* guid, uint* pDataSize, void* pData) @@ -82,7 +82,7 @@ public unsafe partial struct ID3D12Object : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[3]))((ID3D12Object*)Unsafe.AsPointer(ref this), guid, pDataSize, pData); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(4)] public HResult SetPrivateData(Guid* guid, uint DataSize, void* pData) @@ -90,7 +90,7 @@ public unsafe partial struct ID3D12Object : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[4]))((ID3D12Object*)Unsafe.AsPointer(ref this), guid, DataSize, pData); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(5)] public HResult SetPrivateDataInterface(Guid* guid, IUnknown* pData) @@ -98,7 +98,7 @@ public unsafe partial struct ID3D12Object : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[5]))((ID3D12Object*)Unsafe.AsPointer(ref this), guid, pData); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(6)] public HResult SetName(ushort* Name) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Pageable.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Pageable.cs index e927b58..901455f 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Pageable.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Pageable.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12Pageable [Guid("63ee58fb-1268-4835-86da-f008ce62f0d6")] [NativeTypeName("struct ID3D12Pageable : ID3D12DeviceChild")] diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12PipelineLibrary.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12PipelineLibrary.cs index fdbcd82..fdbf096 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12PipelineLibrary.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12PipelineLibrary.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12PipelineLibrary [Guid("c64226a8-9201-46af-b4cc-53fb9ff7414f")] [NativeTypeName("struct ID3D12PipelineLibrary : ID3D12DeviceChild")] @@ -114,7 +114,7 @@ public unsafe partial struct ID3D12PipelineLibrary : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D12PipelineLibrary*)Unsafe.AsPointer(ref this), riid, ppvDevice); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public HResult StorePipeline(ushort* pName, ID3D12PipelineState* pPipeline) @@ -122,7 +122,7 @@ public unsafe partial struct ID3D12PipelineLibrary : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[8]))((ID3D12PipelineLibrary*)Unsafe.AsPointer(ref this), pName, pPipeline); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(9)] public HResult LoadGraphicsPipeline(ushort* pName, GraphicsPipelineStateDescription* pDesc, Guid* riid, void** ppPipelineState) @@ -130,7 +130,7 @@ public unsafe partial struct ID3D12PipelineLibrary : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[9]))((ID3D12PipelineLibrary*)Unsafe.AsPointer(ref this), pName, pDesc, riid, ppPipelineState); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(10)] public HResult LoadComputePipeline(ushort* pName, ComputePipelineStateDescription* pDesc, Guid* riid, void** ppPipelineState) @@ -138,7 +138,7 @@ public unsafe partial struct ID3D12PipelineLibrary : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[10]))((ID3D12PipelineLibrary*)Unsafe.AsPointer(ref this), pName, pDesc, riid, ppPipelineState); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(11)] public nuint GetSerializedSize() @@ -146,7 +146,7 @@ public unsafe partial struct ID3D12PipelineLibrary : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[11]))((ID3D12PipelineLibrary*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(12)] public HResult Serialize(void* pData, nuint DataSizeInBytes) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12PipelineLibrary1.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12PipelineLibrary1.cs index 32ac7e1..9e98669 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12PipelineLibrary1.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12PipelineLibrary1.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12PipelineLibrary1 [Guid("80eabf42-2568-4e5e-bd82-c37f86961dc3")] [NativeTypeName("struct ID3D12PipelineLibrary1 : ID3D12PipelineLibrary")] @@ -154,7 +154,7 @@ public unsafe partial struct ID3D12PipelineLibrary1 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[12]))((ID3D12PipelineLibrary1*)Unsafe.AsPointer(ref this), pData, DataSizeInBytes); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(13)] public HResult LoadPipeline(ushort* pName, PipelineStateStreamDescription* pDesc, Guid* riid, void** ppPipelineState) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12PipelineState.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12PipelineState.cs index 9933740..e7c0012 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12PipelineState.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12PipelineState.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12PipelineState [Guid("765a30f3-f624-4c6f-a828-ace948622445")] [NativeTypeName("struct ID3D12PipelineState : ID3D12Pageable")] @@ -114,7 +114,7 @@ public unsafe partial struct ID3D12PipelineState : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D12PipelineState*)Unsafe.AsPointer(ref this), riid, ppvDevice); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public HResult GetCachedBlob(Graphics.Direct3D.ID3DBlob** ppBlob) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12ProtectedResourceSession.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12ProtectedResourceSession.cs index 2357b6a..a8c9504 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12ProtectedResourceSession.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12ProtectedResourceSession.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12ProtectedResourceSession [Guid("6cd696f4-f289-40cc-8091-5a6c0a099c3d")] [NativeTypeName("struct ID3D12ProtectedResourceSession : ID3D12ProtectedSession")] @@ -130,7 +130,7 @@ public unsafe partial struct ID3D12ProtectedResourceSession : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[9]))((ID3D12ProtectedResourceSession*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(10)] public ProtectedResourceSessionDescription GetDesc() diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12ProtectedResourceSession1.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12ProtectedResourceSession1.cs index 139dc9a..52e5975 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12ProtectedResourceSession1.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12ProtectedResourceSession1.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12ProtectedResourceSession1 [Guid("d6f12dd6-76fb-406e-8961-4296eefc0409")] [NativeTypeName("struct ID3D12ProtectedResourceSession1 : ID3D12ProtectedResourceSession")] @@ -139,7 +139,7 @@ public unsafe partial struct ID3D12ProtectedResourceSession1 : INativeGuid return *((delegate* unmanaged[Stdcall])(lpVtbl[10]))((ID3D12ProtectedResourceSession1*)Unsafe.AsPointer(ref this), &result); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(11)] public ProtectedResourceSessionDescription1 GetDesc1() diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12ProtectedSession.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12ProtectedSession.cs index 570bcd5..6c8d81f 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12ProtectedSession.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12ProtectedSession.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12ProtectedSession [Guid("a1533d18-0ac1-4084-85b9-89a96116806b")] [NativeTypeName("struct ID3D12ProtectedSession : ID3D12DeviceChild")] @@ -114,7 +114,7 @@ public unsafe partial struct ID3D12ProtectedSession : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D12ProtectedSession*)Unsafe.AsPointer(ref this), riid, ppvDevice); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public HResult GetStatusFence(Guid* riid, void** ppFence) @@ -122,7 +122,7 @@ public unsafe partial struct ID3D12ProtectedSession : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[8]))((ID3D12ProtectedSession*)Unsafe.AsPointer(ref this), riid, ppFence); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(9)] public ProtectedSessionStatus GetSessionStatus() diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12QueryHeap.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12QueryHeap.cs index ae321d9..a9b941c 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12QueryHeap.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12QueryHeap.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12QueryHeap [Guid("0d9658ae-ed45-469e-a61d-970ec583cab4")] [NativeTypeName("struct ID3D12QueryHeap : ID3D12Pageable")] diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Resource.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Resource.cs index 31cb2bd..9694a6f 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Resource.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Resource.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12Resource [Guid("696442be-a72e-4059-bc79-5b5c98040fad")] [NativeTypeName("struct ID3D12Resource : ID3D12Pageable")] @@ -114,7 +114,7 @@ public unsafe partial struct ID3D12Resource : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D12Resource*)Unsafe.AsPointer(ref this), riid, ppvDevice); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public HResult Map(uint Subresource, Range* pReadRange, void** ppData) @@ -122,7 +122,7 @@ public unsafe partial struct ID3D12Resource : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[8]))((ID3D12Resource*)Unsafe.AsPointer(ref this), Subresource, pReadRange, ppData); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(9)] public void Unmap(uint Subresource, Range* pWrittenRange) @@ -130,7 +130,7 @@ public unsafe partial struct ID3D12Resource : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[9]))((ID3D12Resource*)Unsafe.AsPointer(ref this), Subresource, pWrittenRange); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(10)] public ResourceDescription GetDesc() @@ -139,7 +139,7 @@ public unsafe partial struct ID3D12Resource : INativeGuid return *((delegate* unmanaged[Stdcall])(lpVtbl[10]))((ID3D12Resource*)Unsafe.AsPointer(ref this), &result); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(11)] public ulong GetGPUVirtualAddress() @@ -147,7 +147,7 @@ public unsafe partial struct ID3D12Resource : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[11]))((ID3D12Resource*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(12)] public HResult WriteToSubresource(uint DstSubresource, Box* pDstBox, void* pSrcData, uint SrcRowPitch, uint SrcDepthPitch) @@ -155,7 +155,7 @@ public unsafe partial struct ID3D12Resource : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[12]))((ID3D12Resource*)Unsafe.AsPointer(ref this), DstSubresource, pDstBox, pSrcData, SrcRowPitch, SrcDepthPitch); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(13)] public HResult ReadFromSubresource(void* pDstData, uint DstRowPitch, uint DstDepthPitch, uint SrcSubresource, Box* pSrcBox) @@ -163,7 +163,7 @@ public unsafe partial struct ID3D12Resource : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[13]))((ID3D12Resource*)Unsafe.AsPointer(ref this), pDstData, DstRowPitch, DstDepthPitch, SrcSubresource, pSrcBox); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(14)] public HResult GetHeapProperties(HeapProperties* pHeapProperties, HeapFlags* pHeapFlags) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Resource1.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Resource1.cs index 5bde750..a8525ad 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Resource1.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Resource1.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12Resource1 [Guid("9d5e227a-4430-4161-88b3-3eca6bb16e19")] [NativeTypeName("struct ID3D12Resource1 : ID3D12Resource")] @@ -171,7 +171,7 @@ public unsafe partial struct ID3D12Resource1 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[14]))((ID3D12Resource1*)Unsafe.AsPointer(ref this), pHeapProperties, pHeapFlags); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(15)] public HResult GetProtectedResourceSession(Guid* riid, void** ppProtectedSession) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Resource2.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Resource2.cs index 5e35752..f20d69f 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Resource2.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Resource2.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12Resource2 [Guid("be36ec3b-ea85-4aeb-a45a-e9d76404a495")] [NativeTypeName("struct ID3D12Resource2 : ID3D12Resource1")] @@ -179,7 +179,7 @@ public unsafe partial struct ID3D12Resource2 : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[15]))((ID3D12Resource2*)Unsafe.AsPointer(ref this), riid, ppProtectedSession); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(16)] public ResourceDescription1 GetDesc1() diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12RootSignature.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12RootSignature.cs index 34d13d9..27e40c0 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12RootSignature.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12RootSignature.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12RootSignature [Guid("c54a6b66-72df-4ee8-8be5-a946a1429214")] [NativeTypeName("struct ID3D12RootSignature : ID3D12DeviceChild")] diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12RootSignatureDeserializer.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12RootSignatureDeserializer.cs index bcdebc1..789d590 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12RootSignatureDeserializer.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12RootSignatureDeserializer.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12RootSignatureDeserializer [Guid("34ab647b-3cc8-46ac-841b-c0965645c046")] [NativeTypeName("struct ID3D12RootSignatureDeserializer : IUnknown")] @@ -74,7 +74,7 @@ public unsafe partial struct ID3D12RootSignatureDeserializer : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[2]))((IUnknown*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(3)] public RootSignatureDescription* GetRootSignatureDesc() diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12SDKConfiguration.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12SDKConfiguration.cs index d13fd5c..4ede123 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12SDKConfiguration.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12SDKConfiguration.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12SDKConfiguration [Guid("e9eb5314-33aa-42b2-a718-d77f58b1f1c7")] [NativeTypeName("struct ID3D12SDKConfiguration : IUnknown")] @@ -74,7 +74,7 @@ public unsafe partial struct ID3D12SDKConfiguration : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[2]))((IUnknown*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(3)] public HResult SetSDKVersion(uint SDKVersion, sbyte* SDKPath) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12ShaderCacheSession.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12ShaderCacheSession.cs index dc87347..8fcf9d4 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12ShaderCacheSession.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12ShaderCacheSession.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12ShaderCacheSession [Guid("28e2495d-0f64-4ae4-a6ec-129255dc49a8")] [NativeTypeName("struct ID3D12ShaderCacheSession : ID3D12DeviceChild")] @@ -114,7 +114,7 @@ public unsafe partial struct ID3D12ShaderCacheSession : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D12ShaderCacheSession*)Unsafe.AsPointer(ref this), riid, ppvDevice); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public HResult FindValue(void* pKey, uint KeySize, void* pValue, uint* pValueSize) @@ -122,7 +122,7 @@ public unsafe partial struct ID3D12ShaderCacheSession : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[8]))((ID3D12ShaderCacheSession*)Unsafe.AsPointer(ref this), pKey, KeySize, pValue, pValueSize); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(9)] public HResult StoreValue(void* pKey, uint KeySize, void* pValue, uint ValueSize) @@ -130,7 +130,7 @@ public unsafe partial struct ID3D12ShaderCacheSession : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[9]))((ID3D12ShaderCacheSession*)Unsafe.AsPointer(ref this), pKey, KeySize, pValue, ValueSize); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(10)] public void SetDeleteOnDestroy() @@ -138,7 +138,7 @@ public unsafe partial struct ID3D12ShaderCacheSession : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[10]))((ID3D12ShaderCacheSession*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(11)] public ShaderCacheSessionDescription GetDesc() diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12ShaderReflection.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12ShaderReflection.cs index ea22cff..d2eb925 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12ShaderReflection.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12ShaderReflection.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12ShaderReflection [Guid("5a58797d-a72c-478d-8ba2-efc6b0efe88e")] [NativeTypeName("struct ID3D12ShaderReflection : IUnknown")] @@ -74,7 +74,7 @@ public unsafe partial struct ID3D12ShaderReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[2]))((IUnknown*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(3)] public HResult GetDesc(ShaderDescription* pDesc) @@ -82,7 +82,7 @@ public unsafe partial struct ID3D12ShaderReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[3]))((ID3D12ShaderReflection*)Unsafe.AsPointer(ref this), pDesc); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(4)] public ID3D12ShaderReflectionConstantBuffer GetConstantBufferByIndex(uint Index) @@ -90,7 +90,7 @@ public unsafe partial struct ID3D12ShaderReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[4]))((ID3D12ShaderReflection*)Unsafe.AsPointer(ref this), Index); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(5)] public ID3D12ShaderReflectionConstantBuffer GetConstantBufferByName(sbyte* Name) @@ -98,7 +98,7 @@ public unsafe partial struct ID3D12ShaderReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[5]))((ID3D12ShaderReflection*)Unsafe.AsPointer(ref this), Name); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(6)] public HResult GetResourceBindingDesc(uint ResourceIndex, ShaderInputBindDescription* pDesc) @@ -106,7 +106,7 @@ public unsafe partial struct ID3D12ShaderReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[6]))((ID3D12ShaderReflection*)Unsafe.AsPointer(ref this), ResourceIndex, pDesc); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(7)] public HResult GetInputParameterDesc(uint ParameterIndex, SignatureParameterDescription* pDesc) @@ -114,7 +114,7 @@ public unsafe partial struct ID3D12ShaderReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D12ShaderReflection*)Unsafe.AsPointer(ref this), ParameterIndex, pDesc); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public HResult GetOutputParameterDesc(uint ParameterIndex, SignatureParameterDescription* pDesc) @@ -122,7 +122,7 @@ public unsafe partial struct ID3D12ShaderReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[8]))((ID3D12ShaderReflection*)Unsafe.AsPointer(ref this), ParameterIndex, pDesc); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(9)] public HResult GetPatchConstantParameterDesc(uint ParameterIndex, SignatureParameterDescription* pDesc) @@ -130,7 +130,7 @@ public unsafe partial struct ID3D12ShaderReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[9]))((ID3D12ShaderReflection*)Unsafe.AsPointer(ref this), ParameterIndex, pDesc); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(10)] public ID3D12ShaderReflectionVariable GetVariableByName(sbyte* Name) @@ -138,7 +138,7 @@ public unsafe partial struct ID3D12ShaderReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[10]))((ID3D12ShaderReflection*)Unsafe.AsPointer(ref this), Name); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(11)] public HResult GetResourceBindingDescByName(sbyte* Name, ShaderInputBindDescription* pDesc) @@ -146,7 +146,7 @@ public unsafe partial struct ID3D12ShaderReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[11]))((ID3D12ShaderReflection*)Unsafe.AsPointer(ref this), Name, pDesc); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(12)] public uint GetMovInstructionCount() @@ -154,7 +154,7 @@ public unsafe partial struct ID3D12ShaderReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[12]))((ID3D12ShaderReflection*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(13)] public uint GetMovcInstructionCount() @@ -162,7 +162,7 @@ public unsafe partial struct ID3D12ShaderReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[13]))((ID3D12ShaderReflection*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(14)] public uint GetConversionInstructionCount() @@ -170,7 +170,7 @@ public unsafe partial struct ID3D12ShaderReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[14]))((ID3D12ShaderReflection*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(15)] public uint GetBitwiseInstructionCount() @@ -178,7 +178,7 @@ public unsafe partial struct ID3D12ShaderReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[15]))((ID3D12ShaderReflection*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(16)] public Graphics.Direct3D.Primitive GetGSInputPrimitive() @@ -186,7 +186,7 @@ public unsafe partial struct ID3D12ShaderReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[16]))((ID3D12ShaderReflection*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(17)] public Bool32 IsSampleFrequencyShader() @@ -194,7 +194,7 @@ public unsafe partial struct ID3D12ShaderReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[17]))((ID3D12ShaderReflection*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(18)] public uint GetNumInterfaceSlots() @@ -202,7 +202,7 @@ public unsafe partial struct ID3D12ShaderReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[18]))((ID3D12ShaderReflection*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(19)] public HResult GetMinFeatureLevel(Graphics.Direct3D.FeatureLevel* pLevel) @@ -210,7 +210,7 @@ public unsafe partial struct ID3D12ShaderReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[19]))((ID3D12ShaderReflection*)Unsafe.AsPointer(ref this), pLevel); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(20)] public uint GetThreadGroupSize(uint* pSizeX, uint* pSizeY, uint* pSizeZ) @@ -218,7 +218,7 @@ public unsafe partial struct ID3D12ShaderReflection : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[20]))((ID3D12ShaderReflection*)Unsafe.AsPointer(ref this), pSizeX, pSizeY, pSizeZ); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(21)] public ulong GetRequiresFlags() diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12ShaderReflectionConstantBuffer.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12ShaderReflectionConstantBuffer.cs index 10f8835..3698696 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12ShaderReflectionConstantBuffer.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12ShaderReflectionConstantBuffer.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12ShaderReflectionConstantBuffer [Guid("c59598b4-48b3-4869-b9b1-b1618b14a8b7")] public unsafe partial struct ID3D12ShaderReflectionConstantBuffer : INativeGuid @@ -46,7 +46,7 @@ public unsafe partial struct ID3D12ShaderReflectionConstantBuffer : INativeGuid public void** lpVtbl; - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(0)] public HResult GetDesc(ShaderBufferDescription* pDesc) @@ -54,7 +54,7 @@ public unsafe partial struct ID3D12ShaderReflectionConstantBuffer : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[0]))((ID3D12ShaderReflectionConstantBuffer*)Unsafe.AsPointer(ref this), pDesc); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(1)] public ID3D12ShaderReflectionVariable GetVariableByIndex(uint Index) @@ -62,7 +62,7 @@ public unsafe partial struct ID3D12ShaderReflectionConstantBuffer : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[1]))((ID3D12ShaderReflectionConstantBuffer*)Unsafe.AsPointer(ref this), Index); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(2)] public ID3D12ShaderReflectionVariable GetVariableByName(sbyte* Name) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12ShaderReflectionType.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12ShaderReflectionType.cs index e7b5195..c3be343 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12ShaderReflectionType.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12ShaderReflectionType.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12ShaderReflectionType [Guid("e913c351-783d-48ca-a1d1-4f306284ad56")] public unsafe partial struct ID3D12ShaderReflectionType : INativeGuid @@ -46,7 +46,7 @@ public unsafe partial struct ID3D12ShaderReflectionType : INativeGuid public void** lpVtbl; - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(0)] public HResult GetDesc(ShaderTypeDescription* pDesc) @@ -54,7 +54,7 @@ public unsafe partial struct ID3D12ShaderReflectionType : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[0]))((ID3D12ShaderReflectionType*)Unsafe.AsPointer(ref this), pDesc); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(1)] public ID3D12ShaderReflectionType GetMemberTypeByIndex(uint Index) @@ -62,7 +62,7 @@ public unsafe partial struct ID3D12ShaderReflectionType : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[1]))((ID3D12ShaderReflectionType*)Unsafe.AsPointer(ref this), Index); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(2)] public ID3D12ShaderReflectionType GetMemberTypeByName(sbyte* Name) @@ -70,7 +70,7 @@ public unsafe partial struct ID3D12ShaderReflectionType : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[2]))((ID3D12ShaderReflectionType*)Unsafe.AsPointer(ref this), Name); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(3)] public sbyte* GetMemberTypeName(uint Index) @@ -78,7 +78,7 @@ public unsafe partial struct ID3D12ShaderReflectionType : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[3]))((ID3D12ShaderReflectionType*)Unsafe.AsPointer(ref this), Index); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(4)] public HResult IsEqual(ID3D12ShaderReflectionType* pType) @@ -86,7 +86,7 @@ public unsafe partial struct ID3D12ShaderReflectionType : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[4]))((ID3D12ShaderReflectionType*)Unsafe.AsPointer(ref this), pType); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(5)] public ID3D12ShaderReflectionType GetSubType() @@ -94,7 +94,7 @@ public unsafe partial struct ID3D12ShaderReflectionType : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[5]))((ID3D12ShaderReflectionType*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(6)] public ID3D12ShaderReflectionType GetBaseClass() @@ -102,7 +102,7 @@ public unsafe partial struct ID3D12ShaderReflectionType : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[6]))((ID3D12ShaderReflectionType*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(7)] public uint GetNumInterfaces() @@ -110,7 +110,7 @@ public unsafe partial struct ID3D12ShaderReflectionType : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[7]))((ID3D12ShaderReflectionType*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(8)] public ID3D12ShaderReflectionType GetInterfaceByIndex(uint uIndex) @@ -118,7 +118,7 @@ public unsafe partial struct ID3D12ShaderReflectionType : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[8]))((ID3D12ShaderReflectionType*)Unsafe.AsPointer(ref this), uIndex); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(9)] public HResult IsOfType(ID3D12ShaderReflectionType* pType) @@ -126,7 +126,7 @@ public unsafe partial struct ID3D12ShaderReflectionType : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[9]))((ID3D12ShaderReflectionType*)Unsafe.AsPointer(ref this), pType); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(10)] public HResult ImplementsInterface(ID3D12ShaderReflectionType* pBase) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12ShaderReflectionVariable.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12ShaderReflectionVariable.cs index 900ab9a..5c68b68 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12ShaderReflectionVariable.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12ShaderReflectionVariable.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12ShaderReflectionVariable [Guid("8337a8a6-a216-444a-b2f4-314733a73aea")] public unsafe partial struct ID3D12ShaderReflectionVariable : INativeGuid @@ -46,7 +46,7 @@ public unsafe partial struct ID3D12ShaderReflectionVariable : INativeGuid public void** lpVtbl; - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(0)] public HResult GetDesc(ShaderVariableDescription* pDesc) @@ -54,7 +54,7 @@ public unsafe partial struct ID3D12ShaderReflectionVariable : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[0]))((ID3D12ShaderReflectionVariable*)Unsafe.AsPointer(ref this), pDesc); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(1)] public new ID3D12ShaderReflectionType GetType() @@ -62,7 +62,7 @@ public unsafe partial struct ID3D12ShaderReflectionVariable : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[1]))((ID3D12ShaderReflectionVariable*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(2)] public ID3D12ShaderReflectionConstantBuffer GetBuffer() @@ -70,7 +70,7 @@ public unsafe partial struct ID3D12ShaderReflectionVariable : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[2]))((ID3D12ShaderReflectionVariable*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(3)] public uint GetInterfaceSlot(uint uArrayIndex) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12SharingContract.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12SharingContract.cs index e5e6293..90c8125 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12SharingContract.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12SharingContract.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12SharingContract [Guid("0adf7d52-929c-4e61-addb-ffed30de66ef")] [NativeTypeName("struct ID3D12SharingContract : IUnknown")] @@ -74,7 +74,7 @@ public unsafe partial struct ID3D12SharingContract : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[2]))((IUnknown*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(3)] public void Present(ID3D12Resource* pResource, uint Subresource, IntPtr window) @@ -82,7 +82,7 @@ public unsafe partial struct ID3D12SharingContract : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[3]))((ID3D12SharingContract*)Unsafe.AsPointer(ref this), pResource, Subresource, window); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(4)] public void SharedFenceSignal(ID3D12Fence* pFence, ulong FenceValue) @@ -90,7 +90,7 @@ public unsafe partial struct ID3D12SharingContract : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[4]))((ID3D12SharingContract*)Unsafe.AsPointer(ref this), pFence, FenceValue); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(5)] public void BeginCapturableWork(Guid* guid) @@ -98,7 +98,7 @@ public unsafe partial struct ID3D12SharingContract : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[5]))((ID3D12SharingContract*)Unsafe.AsPointer(ref this), guid); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(6)] public void EndCapturableWork(Guid* guid) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12StateObject.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12StateObject.cs index 2bb7daa..0ae9169 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12StateObject.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12StateObject.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12StateObject [Guid("47016943-fca8-4594-93ea-af258b55346d")] [NativeTypeName("struct ID3D12StateObject : ID3D12Pageable")] diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12StateObjectProperties.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12StateObjectProperties.cs index 78c893e..5c2c4d2 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12StateObjectProperties.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12StateObjectProperties.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12StateObjectProperties [Guid("de5fa827-9bf9-4f26-89ff-d7f56fde3860")] [NativeTypeName("struct ID3D12StateObjectProperties : IUnknown")] @@ -74,7 +74,7 @@ public unsafe partial struct ID3D12StateObjectProperties : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[2]))((IUnknown*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(3)] public void* GetShaderIdentifier(ushort* pExportName) @@ -82,7 +82,7 @@ public unsafe partial struct ID3D12StateObjectProperties : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[3]))((ID3D12StateObjectProperties*)Unsafe.AsPointer(ref this), pExportName); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(4)] public ulong GetShaderStackSize(ushort* pExportName) @@ -90,7 +90,7 @@ public unsafe partial struct ID3D12StateObjectProperties : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[4]))((ID3D12StateObjectProperties*)Unsafe.AsPointer(ref this), pExportName); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(5)] public ulong GetPipelineStackSize() @@ -98,7 +98,7 @@ public unsafe partial struct ID3D12StateObjectProperties : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[5]))((ID3D12StateObjectProperties*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(6)] public void SetPipelineStackSize(ulong PipelineStackSizeInBytes) diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12SwapChainAssistant.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12SwapChainAssistant.cs index 186011d..cd1e201 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12SwapChainAssistant.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12SwapChainAssistant.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12SwapChainAssistant [Guid("f1df64b6-57fd-49cd-8807-c0eb88b45c8f")] [NativeTypeName("struct ID3D12SwapChainAssistant : IUnknown")] @@ -74,7 +74,7 @@ public unsafe partial struct ID3D12SwapChainAssistant : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[2]))((IUnknown*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(3)] public Luid GetLUID() @@ -83,7 +83,7 @@ public unsafe partial struct ID3D12SwapChainAssistant : INativeGuid return *((delegate* unmanaged[Stdcall])(lpVtbl[3]))((ID3D12SwapChainAssistant*)Unsafe.AsPointer(ref this), &result); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(4)] public HResult GetSwapChainObject(Guid* riid, void** ppv) @@ -91,7 +91,7 @@ public unsafe partial struct ID3D12SwapChainAssistant : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[4]))((ID3D12SwapChainAssistant*)Unsafe.AsPointer(ref this), riid, ppv); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(5)] public HResult GetCurrentResourceAndCommandQueue(Guid* riidResource, void** ppvResource, Guid* riidQueue, void** ppvQueue) @@ -99,7 +99,7 @@ public unsafe partial struct ID3D12SwapChainAssistant : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[5]))((ID3D12SwapChainAssistant*)Unsafe.AsPointer(ref this), riidResource, ppvResource, riidQueue, ppvQueue); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(6)] public HResult InsertImplicitSync() diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Tools.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Tools.cs index 92f786e..0ad32e5 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12Tools.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12Tools.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12Tools [Guid("7071e1f0-e84b-4b33-974f-12fa49de65c5")] [NativeTypeName("struct ID3D12Tools : IUnknown")] @@ -74,7 +74,7 @@ public unsafe partial struct ID3D12Tools : INativeGuid return ((delegate* unmanaged[Stdcall])(lpVtbl[2]))((IUnknown*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(3)] public void EnableShaderInstrumentation(Bool32 bEnable) @@ -82,7 +82,7 @@ public unsafe partial struct ID3D12Tools : INativeGuid ((delegate* unmanaged[Stdcall])(lpVtbl[3]))((ID3D12Tools*)Unsafe.AsPointer(ref this), bEnable); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(4)] public Bool32 ShaderInstrumentationEnabled() diff --git a/src/Vortice.Win32.Direct3D12/Generated/ID3D12VersionedRootSignatureDeserializer.cs b/src/Vortice.Win32.Direct3D12/Generated/ID3D12VersionedRootSignatureDeserializer.cs index 6ec3c46..bc6b7c4 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ID3D12VersionedRootSignatureDeserializer.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ID3D12VersionedRootSignatureDeserializer.cs @@ -9,7 +9,7 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// ID3D12VersionedRootSignatureDeserializer [Guid("7f91ce67-090c-4bb7-b78e-ed8ff2e31da0")] [NativeTypeName("struct ID3D12VersionedRootSignatureDeserializer : IUnknown")] @@ -74,7 +74,7 @@ public unsafe partial struct ID3D12VersionedRootSignatureDeserializer : INativeG return ((delegate* unmanaged[Stdcall])(lpVtbl[2]))((IUnknown*)Unsafe.AsPointer(ref this)); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(3)] public HResult GetRootSignatureDescAtVersion(RootSignatureVersion convertToVersion, VersionedRootSignatureDescription** ppDesc) @@ -82,7 +82,7 @@ public unsafe partial struct ID3D12VersionedRootSignatureDeserializer : INativeG return ((delegate* unmanaged[Stdcall])(lpVtbl[3]))((ID3D12VersionedRootSignatureDeserializer*)Unsafe.AsPointer(ref this), convertToVersion, ppDesc); } - /// + /// [MethodImpl(MethodImplOptions.AggressiveInlining)] [VtblIndex(4)] public VersionedRootSignatureDescription* GetUnconvertedRootSignatureDesc() diff --git a/src/Vortice.Win32.Direct3D12/Generated/IndexBufferStripCutValue.cs b/src/Vortice.Win32.Direct3D12/Generated/IndexBufferStripCutValue.cs index f2d92de..57052a1 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/IndexBufferStripCutValue.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/IndexBufferStripCutValue.cs @@ -9,17 +9,17 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_INDEX_BUFFER_STRIP_CUT_VALUE public enum IndexBufferStripCutValue : int { - /// + /// /// D3D12_INDEX_BUFFER_STRIP_CUT_VALUE_DISABLED Disabled = 0, - /// + /// /// D3D12_INDEX_BUFFER_STRIP_CUT_VALUE_0xFFFF I16Bits = 1, - /// + /// /// D3D12_INDEX_BUFFER_STRIP_CUT_VALUE_0xFFFFFFFF I32Bits = 2, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/IndexBufferView.cs b/src/Vortice.Win32.Direct3D12/Generated/IndexBufferView.cs index 86094f0..31b19e6 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/IndexBufferView.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/IndexBufferView.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_INDEX_BUFFER_VIEW public partial struct IndexBufferView { - /// + /// public ulong BufferLocation; - /// + /// public uint SizeInBytes; - /// + /// public Graphics.Dxgi.Common.Format Format; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/IndirectArgumentDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/IndirectArgumentDescription.cs index dffd035..7004810 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/IndirectArgumentDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/IndirectArgumentDescription.cs @@ -9,14 +9,14 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_INDIRECT_ARGUMENT_DESC public partial struct IndirectArgumentDescription { - /// + /// public IndirectArgumentType Type; - /// + /// public _Anonymous_e__Union Anonymous; [UnscopedRef] @@ -72,55 +72,55 @@ public partial struct IndirectArgumentDescription [StructLayout(LayoutKind.Explicit)] public partial struct _Anonymous_e__Union { - /// + /// [FieldOffset(0)] public _Anonymous_e__Union._VertexBuffer_e__Struct VertexBuffer; - /// + /// [FieldOffset(0)] public _Anonymous_e__Union._Constant_e__Struct Constant; - /// + /// [FieldOffset(0)] public _Anonymous_e__Union._ConstantBufferView_e__Struct ConstantBufferView; - /// + /// [FieldOffset(0)] public _Anonymous_e__Union._ShaderResourceView_e__Struct ShaderResourceView; - /// + /// [FieldOffset(0)] public _Anonymous_e__Union._UnorderedAccessView_e__Struct UnorderedAccessView; public partial struct _ShaderResourceView_e__Struct { - /// + /// public uint RootParameterIndex; } public partial struct _Constant_e__Struct { - /// + /// public uint RootParameterIndex; - /// + /// public uint DestOffsetIn32BitValues; - /// + /// public uint Num32BitValuesToSet; } public partial struct _UnorderedAccessView_e__Struct { - /// + /// public uint RootParameterIndex; } public partial struct _VertexBuffer_e__Struct { - /// + /// public uint Slot; } public partial struct _ConstantBufferView_e__Struct { - /// + /// public uint RootParameterIndex; } } diff --git a/src/Vortice.Win32.Direct3D12/Generated/IndirectArgumentType.cs b/src/Vortice.Win32.Direct3D12/Generated/IndirectArgumentType.cs index 3892b76..43d1442 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/IndirectArgumentType.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/IndirectArgumentType.cs @@ -9,41 +9,41 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_INDIRECT_ARGUMENT_TYPE public enum IndirectArgumentType : int { - /// + /// /// D3D12_INDIRECT_ARGUMENT_TYPE_DRAW Draw = 0, - /// + /// /// D3D12_INDIRECT_ARGUMENT_TYPE_DRAW_INDEXED DrawIndexed = 1, - /// + /// /// D3D12_INDIRECT_ARGUMENT_TYPE_DISPATCH Dispatch = 2, - /// + /// /// D3D12_INDIRECT_ARGUMENT_TYPE_VERTEX_BUFFER_VIEW VertexBufferView = 3, - /// + /// /// D3D12_INDIRECT_ARGUMENT_TYPE_INDEX_BUFFER_VIEW IndexBufferView = 4, - /// + /// /// D3D12_INDIRECT_ARGUMENT_TYPE_CONSTANT Constant = 5, - /// + /// /// D3D12_INDIRECT_ARGUMENT_TYPE_CONSTANT_BUFFER_VIEW ConstantBufferView = 6, - /// + /// /// D3D12_INDIRECT_ARGUMENT_TYPE_SHADER_RESOURCE_VIEW ShaderResourceView = 7, - /// + /// /// D3D12_INDIRECT_ARGUMENT_TYPE_UNORDERED_ACCESS_VIEW UnorderedAccessView = 8, - /// + /// /// D3D12_INDIRECT_ARGUMENT_TYPE_DISPATCH_RAYS DispatchRays = 9, - /// + /// /// D3D12_INDIRECT_ARGUMENT_TYPE_DISPATCH_MESH DispatchMesh = 10, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/InfoQueueFilter.cs b/src/Vortice.Win32.Direct3D12/Generated/InfoQueueFilter.cs index db4149e..77d3a78 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/InfoQueueFilter.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/InfoQueueFilter.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_INFO_QUEUE_FILTER public partial struct InfoQueueFilter { - /// + /// public InfoQueueFilterDescription AllowList; - /// + /// public InfoQueueFilterDescription DenyList; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/InfoQueueFilterDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/InfoQueueFilterDescription.cs index 1dd2275..7df245e 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/InfoQueueFilterDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/InfoQueueFilterDescription.cs @@ -9,25 +9,25 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_INFO_QUEUE_FILTER_DESC public partial struct InfoQueueFilterDescription { - /// + /// public uint NumCategories; - /// + /// public unsafe MessageCategory* pCategoryList; - /// + /// public uint NumSeverities; - /// + /// public unsafe MessageSeverity* pSeverityList; - /// + /// public uint NumIDs; - /// + /// public unsafe MessageId* pIDList; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/InputClassification.cs b/src/Vortice.Win32.Direct3D12/Generated/InputClassification.cs index 711986c..430073f 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/InputClassification.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/InputClassification.cs @@ -9,14 +9,14 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_INPUT_CLASSIFICATION public enum InputClassification : int { - /// + /// /// D3D12_INPUT_CLASSIFICATION_PER_VERTEX_DATA PerVertexData = 0, - /// + /// /// D3D12_INPUT_CLASSIFICATION_PER_INSTANCE_DATA PerInstanceData = 1, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/InputElementDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/InputElementDescription.cs index 9827935..19abd33 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/InputElementDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/InputElementDescription.cs @@ -9,28 +9,28 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_INPUT_ELEMENT_DESC public partial struct InputElementDescription { - /// + /// public unsafe sbyte* SemanticName; - /// + /// public uint SemanticIndex; - /// + /// public Graphics.Dxgi.Common.Format Format; - /// + /// public uint InputSlot; - /// + /// public uint AlignedByteOffset; - /// + /// public InputClassification InputSlotClass; - /// + /// public uint InstanceDataStepRate; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/InputLayoutDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/InputLayoutDescription.cs index 1ff18c0..069b71d 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/InputLayoutDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/InputLayoutDescription.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_INPUT_LAYOUT_DESC public partial struct InputLayoutDescription { - /// + /// public unsafe InputElementDescription* pInputElementDescs; - /// + /// public uint NumElements; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/LibraryDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/LibraryDescription.cs index 1605351..60abe54 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/LibraryDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/LibraryDescription.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_LIBRARY_DESC public partial struct LibraryDescription { - /// + /// public unsafe sbyte* Creator; - /// + /// public uint Flags; - /// + /// public uint FunctionCount; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/LifetimeState.cs b/src/Vortice.Win32.Direct3D12/Generated/LifetimeState.cs index 2f41c95..591c000 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/LifetimeState.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/LifetimeState.cs @@ -9,14 +9,14 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_LIFETIME_STATE public enum LifetimeState : int { - /// + /// /// D3D12_LIFETIME_STATE_IN_USE InUse = 0, - /// + /// /// D3D12_LIFETIME_STATE_NOT_IN_USE NotInUse = 1, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/LocalRootSignature.cs b/src/Vortice.Win32.Direct3D12/Generated/LocalRootSignature.cs index 8277937..04707be 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/LocalRootSignature.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/LocalRootSignature.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_LOCAL_ROOT_SIGNATURE public partial struct LocalRootSignature { - /// + /// public unsafe ID3D12RootSignature* pLocalRootSignature; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/LogicOperation.cs b/src/Vortice.Win32.Direct3D12/Generated/LogicOperation.cs index fbc98da..aedbced 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/LogicOperation.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/LogicOperation.cs @@ -9,56 +9,56 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_LOGIC_OP public enum LogicOperation : int { - /// + /// /// D3D12_LOGIC_OP_CLEAR Clear = 0, - /// + /// /// D3D12_LOGIC_OP_SET Set = 1, - /// + /// /// D3D12_LOGIC_OP_COPY Copy = 2, - /// + /// /// D3D12_LOGIC_OP_COPY_INVERTED CopyInverted = 3, - /// + /// /// D3D12_LOGIC_OP_NOOP Noop = 4, - /// + /// /// D3D12_LOGIC_OP_INVERT Invert = 5, - /// + /// /// D3D12_LOGIC_OP_AND And = 6, - /// + /// /// D3D12_LOGIC_OP_NAND Nand = 7, - /// + /// /// D3D12_LOGIC_OP_OR Or = 8, - /// + /// /// D3D12_LOGIC_OP_NOR Nor = 9, - /// + /// /// D3D12_LOGIC_OP_XOR Xor = 10, - /// + /// /// D3D12_LOGIC_OP_EQUIV Equiv = 11, - /// + /// /// D3D12_LOGIC_OP_AND_REVERSE AndReverse = 12, - /// + /// /// D3D12_LOGIC_OP_AND_INVERTED AndInverted = 13, - /// + /// /// D3D12_LOGIC_OP_OR_REVERSE OrReverse = 14, - /// + /// /// D3D12_LOGIC_OP_OR_INVERTED OrInverted = 15, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/MeasurementsAction.cs b/src/Vortice.Win32.Direct3D12/Generated/MeasurementsAction.cs index 7857314..fbcef91 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/MeasurementsAction.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/MeasurementsAction.cs @@ -9,20 +9,20 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_MEASUREMENTS_ACTION public enum MeasurementsAction : int { - /// + /// /// D3D12_MEASUREMENTS_ACTION_KEEP_ALL KeepAll = 0, - /// + /// /// D3D12_MEASUREMENTS_ACTION_COMMIT_RESULTS CommitResults = 1, - /// + /// /// D3D12_MEASUREMENTS_ACTION_COMMIT_RESULTS_HIGH_PRIORITY CommitResultsHighPriority = 2, - /// + /// /// D3D12_MEASUREMENTS_ACTION_DISCARD_PREVIOUS DiscardPrevious = 3, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/MemcpyDest.cs b/src/Vortice.Win32.Direct3D12/Generated/MemcpyDest.cs index 4de8d5e..488f7a3 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/MemcpyDest.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/MemcpyDest.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_MEMCPY_DEST public partial struct MemcpyDest { - /// + /// public unsafe void* pData; - /// + /// public nuint RowPitch; - /// + /// public nuint SlicePitch; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/MemoryPool.cs b/src/Vortice.Win32.Direct3D12/Generated/MemoryPool.cs index 702c854..88702e6 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/MemoryPool.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/MemoryPool.cs @@ -9,17 +9,17 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_MEMORY_POOL public enum MemoryPool : int { - /// + /// /// D3D12_MEMORY_POOL_UNKNOWN Unknown = 0, - /// + /// /// D3D12_MEMORY_POOL_L0 L0 = 1, - /// + /// /// D3D12_MEMORY_POOL_L1 L1 = 2, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/MeshShaderTier.cs b/src/Vortice.Win32.Direct3D12/Generated/MeshShaderTier.cs index aa1bd99..d540925 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/MeshShaderTier.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/MeshShaderTier.cs @@ -9,14 +9,14 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_MESH_SHADER_TIER public enum MeshShaderTier : int { - /// + /// /// D3D12_MESH_SHADER_TIER_NOT_SUPPORTED NotSupported = 0, - /// + /// /// D3D12_MESH_SHADER_TIER_1 Tier1 = 10, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/Message.cs b/src/Vortice.Win32.Direct3D12/Generated/Message.cs index b8f3c39..2d30796 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/Message.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/Message.cs @@ -9,22 +9,22 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_MESSAGE public partial struct Message { - /// + /// public MessageCategory Category; - /// + /// public MessageSeverity Severity; - /// + /// public MessageId ID; - /// + /// public unsafe byte* pDescription; - /// + /// public nuint DescriptionByteLength; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/MessageCallbackFlags.cs b/src/Vortice.Win32.Direct3D12/Generated/MessageCallbackFlags.cs index dd2a6c1..8ec8be0 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/MessageCallbackFlags.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/MessageCallbackFlags.cs @@ -9,15 +9,15 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_MESSAGE_CALLBACK_FLAGS [Flags] public enum MessageCallbackFlags : int { - /// + /// /// D3D12_MESSAGE_CALLBACK_FLAG_NONE None = 0, - /// + /// /// D3D12_MESSAGE_CALLBACK_IGNORE_FILTERS IgnoreFilters = 1, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/MessageCategory.cs b/src/Vortice.Win32.Direct3D12/Generated/MessageCategory.cs index 1986584..2c1def5 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/MessageCategory.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/MessageCategory.cs @@ -9,41 +9,41 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_MESSAGE_CATEGORY public enum MessageCategory : int { - /// + /// /// D3D12_MESSAGE_CATEGORY_APPLICATION_DEFINED ApplicationDefined = 0, - /// + /// /// D3D12_MESSAGE_CATEGORY_MISCELLANEOUS Miscellaneous = 1, - /// + /// /// D3D12_MESSAGE_CATEGORY_INITIALIZATION Initialization = 2, - /// + /// /// D3D12_MESSAGE_CATEGORY_CLEANUP Cleanup = 3, - /// + /// /// D3D12_MESSAGE_CATEGORY_COMPILATION Compilation = 4, - /// + /// /// D3D12_MESSAGE_CATEGORY_STATE_CREATION StateCreation = 5, - /// + /// /// D3D12_MESSAGE_CATEGORY_STATE_SETTING StateSetting = 6, - /// + /// /// D3D12_MESSAGE_CATEGORY_STATE_GETTING StateGetting = 7, - /// + /// /// D3D12_MESSAGE_CATEGORY_RESOURCE_MANIPULATION ResourceManipulation = 8, - /// + /// /// D3D12_MESSAGE_CATEGORY_EXECUTION Execution = 9, - /// + /// /// D3D12_MESSAGE_CATEGORY_SHADER Shader = 10, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/MessageId.cs b/src/Vortice.Win32.Direct3D12/Generated/MessageId.cs index 0e351e9..b688b73 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/MessageId.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/MessageId.cs @@ -9,2681 +9,2681 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_MESSAGE_ID public enum MessageId : int { - /// + /// /// D3D12_MESSAGE_ID_UNKNOWN Unknown = 0, - /// + /// /// D3D12_MESSAGE_ID_STRING_FROM_APPLICATION StringFromApplication = 1, - /// + /// /// D3D12_MESSAGE_ID_CORRUPTED_THIS CorruptedThis = 2, - /// + /// /// D3D12_MESSAGE_ID_CORRUPTED_PARAMETER1 CorruptedParameter1 = 3, - /// + /// /// D3D12_MESSAGE_ID_CORRUPTED_PARAMETER2 CorruptedParameter2 = 4, - /// + /// /// D3D12_MESSAGE_ID_CORRUPTED_PARAMETER3 CorruptedParameter3 = 5, - /// + /// /// D3D12_MESSAGE_ID_CORRUPTED_PARAMETER4 CorruptedParameter4 = 6, - /// + /// /// D3D12_MESSAGE_ID_CORRUPTED_PARAMETER5 CorruptedParameter5 = 7, - /// + /// /// D3D12_MESSAGE_ID_CORRUPTED_PARAMETER6 CorruptedParameter6 = 8, - /// + /// /// D3D12_MESSAGE_ID_CORRUPTED_PARAMETER7 CorruptedParameter7 = 9, - /// + /// /// D3D12_MESSAGE_ID_CORRUPTED_PARAMETER8 CorruptedParameter8 = 10, - /// + /// /// D3D12_MESSAGE_ID_CORRUPTED_PARAMETER9 CorruptedParameter9 = 11, - /// + /// /// D3D12_MESSAGE_ID_CORRUPTED_PARAMETER10 CorruptedParameter10 = 12, - /// + /// /// D3D12_MESSAGE_ID_CORRUPTED_PARAMETER11 CorruptedParameter11 = 13, - /// + /// /// D3D12_MESSAGE_ID_CORRUPTED_PARAMETER12 CorruptedParameter12 = 14, - /// + /// /// D3D12_MESSAGE_ID_CORRUPTED_PARAMETER13 CorruptedParameter13 = 15, - /// + /// /// D3D12_MESSAGE_ID_CORRUPTED_PARAMETER14 CorruptedParameter14 = 16, - /// + /// /// D3D12_MESSAGE_ID_CORRUPTED_PARAMETER15 CorruptedParameter15 = 17, - /// + /// /// D3D12_MESSAGE_ID_CORRUPTED_MULTITHREADING CorruptedMultithreading = 18, - /// + /// /// D3D12_MESSAGE_ID_MESSAGE_REPORTING_OUTOFMEMORY MessageReportingOutOfMemory = 19, - /// + /// /// D3D12_MESSAGE_ID_GETPRIVATEDATA_MOREDATA GetPrivateDataMoreData = 20, - /// + /// /// D3D12_MESSAGE_ID_SETPRIVATEDATA_INVALIDFREEDATA SetPrivateDataInvalidFreeData = 21, - /// + /// /// D3D12_MESSAGE_ID_SETPRIVATEDATA_CHANGINGPARAMS SetPrivateDataChangingParams = 24, - /// + /// /// D3D12_MESSAGE_ID_SETPRIVATEDATA_OUTOFMEMORY SetPrivateDataOutOfMemory = 25, - /// + /// /// D3D12_MESSAGE_ID_CREATESHADERRESOURCEVIEW_UNRECOGNIZEDFORMAT CreateShaderResourceViewUnrecognizedFormat = 26, - /// + /// /// D3D12_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDDESC CreateShaderResourceViewInvalidDesc = 27, - /// + /// /// D3D12_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDFORMAT CreateShaderResourceViewInvalidFormat = 28, - /// + /// /// D3D12_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDVIDEOPLANESLICE CreateShaderResourceViewInvalidVideoPlaneSlice = 29, - /// + /// /// D3D12_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDPLANESLICE CreateShaderResourceViewInvalidPlaneSlice = 30, - /// + /// /// D3D12_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDDIMENSIONS CreateShaderResourceViewInvalidDimensions = 31, - /// + /// /// D3D12_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDRESOURCE CreateShaderResourceViewInvalidResource = 32, - /// + /// /// D3D12_MESSAGE_ID_CREATERENDERTARGETVIEW_UNRECOGNIZEDFORMAT CreateRenderTargetViewUnrecognizedFormat = 35, - /// + /// /// D3D12_MESSAGE_ID_CREATERENDERTARGETVIEW_UNSUPPORTEDFORMAT CreateRenderTargetViewUnsupportedFormat = 36, - /// + /// /// D3D12_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDDESC CreateRenderTargetViewInvalidDesc = 37, - /// + /// /// D3D12_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDFORMAT CreateRenderTargetViewInvalidFormat = 38, - /// + /// /// D3D12_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDVIDEOPLANESLICE CreateRenderTargetViewInvalidVideoPlaneSlice = 39, - /// + /// /// D3D12_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDPLANESLICE CreateRenderTargetViewInvalidPlaneSlice = 40, - /// + /// /// D3D12_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDDIMENSIONS CreateRenderTargetViewInvalidDimensions = 41, - /// + /// /// D3D12_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDRESOURCE CreateRenderTargetViewInvalidResource = 42, - /// + /// /// D3D12_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_UNRECOGNIZEDFORMAT CreateDepthStencilViewUnrecognizedFormat = 45, - /// + /// /// D3D12_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDDESC CreateDepthStencilViewInvalidDesc = 46, - /// + /// /// D3D12_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDFORMAT CreateDepthStencilViewInvalidFormat = 47, - /// + /// /// D3D12_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDDIMENSIONS CreateDepthStencilViewInvalidDimensions = 48, - /// + /// /// D3D12_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDRESOURCE CreateDepthStencilViewInvalidResource = 49, - /// + /// /// D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_OUTOFMEMORY CreateInputLayoutOutOfMemory = 52, - /// + /// /// D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_TOOMANYELEMENTS CreateInputLayoutTooManyElements = 53, - /// + /// /// D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDFORMAT CreateInputLayoutInvalidFormat = 54, - /// + /// /// D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_INCOMPATIBLEFORMAT CreateInputLayoutIncompatibleFormat = 55, - /// + /// /// D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDSLOT CreateInputLayoutInvalidSlot = 56, - /// + /// /// D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDINPUTSLOTCLASS CreateInputLayoutInvalidInputSlotClass = 57, - /// + /// /// D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_STEPRATESLOTCLASSMISMATCH CreateInputLayoutStepRateSlotClassMismatch = 58, - /// + /// /// D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDSLOTCLASSCHANGE CreateInputLayoutInvalidSlotClassChange = 59, - /// + /// /// D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDSTEPRATECHANGE CreateInputLayoutInvalidStepRateChange = 60, - /// + /// /// D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDALIGNMENT CreateInputLayoutInvalidAlignment = 61, - /// + /// /// D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_DUPLICATESEMANTIC CreateInputLayoutDuplicateSemantic = 62, - /// + /// /// D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_UNPARSEABLEINPUTSIGNATURE CreateInputLayoutUnparseableInputSignature = 63, - /// + /// /// D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_NULLSEMANTIC CreateInputLayoutNullSemantic = 64, - /// + /// /// D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_MISSINGELEMENT CreateInputLayoutMissingElement = 65, - /// + /// /// D3D12_MESSAGE_ID_CREATEVERTEXSHADER_OUTOFMEMORY CreateVertexShaderOutOfMemory = 66, - /// + /// /// D3D12_MESSAGE_ID_CREATEVERTEXSHADER_INVALIDSHADERBYTECODE CreateVertexShaderInvalidShaderBytecode = 67, - /// + /// /// D3D12_MESSAGE_ID_CREATEVERTEXSHADER_INVALIDSHADERTYPE CreateVertexShaderInvalidShaderType = 68, - /// + /// /// D3D12_MESSAGE_ID_CREATEGEOMETRYSHADER_OUTOFMEMORY CreateGeometryShaderOutOfMemory = 69, - /// + /// /// D3D12_MESSAGE_ID_CREATEGEOMETRYSHADER_INVALIDSHADERBYTECODE CreateGeometryShaderInvalidShaderBytecode = 70, - /// + /// /// D3D12_MESSAGE_ID_CREATEGEOMETRYSHADER_INVALIDSHADERTYPE CreateGeometryShaderInvalidShaderType = 71, - /// + /// /// D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_OUTOFMEMORY CreateGeometryShaderWithStreamOutputOutOfMemory = 72, - /// + /// /// D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSHADERBYTECODE CreateGeometryShaderWithStreamOutputInvalidShaderBytecode = 73, - /// + /// /// D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSHADERTYPE CreateGeometryShaderWithStreamOutputInvalidShaderType = 74, - /// + /// /// D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDNUMENTRIES CreateGeometryShaderWithStreamOutputInvalidNumEntries = 75, - /// + /// /// D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_OUTPUTSTREAMSTRIDEUNUSED CreateGeometryShaderWithStreamOutputOutputStreamStrideUnused = 76, - /// + /// /// D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_OUTPUTSLOT0EXPECTED CreateGeometryShaderWithStreamOutputOutputSlot0Expected = 79, - /// + /// /// D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDOUTPUTSLOT CreateGeometryShaderWithStreamOutputInvalidOutputSlot = 80, - /// + /// /// D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_ONLYONEELEMENTPERSLOT CreateGeometryShaderWithStreamOutputOnlyoneelementperslot = 81, - /// + /// /// D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDCOMPONENTCOUNT CreateGeometryShaderWithStreamOutputInvalidComponentCount = 82, - /// + /// /// D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSTARTCOMPONENTANDCOMPONENTCOUNT CreateGeometryShaderWithStreamOutputInvalidStartComponentAndComponentCount = 83, - /// + /// /// D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDGAPDEFINITION CreateGeometryShaderWithStreamOutputInvalidGapDefinition = 84, - /// + /// /// D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_REPEATEDOUTPUT CreateGeometryShaderWithStreamOutputRepeatedOutput = 85, - /// + /// /// D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDOUTPUTSTREAMSTRIDE CreateGeometryShaderWithStreamOutputInvalidOutputStreamStride = 86, - /// + /// /// D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_MISSINGSEMANTIC CreateGeometryShaderWithStreamOutputMissingsemantic = 87, - /// + /// /// D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_MASKMISMATCH CreateGeometryShaderWithStreamOutputMaskmismatch = 88, - /// + /// /// D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_CANTHAVEONLYGAPS CreateGeometryShaderWithStreamOutputCanthaveonlygaps = 89, - /// + /// /// D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_DECLTOOCOMPLEX CreateGeometryShaderWithStreamOutputDecltoocomplex = 90, - /// + /// /// D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_MISSINGOUTPUTSIGNATURE CreateGeometryShaderWithStreamOutputMissingOutputSignature = 91, - /// + /// /// D3D12_MESSAGE_ID_CREATEPIXELSHADER_OUTOFMEMORY CreatePixelShaderOutOfMemory = 92, - /// + /// /// D3D12_MESSAGE_ID_CREATEPIXELSHADER_INVALIDSHADERBYTECODE CreatePixelShaderInvalidShaderBytecode = 93, - /// + /// /// D3D12_MESSAGE_ID_CREATEPIXELSHADER_INVALIDSHADERTYPE CreatePixelShaderInvalidShaderType = 94, - /// + /// /// D3D12_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDFILLMODE CreateRasterizerStateInvalidFillMode = 95, - /// + /// /// D3D12_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDCULLMODE CreateRasterizerStateInvalidCullMode = 96, - /// + /// /// D3D12_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDDEPTHBIASCLAMP CreateRasterizerStateInvalidDepthBiasClamp = 97, - /// + /// /// D3D12_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDSLOPESCALEDDEPTHBIAS CreateRasterizerStateInvalidSlopeScaledDepthBias = 98, - /// + /// /// D3D12_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDDEPTHWRITEMASK CreateDepthStencilStateInvalidDepthWriteMask = 100, - /// + /// /// D3D12_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDDEPTHFUNC CreateDepthStencilStateInvalidDepthFunc = 101, - /// + /// /// D3D12_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILFAILOP CreateDepthStencilStateInvalidFrontFaceStencilFailOp = 102, - /// + /// /// D3D12_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILZFAILOP CreateDepthStencilStateInvalidFrontFaceStencilZFailOp = 103, - /// + /// /// D3D12_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILPASSOP CreateDepthStencilStateInvalidFrontFaceStencilPassOp = 104, - /// + /// /// D3D12_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILFUNC CreateDepthStencilStateInvalidFrontFaceStencilFunc = 105, - /// + /// /// D3D12_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILFAILOP CreateDepthStencilStateInvalidBackFaceStencilFailOp = 106, - /// + /// /// D3D12_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILZFAILOP CreateDepthStencilStateInvalidBackFaceStencilZFailOp = 107, - /// + /// /// D3D12_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILPASSOP CreateDepthStencilStateInvalidBackFaceStencilPassOp = 108, - /// + /// /// D3D12_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILFUNC CreateDepthStencilStateInvalidBackFaceStencilFunc = 109, - /// + /// /// D3D12_MESSAGE_ID_CREATEBLENDSTATE_INVALIDSRCBLEND CreateBlendStateInvalidSrcBlend = 111, - /// + /// /// D3D12_MESSAGE_ID_CREATEBLENDSTATE_INVALIDDESTBLEND CreateBlendStateInvalidDestBlend = 112, - /// + /// /// D3D12_MESSAGE_ID_CREATEBLENDSTATE_INVALIDBLENDOP CreateBlendStateInvalidBlendOp = 113, - /// + /// /// D3D12_MESSAGE_ID_CREATEBLENDSTATE_INVALIDSRCBLENDALPHA CreateBlendStateInvalidSrcBlendAlpha = 114, - /// + /// /// D3D12_MESSAGE_ID_CREATEBLENDSTATE_INVALIDDESTBLENDALPHA CreateBlendStateInvalidDestBlendAlpha = 115, - /// + /// /// D3D12_MESSAGE_ID_CREATEBLENDSTATE_INVALIDBLENDOPALPHA CreateBlendStateInvalidBlendOpAlpha = 116, - /// + /// /// D3D12_MESSAGE_ID_CREATEBLENDSTATE_INVALIDRENDERTARGETWRITEMASK CreateBlendStateInvalidRenderTargetWriteMask = 117, - /// + /// /// D3D12_MESSAGE_ID_CLEARDEPTHSTENCILVIEW_INVALID ClearDepthStencilViewInvalid = 135, - /// + /// /// D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_ROOT_SIGNATURE_NOT_SET CommandListDrawRootSignatureNotSet = 200, - /// + /// /// D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_ROOT_SIGNATURE_MISMATCH CommandListDrawRootSignatureMismatch = 201, - /// + /// /// D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_VERTEX_BUFFER_NOT_SET CommandListDrawVertexBufferNotSet = 202, - /// + /// /// D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_VERTEX_BUFFER_STRIDE_TOO_SMALL CommandListDrawVertexBufferStrideTooSmall = 209, - /// + /// /// D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_VERTEX_BUFFER_TOO_SMALL CommandListDrawVertexBufferTooSmall = 210, - /// + /// /// D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_INDEX_BUFFER_NOT_SET CommandListDrawIndexBufferNotSet = 211, - /// + /// /// D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_INDEX_BUFFER_FORMAT_INVALID CommandListDrawIndexBufferFormatInvalid = 212, - /// + /// /// D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_INDEX_BUFFER_TOO_SMALL CommandListDrawIndexBufferTooSmall = 213, - /// + /// /// D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_INVALID_PRIMITIVETOPOLOGY CommandListDrawInvalidPrimitivetopology = 219, - /// + /// /// D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_VERTEX_STRIDE_UNALIGNED CommandListDrawVertexStrideUnaligned = 221, - /// + /// /// D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_INDEX_OFFSET_UNALIGNED CommandListDrawIndexOffsetUnaligned = 222, - /// + /// /// D3D12_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_AT_FAULT DeviceRemovalProcessAtFault = 232, - /// + /// /// D3D12_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_POSSIBLY_AT_FAULT DeviceRemovalProcessPossiblyAtFault = 233, - /// + /// /// D3D12_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_NOT_AT_FAULT DeviceRemovalProcessNotAtFault = 234, - /// + /// /// D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_TRAILING_DIGIT_IN_SEMANTIC CreateInputLayoutTrailingDigitInSemantic = 239, - /// + /// /// D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_TRAILING_DIGIT_IN_SEMANTIC CreateGeometryShaderWithStreamOutputTrailingDigitInSemantic = 240, - /// + /// /// D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_TYPE_MISMATCH CreateInputLayoutTypeMismatch = 245, - /// + /// /// D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_EMPTY_LAYOUT CreateInputLayoutEmptyLayout = 253, - /// + /// /// D3D12_MESSAGE_ID_LIVE_OBJECT_SUMMARY LiveObjectSummary = 255, - /// + /// /// D3D12_MESSAGE_ID_LIVE_DEVICE LiveDevice = 274, - /// + /// /// D3D12_MESSAGE_ID_LIVE_SWAPCHAIN LiveSwapchain = 275, - /// + /// /// D3D12_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDFLAGS CreateDepthStencilViewInvalidFlags = 276, - /// + /// /// D3D12_MESSAGE_ID_CREATEVERTEXSHADER_INVALIDCLASSLINKAGE CreateVertexShaderInvalidClassLinkage = 277, - /// + /// /// D3D12_MESSAGE_ID_CREATEGEOMETRYSHADER_INVALIDCLASSLINKAGE CreateGeometryShaderInvalidClassLinkage = 278, - /// + /// /// D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSTREAMTORASTERIZER CreateGeometryShaderWithStreamOutputInvalidStreamToRasterizer = 280, - /// + /// /// D3D12_MESSAGE_ID_CREATEPIXELSHADER_INVALIDCLASSLINKAGE CreatePixelShaderInvalidClassLinkage = 283, - /// + /// /// D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSTREAM CreateGeometryShaderWithStreamOutputInvalidStream = 284, - /// + /// /// D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_UNEXPECTEDENTRIES CreateGeometryShaderWithStreamOutputUnexpectedEntries = 285, - /// + /// /// D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_UNEXPECTEDSTRIDES CreateGeometryShaderWithStreamOutputUnexpectedStrides = 286, - /// + /// /// D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDNUMSTRIDES CreateGeometryShaderWithStreamOutputInvalidNumStrides = 287, - /// + /// /// D3D12_MESSAGE_ID_CREATEHULLSHADER_OUTOFMEMORY CreateHullShaderOutOfMemory = 289, - /// + /// /// D3D12_MESSAGE_ID_CREATEHULLSHADER_INVALIDSHADERBYTECODE CreateHullShaderInvalidShaderBytecode = 290, - /// + /// /// D3D12_MESSAGE_ID_CREATEHULLSHADER_INVALIDSHADERTYPE CreateHullShaderInvalidShaderType = 291, - /// + /// /// D3D12_MESSAGE_ID_CREATEHULLSHADER_INVALIDCLASSLINKAGE CreateHullShaderInvalidClassLinkage = 292, - /// + /// /// D3D12_MESSAGE_ID_CREATEDOMAINSHADER_OUTOFMEMORY CreateDomainShaderOutOfMemory = 294, - /// + /// /// D3D12_MESSAGE_ID_CREATEDOMAINSHADER_INVALIDSHADERBYTECODE CreateDomainShaderInvalidShaderBytecode = 295, - /// + /// /// D3D12_MESSAGE_ID_CREATEDOMAINSHADER_INVALIDSHADERTYPE CreateDomainShaderInvalidShaderType = 296, - /// + /// /// D3D12_MESSAGE_ID_CREATEDOMAINSHADER_INVALIDCLASSLINKAGE CreateDomainShaderInvalidClassLinkage = 297, - /// + /// /// D3D12_MESSAGE_ID_RESOURCE_UNMAP_NOTMAPPED ResourceUnmapNotMapped = 310, - /// + /// /// D3D12_MESSAGE_ID_DEVICE_CHECKFEATURESUPPORT_MISMATCHED_DATA_SIZE DeviceCheckfeaturesupportMismatchedDataSize = 318, - /// + /// /// D3D12_MESSAGE_ID_CREATECOMPUTESHADER_OUTOFMEMORY CreateComputeShaderOutOfMemory = 321, - /// + /// /// D3D12_MESSAGE_ID_CREATECOMPUTESHADER_INVALIDSHADERBYTECODE CreateComputeShaderInvalidShaderBytecode = 322, - /// + /// /// D3D12_MESSAGE_ID_CREATECOMPUTESHADER_INVALIDCLASSLINKAGE CreateComputeShaderInvalidClassLinkage = 323, - /// + /// /// D3D12_MESSAGE_ID_DEVICE_CREATEVERTEXSHADER_DOUBLEFLOATOPSNOTSUPPORTED DeviceCreateVertexShaderDoubleFloatOpsNotSupported = 331, - /// + /// /// D3D12_MESSAGE_ID_DEVICE_CREATEHULLSHADER_DOUBLEFLOATOPSNOTSUPPORTED DeviceCreateHullShaderDoubleFloatOpsNotSupported = 332, - /// + /// /// D3D12_MESSAGE_ID_DEVICE_CREATEDOMAINSHADER_DOUBLEFLOATOPSNOTSUPPORTED DeviceCreateDomainShaderDoubleFloatOpsNotSupported = 333, - /// + /// /// D3D12_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADER_DOUBLEFLOATOPSNOTSUPPORTED DeviceCreateGeometryShaderDoubleFloatOpsNotSupported = 334, - /// + /// /// D3D12_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_DOUBLEFLOATOPSNOTSUPPORTED DeviceCreateGeometryShaderWithStreamOutputDoubleFloatOpsNotSupported = 335, - /// + /// /// D3D12_MESSAGE_ID_DEVICE_CREATEPIXELSHADER_DOUBLEFLOATOPSNOTSUPPORTED DeviceCreatePixelShaderDoubleFloatOpsNotSupported = 336, - /// + /// /// D3D12_MESSAGE_ID_DEVICE_CREATECOMPUTESHADER_DOUBLEFLOATOPSNOTSUPPORTED DeviceCreateComputeShaderDoubleFloatOpsNotSupported = 337, - /// + /// /// D3D12_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDRESOURCE CreateUnorderedAccessViewInvalidResource = 340, - /// + /// /// D3D12_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDDESC CreateUnorderedAccessViewInvalidDesc = 341, - /// + /// /// D3D12_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDFORMAT CreateUnorderedAccessViewInvalidFormat = 342, - /// + /// /// D3D12_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDVIDEOPLANESLICE CreateUnorderedAccessViewInvalidVideoPlaneSlice = 343, - /// + /// /// D3D12_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDPLANESLICE CreateUnorderedAccessViewInvalidPlaneSlice = 344, - /// + /// /// D3D12_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDDIMENSIONS CreateUnorderedAccessViewInvalidDimensions = 345, - /// + /// /// D3D12_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_UNRECOGNIZEDFORMAT CreateUnorderedAccessViewUnrecognizedFormat = 346, - /// + /// /// D3D12_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDFLAGS CreateUnorderedAccessViewInvalidFlags = 354, - /// + /// /// D3D12_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDFORCEDSAMPLECOUNT CreateRasterizerStateInvalidforcedsamplecount = 401, - /// + /// /// D3D12_MESSAGE_ID_CREATEBLENDSTATE_INVALIDLOGICOPS CreateBlendStateInvalidlogicops = 403, - /// + /// /// D3D12_MESSAGE_ID_DEVICE_CREATEVERTEXSHADER_DOUBLEEXTENSIONSNOTSUPPORTED DeviceCreateVertexShaderDoubleExtensionsNotSupported = 410, - /// + /// /// D3D12_MESSAGE_ID_DEVICE_CREATEHULLSHADER_DOUBLEEXTENSIONSNOTSUPPORTED DeviceCreateHullShaderDoubleExtensionsNotSupported = 412, - /// + /// /// D3D12_MESSAGE_ID_DEVICE_CREATEDOMAINSHADER_DOUBLEEXTENSIONSNOTSUPPORTED DeviceCreateDomainShaderDoubleExtensionsNotSupported = 414, - /// + /// /// D3D12_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADER_DOUBLEEXTENSIONSNOTSUPPORTED DeviceCreateGeometryShaderDoubleExtensionsNotSupported = 416, - /// + /// /// D3D12_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_DOUBLEEXTENSIONSNOTSUPPORTED DeviceCreateGeometryShaderWithStreamOutputDoubleExtensionsNotSupported = 418, - /// + /// /// D3D12_MESSAGE_ID_DEVICE_CREATEPIXELSHADER_DOUBLEEXTENSIONSNOTSUPPORTED DeviceCreatePixelShaderDoubleExtensionsNotSupported = 420, - /// + /// /// D3D12_MESSAGE_ID_DEVICE_CREATECOMPUTESHADER_DOUBLEEXTENSIONSNOTSUPPORTED DeviceCreateComputeShaderDoubleExtensionsNotSupported = 422, - /// + /// /// D3D12_MESSAGE_ID_DEVICE_CREATEVERTEXSHADER_UAVSNOTSUPPORTED DeviceCreateVertexShaderUAVsNotSupported = 425, - /// + /// /// D3D12_MESSAGE_ID_DEVICE_CREATEHULLSHADER_UAVSNOTSUPPORTED DeviceCreateHullShaderUAVsNotSupported = 426, - /// + /// /// D3D12_MESSAGE_ID_DEVICE_CREATEDOMAINSHADER_UAVSNOTSUPPORTED DeviceCreateDomainShaderUAVsNotSupported = 427, - /// + /// /// D3D12_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADER_UAVSNOTSUPPORTED DeviceCreateGeometryShaderUAVsNotSupported = 428, - /// + /// /// D3D12_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_UAVSNOTSUPPORTED DeviceCreateGeometryShaderWithStreamOutputUAVsNotSupported = 429, - /// + /// /// D3D12_MESSAGE_ID_DEVICE_CREATEPIXELSHADER_UAVSNOTSUPPORTED DeviceCreatePixelShaderUAVsNotSupported = 430, - /// + /// /// D3D12_MESSAGE_ID_DEVICE_CREATECOMPUTESHADER_UAVSNOTSUPPORTED DeviceCreateComputeShaderUAVsNotSupported = 431, - /// + /// /// D3D12_MESSAGE_ID_DEVICE_CLEARVIEW_INVALIDSOURCERECT DeviceClearViewInvalidsourcerect = 447, - /// + /// /// D3D12_MESSAGE_ID_DEVICE_CLEARVIEW_EMPTYRECT DeviceClearViewEmptyRect = 448, - /// + /// /// D3D12_MESSAGE_ID_UPDATETILEMAPPINGS_INVALID_PARAMETER UpdateTileMappingsInvalidParameter = 493, - /// + /// /// D3D12_MESSAGE_ID_COPYTILEMAPPINGS_INVALID_PARAMETER CopyTileMappingsInvalidParameter = 494, - /// + /// /// D3D12_MESSAGE_ID_CREATEDEVICE_INVALIDARGS CreateDeviceInvalidArgs = 506, - /// + /// /// D3D12_MESSAGE_ID_CREATEDEVICE_WARNING CreateDeviceWarning = 507, - /// + /// /// D3D12_MESSAGE_ID_RESOURCE_BARRIER_INVALID_TYPE ResourceBarrierInvalidType = 519, - /// + /// /// D3D12_MESSAGE_ID_RESOURCE_BARRIER_NULL_POINTER ResourceBarrierNullPointer = 520, - /// + /// /// D3D12_MESSAGE_ID_RESOURCE_BARRIER_INVALID_SUBRESOURCE ResourceBarrierInvalidSubresource = 521, - /// + /// /// D3D12_MESSAGE_ID_RESOURCE_BARRIER_RESERVED_BITS ResourceBarrierReservedBits = 522, - /// + /// /// D3D12_MESSAGE_ID_RESOURCE_BARRIER_MISSING_BIND_FLAGS ResourceBarrierMissingBindFlags = 523, - /// + /// /// D3D12_MESSAGE_ID_RESOURCE_BARRIER_MISMATCHING_MISC_FLAGS ResourceBarrierMismatchingMiscFlags = 524, - /// + /// /// D3D12_MESSAGE_ID_RESOURCE_BARRIER_MATCHING_STATES ResourceBarrierMatchingStates = 525, - /// + /// /// D3D12_MESSAGE_ID_RESOURCE_BARRIER_INVALID_COMBINATION ResourceBarrierInvalidCombination = 526, - /// + /// /// D3D12_MESSAGE_ID_RESOURCE_BARRIER_BEFORE_AFTER_MISMATCH ResourceBarrierBeforeAfterMismatch = 527, - /// + /// /// D3D12_MESSAGE_ID_RESOURCE_BARRIER_INVALID_RESOURCE ResourceBarrierInvalidResource = 528, - /// + /// /// D3D12_MESSAGE_ID_RESOURCE_BARRIER_SAMPLE_COUNT ResourceBarrierSampleCount = 529, - /// + /// /// D3D12_MESSAGE_ID_RESOURCE_BARRIER_INVALID_FLAGS ResourceBarrierInvalidFlags = 530, - /// + /// /// D3D12_MESSAGE_ID_RESOURCE_BARRIER_INVALID_COMBINED_FLAGS ResourceBarrierInvalidCombinedFlags = 531, - /// + /// /// D3D12_MESSAGE_ID_RESOURCE_BARRIER_INVALID_FLAGS_FOR_FORMAT ResourceBarrierInvalidFlagsForFormat = 532, - /// + /// /// D3D12_MESSAGE_ID_RESOURCE_BARRIER_INVALID_SPLIT_BARRIER ResourceBarrierInvalidSplitBarrier = 533, - /// + /// /// D3D12_MESSAGE_ID_RESOURCE_BARRIER_UNMATCHED_END ResourceBarrierUnmatchedEnd = 534, - /// + /// /// D3D12_MESSAGE_ID_RESOURCE_BARRIER_UNMATCHED_BEGIN ResourceBarrierUnmatchedBegin = 535, - /// + /// /// D3D12_MESSAGE_ID_RESOURCE_BARRIER_INVALID_FLAG ResourceBarrierInvalidFlag = 536, - /// + /// /// D3D12_MESSAGE_ID_RESOURCE_BARRIER_INVALID_COMMAND_LIST_TYPE ResourceBarrierInvalidCommandListType = 537, - /// + /// /// D3D12_MESSAGE_ID_INVALID_SUBRESOURCE_STATE InvalidSubresourceState = 538, - /// + /// /// D3D12_MESSAGE_ID_COMMAND_ALLOCATOR_CONTENTION CommandAllocatorContention = 540, - /// + /// /// D3D12_MESSAGE_ID_COMMAND_ALLOCATOR_RESET CommandAllocatorReset = 541, - /// + /// /// D3D12_MESSAGE_ID_COMMAND_ALLOCATOR_RESET_BUNDLE CommandAllocatorResetBundle = 542, - /// + /// /// D3D12_MESSAGE_ID_COMMAND_ALLOCATOR_CANNOT_RESET CommandAllocatorCannotReset = 543, - /// + /// /// D3D12_MESSAGE_ID_COMMAND_LIST_OPEN CommandListOpen = 544, - /// + /// /// D3D12_MESSAGE_ID_INVALID_BUNDLE_API InvalidBundleApi = 546, - /// + /// /// D3D12_MESSAGE_ID_COMMAND_LIST_CLOSED CommandListClosed = 547, - /// + /// /// D3D12_MESSAGE_ID_WRONG_COMMAND_ALLOCATOR_TYPE WrongCommandAllocatorType = 549, - /// + /// /// D3D12_MESSAGE_ID_COMMAND_ALLOCATOR_SYNC CommandAllocatorSync = 552, - /// + /// /// D3D12_MESSAGE_ID_COMMAND_LIST_SYNC CommandListSync = 553, - /// + /// /// D3D12_MESSAGE_ID_SET_DESCRIPTOR_HEAP_INVALID SetDescriptorHeapInvalid = 554, - /// + /// /// D3D12_MESSAGE_ID_CREATE_COMMANDQUEUE CreateCommandQueue = 557, - /// + /// /// D3D12_MESSAGE_ID_CREATE_COMMANDALLOCATOR CreateCommandAllocator = 558, - /// + /// /// D3D12_MESSAGE_ID_CREATE_PIPELINESTATE CreatePipelineState = 559, - /// + /// /// D3D12_MESSAGE_ID_CREATE_COMMANDLIST12 CreateCommandList12 = 560, - /// + /// /// D3D12_MESSAGE_ID_CREATE_RESOURCE CreateResource = 562, - /// + /// /// D3D12_MESSAGE_ID_CREATE_DESCRIPTORHEAP CreateDescriptorHeap = 563, - /// + /// /// D3D12_MESSAGE_ID_CREATE_ROOTSIGNATURE CreateRootSignature = 564, - /// + /// /// D3D12_MESSAGE_ID_CREATE_LIBRARY CreateLibrary = 565, - /// + /// /// D3D12_MESSAGE_ID_CREATE_HEAP CreateHeap = 566, - /// + /// /// D3D12_MESSAGE_ID_CREATE_MONITOREDFENCE CreateMonitoredFence = 567, - /// + /// /// D3D12_MESSAGE_ID_CREATE_QUERYHEAP CreateQueryHeap = 568, - /// + /// /// D3D12_MESSAGE_ID_CREATE_COMMANDSIGNATURE CreateCommandSignature = 569, - /// + /// /// D3D12_MESSAGE_ID_LIVE_COMMANDQUEUE LiveCommandQueue = 570, - /// + /// /// D3D12_MESSAGE_ID_LIVE_COMMANDALLOCATOR LiveCommandAllocator = 571, - /// + /// /// D3D12_MESSAGE_ID_LIVE_PIPELINESTATE LivePipelineState = 572, - /// + /// /// D3D12_MESSAGE_ID_LIVE_COMMANDLIST12 LiveCommandList12 = 573, - /// + /// /// D3D12_MESSAGE_ID_LIVE_RESOURCE LiveResource = 575, - /// + /// /// D3D12_MESSAGE_ID_LIVE_DESCRIPTORHEAP LiveDescriptorHeap = 576, - /// + /// /// D3D12_MESSAGE_ID_LIVE_ROOTSIGNATURE LiveRootSignature = 577, - /// + /// /// D3D12_MESSAGE_ID_LIVE_LIBRARY LiveLibrary = 578, - /// + /// /// D3D12_MESSAGE_ID_LIVE_HEAP LiveHeap = 579, - /// + /// /// D3D12_MESSAGE_ID_LIVE_MONITOREDFENCE LiveMonitoredFence = 580, - /// + /// /// D3D12_MESSAGE_ID_LIVE_QUERYHEAP LiveQueryHeap = 581, - /// + /// /// D3D12_MESSAGE_ID_LIVE_COMMANDSIGNATURE LiveCommandSignature = 582, - /// + /// /// D3D12_MESSAGE_ID_DESTROY_COMMANDQUEUE DestroyCommandQueue = 583, - /// + /// /// D3D12_MESSAGE_ID_DESTROY_COMMANDALLOCATOR DestroyCommandAllocator = 584, - /// + /// /// D3D12_MESSAGE_ID_DESTROY_PIPELINESTATE DestroyPipelineState = 585, - /// + /// /// D3D12_MESSAGE_ID_DESTROY_COMMANDLIST12 DestroyCommandList12 = 586, - /// + /// /// D3D12_MESSAGE_ID_DESTROY_RESOURCE DestroyResource = 588, - /// + /// /// D3D12_MESSAGE_ID_DESTROY_DESCRIPTORHEAP DestroyDescriptorHeap = 589, - /// + /// /// D3D12_MESSAGE_ID_DESTROY_ROOTSIGNATURE DestroyRootSignature = 590, - /// + /// /// D3D12_MESSAGE_ID_DESTROY_LIBRARY DestroyLibrary = 591, - /// + /// /// D3D12_MESSAGE_ID_DESTROY_HEAP DestroyHeap = 592, - /// + /// /// D3D12_MESSAGE_ID_DESTROY_MONITOREDFENCE DestroyMonitoredFence = 593, - /// + /// /// D3D12_MESSAGE_ID_DESTROY_QUERYHEAP DestroyQueryHeap = 594, - /// + /// /// D3D12_MESSAGE_ID_DESTROY_COMMANDSIGNATURE DestroyCommandSignature = 595, - /// + /// /// D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDDIMENSIONS CreateResourceInvalidDimensions = 597, - /// + /// /// D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDMISCFLAGS CreateResourceInvalidMiscFlags = 599, - /// + /// /// D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDARG_RETURN CreateResourceInvalidArgReturn = 602, - /// + /// /// D3D12_MESSAGE_ID_CREATERESOURCE_OUTOFMEMORY_RETURN CreateResourceOutOfMemoryReturn = 603, - /// + /// /// D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDDESC CreateResourceInvalidDesc = 604, - /// + /// /// D3D12_MESSAGE_ID_POSSIBLY_INVALID_SUBRESOURCE_STATE PossiblyInvalidSubresourceState = 607, - /// + /// /// D3D12_MESSAGE_ID_INVALID_USE_OF_NON_RESIDENT_RESOURCE InvalidUseOfNonResidentResource = 608, - /// + /// /// D3D12_MESSAGE_ID_POSSIBLE_INVALID_USE_OF_NON_RESIDENT_RESOURCE PossibleInvalidUseOfNonResidentResource = 609, - /// + /// /// D3D12_MESSAGE_ID_BUNDLE_PIPELINE_STATE_MISMATCH BundlePipelineStateMismatch = 610, - /// + /// /// D3D12_MESSAGE_ID_PRIMITIVE_TOPOLOGY_MISMATCH_PIPELINE_STATE PrimitiveTopologyMismatchPipelineState = 611, - /// + /// /// D3D12_MESSAGE_ID_RENDER_TARGET_FORMAT_MISMATCH_PIPELINE_STATE RenderTargetFormatMismatchPipelineState = 613, - /// + /// /// D3D12_MESSAGE_ID_RENDER_TARGET_SAMPLE_DESC_MISMATCH_PIPELINE_STATE RenderTargetSampleDescMismatchPipelineState = 614, - /// + /// /// D3D12_MESSAGE_ID_DEPTH_STENCIL_FORMAT_MISMATCH_PIPELINE_STATE DepthStencilFormatMismatchPipelineState = 615, - /// + /// /// D3D12_MESSAGE_ID_DEPTH_STENCIL_SAMPLE_DESC_MISMATCH_PIPELINE_STATE DepthStencilSampleDescMismatchPipelineState = 616, - /// + /// /// D3D12_MESSAGE_ID_CREATESHADER_INVALIDBYTECODE CreateShaderInvalidBytecode = 622, - /// + /// /// D3D12_MESSAGE_ID_CREATEHEAP_NULLDESC CreateHeapNullDesc = 623, - /// + /// /// D3D12_MESSAGE_ID_CREATEHEAP_INVALIDSIZE CreateHeapInvalidSize = 624, - /// + /// /// D3D12_MESSAGE_ID_CREATEHEAP_UNRECOGNIZEDHEAPTYPE CreateHeapUnrecognizedHeapType = 625, - /// + /// /// D3D12_MESSAGE_ID_CREATEHEAP_UNRECOGNIZEDCPUPAGEPROPERTIES CreateHeapUnrecognizedCPUPageProperties = 626, - /// + /// /// D3D12_MESSAGE_ID_CREATEHEAP_UNRECOGNIZEDMEMORYPOOL CreateHeapUnrecognizedMemoryPool = 627, - /// + /// /// D3D12_MESSAGE_ID_CREATEHEAP_INVALIDPROPERTIES CreateHeapInvalidProperties = 628, - /// + /// /// D3D12_MESSAGE_ID_CREATEHEAP_INVALIDALIGNMENT CreateHeapInvalidAlignment = 629, - /// + /// /// D3D12_MESSAGE_ID_CREATEHEAP_UNRECOGNIZEDMISCFLAGS CreateHeapUnrecognizedMiscFlags = 630, - /// + /// /// D3D12_MESSAGE_ID_CREATEHEAP_INVALIDMISCFLAGS CreateHeapInvalidMiscFlags = 631, - /// + /// /// D3D12_MESSAGE_ID_CREATEHEAP_INVALIDARG_RETURN CreateHeapInvalidArgReturn = 632, - /// + /// /// D3D12_MESSAGE_ID_CREATEHEAP_OUTOFMEMORY_RETURN CreateHeapOutOfMemoryReturn = 633, - /// + /// /// D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_NULLHEAPPROPERTIES CreateResourceAndHeapNullHeapProperties = 634, - /// + /// /// D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_UNRECOGNIZEDHEAPTYPE CreateResourceAndHeapUnrecognizedHeapType = 635, - /// + /// /// D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_UNRECOGNIZEDCPUPAGEPROPERTIES CreateResourceAndHeapUnrecognizedCPUPageProperties = 636, - /// + /// /// D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_UNRECOGNIZEDMEMORYPOOL CreateResourceAndHeapUnrecognizedMemoryPool = 637, - /// + /// /// D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_INVALIDHEAPPROPERTIES CreateResourceAndHeapInvalidHeapProperties = 638, - /// + /// /// D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_UNRECOGNIZEDHEAPMISCFLAGS CreateResourceAndHeapUnrecognizedHeapMiscFlags = 639, - /// + /// /// D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_INVALIDHEAPMISCFLAGS CreateResourceAndHeapInvalidHeapMiscFlags = 640, - /// + /// /// D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_INVALIDARG_RETURN CreateResourceAndHeapInvalidArgReturn = 641, - /// + /// /// D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_OUTOFMEMORY_RETURN CreateResourceAndHeapOutOfMemoryReturn = 642, - /// + /// /// D3D12_MESSAGE_ID_GETCUSTOMHEAPPROPERTIES_UNRECOGNIZEDHEAPTYPE GetCustomHeapPropertiesUnrecognizedHeapType = 643, - /// + /// /// D3D12_MESSAGE_ID_GETCUSTOMHEAPPROPERTIES_INVALIDHEAPTYPE GetCustomHeapPropertiesInvalidHeapType = 644, - /// + /// /// D3D12_MESSAGE_ID_CREATE_DESCRIPTOR_HEAP_INVALID_DESC CreateDescriptorHeapInvalidDesc = 645, - /// + /// /// D3D12_MESSAGE_ID_INVALID_DESCRIPTOR_HANDLE InvalidDescriptorHandle = 646, - /// + /// /// D3D12_MESSAGE_ID_CREATERASTERIZERSTATE_INVALID_CONSERVATIVERASTERMODE CreateRasterizerStateInvalidConservativeRasterMode = 647, - /// + /// /// D3D12_MESSAGE_ID_CREATE_CONSTANT_BUFFER_VIEW_INVALID_RESOURCE CreateConstantBufferViewInvalidResource = 649, - /// + /// /// D3D12_MESSAGE_ID_CREATE_CONSTANT_BUFFER_VIEW_INVALID_DESC CreateConstantBufferViewInvalidDesc = 650, - /// + /// /// D3D12_MESSAGE_ID_CREATE_UNORDEREDACCESS_VIEW_INVALID_COUNTER_USAGE CreateUnorderedAccessViewInvalidCounterUsage = 652, - /// + /// /// D3D12_MESSAGE_ID_COPY_DESCRIPTORS_INVALID_RANGES CopyDescriptorsInvalidRanges = 653, - /// + /// /// D3D12_MESSAGE_ID_COPY_DESCRIPTORS_WRITE_ONLY_DESCRIPTOR CopyDescriptorsWriteOnlyDescriptor = 654, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_RTV_FORMAT_NOT_UNKNOWN CreateGraphicsPipelineStateRtvFormatNotUnknown = 655, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_INVALID_RENDER_TARGET_COUNT CreateGraphicsPipelineStateInvalidRenderTargetCount = 656, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_VERTEX_SHADER_NOT_SET CreateGraphicsPipelineStateVertexShaderNotSet = 657, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_INPUTLAYOUT_NOT_SET CreateGraphicsPipelineStateInputLayoutNotSet = 658, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_SHADER_LINKAGE_HS_DS_SIGNATURE_MISMATCH CreateGraphicsPipelineStateShaderLinkageHSDSSignatureMismatch = 659, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_SHADER_LINKAGE_REGISTERINDEX CreateGraphicsPipelineStateShaderLinkageRegisterIndex = 660, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_SHADER_LINKAGE_COMPONENTTYPE CreateGraphicsPipelineStateShaderLinkageComponentType = 661, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_SHADER_LINKAGE_REGISTERMASK CreateGraphicsPipelineStateShaderLinkageRegisterMask = 662, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_SHADER_LINKAGE_SYSTEMVALUE CreateGraphicsPipelineStateShaderLinkageSystemValue = 663, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_SHADER_LINKAGE_NEVERWRITTEN_ALWAYSREADS CreateGraphicsPipelineStateShaderLinkageNeverWrittenAlwaysReads = 664, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_SHADER_LINKAGE_MINPRECISION CreateGraphicsPipelineStateShaderLinkageMinPrecision = 665, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_SHADER_LINKAGE_SEMANTICNAME_NOT_FOUND CreateGraphicsPipelineStateShaderLinkageSemanticNameNotFound = 666, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_HS_XOR_DS_MISMATCH CreateGraphicsPipelineStateHSXorDSMismatch = 667, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_HULL_SHADER_INPUT_TOPOLOGY_MISMATCH CreateGraphicsPipelineStateHullShaderInputTopologyMismatch = 668, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_HS_DS_CONTROL_POINT_COUNT_MISMATCH CreateGraphicsPipelineStateHSDSControlPointCountMismatch = 669, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_HS_DS_TESSELLATOR_DOMAIN_MISMATCH CreateGraphicsPipelineStateHSDSTessellatorDomainMismatch = 670, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_INVALID_USE_OF_CENTER_MULTISAMPLE_PATTERN CreateGraphicsPipelineStateInvalidUseOfCenterMultisamplePattern = 671, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_INVALID_USE_OF_FORCED_SAMPLE_COUNT CreateGraphicsPipelineStateInvalidUseOfForcedSampleCount = 672, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_INVALID_PRIMITIVETOPOLOGY CreateGraphicsPipelineStateInvalidPrimitivetopology = 673, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_INVALID_SYSTEMVALUE CreateGraphicsPipelineStateInvalidSystemValue = 674, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_OM_DUAL_SOURCE_BLENDING_CAN_ONLY_HAVE_RENDER_TARGET_0 CreateGraphicsPipelineStateOMDualSourceBlendingCanOnlyHaveRenderTarget0 = 675, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_OM_RENDER_TARGET_DOES_NOT_SUPPORT_BLENDING CreateGraphicsPipelineStateOMRenderTargetDoesNotSupportBlending = 676, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_PS_OUTPUT_TYPE_MISMATCH CreateGraphicsPipelineStatePSOutputTypeMismatch = 677, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_OM_RENDER_TARGET_DOES_NOT_SUPPORT_LOGIC_OPS CreateGraphicsPipelineStateOMRenderTargetDoesNotSupportLogicOps = 678, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_RENDERTARGETVIEW_NOT_SET CreateGraphicsPipelineStateRenderTargetViewNotSet = 679, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_DEPTHSTENCILVIEW_NOT_SET CreateGraphicsPipelineStateDepthStencilViewNotSet = 680, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_GS_INPUT_PRIMITIVE_MISMATCH CreateGraphicsPipelineStateGSInputPrimitiveMismatch = 681, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_POSITION_NOT_PRESENT CreateGraphicsPipelineStatePositionNotPresent = 682, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_MISSING_ROOT_SIGNATURE_FLAGS CreateGraphicsPipelineStateMissingRootSignatureFlags = 683, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_INVALID_INDEX_BUFFER_PROPERTIES CreateGraphicsPipelineStateInvalidIndexBufferProperties = 684, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_INVALID_SAMPLE_DESC CreateGraphicsPipelineStateInvalidSampleDesc = 685, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_HS_ROOT_SIGNATURE_MISMATCH CreateGraphicsPipelineStateHSRootSignatureMismatch = 686, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_DS_ROOT_SIGNATURE_MISMATCH CreateGraphicsPipelineStateDSRootSignatureMismatch = 687, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_VS_ROOT_SIGNATURE_MISMATCH CreateGraphicsPipelineStateVSRootSignatureMismatch = 688, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_GS_ROOT_SIGNATURE_MISMATCH CreateGraphicsPipelineStateGSRootSignatureMismatch = 689, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_PS_ROOT_SIGNATURE_MISMATCH CreateGraphicsPipelineStatePSRootSignatureMismatch = 690, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_MISSING_ROOT_SIGNATURE CreateGraphicsPipelineStateMissingRootSignature = 691, - /// + /// /// D3D12_MESSAGE_ID_EXECUTE_BUNDLE_OPEN_BUNDLE ExecuteBundleOpenBundle = 692, - /// + /// /// D3D12_MESSAGE_ID_EXECUTE_BUNDLE_DESCRIPTOR_HEAP_MISMATCH ExecuteBundleDescriptorHeapMismatch = 693, - /// + /// /// D3D12_MESSAGE_ID_EXECUTE_BUNDLE_TYPE ExecuteBundleType = 694, - /// + /// /// D3D12_MESSAGE_ID_DRAW_EMPTY_SCISSOR_RECTANGLE DrawEmptyScissorRectangle = 695, - /// + /// /// D3D12_MESSAGE_ID_CREATE_ROOT_SIGNATURE_BLOB_NOT_FOUND CreateRootSignatureBlobNotFound = 696, - /// + /// /// D3D12_MESSAGE_ID_CREATE_ROOT_SIGNATURE_DESERIALIZE_FAILED CreateRootSignatureDeserializeFailed = 697, - /// + /// /// D3D12_MESSAGE_ID_CREATE_ROOT_SIGNATURE_INVALID_CONFIGURATION CreateRootSignatureInvalidConfiguration = 698, - /// + /// /// D3D12_MESSAGE_ID_CREATE_ROOT_SIGNATURE_NOT_SUPPORTED_ON_DEVICE CreateRootSignatureNotSupportedOnDevice = 699, - /// + /// /// D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_NULLRESOURCEPROPERTIES CreateResourceAndHeapNullresourceproperties = 700, - /// + /// /// D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_NULLHEAP CreateResourceAndHeapNullheap = 701, - /// + /// /// D3D12_MESSAGE_ID_GETRESOURCEALLOCATIONINFO_INVALIDRDESCS GetResourceAllocationInfoInvalidrdescs = 702, - /// + /// /// D3D12_MESSAGE_ID_MAKERESIDENT_NULLOBJECTARRAY MakeResidentNullObjectArray = 703, - /// + /// /// D3D12_MESSAGE_ID_EVICT_NULLOBJECTARRAY EvictNullObjectArray = 705, - /// + /// /// D3D12_MESSAGE_ID_SET_DESCRIPTOR_TABLE_INVALID SetDescriptorTableInvalid = 708, - /// + /// /// D3D12_MESSAGE_ID_SET_ROOT_CONSTANT_INVALID SetRootConstantInvalid = 709, - /// + /// /// D3D12_MESSAGE_ID_SET_ROOT_CONSTANT_BUFFER_VIEW_INVALID SetRootConstantBufferViewInvalid = 710, - /// + /// /// D3D12_MESSAGE_ID_SET_ROOT_SHADER_RESOURCE_VIEW_INVALID SetRootShaderResourceViewInvalid = 711, - /// + /// /// D3D12_MESSAGE_ID_SET_ROOT_UNORDERED_ACCESS_VIEW_INVALID SetRootUnorderedAccessViewInvalid = 712, - /// + /// /// D3D12_MESSAGE_ID_SET_VERTEX_BUFFERS_INVALID_DESC SetVertexBuffersInvalidDesc = 713, - /// + /// /// D3D12_MESSAGE_ID_SET_INDEX_BUFFER_INVALID_DESC SetIndexBufferInvalidDesc = 715, - /// + /// /// D3D12_MESSAGE_ID_SET_STREAM_OUTPUT_BUFFERS_INVALID_DESC SetStreamOutputBuffersInvalidDesc = 717, - /// + /// /// D3D12_MESSAGE_ID_CREATERESOURCE_UNRECOGNIZEDDIMENSIONALITY CreateResourceUnrecognizeddimensionality = 718, - /// + /// /// D3D12_MESSAGE_ID_CREATERESOURCE_UNRECOGNIZEDLAYOUT CreateResourceUnrecognizedlayout = 719, - /// + /// /// D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDDIMENSIONALITY CreateResourceInvalidDimensionality = 720, - /// + /// /// D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDALIGNMENT CreateResourceInvalidAlignment = 721, - /// + /// /// D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDMIPLEVELS CreateResourceInvalidMipLevels = 722, - /// + /// /// D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDSAMPLEDESC CreateResourceInvalidSampleDesc = 723, - /// + /// /// D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDLAYOUT CreateResourceInvalidlayout = 724, - /// + /// /// D3D12_MESSAGE_ID_SET_INDEX_BUFFER_INVALID SetIndexBufferInvalid = 725, - /// + /// /// D3D12_MESSAGE_ID_SET_VERTEX_BUFFERS_INVALID SetVertexBuffersInvalid = 726, - /// + /// /// D3D12_MESSAGE_ID_SET_STREAM_OUTPUT_BUFFERS_INVALID SetStreamOutputBuffersInvalid = 727, - /// + /// /// D3D12_MESSAGE_ID_SET_RENDER_TARGETS_INVALID SetRenderTargetsInvalid = 728, - /// + /// /// D3D12_MESSAGE_ID_CREATEQUERY_HEAP_INVALID_PARAMETERS CreateQueryHeapInvalidParameters = 729, - /// + /// /// D3D12_MESSAGE_ID_BEGIN_END_QUERY_INVALID_PARAMETERS BeginEndQueryInvalidParameters = 731, - /// + /// /// D3D12_MESSAGE_ID_CLOSE_COMMAND_LIST_OPEN_QUERY CloseCommandListOpenQuery = 732, - /// + /// /// D3D12_MESSAGE_ID_RESOLVE_QUERY_DATA_INVALID_PARAMETERS ResolveQueryDataInvalidParameters = 733, - /// + /// /// D3D12_MESSAGE_ID_SET_PREDICATION_INVALID_PARAMETERS SetPredicationInvalidParameters = 734, - /// + /// /// D3D12_MESSAGE_ID_TIMESTAMPS_NOT_SUPPORTED TimestampsNotSupported = 735, - /// + /// /// D3D12_MESSAGE_ID_CREATERESOURCE_UNRECOGNIZEDFORMAT CreateResourceUnrecognizedFormat = 737, - /// + /// /// D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDFORMAT CreateResourceInvalidFormat = 738, - /// + /// /// D3D12_MESSAGE_ID_GETCOPYABLEFOOTPRINTS_INVALIDSUBRESOURCERANGE GetCopyableFootprintsInvalidSubresourceRange = 739, - /// + /// /// D3D12_MESSAGE_ID_GETCOPYABLEFOOTPRINTS_INVALIDBASEOFFSET GetCopyableFootprintsInvalidBaseOffset = 740, - /// + /// /// D3D12_MESSAGE_ID_GETCOPYABLELAYOUT_INVALIDSUBRESOURCERANGE GetCopyableLayoutInvalidSubresourceRange = 739, - /// + /// /// D3D12_MESSAGE_ID_GETCOPYABLELAYOUT_INVALIDBASEOFFSET GetCopyableLayoutInvalidBaseOffset = 740, - /// + /// /// D3D12_MESSAGE_ID_RESOURCE_BARRIER_INVALID_HEAP ResourceBarrierInvalidHeap = 741, - /// + /// /// D3D12_MESSAGE_ID_CREATE_SAMPLER_INVALID CreateSamplerInvalid = 742, - /// + /// /// D3D12_MESSAGE_ID_CREATECOMMANDSIGNATURE_INVALID CreateCommandSignatureInvalid = 743, - /// + /// /// D3D12_MESSAGE_ID_EXECUTE_INDIRECT_INVALID_PARAMETERS ExecuteIndirectInvalidParameters = 744, - /// + /// /// D3D12_MESSAGE_ID_GETGPUVIRTUALADDRESS_INVALID_RESOURCE_DIMENSION GetGPUVirtualAddressInvalidResourceDimension = 745, - /// + /// /// D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDCLEARVALUE CreateResourceInvalidClearValue = 815, - /// + /// /// D3D12_MESSAGE_ID_CREATERESOURCE_UNRECOGNIZEDCLEARVALUEFORMAT CreateResourceUnrecognizedClearValueFormat = 816, - /// + /// /// D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDCLEARVALUEFORMAT CreateResourceInvalidClearValueFormat = 817, - /// + /// /// D3D12_MESSAGE_ID_CREATERESOURCE_CLEARVALUEDENORMFLUSH CreateResourceClearValueDenormFlush = 818, - /// + /// /// D3D12_MESSAGE_ID_CLEARRENDERTARGETVIEW_MISMATCHINGCLEARVALUE ClearRenderTargetViewMismatchingClearValue = 820, - /// + /// /// D3D12_MESSAGE_ID_CLEARDEPTHSTENCILVIEW_MISMATCHINGCLEARVALUE ClearDepthStencilViewMismatchingClearValue = 821, - /// + /// /// D3D12_MESSAGE_ID_MAP_INVALIDHEAP MapInvalidHeap = 822, - /// + /// /// D3D12_MESSAGE_ID_UNMAP_INVALIDHEAP UnmapInvalidHeap = 823, - /// + /// /// D3D12_MESSAGE_ID_MAP_INVALIDRESOURCE MapInvalidResource = 824, - /// + /// /// D3D12_MESSAGE_ID_UNMAP_INVALIDRESOURCE UnmapInvalidResource = 825, - /// + /// /// D3D12_MESSAGE_ID_MAP_INVALIDSUBRESOURCE MapInvalidSubresource = 826, - /// + /// /// D3D12_MESSAGE_ID_UNMAP_INVALIDSUBRESOURCE UnmapInvalidSubresource = 827, - /// + /// /// D3D12_MESSAGE_ID_MAP_INVALIDRANGE MapInvalidRange = 828, - /// + /// /// D3D12_MESSAGE_ID_UNMAP_INVALIDRANGE UnmapInvalidRange = 829, - /// + /// /// D3D12_MESSAGE_ID_MAP_INVALIDDATAPOINTER MapInvaliddatapointer = 832, - /// + /// /// D3D12_MESSAGE_ID_MAP_INVALIDARG_RETURN MapInvalidArgReturn = 833, - /// + /// /// D3D12_MESSAGE_ID_MAP_OUTOFMEMORY_RETURN MapOutOfMemoryReturn = 834, - /// + /// /// D3D12_MESSAGE_ID_EXECUTECOMMANDLISTS_BUNDLENOTSUPPORTED ExecuteCommandListsBundleNotSupported = 835, - /// + /// /// D3D12_MESSAGE_ID_EXECUTECOMMANDLISTS_COMMANDLISTMISMATCH ExecuteCommandListsCommandListMismatch = 836, - /// + /// /// D3D12_MESSAGE_ID_EXECUTECOMMANDLISTS_OPENCOMMANDLIST ExecuteCommandListsOpenCommandList = 837, - /// + /// /// D3D12_MESSAGE_ID_EXECUTECOMMANDLISTS_FAILEDCOMMANDLIST ExecuteCommandListsFailedCommandList = 838, - /// + /// /// D3D12_MESSAGE_ID_COPYBUFFERREGION_NULLDST CopyBufferRegionNullDst = 839, - /// + /// /// D3D12_MESSAGE_ID_COPYBUFFERREGION_INVALIDDSTRESOURCEDIMENSION CopyBufferRegionInvalidDstResourceDimension = 840, - /// + /// /// D3D12_MESSAGE_ID_COPYBUFFERREGION_DSTRANGEOUTOFBOUNDS CopyBufferRegionDstRangeOutOfBounds = 841, - /// + /// /// D3D12_MESSAGE_ID_COPYBUFFERREGION_NULLSRC CopyBufferRegionNullSrc = 842, - /// + /// /// D3D12_MESSAGE_ID_COPYBUFFERREGION_INVALIDSRCRESOURCEDIMENSION CopyBufferRegionInvalidSrcResourceDimension = 843, - /// + /// /// D3D12_MESSAGE_ID_COPYBUFFERREGION_SRCRANGEOUTOFBOUNDS CopyBufferRegionSrcRangeOutOfBounds = 844, - /// + /// /// D3D12_MESSAGE_ID_COPYBUFFERREGION_INVALIDCOPYFLAGS CopyBufferRegionInvalidCopyFlags = 845, - /// + /// /// D3D12_MESSAGE_ID_COPYTEXTUREREGION_NULLDST CopyTextureRegionNullDst = 846, - /// + /// /// D3D12_MESSAGE_ID_COPYTEXTUREREGION_UNRECOGNIZEDDSTTYPE CopyTextureRegionUnrecognizedDstType = 847, - /// + /// /// D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDDSTRESOURCEDIMENSION CopyTextureRegionInvalidDstResourceDimension = 848, - /// + /// /// D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDDSTRESOURCE CopyTextureRegionInvalidDstResource = 849, - /// + /// /// D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDDSTSUBRESOURCE CopyTextureRegionInvalidDstSubresource = 850, - /// + /// /// D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDDSTOFFSET CopyTextureRegionInvalidDstOffset = 851, - /// + /// /// D3D12_MESSAGE_ID_COPYTEXTUREREGION_UNRECOGNIZEDDSTFORMAT CopyTextureRegionUnrecognizeddstformat = 852, - /// + /// /// D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDDSTFORMAT CopyTextureRegionInvalidDstFormat = 853, - /// + /// /// D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDDSTDIMENSIONS CopyTextureRegionInvaliddstdimensions = 854, - /// + /// /// D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDDSTROWPITCH CopyTextureRegionInvaliddstrowpitch = 855, - /// + /// /// D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDDSTPLACEMENT CopyTextureRegionInvaliddstplacement = 856, - /// + /// /// D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDDSTDSPLACEDFOOTPRINTFORMAT CopyTextureRegionInvaliddstdsplacedfootprintformat = 857, - /// + /// /// D3D12_MESSAGE_ID_COPYTEXTUREREGION_DSTREGIONOUTOFBOUNDS CopyTextureRegionDstregionoutofbounds = 858, - /// + /// /// D3D12_MESSAGE_ID_COPYTEXTUREREGION_NULLSRC CopyTextureRegionNullSrc = 859, - /// + /// /// D3D12_MESSAGE_ID_COPYTEXTUREREGION_UNRECOGNIZEDSRCTYPE CopyTextureRegionUnrecognizedsrctype = 860, - /// + /// /// D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDSRCRESOURCEDIMENSION CopyTextureRegionInvalidSrcResourceDimension = 861, - /// + /// /// D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDSRCRESOURCE CopyTextureRegionInvalidsrcresource = 862, - /// + /// /// D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDSRCSUBRESOURCE CopyTextureRegionInvalidsrcsubresource = 863, - /// + /// /// D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDSRCOFFSET CopyTextureRegionInvalidsrcoffset = 864, - /// + /// /// D3D12_MESSAGE_ID_COPYTEXTUREREGION_UNRECOGNIZEDSRCFORMAT CopyTextureRegionUnrecognizedsrcformat = 865, - /// + /// /// D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDSRCFORMAT CopyTextureRegionInvalidsrcformat = 866, - /// + /// /// D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDSRCDIMENSIONS CopyTextureRegionInvalidsrcdimensions = 867, - /// + /// /// D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDSRCROWPITCH CopyTextureRegionInvalidsrcrowpitch = 868, - /// + /// /// D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDSRCPLACEMENT CopyTextureRegionInvalidsrcplacement = 869, - /// + /// /// D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDSRCDSPLACEDFOOTPRINTFORMAT CopyTextureRegionInvalidsrcdsplacedfootprintformat = 870, - /// + /// /// D3D12_MESSAGE_ID_COPYTEXTUREREGION_SRCREGIONOUTOFBOUNDS CopyTextureRegionSrcregionoutofbounds = 871, - /// + /// /// D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDDSTCOORDINATES CopyTextureRegionInvaliddstcoordinates = 872, - /// + /// /// D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDSRCBOX CopyTextureRegionInvalidsrcbox = 873, - /// + /// /// D3D12_MESSAGE_ID_COPYTEXTUREREGION_FORMATMISMATCH CopyTextureRegionFormatMismatch = 874, - /// + /// /// D3D12_MESSAGE_ID_COPYTEXTUREREGION_EMPTYBOX CopyTextureRegionEmptyBox = 875, - /// + /// /// D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDCOPYFLAGS CopyTextureRegionInvalidCopyFlags = 876, - /// + /// /// D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_INVALID_SUBRESOURCE_INDEX ResolveSubresourceInvalidSubresourceIndex = 877, - /// + /// /// D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_INVALID_FORMAT ResolveSubresourceInvalidFormat = 878, - /// + /// /// D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_RESOURCE_MISMATCH ResolveSubresourceResourceMismatch = 879, - /// + /// /// D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_INVALID_SAMPLE_COUNT ResolveSubresourceInvalidSampleCount = 880, - /// + /// /// D3D12_MESSAGE_ID_CREATECOMPUTEPIPELINESTATE_INVALID_SHADER CreateComputePipelineStateInvalidShader = 881, - /// + /// /// D3D12_MESSAGE_ID_CREATECOMPUTEPIPELINESTATE_CS_ROOT_SIGNATURE_MISMATCH CreateComputePipelineStateCSRootSignatureMismatch = 882, - /// + /// /// D3D12_MESSAGE_ID_CREATECOMPUTEPIPELINESTATE_MISSING_ROOT_SIGNATURE CreateComputePipelineStateMissingRootSignature = 883, - /// + /// /// D3D12_MESSAGE_ID_CREATEPIPELINESTATE_INVALIDCACHEDBLOB CreatePipelineStateInvalidCachedBlob = 884, - /// + /// /// D3D12_MESSAGE_ID_CREATEPIPELINESTATE_CACHEDBLOBADAPTERMISMATCH CreatePipelineStateCachedblobadaptermismatch = 885, - /// + /// /// D3D12_MESSAGE_ID_CREATEPIPELINESTATE_CACHEDBLOBDRIVERVERSIONMISMATCH CreatePipelineStateCachedBlobDriverVersionMismatch = 886, - /// + /// /// D3D12_MESSAGE_ID_CREATEPIPELINESTATE_CACHEDBLOBDESCMISMATCH CreatePipelineStateCachedBlobDescMismatch = 887, - /// + /// /// D3D12_MESSAGE_ID_CREATEPIPELINESTATE_CACHEDBLOBIGNORED CreatePipelineStateCachedBlobIgnored = 888, - /// + /// /// D3D12_MESSAGE_ID_WRITETOSUBRESOURCE_INVALIDHEAP WriteToSubresourceInvalidHeap = 889, - /// + /// /// D3D12_MESSAGE_ID_WRITETOSUBRESOURCE_INVALIDRESOURCE WriteToSubresourceInvalidResource = 890, - /// + /// /// D3D12_MESSAGE_ID_WRITETOSUBRESOURCE_INVALIDBOX WriteToSubresourceInvalidBox = 891, - /// + /// /// D3D12_MESSAGE_ID_WRITETOSUBRESOURCE_INVALIDSUBRESOURCE WriteToSubresourceInvalidSubresource = 892, - /// + /// /// D3D12_MESSAGE_ID_WRITETOSUBRESOURCE_EMPTYBOX WriteToSubresourceEmptyBox = 893, - /// + /// /// D3D12_MESSAGE_ID_READFROMSUBRESOURCE_INVALIDHEAP ReadFromSubresourceInvalidHeap = 894, - /// + /// /// D3D12_MESSAGE_ID_READFROMSUBRESOURCE_INVALIDRESOURCE ReadFromSubresourceInvalidResource = 895, - /// + /// /// D3D12_MESSAGE_ID_READFROMSUBRESOURCE_INVALIDBOX ReadFromSubresourceInvalidBox = 896, - /// + /// /// D3D12_MESSAGE_ID_READFROMSUBRESOURCE_INVALIDSUBRESOURCE ReadFromSubresourceInvalidSubresource = 897, - /// + /// /// D3D12_MESSAGE_ID_READFROMSUBRESOURCE_EMPTYBOX ReadFromSubresourceEmptyBox = 898, - /// + /// /// D3D12_MESSAGE_ID_TOO_MANY_NODES_SPECIFIED TooManyNodesSpecified = 899, - /// + /// /// D3D12_MESSAGE_ID_INVALID_NODE_INDEX InvalidNodeIndex = 900, - /// + /// /// D3D12_MESSAGE_ID_GETHEAPPROPERTIES_INVALIDRESOURCE GetheappropertiesInvalidResource = 901, - /// + /// /// D3D12_MESSAGE_ID_NODE_MASK_MISMATCH NodeMaskMismatch = 902, - /// + /// /// D3D12_MESSAGE_ID_COMMAND_LIST_OUTOFMEMORY CommandListOutOfMemory = 903, - /// + /// /// D3D12_MESSAGE_ID_COMMAND_LIST_MULTIPLE_SWAPCHAIN_BUFFER_REFERENCES CommandListMultipleSwapchainBufferReferences = 904, - /// + /// /// D3D12_MESSAGE_ID_COMMAND_LIST_TOO_MANY_SWAPCHAIN_REFERENCES CommandListTooManySwapchainReferences = 905, - /// + /// /// D3D12_MESSAGE_ID_COMMAND_QUEUE_TOO_MANY_SWAPCHAIN_REFERENCES CommandQueueTooManySwapchainReferences = 906, - /// + /// /// D3D12_MESSAGE_ID_EXECUTECOMMANDLISTS_WRONGSWAPCHAINBUFFERREFERENCE ExecuteCommandListsWrongSwapchainBufferReference = 907, - /// + /// /// D3D12_MESSAGE_ID_COMMAND_LIST_SETRENDERTARGETS_INVALIDNUMRENDERTARGETS CommandListSetRenderTargetsInvalidNumRenderTargets = 908, - /// + /// /// D3D12_MESSAGE_ID_CREATE_QUEUE_INVALID_TYPE CreateQueueInvalidType = 909, - /// + /// /// D3D12_MESSAGE_ID_CREATE_QUEUE_INVALID_FLAGS CreateQueueInvalidFlags = 910, - /// + /// /// D3D12_MESSAGE_ID_CREATESHAREDRESOURCE_INVALIDFLAGS CreateSharedResourceInvalidFlags = 911, - /// + /// /// D3D12_MESSAGE_ID_CREATESHAREDRESOURCE_INVALIDFORMAT CreateSharedResourceInvalidFormat = 912, - /// + /// /// D3D12_MESSAGE_ID_CREATESHAREDHEAP_INVALIDFLAGS CreatesharedheapInvalidFlags = 913, - /// + /// /// D3D12_MESSAGE_ID_REFLECTSHAREDPROPERTIES_UNRECOGNIZEDPROPERTIES ReflectsharedpropertiesUnrecognizedproperties = 914, - /// + /// /// D3D12_MESSAGE_ID_REFLECTSHAREDPROPERTIES_INVALIDSIZE ReflectsharedpropertiesInvalidSize = 915, - /// + /// /// D3D12_MESSAGE_ID_REFLECTSHAREDPROPERTIES_INVALIDOBJECT ReflectsharedpropertiesInvalidobject = 916, - /// + /// /// D3D12_MESSAGE_ID_KEYEDMUTEX_INVALIDOBJECT KeyedMutexInvalidobject = 917, - /// + /// /// D3D12_MESSAGE_ID_KEYEDMUTEX_INVALIDKEY KeyedMutexInvalidkey = 918, - /// + /// /// D3D12_MESSAGE_ID_KEYEDMUTEX_WRONGSTATE KeyedMutexWrongstate = 919, - /// + /// /// D3D12_MESSAGE_ID_CREATE_QUEUE_INVALID_PRIORITY CreateQueueInvalidPriority = 920, - /// + /// /// D3D12_MESSAGE_ID_OBJECT_DELETED_WHILE_STILL_IN_USE ObjectDeletedWhileStillInUse = 921, - /// + /// /// D3D12_MESSAGE_ID_CREATEPIPELINESTATE_INVALID_FLAGS CreatePipelineStateInvalidFlags = 922, - /// + /// /// D3D12_MESSAGE_ID_HEAP_ADDRESS_RANGE_HAS_NO_RESOURCE HeapAddressRangeHasNoResource = 923, - /// + /// /// D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_RENDER_TARGET_DELETED CommandListDrawRenderTargetDeleted = 924, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_ALL_RENDER_TARGETS_HAVE_UNKNOWN_FORMAT CreateGraphicsPipelineStateAllRenderTargetsHaveUnknownFormat = 925, - /// + /// /// D3D12_MESSAGE_ID_HEAP_ADDRESS_RANGE_INTERSECTS_MULTIPLE_BUFFERS HeapAddressRangeIntersectsMultipleBuffers = 926, - /// + /// /// D3D12_MESSAGE_ID_EXECUTECOMMANDLISTS_GPU_WRITTEN_READBACK_RESOURCE_MAPPED ExecuteCommandListsGpuWrittenReadbackResourceMapped = 927, - /// + /// /// D3D12_MESSAGE_ID_UNMAP_RANGE_NOT_EMPTY UnmapRangeNotEmpty = 929, - /// + /// /// D3D12_MESSAGE_ID_MAP_INVALID_NULLRANGE MapInvalidNullrange = 930, - /// + /// /// D3D12_MESSAGE_ID_UNMAP_INVALID_NULLRANGE UnmapInvalidNullrange = 931, - /// + /// /// D3D12_MESSAGE_ID_NO_GRAPHICS_API_SUPPORT NoGraphicsApiSupport = 932, - /// + /// /// D3D12_MESSAGE_ID_NO_COMPUTE_API_SUPPORT NoComputeApiSupport = 933, - /// + /// /// D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_RESOURCE_FLAGS_NOT_SUPPORTED ResolveSubresourceResourceFlagsNotSupported = 934, - /// + /// /// D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_ROOT_ARGUMENT_UNINITIALIZED GpuBasedValidationRootArgumentUninitialized = 935, - /// + /// /// D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_DESCRIPTOR_HEAP_INDEX_OUT_OF_BOUNDS GpuBasedValidationDescriptorHeapIndexOutOfBounds = 936, - /// + /// /// D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_DESCRIPTOR_TABLE_REGISTER_INDEX_OUT_OF_BOUNDS GpuBasedValidationDescriptorTableRegisterIndexOutOfBounds = 937, - /// + /// /// D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_DESCRIPTOR_UNINITIALIZED GpuBasedValidationDescriptorUninitialized = 938, - /// + /// /// D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_DESCRIPTOR_TYPE_MISMATCH GpuBasedValidationDescriptorTypeMismatch = 939, - /// + /// /// D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_SRV_RESOURCE_DIMENSION_MISMATCH GpuBasedValidationSrvResourceDimensionMismatch = 940, - /// + /// /// D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_UAV_RESOURCE_DIMENSION_MISMATCH GpuBasedValidationUavResourceDimensionMismatch = 941, - /// + /// /// D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_INCOMPATIBLE_RESOURCE_STATE GpuBasedValidationIncompatibleResourceState = 942, - /// + /// /// D3D12_MESSAGE_ID_COPYRESOURCE_NULLDST CopyResourceNullDst = 943, - /// + /// /// D3D12_MESSAGE_ID_COPYRESOURCE_INVALIDDSTRESOURCE CopyResourceInvalidDstResource = 944, - /// + /// /// D3D12_MESSAGE_ID_COPYRESOURCE_NULLSRC CopyResourceNullSrc = 945, - /// + /// /// D3D12_MESSAGE_ID_COPYRESOURCE_INVALIDSRCRESOURCE CopyResourceInvalidsrcresource = 946, - /// + /// /// D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_NULLDST ResolveSubresourceNullDst = 947, - /// + /// /// D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_INVALIDDSTRESOURCE ResolveSubresourceInvalidDstResource = 948, - /// + /// /// D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_NULLSRC ResolveSubresourceNullSrc = 949, - /// + /// /// D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_INVALIDSRCRESOURCE ResolveSubresourceInvalidsrcresource = 950, - /// + /// /// D3D12_MESSAGE_ID_PIPELINE_STATE_TYPE_MISMATCH PipelineStateTypeMismatch = 951, - /// + /// /// D3D12_MESSAGE_ID_COMMAND_LIST_DISPATCH_ROOT_SIGNATURE_NOT_SET CommandListDispatchRootSignatureNotSet = 952, - /// + /// /// D3D12_MESSAGE_ID_COMMAND_LIST_DISPATCH_ROOT_SIGNATURE_MISMATCH CommandListDispatchRootSignatureMismatch = 953, - /// + /// /// D3D12_MESSAGE_ID_RESOURCE_BARRIER_ZERO_BARRIERS ResourceBarrierZeroBarriers = 954, - /// + /// /// D3D12_MESSAGE_ID_BEGIN_END_EVENT_MISMATCH BeginEndEventMismatch = 955, - /// + /// /// D3D12_MESSAGE_ID_RESOURCE_BARRIER_POSSIBLE_BEFORE_AFTER_MISMATCH ResourceBarrierPossibleBeforeAfterMismatch = 956, - /// + /// /// D3D12_MESSAGE_ID_RESOURCE_BARRIER_MISMATCHING_BEGIN_END ResourceBarrierMismatchingBeginEnd = 957, - /// + /// /// D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_INVALID_RESOURCE GpuBasedValidationInvalidResource = 958, - /// + /// /// D3D12_MESSAGE_ID_USE_OF_ZERO_REFCOUNT_OBJECT UseOfZeroRefcountObject = 959, - /// + /// /// D3D12_MESSAGE_ID_OBJECT_EVICTED_WHILE_STILL_IN_USE ObjectEvictedWhileStillInUse = 960, - /// + /// /// D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_ROOT_DESCRIPTOR_ACCESS_OUT_OF_BOUNDS GpuBasedValidationRootDescriptorAccessOutOfBounds = 961, - /// + /// /// D3D12_MESSAGE_ID_CREATEPIPELINELIBRARY_INVALIDLIBRARYBLOB CreatepipelinelibraryInvalidlibraryblob = 962, - /// + /// /// D3D12_MESSAGE_ID_CREATEPIPELINELIBRARY_DRIVERVERSIONMISMATCH CreatepipelinelibraryDriverversionmismatch = 963, - /// + /// /// D3D12_MESSAGE_ID_CREATEPIPELINELIBRARY_ADAPTERVERSIONMISMATCH CreatepipelinelibraryAdapterversionmismatch = 964, - /// + /// /// D3D12_MESSAGE_ID_CREATEPIPELINELIBRARY_UNSUPPORTED CreatepipelinelibraryUnsupported = 965, - /// + /// /// D3D12_MESSAGE_ID_CREATE_PIPELINELIBRARY CreatePipelinelibrary = 966, - /// + /// /// D3D12_MESSAGE_ID_LIVE_PIPELINELIBRARY LivePipelinelibrary = 967, - /// + /// /// D3D12_MESSAGE_ID_DESTROY_PIPELINELIBRARY DestroyPipelinelibrary = 968, - /// + /// /// D3D12_MESSAGE_ID_STOREPIPELINE_NONAME StorepipelineNoname = 969, - /// + /// /// D3D12_MESSAGE_ID_STOREPIPELINE_DUPLICATENAME StorepipelineDuplicatename = 970, - /// + /// /// D3D12_MESSAGE_ID_LOADPIPELINE_NAMENOTFOUND LoadpipelineNamenotfound = 971, - /// + /// /// D3D12_MESSAGE_ID_LOADPIPELINE_INVALIDDESC LoadpipelineInvalidDesc = 972, - /// + /// /// D3D12_MESSAGE_ID_PIPELINELIBRARY_SERIALIZE_NOTENOUGHMEMORY PipelinelibrarySerializeNotenoughmemory = 973, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_PS_OUTPUT_RT_OUTPUT_MISMATCH CreateGraphicsPipelineStatePSOutputRtOutputMismatch = 974, - /// + /// /// D3D12_MESSAGE_ID_SETEVENTONMULTIPLEFENCECOMPLETION_INVALIDFLAGS SeteventonmultiplefencecompletionInvalidFlags = 975, - /// + /// /// D3D12_MESSAGE_ID_CREATE_QUEUE_VIDEO_NOT_SUPPORTED CreateQueueVideoNotSupported = 976, - /// + /// /// D3D12_MESSAGE_ID_CREATE_COMMAND_ALLOCATOR_VIDEO_NOT_SUPPORTED CreateCommandAllocatorVideoNotSupported = 977, - /// + /// /// D3D12_MESSAGE_ID_CREATEQUERY_HEAP_VIDEO_DECODE_STATISTICS_NOT_SUPPORTED CreateQueryHeapVideoDecodeStatisticsNotSupported = 978, - /// + /// /// D3D12_MESSAGE_ID_CREATE_VIDEODECODECOMMANDLIST CreateVideodecodecommandlist = 979, - /// + /// /// D3D12_MESSAGE_ID_CREATE_VIDEODECODER CreateVideoDecoder = 980, - /// + /// /// D3D12_MESSAGE_ID_CREATE_VIDEODECODESTREAM CreateVideodecodestream = 981, - /// + /// /// D3D12_MESSAGE_ID_LIVE_VIDEODECODECOMMANDLIST LiveVideodecodecommandlist = 982, - /// + /// /// D3D12_MESSAGE_ID_LIVE_VIDEODECODER LiveVideoDecoder = 983, - /// + /// /// D3D12_MESSAGE_ID_LIVE_VIDEODECODESTREAM LiveVideodecodestream = 984, - /// + /// /// D3D12_MESSAGE_ID_DESTROY_VIDEODECODECOMMANDLIST DestroyVideodecodecommandlist = 985, - /// + /// /// D3D12_MESSAGE_ID_DESTROY_VIDEODECODER DestroyVideoDecoder = 986, - /// + /// /// D3D12_MESSAGE_ID_DESTROY_VIDEODECODESTREAM DestroyVideodecodestream = 987, - /// + /// /// D3D12_MESSAGE_ID_DECODE_FRAME_INVALID_PARAMETERS DecodeFrameInvalidParameters = 988, - /// + /// /// D3D12_MESSAGE_ID_DEPRECATED_API DeprecatedApi = 989, - /// + /// /// D3D12_MESSAGE_ID_RESOURCE_BARRIER_MISMATCHING_COMMAND_LIST_TYPE ResourceBarrierMismatchingCommandListType = 990, - /// + /// /// D3D12_MESSAGE_ID_COMMAND_LIST_DESCRIPTOR_TABLE_NOT_SET CommandListDescriptorTableNotSet = 991, - /// + /// /// D3D12_MESSAGE_ID_COMMAND_LIST_ROOT_CONSTANT_BUFFER_VIEW_NOT_SET CommandListRootConstantBufferViewNotSet = 992, - /// + /// /// D3D12_MESSAGE_ID_COMMAND_LIST_ROOT_SHADER_RESOURCE_VIEW_NOT_SET CommandListRootShaderResourceViewNotSet = 993, - /// + /// /// D3D12_MESSAGE_ID_COMMAND_LIST_ROOT_UNORDERED_ACCESS_VIEW_NOT_SET CommandListRootUnorderedAccessViewNotSet = 994, - /// + /// /// D3D12_MESSAGE_ID_DISCARD_INVALID_SUBRESOURCE_RANGE DiscardInvalidSubresourceRange = 995, - /// + /// /// D3D12_MESSAGE_ID_DISCARD_ONE_SUBRESOURCE_FOR_MIPS_WITH_RECTS DiscardOneSubresourceForMipsWithRects = 996, - /// + /// /// D3D12_MESSAGE_ID_DISCARD_NO_RECTS_FOR_NON_TEXTURE2D DiscardNoRectsForNonTexture2D = 997, - /// + /// /// D3D12_MESSAGE_ID_COPY_ON_SAME_SUBRESOURCE CopyOnSameSubresource = 998, - /// + /// /// D3D12_MESSAGE_ID_SETRESIDENCYPRIORITY_INVALID_PAGEABLE SetresidencypriorityInvalidPageable = 999, - /// + /// /// D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_UNSUPPORTED GpuBasedValidationUnsupported = 1000, - /// + /// /// D3D12_MESSAGE_ID_STATIC_DESCRIPTOR_INVALID_DESCRIPTOR_CHANGE StaticDescriptorInvalidDescriptorChange = 1001, - /// + /// /// D3D12_MESSAGE_ID_DATA_STATIC_DESCRIPTOR_INVALID_DATA_CHANGE DataStaticDescriptorInvalidDataChange = 1002, - /// + /// /// D3D12_MESSAGE_ID_DATA_STATIC_WHILE_SET_AT_EXECUTE_DESCRIPTOR_INVALID_DATA_CHANGE DataStaticWhileSetAtExecuteDescriptorInvalidDataChange = 1003, - /// + /// /// D3D12_MESSAGE_ID_EXECUTE_BUNDLE_STATIC_DESCRIPTOR_DATA_STATIC_NOT_SET ExecuteBundleStaticDescriptorDataStaticNotSet = 1004, - /// + /// /// D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_RESOURCE_ACCESS_OUT_OF_BOUNDS GpuBasedValidationResourceAccessOutOfBounds = 1005, - /// + /// /// D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_SAMPLER_MODE_MISMATCH GpuBasedValidationSamplerModeMismatch = 1006, - /// + /// /// D3D12_MESSAGE_ID_CREATE_FENCE_INVALID_FLAGS CreateFenceInvalidFlags = 1007, - /// + /// /// D3D12_MESSAGE_ID_RESOURCE_BARRIER_DUPLICATE_SUBRESOURCE_TRANSITIONS ResourceBarrierDuplicateSubresourceTransitions = 1008, - /// + /// /// D3D12_MESSAGE_ID_SETRESIDENCYPRIORITY_INVALID_PRIORITY SetresidencypriorityInvalidPriority = 1009, - /// + /// /// D3D12_MESSAGE_ID_CREATE_DESCRIPTOR_HEAP_LARGE_NUM_DESCRIPTORS CreateDescriptorHeapLargeNumDescriptors = 1013, - /// + /// /// D3D12_MESSAGE_ID_BEGIN_EVENT BeginEvent = 1014, - /// + /// /// D3D12_MESSAGE_ID_END_EVENT EndEvent = 1015, - /// + /// /// D3D12_MESSAGE_ID_CREATEDEVICE_DEBUG_LAYER_STARTUP_OPTIONS CreateDeviceDebugLayerStartupOptions = 1016, - /// + /// /// D3D12_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_DEPTHBOUNDSTEST_UNSUPPORTED CreateDepthStencilStateDepthboundstestUnsupported = 1017, - /// + /// /// D3D12_MESSAGE_ID_CREATEPIPELINESTATE_DUPLICATE_SUBOBJECT CreatePipelineStateDuplicateSubObject = 1018, - /// + /// /// D3D12_MESSAGE_ID_CREATEPIPELINESTATE_UNKNOWN_SUBOBJECT CreatePipelineStateUnknownSubObject = 1019, - /// + /// /// D3D12_MESSAGE_ID_CREATEPIPELINESTATE_ZERO_SIZE_STREAM CreatePipelineStateZeroSizeStream = 1020, - /// + /// /// D3D12_MESSAGE_ID_CREATEPIPELINESTATE_INVALID_STREAM CreatePipelineStateInvalidStream = 1021, - /// + /// /// D3D12_MESSAGE_ID_CREATEPIPELINESTATE_CANNOT_DEDUCE_TYPE CreatePipelineStateCannotDeduceType = 1022, - /// + /// /// D3D12_MESSAGE_ID_COMMAND_LIST_STATIC_DESCRIPTOR_RESOURCE_DIMENSION_MISMATCH CommandListStaticDescriptorResourceDimensionMismatch = 1023, - /// + /// /// D3D12_MESSAGE_ID_CREATE_COMMAND_QUEUE_INSUFFICIENT_PRIVILEGE_FOR_GLOBAL_REALTIME CreateCommandQueueInsufficientPrivilegeForGlobalRealtime = 1024, - /// + /// /// D3D12_MESSAGE_ID_CREATE_COMMAND_QUEUE_INSUFFICIENT_HARDWARE_SUPPORT_FOR_GLOBAL_REALTIME CreateCommandQueueInsufficientHardwareSupportForGlobalRealtime = 1025, - /// + /// /// D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_INVALID_ARCHITECTURE AtomiccopybufferInvalidArchitecture = 1026, - /// + /// /// D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_NULL_DST AtomiccopybufferNullDst = 1027, - /// + /// /// D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_INVALID_DST_RESOURCE_DIMENSION AtomiccopybufferInvalidDstResourceDimension = 1028, - /// + /// /// D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_DST_RANGE_OUT_OF_BOUNDS AtomiccopybufferDstRangeOutOfBounds = 1029, - /// + /// /// D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_NULL_SRC AtomiccopybufferNullSrc = 1030, - /// + /// /// D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_INVALID_SRC_RESOURCE_DIMENSION AtomiccopybufferInvalidSrcResourceDimension = 1031, - /// + /// /// D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_SRC_RANGE_OUT_OF_BOUNDS AtomiccopybufferSrcRangeOutOfBounds = 1032, - /// + /// /// D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_INVALID_OFFSET_ALIGNMENT AtomiccopybufferInvalidOffsetAlignment = 1033, - /// + /// /// D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_NULL_DEPENDENT_RESOURCES AtomiccopybufferNullDependentResources = 1034, - /// + /// /// D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_NULL_DEPENDENT_SUBRESOURCE_RANGES AtomiccopybufferNullDependentSubresourceRanges = 1035, - /// + /// /// D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_INVALID_DEPENDENT_RESOURCE AtomiccopybufferInvalidDependentResource = 1036, - /// + /// /// D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_INVALID_DEPENDENT_SUBRESOURCE_RANGE AtomiccopybufferInvalidDependentSubresourceRange = 1037, - /// + /// /// D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_DEPENDENT_SUBRESOURCE_OUT_OF_BOUNDS AtomiccopybufferDependentSubresourceOutOfBounds = 1038, - /// + /// /// D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_DEPENDENT_RANGE_OUT_OF_BOUNDS AtomiccopybufferDependentRangeOutOfBounds = 1039, - /// + /// /// D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_ZERO_DEPENDENCIES AtomiccopybufferZeroDependencies = 1040, - /// + /// /// D3D12_MESSAGE_ID_DEVICE_CREATE_SHARED_HANDLE_INVALIDARG DeviceCreateSharedHandleInvalidArg = 1041, - /// + /// /// D3D12_MESSAGE_ID_DESCRIPTOR_HANDLE_WITH_INVALID_RESOURCE DescriptorHandleWithInvalidResource = 1042, - /// + /// /// D3D12_MESSAGE_ID_SETDEPTHBOUNDS_INVALIDARGS SetdepthboundsInvalidArgs = 1043, - /// + /// /// D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_RESOURCE_STATE_IMPRECISE GpuBasedValidationResourceStateImprecise = 1044, - /// + /// /// D3D12_MESSAGE_ID_COMMAND_LIST_PIPELINE_STATE_NOT_SET CommandListPipelineStateNotSet = 1045, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_SHADER_MODEL_MISMATCH CreateGraphicsPipelineStateShaderModelMismatch = 1046, - /// + /// /// D3D12_MESSAGE_ID_OBJECT_ACCESSED_WHILE_STILL_IN_USE ObjectAccessedWhileStillInUse = 1047, - /// + /// /// D3D12_MESSAGE_ID_PROGRAMMABLE_MSAA_UNSUPPORTED ProgrammableMsaaUnsupported = 1048, - /// + /// /// D3D12_MESSAGE_ID_SETSAMPLEPOSITIONS_INVALIDARGS SetsamplepositionsInvalidArgs = 1049, - /// + /// /// D3D12_MESSAGE_ID_RESOLVESUBRESOURCEREGION_INVALID_RECT ResolveSubresourceRegionInvalidRect = 1050, - /// + /// /// D3D12_MESSAGE_ID_CREATE_VIDEODECODECOMMANDQUEUE CreateVideodecodecommandqueue = 1051, - /// + /// /// D3D12_MESSAGE_ID_CREATE_VIDEOPROCESSCOMMANDLIST CreateVideoprocesscommandlist = 1052, - /// + /// /// D3D12_MESSAGE_ID_CREATE_VIDEOPROCESSCOMMANDQUEUE CreateVideoprocesscommandqueue = 1053, - /// + /// /// D3D12_MESSAGE_ID_LIVE_VIDEODECODECOMMANDQUEUE LiveVideodecodecommandqueue = 1054, - /// + /// /// D3D12_MESSAGE_ID_LIVE_VIDEOPROCESSCOMMANDLIST LiveVideoprocesscommandlist = 1055, - /// + /// /// D3D12_MESSAGE_ID_LIVE_VIDEOPROCESSCOMMANDQUEUE LiveVideoprocesscommandqueue = 1056, - /// + /// /// D3D12_MESSAGE_ID_DESTROY_VIDEODECODECOMMANDQUEUE DestroyVideodecodecommandqueue = 1057, - /// + /// /// D3D12_MESSAGE_ID_DESTROY_VIDEOPROCESSCOMMANDLIST DestroyVideoprocesscommandlist = 1058, - /// + /// /// D3D12_MESSAGE_ID_DESTROY_VIDEOPROCESSCOMMANDQUEUE DestroyVideoprocesscommandqueue = 1059, - /// + /// /// D3D12_MESSAGE_ID_CREATE_VIDEOPROCESSOR CreateVideoProcessor = 1060, - /// + /// /// D3D12_MESSAGE_ID_CREATE_VIDEOPROCESSSTREAM CreateVideoprocessstream = 1061, - /// + /// /// D3D12_MESSAGE_ID_LIVE_VIDEOPROCESSOR LiveVideoProcessor = 1062, - /// + /// /// D3D12_MESSAGE_ID_LIVE_VIDEOPROCESSSTREAM LiveVideoprocessstream = 1063, - /// + /// /// D3D12_MESSAGE_ID_DESTROY_VIDEOPROCESSOR DestroyVideoProcessor = 1064, - /// + /// /// D3D12_MESSAGE_ID_DESTROY_VIDEOPROCESSSTREAM DestroyVideoprocessstream = 1065, - /// + /// /// D3D12_MESSAGE_ID_PROCESS_FRAME_INVALID_PARAMETERS ProcessFrameInvalidParameters = 1066, - /// + /// /// D3D12_MESSAGE_ID_COPY_INVALIDLAYOUT CopyInvalidlayout = 1067, - /// + /// /// D3D12_MESSAGE_ID_CREATE_CRYPTO_SESSION CreateCryptoSession = 1068, - /// + /// /// D3D12_MESSAGE_ID_CREATE_CRYPTO_SESSION_POLICY CreateCryptoSessionPolicy = 1069, - /// + /// /// D3D12_MESSAGE_ID_CREATE_PROTECTED_RESOURCE_SESSION CreateProtectedResourceSession = 1070, - /// + /// /// D3D12_MESSAGE_ID_LIVE_CRYPTO_SESSION LiveCryptoSession = 1071, - /// + /// /// D3D12_MESSAGE_ID_LIVE_CRYPTO_SESSION_POLICY LiveCryptoSessionPolicy = 1072, - /// + /// /// D3D12_MESSAGE_ID_LIVE_PROTECTED_RESOURCE_SESSION LiveProtectedResourceSession = 1073, - /// + /// /// D3D12_MESSAGE_ID_DESTROY_CRYPTO_SESSION DestroyCryptoSession = 1074, - /// + /// /// D3D12_MESSAGE_ID_DESTROY_CRYPTO_SESSION_POLICY DestroyCryptoSessionPolicy = 1075, - /// + /// /// D3D12_MESSAGE_ID_DESTROY_PROTECTED_RESOURCE_SESSION DestroyProtectedResourceSession = 1076, - /// + /// /// D3D12_MESSAGE_ID_PROTECTED_RESOURCE_SESSION_UNSUPPORTED ProtectedResourceSessionUnsupported = 1077, - /// + /// /// D3D12_MESSAGE_ID_FENCE_INVALIDOPERATION FenceInvalidoperation = 1078, - /// + /// /// D3D12_MESSAGE_ID_CREATEQUERY_HEAP_COPY_QUEUE_TIMESTAMPS_NOT_SUPPORTED CreateQueryHeapCopyQueueTimestampsNotSupported = 1079, - /// + /// /// D3D12_MESSAGE_ID_SAMPLEPOSITIONS_MISMATCH_DEFERRED SamplepositionsMismatchDeferred = 1080, - /// + /// /// D3D12_MESSAGE_ID_SAMPLEPOSITIONS_MISMATCH_RECORDTIME_ASSUMEDFROMFIRSTUSE SamplepositionsMismatchRecordtimeAssumedfromfirstuse = 1081, - /// + /// /// D3D12_MESSAGE_ID_SAMPLEPOSITIONS_MISMATCH_RECORDTIME_ASSUMEDFROMCLEAR SamplepositionsMismatchRecordtimeAssumedfromclear = 1082, - /// + /// /// D3D12_MESSAGE_ID_CREATE_VIDEODECODERHEAP CreateVideodecoderheap = 1083, - /// + /// /// D3D12_MESSAGE_ID_LIVE_VIDEODECODERHEAP LiveVideodecoderheap = 1084, - /// + /// /// D3D12_MESSAGE_ID_DESTROY_VIDEODECODERHEAP DestroyVideodecoderheap = 1085, - /// + /// /// D3D12_MESSAGE_ID_OPENEXISTINGHEAP_INVALIDARG_RETURN OpenexistingheapInvalidArgReturn = 1086, - /// + /// /// D3D12_MESSAGE_ID_OPENEXISTINGHEAP_OUTOFMEMORY_RETURN OpenexistingheapOutOfMemoryReturn = 1087, - /// + /// /// D3D12_MESSAGE_ID_OPENEXISTINGHEAP_INVALIDADDRESS OpenexistingheapInvalidaddress = 1088, - /// + /// /// D3D12_MESSAGE_ID_OPENEXISTINGHEAP_INVALIDHANDLE OpenexistingheapInvalidhandle = 1089, - /// + /// /// D3D12_MESSAGE_ID_WRITEBUFFERIMMEDIATE_INVALID_DEST WriteBufferImmediateInvalidDest = 1090, - /// + /// /// D3D12_MESSAGE_ID_WRITEBUFFERIMMEDIATE_INVALID_MODE WriteBufferImmediateInvalidMode = 1091, - /// + /// /// D3D12_MESSAGE_ID_WRITEBUFFERIMMEDIATE_INVALID_ALIGNMENT WriteBufferImmediateInvalidAlignment = 1092, - /// + /// /// D3D12_MESSAGE_ID_WRITEBUFFERIMMEDIATE_NOT_SUPPORTED WriteBufferImmediateNotSupported = 1093, - /// + /// /// D3D12_MESSAGE_ID_SETVIEWINSTANCEMASK_INVALIDARGS SetviewinstancemaskInvalidArgs = 1094, - /// + /// /// D3D12_MESSAGE_ID_VIEW_INSTANCING_UNSUPPORTED ViewInstancingUnsupported = 1095, - /// + /// /// D3D12_MESSAGE_ID_VIEW_INSTANCING_INVALIDARGS ViewInstancingInvalidArgs = 1096, - /// + /// /// D3D12_MESSAGE_ID_COPYTEXTUREREGION_MISMATCH_DECODE_REFERENCE_ONLY_FLAG CopyTextureRegionMismatchDecodeReferenceOnlyFlag = 1097, - /// + /// /// D3D12_MESSAGE_ID_COPYRESOURCE_MISMATCH_DECODE_REFERENCE_ONLY_FLAG CopyResourceMismatchDecodeReferenceOnlyFlag = 1098, - /// + /// /// D3D12_MESSAGE_ID_CREATE_VIDEO_DECODE_HEAP_CAPS_FAILURE CreateVideoDecodeHeapCapsFailure = 1099, - /// + /// /// D3D12_MESSAGE_ID_CREATE_VIDEO_DECODE_HEAP_CAPS_UNSUPPORTED CreateVideoDecodeHeapCapsUnsupported = 1100, - /// + /// /// D3D12_MESSAGE_ID_VIDEO_DECODE_SUPPORT_INVALID_INPUT VideoDecodeSupportInvalidInput = 1101, - /// + /// /// D3D12_MESSAGE_ID_CREATE_VIDEO_DECODER_UNSUPPORTED CreateVideoDecoderUnsupported = 1102, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_METADATA_ERROR CreateGraphicsPipelineStateMetadataError = 1103, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_VIEW_INSTANCING_VERTEX_SIZE_EXCEEDED CreateGraphicsPipelineStateViewInstancingVertexSizeExceeded = 1104, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_RUNTIME_INTERNAL_ERROR CreateGraphicsPipelineStateRuntimeInternalError = 1105, - /// + /// /// D3D12_MESSAGE_ID_NO_VIDEO_API_SUPPORT NoVideoApiSupport = 1106, - /// + /// /// D3D12_MESSAGE_ID_VIDEO_PROCESS_SUPPORT_INVALID_INPUT VideoProcessSupportInvalidInput = 1107, - /// + /// /// D3D12_MESSAGE_ID_CREATE_VIDEO_PROCESSOR_CAPS_FAILURE CreateVideoProcessorCapsFailure = 1108, - /// + /// /// D3D12_MESSAGE_ID_VIDEO_PROCESS_SUPPORT_UNSUPPORTED_FORMAT VideoProcessSupportUnsupportedFormat = 1109, - /// + /// /// D3D12_MESSAGE_ID_VIDEO_DECODE_FRAME_INVALID_ARGUMENT VideoDecodeFrameInvalidArgument = 1110, - /// + /// /// D3D12_MESSAGE_ID_ENQUEUE_MAKE_RESIDENT_INVALID_FLAGS EnqueueMakeResidentInvalidFlags = 1111, - /// + /// /// D3D12_MESSAGE_ID_OPENEXISTINGHEAP_UNSUPPORTED OpenexistingheapUnsupported = 1112, - /// + /// /// D3D12_MESSAGE_ID_VIDEO_PROCESS_FRAMES_INVALID_ARGUMENT VideoProcessFramesInvalidArgument = 1113, - /// + /// /// D3D12_MESSAGE_ID_VIDEO_DECODE_SUPPORT_UNSUPPORTED VideoDecodeSupportUnsupported = 1114, - /// + /// /// D3D12_MESSAGE_ID_CREATE_COMMANDRECORDER CreateCommandrecorder = 1115, - /// + /// /// D3D12_MESSAGE_ID_LIVE_COMMANDRECORDER LiveCommandrecorder = 1116, - /// + /// /// D3D12_MESSAGE_ID_DESTROY_COMMANDRECORDER DestroyCommandrecorder = 1117, - /// + /// /// D3D12_MESSAGE_ID_CREATE_COMMAND_RECORDER_VIDEO_NOT_SUPPORTED CreateCommandRecorderVideoNotSupported = 1118, - /// + /// /// D3D12_MESSAGE_ID_CREATE_COMMAND_RECORDER_INVALID_SUPPORT_FLAGS CreateCommandRecorderInvalidSupportFlags = 1119, - /// + /// /// D3D12_MESSAGE_ID_CREATE_COMMAND_RECORDER_INVALID_FLAGS CreateCommandRecorderInvalidFlags = 1120, - /// + /// /// D3D12_MESSAGE_ID_CREATE_COMMAND_RECORDER_MORE_RECORDERS_THAN_LOGICAL_PROCESSORS CreateCommandRecorderMoreRecordersThanLogicalProcessors = 1121, - /// + /// /// D3D12_MESSAGE_ID_CREATE_COMMANDPOOL CreateCommandpool = 1122, - /// + /// /// D3D12_MESSAGE_ID_LIVE_COMMANDPOOL LiveCommandpool = 1123, - /// + /// /// D3D12_MESSAGE_ID_DESTROY_COMMANDPOOL DestroyCommandpool = 1124, - /// + /// /// D3D12_MESSAGE_ID_CREATE_COMMAND_POOL_INVALID_FLAGS CreateCommandPoolInvalidFlags = 1125, - /// + /// /// D3D12_MESSAGE_ID_CREATE_COMMAND_LIST_VIDEO_NOT_SUPPORTED CreateCommandListVideoNotSupported = 1126, - /// + /// /// D3D12_MESSAGE_ID_COMMAND_RECORDER_SUPPORT_FLAGS_MISMATCH CommandRecorderSupportFlagsMismatch = 1127, - /// + /// /// D3D12_MESSAGE_ID_COMMAND_RECORDER_CONTENTION CommandRecorderContention = 1128, - /// + /// /// D3D12_MESSAGE_ID_COMMAND_RECORDER_USAGE_WITH_CREATECOMMANDLIST_COMMAND_LIST CommandRecorderUsageWithCreatecommandlistCommandList = 1129, - /// + /// /// D3D12_MESSAGE_ID_COMMAND_ALLOCATOR_USAGE_WITH_CREATECOMMANDLIST1_COMMAND_LIST CommandAllocatorUsageWithCreatecommandlist1CommandList = 1130, - /// + /// /// D3D12_MESSAGE_ID_CANNOT_EXECUTE_EMPTY_COMMAND_LIST CannotExecuteEmptyCommandList = 1131, - /// + /// /// D3D12_MESSAGE_ID_CANNOT_RESET_COMMAND_POOL_WITH_OPEN_COMMAND_LISTS CannotResetCommandPoolWithOpenCommandLists = 1132, - /// + /// /// D3D12_MESSAGE_ID_CANNOT_USE_COMMAND_RECORDER_WITHOUT_CURRENT_TARGET CannotUseCommandRecorderWithoutCurrentTarget = 1133, - /// + /// /// D3D12_MESSAGE_ID_CANNOT_CHANGE_COMMAND_RECORDER_TARGET_WHILE_RECORDING CannotChangeCommandRecorderTargetWhileRecording = 1134, - /// + /// /// D3D12_MESSAGE_ID_COMMAND_POOL_SYNC CommandPoolSync = 1135, - /// + /// /// D3D12_MESSAGE_ID_EVICT_UNDERFLOW EvictUnderflow = 1136, - /// + /// /// D3D12_MESSAGE_ID_CREATE_META_COMMAND CreateMetaCommand = 1137, - /// + /// /// D3D12_MESSAGE_ID_LIVE_META_COMMAND LiveMetaCommand = 1138, - /// + /// /// D3D12_MESSAGE_ID_DESTROY_META_COMMAND DestroyMetaCommand = 1139, - /// + /// /// D3D12_MESSAGE_ID_COPYBUFFERREGION_INVALID_DST_RESOURCE CopyBufferRegionInvalidDstResource = 1140, - /// + /// /// D3D12_MESSAGE_ID_COPYBUFFERREGION_INVALID_SRC_RESOURCE CopyBufferRegionInvalidSrcResource = 1141, - /// + /// /// D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_INVALID_DST_RESOURCE AtomiccopybufferInvalidDstResource = 1142, - /// + /// /// D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_INVALID_SRC_RESOURCE AtomiccopybufferInvalidSrcResource = 1143, - /// + /// /// D3D12_MESSAGE_ID_CREATEPLACEDRESOURCEONBUFFER_NULL_BUFFER CreateplacedresourceonbufferNullBuffer = 1144, - /// + /// /// D3D12_MESSAGE_ID_CREATEPLACEDRESOURCEONBUFFER_NULL_RESOURCE_DESC CreateplacedresourceonbufferNullResourceDesc = 1145, - /// + /// /// D3D12_MESSAGE_ID_CREATEPLACEDRESOURCEONBUFFER_UNSUPPORTED CreateplacedresourceonbufferUnsupported = 1146, - /// + /// /// D3D12_MESSAGE_ID_CREATEPLACEDRESOURCEONBUFFER_INVALID_BUFFER_DIMENSION CreateplacedresourceonbufferInvalidBufferDimension = 1147, - /// + /// /// D3D12_MESSAGE_ID_CREATEPLACEDRESOURCEONBUFFER_INVALID_BUFFER_FLAGS CreateplacedresourceonbufferInvalidBufferFlags = 1148, - /// + /// /// D3D12_MESSAGE_ID_CREATEPLACEDRESOURCEONBUFFER_INVALID_BUFFER_OFFSET CreateplacedresourceonbufferInvalidBufferOffset = 1149, - /// + /// /// D3D12_MESSAGE_ID_CREATEPLACEDRESOURCEONBUFFER_INVALID_RESOURCE_DIMENSION CreateplacedresourceonbufferInvalidResourceDimension = 1150, - /// + /// /// D3D12_MESSAGE_ID_CREATEPLACEDRESOURCEONBUFFER_INVALID_RESOURCE_FLAGS CreateplacedresourceonbufferInvalidResourceFlags = 1151, - /// + /// /// D3D12_MESSAGE_ID_CREATEPLACEDRESOURCEONBUFFER_OUTOFMEMORY_RETURN CreateplacedresourceonbufferOutOfMemoryReturn = 1152, - /// + /// /// D3D12_MESSAGE_ID_CANNOT_CREATE_GRAPHICS_AND_VIDEO_COMMAND_RECORDER CannotCreateGraphicsAndVideoCommandRecorder = 1153, - /// + /// /// D3D12_MESSAGE_ID_UPDATETILEMAPPINGS_POSSIBLY_MISMATCHING_PROPERTIES UpdateTileMappingsPossiblyMismatchingProperties = 1154, - /// + /// /// D3D12_MESSAGE_ID_CREATE_COMMAND_LIST_INVALID_COMMAND_LIST_TYPE CreateCommandListInvalidCommandListType = 1155, - /// + /// /// D3D12_MESSAGE_ID_CLEARUNORDEREDACCESSVIEW_INCOMPATIBLE_WITH_STRUCTURED_BUFFERS ClearUnorderedAccessViewIncompatibleWithStructuredBuffers = 1156, - /// + /// /// D3D12_MESSAGE_ID_COMPUTE_ONLY_DEVICE_OPERATION_UNSUPPORTED ComputeOnlyDeviceOperationUnsupported = 1157, - /// + /// /// D3D12_MESSAGE_ID_BUILD_RAYTRACING_ACCELERATION_STRUCTURE_INVALID BuildRaytracingAccelerationStructureInvalid = 1158, - /// + /// /// D3D12_MESSAGE_ID_EMIT_RAYTRACING_ACCELERATION_STRUCTURE_POSTBUILD_INFO_INVALID EmitRaytracingAccelerationStructurePostbuildInfoInvalid = 1159, - /// + /// /// D3D12_MESSAGE_ID_COPY_RAYTRACING_ACCELERATION_STRUCTURE_INVALID CopyRaytracingAccelerationStructureInvalid = 1160, - /// + /// /// D3D12_MESSAGE_ID_DISPATCH_RAYS_INVALID DispatchRaysInvalid = 1161, - /// + /// /// D3D12_MESSAGE_ID_GET_RAYTRACING_ACCELERATION_STRUCTURE_PREBUILD_INFO_INVALID GetRaytracingAccelerationStructurePrebuildInfoInvalid = 1162, - /// + /// /// D3D12_MESSAGE_ID_CREATE_LIFETIMETRACKER CreateLifetimetracker = 1163, - /// + /// /// D3D12_MESSAGE_ID_LIVE_LIFETIMETRACKER LiveLifetimetracker = 1164, - /// + /// /// D3D12_MESSAGE_ID_DESTROY_LIFETIMETRACKER DestroyLifetimetracker = 1165, - /// + /// /// D3D12_MESSAGE_ID_DESTROYOWNEDOBJECT_OBJECTNOTOWNED DestroyownedobjectObjectnotowned = 1166, - /// + /// /// D3D12_MESSAGE_ID_CREATE_TRACKEDWORKLOAD CreateTrackedworkload = 1167, - /// + /// /// D3D12_MESSAGE_ID_LIVE_TRACKEDWORKLOAD LiveTrackedworkload = 1168, - /// + /// /// D3D12_MESSAGE_ID_DESTROY_TRACKEDWORKLOAD DestroyTrackedworkload = 1169, - /// + /// /// D3D12_MESSAGE_ID_RENDER_PASS_ERROR RenderPassError = 1170, - /// + /// /// D3D12_MESSAGE_ID_META_COMMAND_ID_INVALID MetaCommandIdInvalid = 1171, - /// + /// /// D3D12_MESSAGE_ID_META_COMMAND_UNSUPPORTED_PARAMS MetaCommandUnsupportedParams = 1172, - /// + /// /// D3D12_MESSAGE_ID_META_COMMAND_FAILED_ENUMERATION MetaCommandFailedEnumeration = 1173, - /// + /// /// D3D12_MESSAGE_ID_META_COMMAND_PARAMETER_SIZE_MISMATCH MetaCommandParameterSizeMismatch = 1174, - /// + /// /// D3D12_MESSAGE_ID_UNINITIALIZED_META_COMMAND UninitializedMetaCommand = 1175, - /// + /// /// D3D12_MESSAGE_ID_META_COMMAND_INVALID_GPU_VIRTUAL_ADDRESS MetaCommandInvalidGpuVirtualAddress = 1176, - /// + /// /// D3D12_MESSAGE_ID_CREATE_VIDEOENCODECOMMANDLIST CreateVideoencodecommandlist = 1177, - /// + /// /// D3D12_MESSAGE_ID_LIVE_VIDEOENCODECOMMANDLIST LiveVideoencodecommandlist = 1178, - /// + /// /// D3D12_MESSAGE_ID_DESTROY_VIDEOENCODECOMMANDLIST DestroyVideoencodecommandlist = 1179, - /// + /// /// D3D12_MESSAGE_ID_CREATE_VIDEOENCODECOMMANDQUEUE CreateVideoencodecommandqueue = 1180, - /// + /// /// D3D12_MESSAGE_ID_LIVE_VIDEOENCODECOMMANDQUEUE LiveVideoencodecommandqueue = 1181, - /// + /// /// D3D12_MESSAGE_ID_DESTROY_VIDEOENCODECOMMANDQUEUE DestroyVideoencodecommandqueue = 1182, - /// + /// /// D3D12_MESSAGE_ID_CREATE_VIDEOMOTIONESTIMATOR CreateVideomotionestimator = 1183, - /// + /// /// D3D12_MESSAGE_ID_LIVE_VIDEOMOTIONESTIMATOR LiveVideomotionestimator = 1184, - /// + /// /// D3D12_MESSAGE_ID_DESTROY_VIDEOMOTIONESTIMATOR DestroyVideomotionestimator = 1185, - /// + /// /// D3D12_MESSAGE_ID_CREATE_VIDEOMOTIONVECTORHEAP CreateVideomotionvectorheap = 1186, - /// + /// /// D3D12_MESSAGE_ID_LIVE_VIDEOMOTIONVECTORHEAP LiveVideomotionvectorheap = 1187, - /// + /// /// D3D12_MESSAGE_ID_DESTROY_VIDEOMOTIONVECTORHEAP DestroyVideomotionvectorheap = 1188, - /// + /// /// D3D12_MESSAGE_ID_MULTIPLE_TRACKED_WORKLOADS MultipleTrackedWorkloads = 1189, - /// + /// /// D3D12_MESSAGE_ID_MULTIPLE_TRACKED_WORKLOAD_PAIRS MultipleTrackedWorkloadPairs = 1190, - /// + /// /// D3D12_MESSAGE_ID_OUT_OF_ORDER_TRACKED_WORKLOAD_PAIR OutOfOrderTrackedWorkloadPair = 1191, - /// + /// /// D3D12_MESSAGE_ID_CANNOT_ADD_TRACKED_WORKLOAD CannotAddTrackedWorkload = 1192, - /// + /// /// D3D12_MESSAGE_ID_INCOMPLETE_TRACKED_WORKLOAD_PAIR IncompleteTrackedWorkloadPair = 1193, - /// + /// /// D3D12_MESSAGE_ID_CREATE_STATE_OBJECT_ERROR CreateStateObjectError = 1194, - /// + /// /// D3D12_MESSAGE_ID_GET_SHADER_IDENTIFIER_ERROR GetShaderIdentifierError = 1195, - /// + /// /// D3D12_MESSAGE_ID_GET_SHADER_STACK_SIZE_ERROR GetShaderStackSizeError = 1196, - /// + /// /// D3D12_MESSAGE_ID_GET_PIPELINE_STACK_SIZE_ERROR GetPipelineStackSizeError = 1197, - /// + /// /// D3D12_MESSAGE_ID_SET_PIPELINE_STACK_SIZE_ERROR SetPipelineStackSizeError = 1198, - /// + /// /// D3D12_MESSAGE_ID_GET_SHADER_IDENTIFIER_SIZE_INVALID GetShaderIdentifierSizeInvalid = 1199, - /// + /// /// D3D12_MESSAGE_ID_CHECK_DRIVER_MATCHING_IDENTIFIER_INVALID CheckDriverMatchingIdentifierInvalid = 1200, - /// + /// /// D3D12_MESSAGE_ID_CHECK_DRIVER_MATCHING_IDENTIFIER_DRIVER_REPORTED_ISSUE CheckDriverMatchingIdentifierDriverReportedIssue = 1201, - /// + /// /// D3D12_MESSAGE_ID_RENDER_PASS_INVALID_RESOURCE_BARRIER RenderPassInvalidResourceBarrier = 1202, - /// + /// /// D3D12_MESSAGE_ID_RENDER_PASS_DISALLOWED_API_CALLED RenderPassDisallowedApiCalled = 1203, - /// + /// /// D3D12_MESSAGE_ID_RENDER_PASS_CANNOT_NEST_RENDER_PASSES RenderPassCannotNestRenderPasses = 1204, - /// + /// /// D3D12_MESSAGE_ID_RENDER_PASS_CANNOT_END_WITHOUT_BEGIN RenderPassCannotEndWithoutBegin = 1205, - /// + /// /// D3D12_MESSAGE_ID_RENDER_PASS_CANNOT_CLOSE_COMMAND_LIST RenderPassCannotCloseCommandList = 1206, - /// + /// /// D3D12_MESSAGE_ID_RENDER_PASS_GPU_WORK_WHILE_SUSPENDED RenderPassGpuWorkWhileSuspended = 1207, - /// + /// /// D3D12_MESSAGE_ID_RENDER_PASS_MISMATCHING_SUSPEND_RESUME RenderPassMismatchingSuspendResume = 1208, - /// + /// /// D3D12_MESSAGE_ID_RENDER_PASS_NO_PRIOR_SUSPEND_WITHIN_EXECUTECOMMANDLISTS RenderPassNoPriorSuspendWithinExecuteCommandLists = 1209, - /// + /// /// D3D12_MESSAGE_ID_RENDER_PASS_NO_SUBSEQUENT_RESUME_WITHIN_EXECUTECOMMANDLISTS RenderPassNoSubsequentResumeWithinExecuteCommandLists = 1210, - /// + /// /// D3D12_MESSAGE_ID_TRACKED_WORKLOAD_COMMAND_QUEUE_MISMATCH TrackedWorkloadCommandQueueMismatch = 1211, - /// + /// /// D3D12_MESSAGE_ID_TRACKED_WORKLOAD_NOT_SUPPORTED TrackedWorkloadNotSupported = 1212, - /// + /// /// D3D12_MESSAGE_ID_RENDER_PASS_MISMATCHING_NO_ACCESS RenderPassMismatchingNoAccess = 1213, - /// + /// /// D3D12_MESSAGE_ID_RENDER_PASS_UNSUPPORTED_RESOLVE RenderPassUnsupportedResolve = 1214, - /// + /// /// D3D12_MESSAGE_ID_CLEARUNORDEREDACCESSVIEW_INVALID_RESOURCE_PTR ClearUnorderedAccessViewInvalidResourcePtr = 1215, - /// + /// /// D3D12_MESSAGE_ID_WINDOWS7_FENCE_OUTOFORDER_SIGNAL Windows7FenceOutoforderSignal = 1216, - /// + /// /// D3D12_MESSAGE_ID_WINDOWS7_FENCE_OUTOFORDER_WAIT Windows7FenceOutoforderWait = 1217, - /// + /// /// D3D12_MESSAGE_ID_VIDEO_CREATE_MOTION_ESTIMATOR_INVALID_ARGUMENT VideoCreateMotionEstimatorInvalidArgument = 1218, - /// + /// /// D3D12_MESSAGE_ID_VIDEO_CREATE_MOTION_VECTOR_HEAP_INVALID_ARGUMENT VideoCreateMotionVectorHeapInvalidArgument = 1219, - /// + /// /// D3D12_MESSAGE_ID_ESTIMATE_MOTION_INVALID_ARGUMENT EstimateMotionInvalidArgument = 1220, - /// + /// /// D3D12_MESSAGE_ID_RESOLVE_MOTION_VECTOR_HEAP_INVALID_ARGUMENT ResolveMotionVectorHeapInvalidArgument = 1221, - /// + /// /// D3D12_MESSAGE_ID_GETGPUVIRTUALADDRESS_INVALID_HEAP_TYPE GetGPUVirtualAddressInvalidHeapType = 1222, - /// + /// /// D3D12_MESSAGE_ID_SET_BACKGROUND_PROCESSING_MODE_INVALID_ARGUMENT SetBackgroundProcessingModeInvalidArgument = 1223, - /// + /// /// D3D12_MESSAGE_ID_CREATE_COMMAND_LIST_INVALID_COMMAND_LIST_TYPE_FOR_FEATURE_LEVEL CreateCommandListInvalidCommandListTypeForFeatureLevel = 1224, - /// + /// /// D3D12_MESSAGE_ID_CREATE_VIDEOEXTENSIONCOMMAND CreateVideoextensioncommand = 1225, - /// + /// /// D3D12_MESSAGE_ID_LIVE_VIDEOEXTENSIONCOMMAND LiveVideoextensioncommand = 1226, - /// + /// /// D3D12_MESSAGE_ID_DESTROY_VIDEOEXTENSIONCOMMAND DestroyVideoextensioncommand = 1227, - /// + /// /// D3D12_MESSAGE_ID_INVALID_VIDEO_EXTENSION_COMMAND_ID InvalidVideoExtensionCommandId = 1228, - /// + /// /// D3D12_MESSAGE_ID_VIDEO_EXTENSION_COMMAND_INVALID_ARGUMENT VideoExtensionCommandInvalidArgument = 1229, - /// + /// /// D3D12_MESSAGE_ID_CREATE_ROOT_SIGNATURE_NOT_UNIQUE_IN_DXIL_LIBRARY CreateRootSignatureNotUniqueInDxilLibrary = 1230, - /// + /// /// D3D12_MESSAGE_ID_VARIABLE_SHADING_RATE_NOT_ALLOWED_WITH_TIR VariableShadingRateNotAllowedWithTir = 1231, - /// + /// /// D3D12_MESSAGE_ID_GEOMETRY_SHADER_OUTPUTTING_BOTH_VIEWPORT_ARRAY_INDEX_AND_SHADING_RATE_NOT_SUPPORTED_ON_DEVICE GeometryShaderOutputtingBothViewportArrayIndexAndShadingRateNotSupportedOnDevice = 1232, - /// + /// /// D3D12_MESSAGE_ID_RSSETSHADING_RATE_INVALID_SHADING_RATE RssetshadingRateInvalidShadingRate = 1233, - /// + /// /// D3D12_MESSAGE_ID_RSSETSHADING_RATE_SHADING_RATE_NOT_PERMITTED_BY_CAP RssetshadingRateShadingRateNotPermittedByCap = 1234, - /// + /// /// D3D12_MESSAGE_ID_RSSETSHADING_RATE_INVALID_COMBINER RssetshadingRateInvalidCombiner = 1235, - /// + /// /// D3D12_MESSAGE_ID_RSSETSHADINGRATEIMAGE_REQUIRES_TIER_2 RssetshadingrateimageRequiresTier2 = 1236, - /// + /// /// D3D12_MESSAGE_ID_RSSETSHADINGRATE_REQUIRES_TIER_1 RssetshadingrateRequiresTier1 = 1237, - /// + /// /// D3D12_MESSAGE_ID_SHADING_RATE_IMAGE_INCORRECT_FORMAT ShadingRateImageIncorrectFormat = 1238, - /// + /// /// D3D12_MESSAGE_ID_SHADING_RATE_IMAGE_INCORRECT_ARRAY_SIZE ShadingRateImageIncorrectArraySize = 1239, - /// + /// /// D3D12_MESSAGE_ID_SHADING_RATE_IMAGE_INCORRECT_MIP_LEVEL ShadingRateImageIncorrectMipLevel = 1240, - /// + /// /// D3D12_MESSAGE_ID_SHADING_RATE_IMAGE_INCORRECT_SAMPLE_COUNT ShadingRateImageIncorrectSampleCount = 1241, - /// + /// /// D3D12_MESSAGE_ID_SHADING_RATE_IMAGE_INCORRECT_SAMPLE_QUALITY ShadingRateImageIncorrectSampleQuality = 1242, - /// + /// /// D3D12_MESSAGE_ID_NON_RETAIL_SHADER_MODEL_WONT_VALIDATE NonRetailShaderModelWontValidate = 1243, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_AS_ROOT_SIGNATURE_MISMATCH CreateGraphicsPipelineStateAsRootSignatureMismatch = 1244, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_MS_ROOT_SIGNATURE_MISMATCH CreateGraphicsPipelineStateMSRootSignatureMismatch = 1245, - /// + /// /// D3D12_MESSAGE_ID_ADD_TO_STATE_OBJECT_ERROR AddToStateObjectError = 1246, - /// + /// /// D3D12_MESSAGE_ID_CREATE_PROTECTED_RESOURCE_SESSION_INVALID_ARGUMENT CreateProtectedResourceSessionInvalidArgument = 1247, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_MS_PSO_DESC_MISMATCH CreateGraphicsPipelineStateMSPsoDescMismatch = 1248, - /// + /// /// D3D12_MESSAGE_ID_CREATEPIPELINESTATE_MS_INCOMPLETE_TYPE CreatePipelineStateMSIncompleteType = 1249, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_AS_NOT_MS_MISMATCH CreateGraphicsPipelineStateAsNotMSMismatch = 1250, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_MS_NOT_PS_MISMATCH CreateGraphicsPipelineStateMSNotPSMismatch = 1251, - /// + /// /// D3D12_MESSAGE_ID_NONZERO_SAMPLER_FEEDBACK_MIP_REGION_WITH_INCOMPATIBLE_FORMAT NonzeroSamplerFeedbackMipRegionWithIncompatibleFormat = 1252, - /// + /// /// D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_INPUTLAYOUT_SHADER_MISMATCH CreateGraphicsPipelineStateInputLayoutShaderMismatch = 1253, - /// + /// /// D3D12_MESSAGE_ID_EMPTY_DISPATCH EmptyDispatch = 1254, - /// + /// /// D3D12_MESSAGE_ID_RESOURCE_FORMAT_REQUIRES_SAMPLER_FEEDBACK_CAPABILITY ResourceFormatRequiresSamplerFeedbackCapability = 1255, - /// + /// /// D3D12_MESSAGE_ID_SAMPLER_FEEDBACK_MAP_INVALID_MIP_REGION SamplerFeedbackMapInvalidMipRegion = 1256, - /// + /// /// D3D12_MESSAGE_ID_SAMPLER_FEEDBACK_MAP_INVALID_DIMENSION SamplerFeedbackMapInvalidDimension = 1257, - /// + /// /// D3D12_MESSAGE_ID_SAMPLER_FEEDBACK_MAP_INVALID_SAMPLE_COUNT SamplerFeedbackMapInvalidSampleCount = 1258, - /// + /// /// D3D12_MESSAGE_ID_SAMPLER_FEEDBACK_MAP_INVALID_SAMPLE_QUALITY SamplerFeedbackMapInvalidSampleQuality = 1259, - /// + /// /// D3D12_MESSAGE_ID_SAMPLER_FEEDBACK_MAP_INVALID_LAYOUT SamplerFeedbackMapInvalidLayout = 1260, - /// + /// /// D3D12_MESSAGE_ID_SAMPLER_FEEDBACK_MAP_REQUIRES_UNORDERED_ACCESS_FLAG SamplerFeedbackMapRequiresUnorderedAccessFlag = 1261, - /// + /// /// D3D12_MESSAGE_ID_SAMPLER_FEEDBACK_CREATE_UAV_NULL_ARGUMENTS SamplerFeedbackCreateUavNullArguments = 1262, - /// + /// /// D3D12_MESSAGE_ID_SAMPLER_FEEDBACK_UAV_REQUIRES_SAMPLER_FEEDBACK_CAPABILITY SamplerFeedbackUavRequiresSamplerFeedbackCapability = 1263, - /// + /// /// D3D12_MESSAGE_ID_SAMPLER_FEEDBACK_CREATE_UAV_REQUIRES_FEEDBACK_MAP_FORMAT SamplerFeedbackCreateUavRequiresFeedbackMapFormat = 1264, - /// + /// /// D3D12_MESSAGE_ID_CREATEMESHSHADER_INVALIDSHADERBYTECODE CreatemeshshaderInvalidShaderBytecode = 1265, - /// + /// /// D3D12_MESSAGE_ID_CREATEMESHSHADER_OUTOFMEMORY CreatemeshshaderOutOfMemory = 1266, - /// + /// /// D3D12_MESSAGE_ID_CREATEMESHSHADERWITHSTREAMOUTPUT_INVALIDSHADERTYPE CreatemeshshaderwithstreamoutputInvalidShaderType = 1267, - /// + /// /// D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_SAMPLER_FEEDBACK_TRANSCODE_INVALID_FORMAT ResolveSubresourceSamplerFeedbackTranscodeInvalidFormat = 1268, - /// + /// /// D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_SAMPLER_FEEDBACK_INVALID_MIP_LEVEL_COUNT ResolveSubresourceSamplerFeedbackInvalidMipLevelCount = 1269, - /// + /// /// D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_SAMPLER_FEEDBACK_TRANSCODE_ARRAY_SIZE_MISMATCH ResolveSubresourceSamplerFeedbackTranscodeArraySizeMismatch = 1270, - /// + /// /// D3D12_MESSAGE_ID_SAMPLER_FEEDBACK_CREATE_UAV_MISMATCHING_TARGETED_RESOURCE SamplerFeedbackCreateUavMismatchingTargetedResource = 1271, - /// + /// /// D3D12_MESSAGE_ID_CREATEMESHSHADER_OUTPUTEXCEEDSMAXSIZE CreatemeshshaderOutputexceedsmaxsize = 1272, - /// + /// /// D3D12_MESSAGE_ID_CREATEMESHSHADER_GROUPSHAREDEXCEEDSMAXSIZE CreatemeshshaderGroupsharedexceedsmaxsize = 1273, - /// + /// /// D3D12_MESSAGE_ID_VERTEX_SHADER_OUTPUTTING_BOTH_VIEWPORT_ARRAY_INDEX_AND_SHADING_RATE_NOT_SUPPORTED_ON_DEVICE VertexShaderOutputtingBothViewportArrayIndexAndShadingRateNotSupportedOnDevice = 1274, - /// + /// /// D3D12_MESSAGE_ID_MESH_SHADER_OUTPUTTING_BOTH_VIEWPORT_ARRAY_INDEX_AND_SHADING_RATE_NOT_SUPPORTED_ON_DEVICE MeshShaderOutputtingBothViewportArrayIndexAndShadingRateNotSupportedOnDevice = 1275, - /// + /// /// D3D12_MESSAGE_ID_CREATEMESHSHADER_MISMATCHEDASMSPAYLOADSIZE CreatemeshshaderMismatchedasmspayloadsize = 1276, - /// + /// /// D3D12_MESSAGE_ID_CREATE_ROOT_SIGNATURE_UNBOUNDED_STATIC_DESCRIPTORS CreateRootSignatureUnboundedStaticDescriptors = 1277, - /// + /// /// D3D12_MESSAGE_ID_CREATEAMPLIFICATIONSHADER_INVALIDSHADERBYTECODE CreateamplificationshaderInvalidShaderBytecode = 1278, - /// + /// /// D3D12_MESSAGE_ID_CREATEAMPLIFICATIONSHADER_OUTOFMEMORY CreateamplificationshaderOutOfMemory = 1279, - /// + /// /// D3D12_MESSAGE_ID_CREATE_SHADERCACHESESSION CreateShadercachesession = 1280, - /// + /// /// D3D12_MESSAGE_ID_LIVE_SHADERCACHESESSION LiveShadercachesession = 1281, - /// + /// /// D3D12_MESSAGE_ID_DESTROY_SHADERCACHESESSION DestroyShadercachesession = 1282, - /// + /// /// D3D12_MESSAGE_ID_CREATESHADERCACHESESSION_INVALIDARGS CreateshadercachesessionInvalidArgs = 1283, - /// + /// /// D3D12_MESSAGE_ID_CREATESHADERCACHESESSION_DISABLED CreateshadercachesessionDisabled = 1284, - /// + /// /// D3D12_MESSAGE_ID_CREATESHADERCACHESESSION_ALREADYOPEN CreateshadercachesessionAlreadyopen = 1285, - /// + /// /// D3D12_MESSAGE_ID_SHADERCACHECONTROL_DEVELOPERMODE ShadercachecontrolDevelopermode = 1286, - /// + /// /// D3D12_MESSAGE_ID_SHADERCACHECONTROL_INVALIDFLAGS ShadercachecontrolInvalidFlags = 1287, - /// + /// /// D3D12_MESSAGE_ID_SHADERCACHECONTROL_STATEALREADYSET ShadercachecontrolStatealreadyset = 1288, - /// + /// /// D3D12_MESSAGE_ID_SHADERCACHECONTROL_IGNOREDFLAG ShadercachecontrolIgnoredflag = 1289, - /// + /// /// D3D12_MESSAGE_ID_SHADERCACHESESSION_STOREVALUE_ALREADYPRESENT ShadercachesessionStorevalueAlreadypresent = 1290, - /// + /// /// D3D12_MESSAGE_ID_SHADERCACHESESSION_STOREVALUE_HASHCOLLISION ShadercachesessionStorevalueHashcollision = 1291, - /// + /// /// D3D12_MESSAGE_ID_SHADERCACHESESSION_STOREVALUE_CACHEFULL ShadercachesessionStorevalueCachefull = 1292, - /// + /// /// D3D12_MESSAGE_ID_SHADERCACHESESSION_FINDVALUE_NOTFOUND ShadercachesessionFindvalueNotfound = 1293, - /// + /// /// D3D12_MESSAGE_ID_SHADERCACHESESSION_CORRUPT ShadercachesessionCorrupt = 1294, - /// + /// /// D3D12_MESSAGE_ID_SHADERCACHESESSION_DISABLED ShadercachesessionDisabled = 1295, - /// + /// /// D3D12_MESSAGE_ID_OVERSIZED_DISPATCH OversizedDispatch = 1296, - /// + /// /// D3D12_MESSAGE_ID_CREATE_VIDEOENCODER CreateVideoencoder = 1297, - /// + /// /// D3D12_MESSAGE_ID_LIVE_VIDEOENCODER LiveVideoencoder = 1298, - /// + /// /// D3D12_MESSAGE_ID_DESTROY_VIDEOENCODER DestroyVideoencoder = 1299, - /// + /// /// D3D12_MESSAGE_ID_CREATE_VIDEOENCODERHEAP CreateVideoencoderheap = 1300, - /// + /// /// D3D12_MESSAGE_ID_LIVE_VIDEOENCODERHEAP LiveVideoencoderheap = 1301, - /// + /// /// D3D12_MESSAGE_ID_DESTROY_VIDEOENCODERHEAP DestroyVideoencoderheap = 1302, - /// + /// /// D3D12_MESSAGE_ID_COPYTEXTUREREGION_MISMATCH_ENCODE_REFERENCE_ONLY_FLAG CopyTextureRegionMismatchEncodeReferenceOnlyFlag = 1303, - /// + /// /// D3D12_MESSAGE_ID_COPYRESOURCE_MISMATCH_ENCODE_REFERENCE_ONLY_FLAG CopyResourceMismatchEncodeReferenceOnlyFlag = 1304, - /// + /// /// D3D12_MESSAGE_ID_ENCODE_FRAME_INVALID_PARAMETERS EncodeFrameInvalidParameters = 1305, - /// + /// /// D3D12_MESSAGE_ID_ENCODE_FRAME_UNSUPPORTED_PARAMETERS EncodeFrameUnsupportedParameters = 1306, - /// + /// /// D3D12_MESSAGE_ID_RESOLVE_ENCODER_OUTPUT_METADATA_INVALID_PARAMETERS ResolveEncoderOutputMetadataInvalidParameters = 1307, - /// + /// /// D3D12_MESSAGE_ID_RESOLVE_ENCODER_OUTPUT_METADATA_UNSUPPORTED_PARAMETERS ResolveEncoderOutputMetadataUnsupportedParameters = 1308, - /// + /// /// D3D12_MESSAGE_ID_CREATE_VIDEO_ENCODER_INVALID_PARAMETERS CreateVideoEncoderInvalidParameters = 1309, - /// + /// /// D3D12_MESSAGE_ID_CREATE_VIDEO_ENCODER_UNSUPPORTED_PARAMETERS CreateVideoEncoderUnsupportedParameters = 1310, - /// + /// /// D3D12_MESSAGE_ID_CREATE_VIDEO_ENCODER_HEAP_INVALID_PARAMETERS CreateVideoEncoderHeapInvalidParameters = 1311, - /// + /// /// D3D12_MESSAGE_ID_CREATE_VIDEO_ENCODER_HEAP_UNSUPPORTED_PARAMETERS CreateVideoEncoderHeapUnsupportedParameters = 1312, - /// + /// /// D3D12_MESSAGE_ID_CREATECOMMANDLIST_NULL_COMMANDALLOCATOR CreatecommandlistNullCommandAllocator = 1313, - /// + /// /// D3D12_MESSAGE_ID_CLEAR_UNORDERED_ACCESS_VIEW_INVALID_DESCRIPTOR_HANDLE ClearUnorderedAccessViewInvalidDescriptorHandle = 1314, - /// + /// /// D3D12_MESSAGE_ID_DESCRIPTOR_HEAP_NOT_SHADER_VISIBLE DescriptorHeapNotShaderVisible = 1315, - /// + /// /// D3D12_MESSAGE_ID_CREATEBLENDSTATE_BLENDOP_WARNING CreateBlendStateBlendopWarning = 1316, - /// + /// /// D3D12_MESSAGE_ID_CREATEBLENDSTATE_BLENDOPALPHA_WARNING CreateBlendStateBlendopalphaWarning = 1317, - /// + /// /// D3D12_MESSAGE_ID_WRITE_COMBINE_PERFORMANCE_WARNING WriteCombinePerformanceWarning = 1318, - /// + /// /// D3D12_MESSAGE_ID_RESOLVE_QUERY_INVALID_QUERY_STATE ResolveQueryInvalidQueryState = 1319, - /// + /// /// D3D12_MESSAGE_ID_SETPRIVATEDATA_NO_ACCESS SetPrivateDataNoAccess = 1320, - /// + /// /// D3D12_MESSAGE_ID_COMMAND_LIST_STATIC_DESCRIPTOR_SAMPLER_MODE_MISMATCH CommandListStaticDescriptorSamplerModeMismatch = 1321, - /// + /// /// D3D12_MESSAGE_ID_GETCOPYABLEFOOTPRINTS_UNSUPPORTED_BUFFER_WIDTH GetCopyableFootprintsUnsupportedBufferWidth = 1322, - /// + /// /// D3D12_MESSAGE_ID_CREATEMESHSHADER_TOPOLOGY_MISMATCH CreatemeshshaderTopologyMismatch = 1323, - /// + /// /// D3D12_MESSAGE_ID_VRS_SUM_COMBINER_REQUIRES_CAPABILITY VrsSumCombinerRequiresCapability = 1324, - /// + /// /// D3D12_MESSAGE_ID_SETTING_SHADING_RATE_FROM_MS_REQUIRES_CAPABILITY SettingShadingRateFromMSRequiresCapability = 1325, - /// + /// /// D3D12_MESSAGE_ID_SHADERCACHESESSION_SHADERCACHEDELETE_NOTSUPPORTED ShadercachesessionShadercachedeleteNotSupported = 1326, - /// + /// /// D3D12_MESSAGE_ID_SHADERCACHECONTROL_SHADERCACHECLEAR_NOTSUPPORTED ShadercachecontrolShadercacheclearNotSupported = 1327, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/MessageSeverity.cs b/src/Vortice.Win32.Direct3D12/Generated/MessageSeverity.cs index 0069af8..ea3ca0a 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/MessageSeverity.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/MessageSeverity.cs @@ -9,23 +9,23 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_MESSAGE_SEVERITY public enum MessageSeverity : int { - /// + /// /// D3D12_MESSAGE_SEVERITY_CORRUPTION Corruption = 0, - /// + /// /// D3D12_MESSAGE_SEVERITY_ERROR Error = 1, - /// + /// /// D3D12_MESSAGE_SEVERITY_WARNING Warning = 2, - /// + /// /// D3D12_MESSAGE_SEVERITY_INFO Info = 3, - /// + /// /// D3D12_MESSAGE_SEVERITY_MESSAGE Message = 4, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/MetaCommandDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/MetaCommandDescription.cs index 3af3873..ccfd92b 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/MetaCommandDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/MetaCommandDescription.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_META_COMMAND_DESC public partial struct MetaCommandDescription { - /// + /// public Guid Id; - /// + /// public unsafe ushort* Name; - /// + /// public GraphicsStates InitializationDirtyState; - /// + /// public GraphicsStates ExecutionDirtyState; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/MetaCommandParameterDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/MetaCommandParameterDescription.cs index f8046a6..ce907b0 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/MetaCommandParameterDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/MetaCommandParameterDescription.cs @@ -9,22 +9,22 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_META_COMMAND_PARAMETER_DESC public partial struct MetaCommandParameterDescription { - /// + /// public unsafe ushort* Name; - /// + /// public MetaCommandParameterType Type; - /// + /// public MetaCommandParameterFlags Flags; - /// + /// public ResourceStates RequiredResourceState; - /// + /// public uint StructureOffset; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/MetaCommandParameterFlags.cs b/src/Vortice.Win32.Direct3D12/Generated/MetaCommandParameterFlags.cs index 5a5271f..dc6fb6e 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/MetaCommandParameterFlags.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/MetaCommandParameterFlags.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_META_COMMAND_PARAMETER_FLAGS [Flags] public enum MetaCommandParameterFlags : uint { None = 0, - /// + /// /// D3D12_META_COMMAND_PARAMETER_FLAG_INPUT Input = 1, - /// + /// /// D3D12_META_COMMAND_PARAMETER_FLAG_OUTPUT Output = 2, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/MetaCommandParameterStage.cs b/src/Vortice.Win32.Direct3D12/Generated/MetaCommandParameterStage.cs index ad6f41a..547592e 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/MetaCommandParameterStage.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/MetaCommandParameterStage.cs @@ -9,17 +9,17 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_META_COMMAND_PARAMETER_STAGE public enum MetaCommandParameterStage : int { - /// + /// /// D3D12_META_COMMAND_PARAMETER_STAGE_CREATION Creation = 0, - /// + /// /// D3D12_META_COMMAND_PARAMETER_STAGE_INITIALIZATION Initialization = 1, - /// + /// /// D3D12_META_COMMAND_PARAMETER_STAGE_EXECUTION Execution = 2, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/MetaCommandParameterType.cs b/src/Vortice.Win32.Direct3D12/Generated/MetaCommandParameterType.cs index d97969c..b1a002e 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/MetaCommandParameterType.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/MetaCommandParameterType.cs @@ -9,23 +9,23 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_META_COMMAND_PARAMETER_TYPE public enum MetaCommandParameterType : int { - /// + /// /// D3D12_META_COMMAND_PARAMETER_TYPE_FLOAT Float = 0, - /// + /// /// D3D12_META_COMMAND_PARAMETER_TYPE_UINT64 UInt64 = 1, - /// + /// /// D3D12_META_COMMAND_PARAMETER_TYPE_GPU_VIRTUAL_ADDRESS GpuVirtualAddress = 2, - /// + /// /// D3D12_META_COMMAND_PARAMETER_TYPE_CPU_DESCRIPTOR_HANDLE_HEAP_TYPE_CBV_SRV_UAV CpuDescriptorHandleHeapTypeCbvSrvUav = 3, - /// + /// /// D3D12_META_COMMAND_PARAMETER_TYPE_GPU_DESCRIPTOR_HANDLE_HEAP_TYPE_CBV_SRV_UAV GpuDescriptorHandleHeapTypeCbvSrvUav = 4, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/MipRegion.cs b/src/Vortice.Win32.Direct3D12/Generated/MipRegion.cs index c2831eb..212bb34 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/MipRegion.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/MipRegion.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_MIP_REGION public partial struct MipRegion { - /// + /// public uint Width; - /// + /// public uint Height; - /// + /// public uint Depth; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/MultipleFenceWaitFlags.cs b/src/Vortice.Win32.Direct3D12/Generated/MultipleFenceWaitFlags.cs index 6b4fce3..43088d1 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/MultipleFenceWaitFlags.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/MultipleFenceWaitFlags.cs @@ -9,18 +9,18 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_MULTIPLE_FENCE_WAIT_FLAGS [Flags] public enum MultipleFenceWaitFlags : uint { - /// + /// /// D3D12_MULTIPLE_FENCE_WAIT_FLAG_NONE None = 0, - /// + /// /// D3D12_MULTIPLE_FENCE_WAIT_FLAG_ANY Any = 1, - /// + /// /// D3D12_MULTIPLE_FENCE_WAIT_FLAG_ALL All = 0, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/MultisampleQualityLevelFlags.cs b/src/Vortice.Win32.Direct3D12/Generated/MultisampleQualityLevelFlags.cs index 0a0523f..2e29d76 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/MultisampleQualityLevelFlags.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/MultisampleQualityLevelFlags.cs @@ -9,15 +9,15 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_MULTISAMPLE_QUALITY_LEVEL_FLAGS [Flags] public enum MultisampleQualityLevelFlags : uint { - /// + /// /// D3D12_MULTISAMPLE_QUALITY_LEVELS_FLAG_NONE None = 0, - /// + /// /// D3D12_MULTISAMPLE_QUALITY_LEVELS_FLAG_TILED_RESOURCE TiledResource = 1, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/NodeMask.cs b/src/Vortice.Win32.Direct3D12/Generated/NodeMask.cs index 80bd4dc..1d27ed5 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/NodeMask.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/NodeMask.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_NODE_MASK public partial struct NodeMask { - /// + /// public uint Mask; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/PackedMipInfo.cs b/src/Vortice.Win32.Direct3D12/Generated/PackedMipInfo.cs index 3e40a2f..08f6ceb 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/PackedMipInfo.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/PackedMipInfo.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_PACKED_MIP_INFO public partial struct PackedMipInfo { - /// + /// public byte NumStandardMips; - /// + /// public byte NumPackedMips; - /// + /// public uint NumTilesForPackedMips; - /// + /// public uint StartTileIndexInOverallResource; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ParameterDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/ParameterDescription.cs index 2fe64c1..c74b5e7 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ParameterDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ParameterDescription.cs @@ -9,43 +9,43 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_PARAMETER_DESC public partial struct ParameterDescription { - /// + /// public unsafe sbyte* Name; - /// + /// public unsafe sbyte* SemanticName; - /// + /// public Graphics.Direct3D.ShaderVariableType Type; - /// + /// public Graphics.Direct3D.ShaderVariableClass Class; - /// + /// public uint Rows; - /// + /// public uint Columns; - /// + /// public Graphics.Direct3D.InterpolationMode InterpolationMode; - /// + /// public Graphics.Direct3D.ParameterFlags Flags; - /// + /// public uint FirstInRegister; - /// + /// public uint FirstInComponent; - /// + /// public uint FirstOutRegister; - /// + /// public uint FirstOutComponent; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/PipelineStateFlags.cs b/src/Vortice.Win32.Direct3D12/Generated/PipelineStateFlags.cs index b54197f..347906f 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/PipelineStateFlags.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/PipelineStateFlags.cs @@ -9,15 +9,15 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_PIPELINE_STATE_FLAGS [Flags] public enum PipelineStateFlags : uint { - /// + /// /// D3D12_PIPELINE_STATE_FLAG_NONE None = 0, - /// + /// /// D3D12_PIPELINE_STATE_FLAG_TOOL_DEBUG ToolDebug = 1, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/PipelineStateStreamDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/PipelineStateStreamDescription.cs index 3eae811..1b9bf4a 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/PipelineStateStreamDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/PipelineStateStreamDescription.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_PIPELINE_STATE_STREAM_DESC public partial struct PipelineStateStreamDescription { - /// + /// public nuint SizeInBytes; - /// + /// public unsafe void* pPipelineStateSubobjectStream; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/PipelineStateSubObjectType.cs b/src/Vortice.Win32.Direct3D12/Generated/PipelineStateSubObjectType.cs index 5be1e25..a57afc7 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/PipelineStateSubObjectType.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/PipelineStateSubObjectType.cs @@ -9,86 +9,86 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_PIPELINE_STATE_SUBOBJECT_TYPE public enum PipelineStateSubObjectType : int { - /// + /// /// D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_ROOT_SIGNATURE RootSignature = 0, - /// + /// /// D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_VS VS = 1, - /// + /// /// D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_PS PS = 2, - /// + /// /// D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_DS DS = 3, - /// + /// /// D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_HS HS = 4, - /// + /// /// D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_GS GS = 5, - /// + /// /// D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_CS CS = 6, - /// + /// /// D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_STREAM_OUTPUT StreamOutput = 7, - /// + /// /// D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_BLEND Blend = 8, - /// + /// /// D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_SAMPLE_MASK SampleMask = 9, - /// + /// /// D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_RASTERIZER Rasterizer = 10, - /// + /// /// D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_DEPTH_STENCIL DepthStencil = 11, - /// + /// /// D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_INPUT_LAYOUT InputLayout = 12, - /// + /// /// D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_IB_STRIP_CUT_VALUE IBStripCutValue = 13, - /// + /// /// D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_PRIMITIVE_TOPOLOGY PrimitiveTopology = 14, - /// + /// /// D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_RENDER_TARGET_FORMATS RenderTargetFormats = 15, - /// + /// /// D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_DEPTH_STENCIL_FORMAT DepthStencilFormat = 16, - /// + /// /// D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_SAMPLE_DESC SampleDesc = 17, - /// + /// /// D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_NODE_MASK NodeMask = 18, - /// + /// /// D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_CACHED_PSO CachedPso = 19, - /// + /// /// D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_FLAGS Flags = 20, - /// + /// /// D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_DEPTH_STENCIL1 DepthStencil1 = 21, - /// + /// /// D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_VIEW_INSTANCING ViewInstancing = 22, - /// + /// /// D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_AS AS = 24, - /// + /// /// D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_MS MS = 25, - /// + /// /// D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_MAX_VALID MaxValid = 26, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/PlacedSubresourceFootprint.cs b/src/Vortice.Win32.Direct3D12/Generated/PlacedSubresourceFootprint.cs index 45b44dd..a1f9fb2 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/PlacedSubresourceFootprint.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/PlacedSubresourceFootprint.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_PLACED_SUBRESOURCE_FOOTPRINT public partial struct PlacedSubresourceFootprint { - /// + /// public ulong Offset; - /// + /// public SubresourceFootprint Footprint; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/PredicationOperation.cs b/src/Vortice.Win32.Direct3D12/Generated/PredicationOperation.cs index 95aad98..2d00f40 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/PredicationOperation.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/PredicationOperation.cs @@ -9,14 +9,14 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_PREDICATION_OP public enum PredicationOperation : int { - /// + /// /// D3D12_PREDICATION_OP_EQUAL_ZERO EqualZero = 0, - /// + /// /// D3D12_PREDICATION_OP_NOT_EQUAL_ZERO NotEqualZero = 1, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/PrimitiveTopologyType.cs b/src/Vortice.Win32.Direct3D12/Generated/PrimitiveTopologyType.cs index 5b08366..82f7e52 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/PrimitiveTopologyType.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/PrimitiveTopologyType.cs @@ -9,23 +9,23 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_PRIMITIVE_TOPOLOGY_TYPE public enum PrimitiveTopologyType : int { - /// + /// /// D3D12_PRIMITIVE_TOPOLOGY_TYPE_UNDEFINED Undefined = 0, - /// + /// /// D3D12_PRIMITIVE_TOPOLOGY_TYPE_POINT Point = 1, - /// + /// /// D3D12_PRIMITIVE_TOPOLOGY_TYPE_LINE Line = 2, - /// + /// /// D3D12_PRIMITIVE_TOPOLOGY_TYPE_TRIANGLE Triangle = 3, - /// + /// /// D3D12_PRIMITIVE_TOPOLOGY_TYPE_PATCH Patch = 4, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ProgrammableSamplePositionsTier.cs b/src/Vortice.Win32.Direct3D12/Generated/ProgrammableSamplePositionsTier.cs index 822ce78..46c7fff 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ProgrammableSamplePositionsTier.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ProgrammableSamplePositionsTier.cs @@ -9,17 +9,17 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_PROGRAMMABLE_SAMPLE_POSITIONS_TIER public enum ProgrammableSamplePositionsTier : int { - /// + /// /// D3D12_PROGRAMMABLE_SAMPLE_POSITIONS_TIER_NOT_SUPPORTED NotSupported = 0, - /// + /// /// D3D12_PROGRAMMABLE_SAMPLE_POSITIONS_TIER_1 Tier1 = 1, - /// + /// /// D3D12_PROGRAMMABLE_SAMPLE_POSITIONS_TIER_2 Tier2 = 2, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ProtectedResourceSessionDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/ProtectedResourceSessionDescription.cs index 5fcc59c..2709011 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ProtectedResourceSessionDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ProtectedResourceSessionDescription.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_PROTECTED_RESOURCE_SESSION_DESC public partial struct ProtectedResourceSessionDescription { - /// + /// public uint NodeMask; - /// + /// public ProtectedResourceSessionFlags Flags; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ProtectedResourceSessionDescription1.cs b/src/Vortice.Win32.Direct3D12/Generated/ProtectedResourceSessionDescription1.cs index f974e9a..798a5fe 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ProtectedResourceSessionDescription1.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ProtectedResourceSessionDescription1.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_PROTECTED_RESOURCE_SESSION_DESC1 public partial struct ProtectedResourceSessionDescription1 { - /// + /// public uint NodeMask; - /// + /// public ProtectedResourceSessionFlags Flags; - /// + /// public Guid ProtectionType; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ProtectedResourceSessionFlags.cs b/src/Vortice.Win32.Direct3D12/Generated/ProtectedResourceSessionFlags.cs index 56d14ae..b096ce6 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ProtectedResourceSessionFlags.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ProtectedResourceSessionFlags.cs @@ -9,12 +9,12 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_PROTECTED_RESOURCE_SESSION_FLAGS [Flags] public enum ProtectedResourceSessionFlags : uint { - /// + /// /// D3D12_PROTECTED_RESOURCE_SESSION_FLAG_NONE None = 0, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ProtectedResourceSessionSupportFlags.cs b/src/Vortice.Win32.Direct3D12/Generated/ProtectedResourceSessionSupportFlags.cs index 6752c07..c01b8cc 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ProtectedResourceSessionSupportFlags.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ProtectedResourceSessionSupportFlags.cs @@ -9,15 +9,15 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_PROTECTED_RESOURCE_SESSION_SUPPORT_FLAGS [Flags] public enum ProtectedResourceSessionSupportFlags : uint { - /// + /// /// D3D12_PROTECTED_RESOURCE_SESSION_SUPPORT_FLAG_NONE None = 0, - /// + /// /// D3D12_PROTECTED_RESOURCE_SESSION_SUPPORT_FLAG_SUPPORTED Supported = 1, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ProtectedSessionStatus.cs b/src/Vortice.Win32.Direct3D12/Generated/ProtectedSessionStatus.cs index 2c30374..7819a64 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ProtectedSessionStatus.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ProtectedSessionStatus.cs @@ -9,14 +9,14 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_PROTECTED_SESSION_STATUS public enum ProtectedSessionStatus : int { - /// + /// /// D3D12_PROTECTED_SESSION_STATUS_OK Ok = 0, - /// + /// /// D3D12_PROTECTED_SESSION_STATUS_INVALID Invalid = 1, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/QueryDataPipelineStatistics.cs b/src/Vortice.Win32.Direct3D12/Generated/QueryDataPipelineStatistics.cs index 4e6f26b..440799a 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/QueryDataPipelineStatistics.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/QueryDataPipelineStatistics.cs @@ -9,40 +9,40 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_QUERY_DATA_PIPELINE_STATISTICS public partial struct QueryDataPipelineStatistics { - /// + /// public ulong IAVertices; - /// + /// public ulong IAPrimitives; - /// + /// public ulong VSInvocations; - /// + /// public ulong GSInvocations; - /// + /// public ulong GSPrimitives; - /// + /// public ulong CInvocations; - /// + /// public ulong CPrimitives; - /// + /// public ulong PSInvocations; - /// + /// public ulong HSInvocations; - /// + /// public ulong DSInvocations; - /// + /// public ulong CSInvocations; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/QueryDataPipelineStatistics1.cs b/src/Vortice.Win32.Direct3D12/Generated/QueryDataPipelineStatistics1.cs index a8e53f5..d47bc0c 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/QueryDataPipelineStatistics1.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/QueryDataPipelineStatistics1.cs @@ -9,49 +9,49 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_QUERY_DATA_PIPELINE_STATISTICS1 public partial struct QueryDataPipelineStatistics1 { - /// + /// public ulong IAVertices; - /// + /// public ulong IAPrimitives; - /// + /// public ulong VSInvocations; - /// + /// public ulong GSInvocations; - /// + /// public ulong GSPrimitives; - /// + /// public ulong CInvocations; - /// + /// public ulong CPrimitives; - /// + /// public ulong PSInvocations; - /// + /// public ulong HSInvocations; - /// + /// public ulong DSInvocations; - /// + /// public ulong CSInvocations; - /// + /// public ulong ASInvocations; - /// + /// public ulong MSInvocations; - /// + /// public ulong MSPrimitives; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/QueryDataSOStatistics.cs b/src/Vortice.Win32.Direct3D12/Generated/QueryDataSOStatistics.cs index 87d542c..bbf63e5 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/QueryDataSOStatistics.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/QueryDataSOStatistics.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_QUERY_DATA_SO_STATISTICS public partial struct QueryDataSOStatistics { - /// + /// public ulong NumPrimitivesWritten; - /// + /// public ulong PrimitivesStorageNeeded; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/QueryHeapDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/QueryHeapDescription.cs index 52ed8d9..c57621d 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/QueryHeapDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/QueryHeapDescription.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_QUERY_HEAP_DESC public partial struct QueryHeapDescription { - /// + /// public QueryHeapType Type; - /// + /// public uint Count; - /// + /// public uint NodeMask; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/QueryHeapType.cs b/src/Vortice.Win32.Direct3D12/Generated/QueryHeapType.cs index fc98ef2..2692fda 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/QueryHeapType.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/QueryHeapType.cs @@ -9,29 +9,29 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_QUERY_HEAP_TYPE public enum QueryHeapType : int { - /// + /// /// D3D12_QUERY_HEAP_TYPE_OCCLUSION Occlusion = 0, - /// + /// /// D3D12_QUERY_HEAP_TYPE_TIMESTAMP Timestamp = 1, - /// + /// /// D3D12_QUERY_HEAP_TYPE_PIPELINE_STATISTICS PipelineStatistics = 2, - /// + /// /// D3D12_QUERY_HEAP_TYPE_SO_STATISTICS SOStatistics = 3, - /// + /// /// D3D12_QUERY_HEAP_TYPE_VIDEO_DECODE_STATISTICS VideoDecodeStatistics = 4, - /// + /// /// D3D12_QUERY_HEAP_TYPE_COPY_QUEUE_TIMESTAMP CopyQueueTimestamp = 5, - /// + /// /// D3D12_QUERY_HEAP_TYPE_PIPELINE_STATISTICS1 PipelineStatistics1 = 7, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/QueryType.cs b/src/Vortice.Win32.Direct3D12/Generated/QueryType.cs index cccfb5f..50f2aae 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/QueryType.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/QueryType.cs @@ -9,38 +9,38 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_QUERY_TYPE public enum QueryType : int { - /// + /// /// D3D12_QUERY_TYPE_OCCLUSION Occlusion = 0, - /// + /// /// D3D12_QUERY_TYPE_BINARY_OCCLUSION BinaryOcclusion = 1, - /// + /// /// D3D12_QUERY_TYPE_TIMESTAMP Timestamp = 2, - /// + /// /// D3D12_QUERY_TYPE_PIPELINE_STATISTICS PipelineStatistics = 3, - /// + /// /// D3D12_QUERY_TYPE_SO_STATISTICS_STREAM0 SOStatisticsStream0 = 4, - /// + /// /// D3D12_QUERY_TYPE_SO_STATISTICS_STREAM1 SOStatisticsStream1 = 5, - /// + /// /// D3D12_QUERY_TYPE_SO_STATISTICS_STREAM2 SOStatisticsStream2 = 6, - /// + /// /// D3D12_QUERY_TYPE_SO_STATISTICS_STREAM3 SOStatisticsStream3 = 7, - /// + /// /// D3D12_QUERY_TYPE_VIDEO_DECODE_STATISTICS VideoDecodeStatistics = 8, - /// + /// /// D3D12_QUERY_TYPE_PIPELINE_STATISTICS1 PipelineStatistics1 = 10, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/Range.cs b/src/Vortice.Win32.Direct3D12/Generated/Range.cs index 6186fb5..74b52c0 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/Range.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/Range.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RANGE public partial struct Range { - /// + /// public nuint Begin; - /// + /// public nuint End; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RangeUInt64.cs b/src/Vortice.Win32.Direct3D12/Generated/RangeUInt64.cs index 15f63ba..c4b9e30 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RangeUInt64.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RangeUInt64.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RANGE_UINT64 public partial struct RangeUInt64 { - /// + /// public ulong Begin; - /// + /// public ulong End; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RasterizerDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/RasterizerDescription.cs index 96f5ac0..1214e1d 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RasterizerDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RasterizerDescription.cs @@ -9,40 +9,40 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RASTERIZER_DESC public partial struct RasterizerDescription { - /// + /// public FillMode FillMode; - /// + /// public CullMode CullMode; - /// + /// public Bool32 FrontCounterClockwise; - /// + /// public int DepthBias; - /// + /// public float DepthBiasClamp; - /// + /// public float SlopeScaledDepthBias; - /// + /// public Bool32 DepthClipEnable; - /// + /// public Bool32 MultisampleEnable; - /// + /// public Bool32 AntialiasedLineEnable; - /// + /// public uint ForcedSampleCount; - /// + /// public ConservativeRasterizationMode ConservativeRaster; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RayFlags.cs b/src/Vortice.Win32.Direct3D12/Generated/RayFlags.cs index 0ce523c..e39fd2f 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RayFlags.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RayFlags.cs @@ -9,42 +9,42 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RAY_FLAGS [Flags] public enum RayFlags : uint { - /// + /// /// D3D12_RAY_FLAG_NONE None = 0, - /// + /// /// D3D12_RAY_FLAG_FORCE_OPAQUE ForceOpaque = 1, - /// + /// /// D3D12_RAY_FLAG_FORCE_NON_OPAQUE ForceNonOpaque = 2, - /// + /// /// D3D12_RAY_FLAG_ACCEPT_FIRST_HIT_AND_END_SEARCH AcceptFirstHitAndEndSearch = 4, - /// + /// /// D3D12_RAY_FLAG_SKIP_CLOSEST_HIT_SHADER SkipClosestHitShader = 8, - /// + /// /// D3D12_RAY_FLAG_CULL_BACK_FACING_TRIANGLES CullBackFacingTriangles = 16, - /// + /// /// D3D12_RAY_FLAG_CULL_FRONT_FACING_TRIANGLES CullFrontFacingTriangles = 32, - /// + /// /// D3D12_RAY_FLAG_CULL_OPAQUE CullOpaque = 64, - /// + /// /// D3D12_RAY_FLAG_CULL_NON_OPAQUE CullNonOpaque = 128, - /// + /// /// D3D12_RAY_FLAG_SKIP_TRIANGLES SkipTriangles = 256, - /// + /// /// D3D12_RAY_FLAG_SKIP_PROCEDURAL_PRIMITIVES SkipProceduralPrimitives = 512, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RaytracingAabb.cs b/src/Vortice.Win32.Direct3D12/Generated/RaytracingAabb.cs index 59a9b01..e45431b 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RaytracingAabb.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RaytracingAabb.cs @@ -9,25 +9,25 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RAYTRACING_AABB public partial struct RaytracingAabb { - /// + /// public float MinX; - /// + /// public float MinY; - /// + /// public float MinZ; - /// + /// public float MaxX; - /// + /// public float MaxY; - /// + /// public float MaxZ; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RaytracingAccelerationStructureBuildFlags.cs b/src/Vortice.Win32.Direct3D12/Generated/RaytracingAccelerationStructureBuildFlags.cs index 8793a97..7d56424 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RaytracingAccelerationStructureBuildFlags.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RaytracingAccelerationStructureBuildFlags.cs @@ -9,30 +9,30 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BUILD_FLAGS [Flags] public enum RaytracingAccelerationStructureBuildFlags : uint { - /// + /// /// D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BUILD_FLAG_NONE None = 0, - /// + /// /// D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BUILD_FLAG_ALLOW_UPDATE AllowUpdate = 1, - /// + /// /// D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BUILD_FLAG_ALLOW_COMPACTION AllowCompaction = 2, - /// + /// /// D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BUILD_FLAG_PREFER_FAST_TRACE PreferFastTrace = 4, - /// + /// /// D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BUILD_FLAG_PREFER_FAST_BUILD PreferFastBuild = 8, - /// + /// /// D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BUILD_FLAG_MINIMIZE_MEMORY MinimizeMemory = 16, - /// + /// /// D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BUILD_FLAG_PERFORM_UPDATE PerformUpdate = 32, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RaytracingAccelerationStructureCopyMode.cs b/src/Vortice.Win32.Direct3D12/Generated/RaytracingAccelerationStructureCopyMode.cs index a490010..7f88768 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RaytracingAccelerationStructureCopyMode.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RaytracingAccelerationStructureCopyMode.cs @@ -9,23 +9,23 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RAYTRACING_ACCELERATION_STRUCTURE_COPY_MODE public enum RaytracingAccelerationStructureCopyMode : int { - /// + /// /// D3D12_RAYTRACING_ACCELERATION_STRUCTURE_COPY_MODE_CLONE Clone = 0, - /// + /// /// D3D12_RAYTRACING_ACCELERATION_STRUCTURE_COPY_MODE_COMPACT Compact = 1, - /// + /// /// D3D12_RAYTRACING_ACCELERATION_STRUCTURE_COPY_MODE_VISUALIZATION_DECODE_FOR_TOOLS VisualizationDecodeForTools = 2, - /// + /// /// D3D12_RAYTRACING_ACCELERATION_STRUCTURE_COPY_MODE_SERIALIZE Serialize = 3, - /// + /// /// D3D12_RAYTRACING_ACCELERATION_STRUCTURE_COPY_MODE_DESERIALIZE Deserialize = 4, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RaytracingAccelerationStructurePostbuildInfoCompactedSizeDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/RaytracingAccelerationStructurePostbuildInfoCompactedSizeDescription.cs index 34365c1..37d0f96 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RaytracingAccelerationStructurePostbuildInfoCompactedSizeDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RaytracingAccelerationStructurePostbuildInfoCompactedSizeDescription.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RAYTRACING_ACCELERATION_STRUCTURE_POSTBUILD_INFO_COMPACTED_SIZE_DESC public partial struct RaytracingAccelerationStructurePostbuildInfoCompactedSizeDescription { - /// + /// public ulong CompactedSizeInBytes; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RaytracingAccelerationStructurePostbuildInfoCurrentSizeDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/RaytracingAccelerationStructurePostbuildInfoCurrentSizeDescription.cs index 30aa409..119a4e3 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RaytracingAccelerationStructurePostbuildInfoCurrentSizeDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RaytracingAccelerationStructurePostbuildInfoCurrentSizeDescription.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RAYTRACING_ACCELERATION_STRUCTURE_POSTBUILD_INFO_CURRENT_SIZE_DESC public partial struct RaytracingAccelerationStructurePostbuildInfoCurrentSizeDescription { - /// + /// public ulong CurrentSizeInBytes; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RaytracingAccelerationStructurePostbuildInfoDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/RaytracingAccelerationStructurePostbuildInfoDescription.cs index 905226e..4bbd158 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RaytracingAccelerationStructurePostbuildInfoDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RaytracingAccelerationStructurePostbuildInfoDescription.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RAYTRACING_ACCELERATION_STRUCTURE_POSTBUILD_INFO_DESC public partial struct RaytracingAccelerationStructurePostbuildInfoDescription { - /// + /// public ulong DestBuffer; - /// + /// public RaytracingAccelerationStructurePostbuildInfoType InfoType; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RaytracingAccelerationStructurePostbuildInfoSerializationDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/RaytracingAccelerationStructurePostbuildInfoSerializationDescription.cs index 15c5a45..3da5667 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RaytracingAccelerationStructurePostbuildInfoSerializationDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RaytracingAccelerationStructurePostbuildInfoSerializationDescription.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RAYTRACING_ACCELERATION_STRUCTURE_POSTBUILD_INFO_SERIALIZATION_DESC public partial struct RaytracingAccelerationStructurePostbuildInfoSerializationDescription { - /// + /// public ulong SerializedSizeInBytes; - /// + /// public ulong NumBottomLevelAccelerationStructurePointers; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RaytracingAccelerationStructurePostbuildInfoToolsVisualizationDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/RaytracingAccelerationStructurePostbuildInfoToolsVisualizationDescription.cs index 9dec8b6..e123476 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RaytracingAccelerationStructurePostbuildInfoToolsVisualizationDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RaytracingAccelerationStructurePostbuildInfoToolsVisualizationDescription.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RAYTRACING_ACCELERATION_STRUCTURE_POSTBUILD_INFO_TOOLS_VISUALIZATION_DESC public partial struct RaytracingAccelerationStructurePostbuildInfoToolsVisualizationDescription { - /// + /// public ulong DecodedSizeInBytes; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RaytracingAccelerationStructurePostbuildInfoType.cs b/src/Vortice.Win32.Direct3D12/Generated/RaytracingAccelerationStructurePostbuildInfoType.cs index 0879a31..b8f3b2a 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RaytracingAccelerationStructurePostbuildInfoType.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RaytracingAccelerationStructurePostbuildInfoType.cs @@ -9,20 +9,20 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RAYTRACING_ACCELERATION_STRUCTURE_POSTBUILD_INFO_TYPE public enum RaytracingAccelerationStructurePostbuildInfoType : int { - /// + /// /// D3D12_RAYTRACING_ACCELERATION_STRUCTURE_POSTBUILD_INFO_COMPACTED_SIZE CompactedSize = 0, - /// + /// /// D3D12_RAYTRACING_ACCELERATION_STRUCTURE_POSTBUILD_INFO_TOOLS_VISUALIZATION ToolsVisualization = 1, - /// + /// /// D3D12_RAYTRACING_ACCELERATION_STRUCTURE_POSTBUILD_INFO_SERIALIZATION Serialization = 2, - /// + /// /// D3D12_RAYTRACING_ACCELERATION_STRUCTURE_POSTBUILD_INFO_CURRENT_SIZE CurrentSize = 3, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RaytracingAccelerationStructurePrebuildInfo.cs b/src/Vortice.Win32.Direct3D12/Generated/RaytracingAccelerationStructurePrebuildInfo.cs index 5c8d447..5fef9eb 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RaytracingAccelerationStructurePrebuildInfo.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RaytracingAccelerationStructurePrebuildInfo.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RAYTRACING_ACCELERATION_STRUCTURE_PREBUILD_INFO public partial struct RaytracingAccelerationStructurePrebuildInfo { - /// + /// public ulong ResultDataMaxSizeInBytes; - /// + /// public ulong ScratchDataSizeInBytes; - /// + /// public ulong UpdateScratchDataSizeInBytes; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RaytracingAccelerationStructureSrv.cs b/src/Vortice.Win32.Direct3D12/Generated/RaytracingAccelerationStructureSrv.cs index 6736f92..b2a1005 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RaytracingAccelerationStructureSrv.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RaytracingAccelerationStructureSrv.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RAYTRACING_ACCELERATION_STRUCTURE_SRV public partial struct RaytracingAccelerationStructureSrv { - /// + /// public ulong Location; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RaytracingAccelerationStructureType.cs b/src/Vortice.Win32.Direct3D12/Generated/RaytracingAccelerationStructureType.cs index 7591f23..5488dae 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RaytracingAccelerationStructureType.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RaytracingAccelerationStructureType.cs @@ -9,14 +9,14 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RAYTRACING_ACCELERATION_STRUCTURE_TYPE public enum RaytracingAccelerationStructureType : int { - /// + /// /// D3D12_RAYTRACING_ACCELERATION_STRUCTURE_TYPE_TOP_LEVEL TopLevel = 0, - /// + /// /// D3D12_RAYTRACING_ACCELERATION_STRUCTURE_TYPE_BOTTOM_LEVEL BottomLevel = 1, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RaytracingGeometryAabbsDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/RaytracingGeometryAabbsDescription.cs index 452e1db..b38b908 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RaytracingGeometryAabbsDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RaytracingGeometryAabbsDescription.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RAYTRACING_GEOMETRY_AABBS_DESC public partial struct RaytracingGeometryAabbsDescription { - /// + /// public ulong AABBCount; - /// + /// public GpuVirtualAddressAndStride AABBs; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RaytracingGeometryDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/RaytracingGeometryDescription.cs index 6563c81..b7095c7 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RaytracingGeometryDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RaytracingGeometryDescription.cs @@ -9,17 +9,17 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RAYTRACING_GEOMETRY_DESC public partial struct RaytracingGeometryDescription { - /// + /// public RaytracingGeometryType Type; - /// + /// public RaytracingGeometryFlags Flags; - /// + /// public _Anonymous_e__Union Anonymous; [UnscopedRef] @@ -45,11 +45,11 @@ public partial struct RaytracingGeometryDescription [StructLayout(LayoutKind.Explicit)] public partial struct _Anonymous_e__Union { - /// + /// [FieldOffset(0)] public RaytracingGeometryTrianglesDescription Triangles; - /// + /// [FieldOffset(0)] public RaytracingGeometryAabbsDescription AABBs; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RaytracingGeometryFlags.cs b/src/Vortice.Win32.Direct3D12/Generated/RaytracingGeometryFlags.cs index 83ac905..0c403f7 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RaytracingGeometryFlags.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RaytracingGeometryFlags.cs @@ -9,18 +9,18 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RAYTRACING_GEOMETRY_FLAGS [Flags] public enum RaytracingGeometryFlags : uint { - /// + /// /// D3D12_RAYTRACING_GEOMETRY_FLAG_NONE None = 0, - /// + /// /// D3D12_RAYTRACING_GEOMETRY_FLAG_OPAQUE Opaque = 1, - /// + /// /// D3D12_RAYTRACING_GEOMETRY_FLAG_NO_DUPLICATE_ANYHIT_INVOCATION NoDuplicateAnyhitInvocation = 2, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RaytracingGeometryTrianglesDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/RaytracingGeometryTrianglesDescription.cs index 390deca..a33d274 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RaytracingGeometryTrianglesDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RaytracingGeometryTrianglesDescription.cs @@ -9,28 +9,28 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RAYTRACING_GEOMETRY_TRIANGLES_DESC public partial struct RaytracingGeometryTrianglesDescription { - /// + /// public ulong Transform3x4; - /// + /// public Graphics.Dxgi.Common.Format IndexFormat; - /// + /// public Graphics.Dxgi.Common.Format VertexFormat; - /// + /// public uint IndexCount; - /// + /// public uint VertexCount; - /// + /// public ulong IndexBuffer; - /// + /// public GpuVirtualAddressAndStride VertexBuffer; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RaytracingGeometryType.cs b/src/Vortice.Win32.Direct3D12/Generated/RaytracingGeometryType.cs index 8f8ec3e..76ae0e7 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RaytracingGeometryType.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RaytracingGeometryType.cs @@ -9,14 +9,14 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RAYTRACING_GEOMETRY_TYPE public enum RaytracingGeometryType : int { - /// + /// /// D3D12_RAYTRACING_GEOMETRY_TYPE_TRIANGLES Triangles = 0, - /// + /// /// D3D12_RAYTRACING_GEOMETRY_TYPE_PROCEDURAL_PRIMITIVE_AABBS ProceduralPrimitiveAabbs = 1, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RaytracingInstanceDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/RaytracingInstanceDescription.cs index 33fb9a0..21f8514 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RaytracingInstanceDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RaytracingInstanceDescription.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RAYTRACING_INSTANCE_DESC public partial struct RaytracingInstanceDescription { - /// + /// public unsafe fixed float Transform[12]; - /// + /// public uint _bitfield1; - /// + /// public uint _bitfield2; - /// + /// public ulong AccelerationStructure; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RaytracingInstanceFlags.cs b/src/Vortice.Win32.Direct3D12/Generated/RaytracingInstanceFlags.cs index b00ba42..466c18c 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RaytracingInstanceFlags.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RaytracingInstanceFlags.cs @@ -9,24 +9,24 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RAYTRACING_INSTANCE_FLAGS [Flags] public enum RaytracingInstanceFlags : uint { - /// + /// /// D3D12_RAYTRACING_INSTANCE_FLAG_NONE None = 0, - /// + /// /// D3D12_RAYTRACING_INSTANCE_FLAG_TRIANGLE_CULL_DISABLE TriangleCullDisable = 1, - /// + /// /// D3D12_RAYTRACING_INSTANCE_FLAG_TRIANGLE_FRONT_COUNTERCLOCKWISE TriangleFrontCounterclockwise = 2, - /// + /// /// D3D12_RAYTRACING_INSTANCE_FLAG_FORCE_OPAQUE ForceOpaque = 4, - /// + /// /// D3D12_RAYTRACING_INSTANCE_FLAG_FORCE_NON_OPAQUE ForceNonOpaque = 8, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RaytracingPipelineConfig.cs b/src/Vortice.Win32.Direct3D12/Generated/RaytracingPipelineConfig.cs index 860a55e..074ecd7 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RaytracingPipelineConfig.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RaytracingPipelineConfig.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RAYTRACING_PIPELINE_CONFIG public partial struct RaytracingPipelineConfig { - /// + /// public uint MaxTraceRecursionDepth; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RaytracingPipelineConfig1.cs b/src/Vortice.Win32.Direct3D12/Generated/RaytracingPipelineConfig1.cs index 1e6f34c..bf5ccf2 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RaytracingPipelineConfig1.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RaytracingPipelineConfig1.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RAYTRACING_PIPELINE_CONFIG1 public partial struct RaytracingPipelineConfig1 { - /// + /// public uint MaxTraceRecursionDepth; - /// + /// public RaytracingPipelineFlags Flags; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RaytracingPipelineFlags.cs b/src/Vortice.Win32.Direct3D12/Generated/RaytracingPipelineFlags.cs index 1717186..beb7bce 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RaytracingPipelineFlags.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RaytracingPipelineFlags.cs @@ -9,18 +9,18 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RAYTRACING_PIPELINE_FLAGS [Flags] public enum RaytracingPipelineFlags : uint { - /// + /// /// D3D12_RAYTRACING_PIPELINE_FLAG_NONE None = 0, - /// + /// /// D3D12_RAYTRACING_PIPELINE_FLAG_SKIP_TRIANGLES SkipTriangles = 256, - /// + /// /// D3D12_RAYTRACING_PIPELINE_FLAG_SKIP_PROCEDURAL_PRIMITIVES SkipProceduralPrimitives = 512, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RaytracingShaderConfig.cs b/src/Vortice.Win32.Direct3D12/Generated/RaytracingShaderConfig.cs index 95f9522..4cc831a 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RaytracingShaderConfig.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RaytracingShaderConfig.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RAYTRACING_SHADER_CONFIG public partial struct RaytracingShaderConfig { - /// + /// public uint MaxPayloadSizeInBytes; - /// + /// public uint MaxAttributeSizeInBytes; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RaytracingTier.cs b/src/Vortice.Win32.Direct3D12/Generated/RaytracingTier.cs index 7dc56c2..b79b7f3 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RaytracingTier.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RaytracingTier.cs @@ -9,17 +9,17 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RAYTRACING_TIER public enum RaytracingTier : int { - /// + /// /// D3D12_RAYTRACING_TIER_NOT_SUPPORTED NotSupported = 0, - /// + /// /// D3D12_RAYTRACING_TIER_1_0 Tier1_0 = 10, - /// + /// /// D3D12_RAYTRACING_TIER_1_1 Tier1_1 = 11, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RenderPassBeginningAccess.cs b/src/Vortice.Win32.Direct3D12/Generated/RenderPassBeginningAccess.cs index 725f4d3..8f0f5f3 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RenderPassBeginningAccess.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RenderPassBeginningAccess.cs @@ -9,14 +9,14 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RENDER_PASS_BEGINNING_ACCESS public partial struct RenderPassBeginningAccess { - /// + /// public RenderPassBeginningAccessType Type; - /// + /// public _Anonymous_e__Union Anonymous; [UnscopedRef] @@ -32,7 +32,7 @@ public partial struct RenderPassBeginningAccess [StructLayout(LayoutKind.Explicit)] public partial struct _Anonymous_e__Union { - /// + /// [FieldOffset(0)] public RenderPassBeginningAccessClearParameters Clear; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RenderPassBeginningAccessClearParameters.cs b/src/Vortice.Win32.Direct3D12/Generated/RenderPassBeginningAccessClearParameters.cs index 91845a4..b6e63c3 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RenderPassBeginningAccessClearParameters.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RenderPassBeginningAccessClearParameters.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RENDER_PASS_BEGINNING_ACCESS_CLEAR_PARAMETERS public partial struct RenderPassBeginningAccessClearParameters { - /// + /// public ClearValue ClearValue; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RenderPassBeginningAccessType.cs b/src/Vortice.Win32.Direct3D12/Generated/RenderPassBeginningAccessType.cs index 659e827..983f293 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RenderPassBeginningAccessType.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RenderPassBeginningAccessType.cs @@ -9,20 +9,20 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RENDER_PASS_BEGINNING_ACCESS_TYPE public enum RenderPassBeginningAccessType : int { - /// + /// /// D3D12_RENDER_PASS_BEGINNING_ACCESS_TYPE_DISCARD Discard = 0, - /// + /// /// D3D12_RENDER_PASS_BEGINNING_ACCESS_TYPE_PRESERVE Preserve = 1, - /// + /// /// D3D12_RENDER_PASS_BEGINNING_ACCESS_TYPE_CLEAR Clear = 2, - /// + /// /// D3D12_RENDER_PASS_BEGINNING_ACCESS_TYPE_NO_ACCESS NoAccess = 3, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RenderPassDepthStencilDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/RenderPassDepthStencilDescription.cs index 35a2791..269b77a 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RenderPassDepthStencilDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RenderPassDepthStencilDescription.cs @@ -9,22 +9,22 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RENDER_PASS_DEPTH_STENCIL_DESC public partial struct RenderPassDepthStencilDescription { - /// + /// public CpuDescriptorHandle cpuDescriptor; - /// + /// public RenderPassBeginningAccess DepthBeginningAccess; - /// + /// public RenderPassBeginningAccess StencilBeginningAccess; - /// + /// public RenderPassEndingAccess DepthEndingAccess; - /// + /// public RenderPassEndingAccess StencilEndingAccess; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RenderPassEndingAccess.cs b/src/Vortice.Win32.Direct3D12/Generated/RenderPassEndingAccess.cs index c1e33da..1632003 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RenderPassEndingAccess.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RenderPassEndingAccess.cs @@ -9,14 +9,14 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RENDER_PASS_ENDING_ACCESS public partial struct RenderPassEndingAccess { - /// + /// public RenderPassEndingAccessType Type; - /// + /// public _Anonymous_e__Union Anonymous; [UnscopedRef] @@ -32,7 +32,7 @@ public partial struct RenderPassEndingAccess [StructLayout(LayoutKind.Explicit)] public partial struct _Anonymous_e__Union { - /// + /// [FieldOffset(0)] public RenderPassEndingAccessResolveParameters Resolve; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RenderPassEndingAccessResolveParameters.cs b/src/Vortice.Win32.Direct3D12/Generated/RenderPassEndingAccessResolveParameters.cs index 08fd2c0..0df94fa 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RenderPassEndingAccessResolveParameters.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RenderPassEndingAccessResolveParameters.cs @@ -9,28 +9,28 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RENDER_PASS_ENDING_ACCESS_RESOLVE_PARAMETERS public partial struct RenderPassEndingAccessResolveParameters { - /// + /// public unsafe ID3D12Resource* pSrcResource; - /// + /// public unsafe ID3D12Resource* pDstResource; - /// + /// public uint SubresourceCount; - /// + /// public unsafe RenderPassEndingAccessResolveSubresourceParameters* pSubresourceParameters; - /// + /// public Graphics.Dxgi.Common.Format Format; - /// + /// public ResolveMode ResolveMode; - /// + /// public Bool32 PreserveResolveSource; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RenderPassEndingAccessResolveSubresourceParameters.cs b/src/Vortice.Win32.Direct3D12/Generated/RenderPassEndingAccessResolveSubresourceParameters.cs index 3c354e2..b5adac3 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RenderPassEndingAccessResolveSubresourceParameters.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RenderPassEndingAccessResolveSubresourceParameters.cs @@ -9,22 +9,22 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RENDER_PASS_ENDING_ACCESS_RESOLVE_SUBRESOURCE_PARAMETERS public partial struct RenderPassEndingAccessResolveSubresourceParameters { - /// + /// public uint SrcSubresource; - /// + /// public uint DstSubresource; - /// + /// public uint DstX; - /// + /// public uint DstY; - /// + /// public RawRect SrcRect; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RenderPassEndingAccessType.cs b/src/Vortice.Win32.Direct3D12/Generated/RenderPassEndingAccessType.cs index 0bc425b..8aea2de 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RenderPassEndingAccessType.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RenderPassEndingAccessType.cs @@ -9,20 +9,20 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RENDER_PASS_ENDING_ACCESS_TYPE public enum RenderPassEndingAccessType : int { - /// + /// /// D3D12_RENDER_PASS_ENDING_ACCESS_TYPE_DISCARD Discard = 0, - /// + /// /// D3D12_RENDER_PASS_ENDING_ACCESS_TYPE_PRESERVE Preserve = 1, - /// + /// /// D3D12_RENDER_PASS_ENDING_ACCESS_TYPE_RESOLVE Resolve = 2, - /// + /// /// D3D12_RENDER_PASS_ENDING_ACCESS_TYPE_NO_ACCESS NoAccess = 3, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RenderPassFlags.cs b/src/Vortice.Win32.Direct3D12/Generated/RenderPassFlags.cs index 253b750..410753c 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RenderPassFlags.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RenderPassFlags.cs @@ -9,21 +9,21 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RENDER_PASS_FLAGS [Flags] public enum RenderPassFlags : uint { - /// + /// /// D3D12_RENDER_PASS_FLAG_NONE None = 0, - /// + /// /// D3D12_RENDER_PASS_FLAG_ALLOW_UAV_WRITES AllowUavWrites = 1, - /// + /// /// D3D12_RENDER_PASS_FLAG_SUSPENDING_PASS SuspendingPass = 2, - /// + /// /// D3D12_RENDER_PASS_FLAG_RESUMING_PASS ResumingPass = 4, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RenderPassRenderTargetDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/RenderPassRenderTargetDescription.cs index a54462f..d79cd87 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RenderPassRenderTargetDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RenderPassRenderTargetDescription.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RENDER_PASS_RENDER_TARGET_DESC public partial struct RenderPassRenderTargetDescription { - /// + /// public CpuDescriptorHandle cpuDescriptor; - /// + /// public RenderPassBeginningAccess BeginningAccess; - /// + /// public RenderPassEndingAccess EndingAccess; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RenderPassTier.cs b/src/Vortice.Win32.Direct3D12/Generated/RenderPassTier.cs index 507d66d..fb2886f 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RenderPassTier.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RenderPassTier.cs @@ -9,17 +9,17 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RENDER_PASS_TIER public enum RenderPassTier : int { - /// + /// /// D3D12_RENDER_PASS_TIER_0 Tier0 = 0, - /// + /// /// D3D12_RENDER_PASS_TIER_1 Tier1 = 1, - /// + /// /// D3D12_RENDER_PASS_TIER_2 Tier2 = 2, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RenderTargetBlendDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/RenderTargetBlendDescription.cs index 1dd946a..9a24f81 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RenderTargetBlendDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RenderTargetBlendDescription.cs @@ -9,37 +9,37 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RENDER_TARGET_BLEND_DESC public partial struct RenderTargetBlendDescription { - /// + /// public Bool32 BlendEnable; - /// + /// public Bool32 LogicOpEnable; - /// + /// public Blend SrcBlend; - /// + /// public Blend DestBlend; - /// + /// public BlendOperation BlendOp; - /// + /// public Blend SrcBlendAlpha; - /// + /// public Blend DestBlendAlpha; - /// + /// public BlendOperation BlendOpAlpha; - /// + /// public LogicOperation LogicOp; - /// + /// public ColorWriteEnable RenderTargetWriteMask; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RenderTargetViewDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/RenderTargetViewDescription.cs index 7c9511c..5cb1604 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RenderTargetViewDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RenderTargetViewDescription.cs @@ -9,17 +9,17 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RENDER_TARGET_VIEW_DESC public partial struct RenderTargetViewDescription { - /// + /// public Graphics.Dxgi.Common.Format Format; - /// + /// public RtvDimension ViewDimension; - /// + /// public _Anonymous_e__Union Anonymous; [UnscopedRef] @@ -105,35 +105,35 @@ public partial struct RenderTargetViewDescription [StructLayout(LayoutKind.Explicit)] public partial struct _Anonymous_e__Union { - /// + /// [FieldOffset(0)] public BufferRtv Buffer; - /// + /// [FieldOffset(0)] public Texture1DRtv Texture1D; - /// + /// [FieldOffset(0)] public Texture1DArrayRtv Texture1DArray; - /// + /// [FieldOffset(0)] public Texture2DRtv Texture2D; - /// + /// [FieldOffset(0)] public Texture2DArrayRtv Texture2DArray; - /// + /// [FieldOffset(0)] public Texture2DMsRtv Texture2DMS; - /// + /// [FieldOffset(0)] public Texture2DMsArrayRtv Texture2DMSArray; - /// + /// [FieldOffset(0)] public Texture3DRtv Texture3D; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ReportLiveDeviceObjectFlags.cs b/src/Vortice.Win32.Direct3D12/Generated/ReportLiveDeviceObjectFlags.cs index 8c0875b..bc10847 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ReportLiveDeviceObjectFlags.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ReportLiveDeviceObjectFlags.cs @@ -9,21 +9,21 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RLDO_FLAGS [Flags] public enum ReportLiveDeviceObjectFlags : int { - /// + /// /// D3D12_RLDO_NONE None = 0, - /// + /// /// D3D12_RLDO_SUMMARY Summary = 1, - /// + /// /// D3D12_RLDO_DETAIL Detail = 2, - /// + /// /// D3D12_RLDO_IGNORE_INTERNAL IgnoreInternal = 4, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ResidencyFlags.cs b/src/Vortice.Win32.Direct3D12/Generated/ResidencyFlags.cs index c0357a1..be9751f 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ResidencyFlags.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ResidencyFlags.cs @@ -9,15 +9,15 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RESIDENCY_FLAGS [Flags] public enum ResidencyFlags : uint { - /// + /// /// D3D12_RESIDENCY_FLAG_NONE None = 0, - /// + /// /// D3D12_RESIDENCY_FLAG_DENY_OVERBUDGET DenyOverBudget = 1, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ResidencyPriority.cs b/src/Vortice.Win32.Direct3D12/Generated/ResidencyPriority.cs index 9f34c93..0c86eae 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ResidencyPriority.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ResidencyPriority.cs @@ -9,23 +9,23 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RESIDENCY_PRIORITY public enum ResidencyPriority : int { - /// + /// /// D3D12_RESIDENCY_PRIORITY_MINIMUM Minimum = 671088640, - /// + /// /// D3D12_RESIDENCY_PRIORITY_LOW Low = 1342177280, - /// + /// /// D3D12_RESIDENCY_PRIORITY_NORMAL Normal = 2013265920, - /// + /// /// D3D12_RESIDENCY_PRIORITY_HIGH High = -1610547200, - /// + /// /// D3D12_RESIDENCY_PRIORITY_MAXIMUM Maximum = -939524096, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ResolveMode.cs b/src/Vortice.Win32.Direct3D12/Generated/ResolveMode.cs index 114a7c9..c75a06f 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ResolveMode.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ResolveMode.cs @@ -9,26 +9,26 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RESOLVE_MODE public enum ResolveMode : int { - /// + /// /// D3D12_RESOLVE_MODE_DECOMPRESS Decompress = 0, - /// + /// /// D3D12_RESOLVE_MODE_MIN Min = 1, - /// + /// /// D3D12_RESOLVE_MODE_MAX Max = 2, - /// + /// /// D3D12_RESOLVE_MODE_AVERAGE Average = 3, - /// + /// /// D3D12_RESOLVE_MODE_ENCODE_SAMPLER_FEEDBACK EncodeSamplerFeedback = 4, - /// + /// /// D3D12_RESOLVE_MODE_DECODE_SAMPLER_FEEDBACK DecodeSamplerFeedback = 5, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ResourceAliasingBarrier.cs b/src/Vortice.Win32.Direct3D12/Generated/ResourceAliasingBarrier.cs index e138a02..ac227c8 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ResourceAliasingBarrier.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ResourceAliasingBarrier.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RESOURCE_ALIASING_BARRIER public partial struct ResourceAliasingBarrier { - /// + /// public unsafe ID3D12Resource* pResourceBefore; - /// + /// public unsafe ID3D12Resource* pResourceAfter; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ResourceAllocationInfo.cs b/src/Vortice.Win32.Direct3D12/Generated/ResourceAllocationInfo.cs index f36453d..ade12d5 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ResourceAllocationInfo.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ResourceAllocationInfo.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RESOURCE_ALLOCATION_INFO public partial struct ResourceAllocationInfo { - /// + /// public ulong SizeInBytes; - /// + /// public ulong Alignment; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ResourceAllocationInfo1.cs b/src/Vortice.Win32.Direct3D12/Generated/ResourceAllocationInfo1.cs index 71aaa15..06b0aee 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ResourceAllocationInfo1.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ResourceAllocationInfo1.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RESOURCE_ALLOCATION_INFO1 public partial struct ResourceAllocationInfo1 { - /// + /// public ulong Offset; - /// + /// public ulong Alignment; - /// + /// public ulong SizeInBytes; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ResourceBarrier.cs b/src/Vortice.Win32.Direct3D12/Generated/ResourceBarrier.cs index 32ba27d..a3bfd55 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ResourceBarrier.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ResourceBarrier.cs @@ -9,17 +9,17 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RESOURCE_BARRIER public partial struct ResourceBarrier { - /// + /// public ResourceBarrierType Type; - /// + /// public ResourceBarrierFlags Flags; - /// + /// public _Anonymous_e__Union Anonymous; [UnscopedRef] @@ -55,15 +55,15 @@ public partial struct ResourceBarrier [StructLayout(LayoutKind.Explicit)] public partial struct _Anonymous_e__Union { - /// + /// [FieldOffset(0)] public ResourceTransitionBarrier Transition; - /// + /// [FieldOffset(0)] public ResourceAliasingBarrier Aliasing; - /// + /// [FieldOffset(0)] public ResourceUavBarrier UAV; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ResourceBarrierFlags.cs b/src/Vortice.Win32.Direct3D12/Generated/ResourceBarrierFlags.cs index e4437e1..dcf0f4c 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ResourceBarrierFlags.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ResourceBarrierFlags.cs @@ -9,18 +9,18 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RESOURCE_BARRIER_FLAGS [Flags] public enum ResourceBarrierFlags : uint { - /// + /// /// D3D12_RESOURCE_BARRIER_FLAG_NONE None = 0, - /// + /// /// D3D12_RESOURCE_BARRIER_FLAG_BEGIN_ONLY BeginOnly = 1, - /// + /// /// D3D12_RESOURCE_BARRIER_FLAG_END_ONLY EndOnly = 2, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ResourceBarrierType.cs b/src/Vortice.Win32.Direct3D12/Generated/ResourceBarrierType.cs index ec05a13..6b98e17 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ResourceBarrierType.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ResourceBarrierType.cs @@ -9,17 +9,17 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RESOURCE_BARRIER_TYPE public enum ResourceBarrierType : int { - /// + /// /// D3D12_RESOURCE_BARRIER_TYPE_TRANSITION Transition = 0, - /// + /// /// D3D12_RESOURCE_BARRIER_TYPE_ALIASING Aliasing = 1, - /// + /// /// D3D12_RESOURCE_BARRIER_TYPE_UAV Uav = 2, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ResourceBindingTier.cs b/src/Vortice.Win32.Direct3D12/Generated/ResourceBindingTier.cs index 92ef4ca..f9d022f 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ResourceBindingTier.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ResourceBindingTier.cs @@ -9,17 +9,17 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RESOURCE_BINDING_TIER public enum ResourceBindingTier : int { - /// + /// /// D3D12_RESOURCE_BINDING_TIER_1 Tier1 = 1, - /// + /// /// D3D12_RESOURCE_BINDING_TIER_2 Tier2 = 2, - /// + /// /// D3D12_RESOURCE_BINDING_TIER_3 Tier3 = 3, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ResourceDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/ResourceDescription.cs index 0442d6f..2d184a6 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ResourceDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ResourceDescription.cs @@ -9,37 +9,37 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RESOURCE_DESC public partial struct ResourceDescription { - /// + /// public ResourceDimension Dimension; - /// + /// public ulong Alignment; - /// + /// public ulong Width; - /// + /// public uint Height; - /// + /// public ushort DepthOrArraySize; - /// + /// public ushort MipLevels; - /// + /// public Graphics.Dxgi.Common.Format Format; - /// + /// public Graphics.Dxgi.Common.SampleDescription SampleDesc; - /// + /// public TextureLayout Layout; - /// + /// public ResourceFlags Flags; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ResourceDescription1.cs b/src/Vortice.Win32.Direct3D12/Generated/ResourceDescription1.cs index 8037784..7bf1063 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ResourceDescription1.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ResourceDescription1.cs @@ -9,40 +9,40 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RESOURCE_DESC1 public partial struct ResourceDescription1 { - /// + /// public ResourceDimension Dimension; - /// + /// public ulong Alignment; - /// + /// public ulong Width; - /// + /// public uint Height; - /// + /// public ushort DepthOrArraySize; - /// + /// public ushort MipLevels; - /// + /// public Graphics.Dxgi.Common.Format Format; - /// + /// public Graphics.Dxgi.Common.SampleDescription SampleDesc; - /// + /// public TextureLayout Layout; - /// + /// public ResourceFlags Flags; - /// + /// public MipRegion SamplerFeedbackMipRegion; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ResourceDimension.cs b/src/Vortice.Win32.Direct3D12/Generated/ResourceDimension.cs index a9de8c5..8f3c39b 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ResourceDimension.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ResourceDimension.cs @@ -9,23 +9,23 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RESOURCE_DIMENSION public enum ResourceDimension : int { - /// + /// /// D3D12_RESOURCE_DIMENSION_UNKNOWN Unknown = 0, - /// + /// /// D3D12_RESOURCE_DIMENSION_BUFFER Buffer = 1, - /// + /// /// D3D12_RESOURCE_DIMENSION_TEXTURE1D Texture1D = 2, - /// + /// /// D3D12_RESOURCE_DIMENSION_TEXTURE2D Texture2D = 3, - /// + /// /// D3D12_RESOURCE_DIMENSION_TEXTURE3D Texture3D = 4, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ResourceFlags.cs b/src/Vortice.Win32.Direct3D12/Generated/ResourceFlags.cs index 1395fae..7fb2ac7 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ResourceFlags.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ResourceFlags.cs @@ -9,36 +9,36 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RESOURCE_FLAGS [Flags] public enum ResourceFlags : uint { - /// + /// /// D3D12_RESOURCE_FLAG_NONE None = 0, - /// + /// /// D3D12_RESOURCE_FLAG_ALLOW_RENDER_TARGET AllowRenderTarget = 1, - /// + /// /// D3D12_RESOURCE_FLAG_ALLOW_DEPTH_STENCIL AllowDepthStencil = 2, - /// + /// /// D3D12_RESOURCE_FLAG_ALLOW_UNORDERED_ACCESS AllowUnorderedAccess = 4, - /// + /// /// D3D12_RESOURCE_FLAG_DENY_SHADER_RESOURCE DenyShaderResource = 8, - /// + /// /// D3D12_RESOURCE_FLAG_ALLOW_CROSS_ADAPTER AllowCrossAdapter = 16, - /// + /// /// D3D12_RESOURCE_FLAG_ALLOW_SIMULTANEOUS_ACCESS AllowSimultaneousAccess = 32, - /// + /// /// D3D12_RESOURCE_FLAG_VIDEO_DECODE_REFERENCE_ONLY VideoDecodeReferenceOnly = 64, - /// + /// /// D3D12_RESOURCE_FLAG_VIDEO_ENCODE_REFERENCE_ONLY VideoEncodeReferenceOnly = 128, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ResourceHeapTier.cs b/src/Vortice.Win32.Direct3D12/Generated/ResourceHeapTier.cs index 9747d30..a67cbac 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ResourceHeapTier.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ResourceHeapTier.cs @@ -9,14 +9,14 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RESOURCE_HEAP_TIER public enum ResourceHeapTier : int { - /// + /// /// D3D12_RESOURCE_HEAP_TIER_1 Tier1 = 1, - /// + /// /// D3D12_RESOURCE_HEAP_TIER_2 Tier2 = 2, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ResourceStates.cs b/src/Vortice.Win32.Direct3D12/Generated/ResourceStates.cs index 126ffbc..7fa7eb8 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ResourceStates.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ResourceStates.cs @@ -9,91 +9,91 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RESOURCE_STATES [Flags] public enum ResourceStates : uint { None = 0, - /// + /// /// D3D12_RESOURCE_STATE_COMMON Common = 0, - /// + /// /// D3D12_RESOURCE_STATE_VERTEX_AND_CONSTANT_BUFFER VertexAndConstantBuffer = 1, - /// + /// /// D3D12_RESOURCE_STATE_INDEX_BUFFER IndexBuffer = 2, - /// + /// /// D3D12_RESOURCE_STATE_RENDER_TARGET RenderTarget = 4, - /// + /// /// D3D12_RESOURCE_STATE_UNORDERED_ACCESS UnorderedAccess = 8, - /// + /// /// D3D12_RESOURCE_STATE_DEPTH_WRITE DepthWrite = 16, - /// + /// /// D3D12_RESOURCE_STATE_DEPTH_READ DepthRead = 32, - /// + /// /// D3D12_RESOURCE_STATE_NON_PIXEL_SHADER_RESOURCE NonPixelShaderResource = 64, - /// + /// /// D3D12_RESOURCE_STATE_PIXEL_SHADER_RESOURCE PixelShaderResource = 128, - /// + /// /// D3D12_RESOURCE_STATE_STREAM_OUT StreamOut = 256, - /// + /// /// D3D12_RESOURCE_STATE_INDIRECT_ARGUMENT IndirectArgument = 512, - /// + /// /// D3D12_RESOURCE_STATE_COPY_DEST CopyDest = 1024, - /// + /// /// D3D12_RESOURCE_STATE_COPY_SOURCE CopySource = 2048, - /// + /// /// D3D12_RESOURCE_STATE_RESOLVE_DEST ResolveDest = 4096, - /// + /// /// D3D12_RESOURCE_STATE_RESOLVE_SOURCE ResolveSource = 8192, - /// + /// /// D3D12_RESOURCE_STATE_RAYTRACING_ACCELERATION_STRUCTURE RaytracingAccelerationStructure = 4194304, - /// + /// /// D3D12_RESOURCE_STATE_SHADING_RATE_SOURCE ShadingRateSource = 16777216, - /// + /// /// D3D12_RESOURCE_STATE_GENERIC_READ GenericRead = 2755, - /// + /// /// D3D12_RESOURCE_STATE_ALL_SHADER_RESOURCE AllShaderResource = 192, - /// + /// /// D3D12_RESOURCE_STATE_PRESENT Present = 0, - /// + /// /// D3D12_RESOURCE_STATE_PREDICATION Predication = 512, - /// + /// /// D3D12_RESOURCE_STATE_VIDEO_DECODE_READ VideoDecodeRead = 65536, - /// + /// /// D3D12_RESOURCE_STATE_VIDEO_DECODE_WRITE VideoDecodeWrite = 131072, - /// + /// /// D3D12_RESOURCE_STATE_VIDEO_PROCESS_READ VideoProcessRead = 262144, - /// + /// /// D3D12_RESOURCE_STATE_VIDEO_PROCESS_WRITE VideoProcessWrite = 524288, - /// + /// /// D3D12_RESOURCE_STATE_VIDEO_ENCODE_READ VideoEncodeRead = 2097152, - /// + /// /// D3D12_RESOURCE_STATE_VIDEO_ENCODE_WRITE VideoEncodeWrite = 8388608, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ResourceTransitionBarrier.cs b/src/Vortice.Win32.Direct3D12/Generated/ResourceTransitionBarrier.cs index 5270f5c..6243053 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ResourceTransitionBarrier.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ResourceTransitionBarrier.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RESOURCE_TRANSITION_BARRIER public partial struct ResourceTransitionBarrier { - /// + /// public unsafe ID3D12Resource* pResource; - /// + /// public uint Subresource; - /// + /// public ResourceStates StateBefore; - /// + /// public ResourceStates StateAfter; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ResourceUavBarrier.cs b/src/Vortice.Win32.Direct3D12/Generated/ResourceUavBarrier.cs index 9f94843..9dcd9c6 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ResourceUavBarrier.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ResourceUavBarrier.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RESOURCE_UAV_BARRIER public partial struct ResourceUavBarrier { - /// + /// public unsafe ID3D12Resource* pResource; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RootConstants.cs b/src/Vortice.Win32.Direct3D12/Generated/RootConstants.cs index 78a9b08..2cec74f 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RootConstants.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RootConstants.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_ROOT_CONSTANTS public partial struct RootConstants { - /// + /// public uint ShaderRegister; - /// + /// public uint RegisterSpace; - /// + /// public uint Num32BitValues; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RootDescriptor.cs b/src/Vortice.Win32.Direct3D12/Generated/RootDescriptor.cs index 584b1ed..63b9fa0 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RootDescriptor.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RootDescriptor.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_ROOT_DESCRIPTOR public partial struct RootDescriptor { - /// + /// public uint ShaderRegister; - /// + /// public uint RegisterSpace; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RootDescriptor1.cs b/src/Vortice.Win32.Direct3D12/Generated/RootDescriptor1.cs index 8496aee..3751d91 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RootDescriptor1.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RootDescriptor1.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_ROOT_DESCRIPTOR1 public partial struct RootDescriptor1 { - /// + /// public uint ShaderRegister; - /// + /// public uint RegisterSpace; - /// + /// public RootDescriptorFlags Flags; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RootDescriptorFlags.cs b/src/Vortice.Win32.Direct3D12/Generated/RootDescriptorFlags.cs index 4074b46..72b28fe 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RootDescriptorFlags.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RootDescriptorFlags.cs @@ -9,21 +9,21 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_ROOT_DESCRIPTOR_FLAGS [Flags] public enum RootDescriptorFlags : uint { - /// + /// /// D3D12_ROOT_DESCRIPTOR_FLAG_NONE None = 0, - /// + /// /// D3D12_ROOT_DESCRIPTOR_FLAG_DATA_VOLATILE DataVolatile = 2, - /// + /// /// D3D12_ROOT_DESCRIPTOR_FLAG_DATA_STATIC_WHILE_SET_AT_EXECUTE DataStaticWhileSetAtExecute = 4, - /// + /// /// D3D12_ROOT_DESCRIPTOR_FLAG_DATA_STATIC DataStatic = 8, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RootDescriptorTable.cs b/src/Vortice.Win32.Direct3D12/Generated/RootDescriptorTable.cs index 0cf3779..ae313d4 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RootDescriptorTable.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RootDescriptorTable.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_ROOT_DESCRIPTOR_TABLE public partial struct RootDescriptorTable { - /// + /// public uint NumDescriptorRanges; - /// + /// public unsafe DescriptorRange* pDescriptorRanges; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RootDescriptorTable1.cs b/src/Vortice.Win32.Direct3D12/Generated/RootDescriptorTable1.cs index e5f279e..193eb20 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RootDescriptorTable1.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RootDescriptorTable1.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_ROOT_DESCRIPTOR_TABLE1 public partial struct RootDescriptorTable1 { - /// + /// public uint NumDescriptorRanges; - /// + /// public unsafe DescriptorRange1* pDescriptorRanges; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RootParameter.cs b/src/Vortice.Win32.Direct3D12/Generated/RootParameter.cs index f6fa6ba..4affaef 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RootParameter.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RootParameter.cs @@ -9,17 +9,17 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_ROOT_PARAMETER public partial struct RootParameter { - /// + /// public RootParameterType ParameterType; - /// + /// public _Anonymous_e__Union Anonymous; - /// + /// public ShaderVisibility ShaderVisibility; [UnscopedRef] @@ -55,15 +55,15 @@ public partial struct RootParameter [StructLayout(LayoutKind.Explicit)] public partial struct _Anonymous_e__Union { - /// + /// [FieldOffset(0)] public RootDescriptorTable DescriptorTable; - /// + /// [FieldOffset(0)] public RootConstants Constants; - /// + /// [FieldOffset(0)] public RootDescriptor Descriptor; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RootParameter1.cs b/src/Vortice.Win32.Direct3D12/Generated/RootParameter1.cs index 976b183..f54621a 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RootParameter1.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RootParameter1.cs @@ -9,17 +9,17 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_ROOT_PARAMETER1 public partial struct RootParameter1 { - /// + /// public RootParameterType ParameterType; - /// + /// public _Anonymous_e__Union Anonymous; - /// + /// public ShaderVisibility ShaderVisibility; [UnscopedRef] @@ -55,15 +55,15 @@ public partial struct RootParameter1 [StructLayout(LayoutKind.Explicit)] public partial struct _Anonymous_e__Union { - /// + /// [FieldOffset(0)] public RootDescriptorTable1 DescriptorTable; - /// + /// [FieldOffset(0)] public RootConstants Constants; - /// + /// [FieldOffset(0)] public RootDescriptor1 Descriptor; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RootParameterType.cs b/src/Vortice.Win32.Direct3D12/Generated/RootParameterType.cs index 93d2425..b12a998 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RootParameterType.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RootParameterType.cs @@ -9,23 +9,23 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_ROOT_PARAMETER_TYPE public enum RootParameterType : int { - /// + /// /// D3D12_ROOT_PARAMETER_TYPE_DESCRIPTOR_TABLE DescriptorTable = 0, - /// + /// /// D3D12_ROOT_PARAMETER_TYPE_32BIT_CONSTANTS T32BitConstants = 1, - /// + /// /// D3D12_ROOT_PARAMETER_TYPE_CBV Cbv = 2, - /// + /// /// D3D12_ROOT_PARAMETER_TYPE_SRV Srv = 3, - /// + /// /// D3D12_ROOT_PARAMETER_TYPE_UAV Uav = 4, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RootSignatureDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/RootSignatureDescription.cs index c83054c..603fe52 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RootSignatureDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RootSignatureDescription.cs @@ -9,22 +9,22 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_ROOT_SIGNATURE_DESC public partial struct RootSignatureDescription { - /// + /// public uint NumParameters; - /// + /// public unsafe RootParameter* pParameters; - /// + /// public uint NumStaticSamplers; - /// + /// public unsafe StaticSamplerDescription* pStaticSamplers; - /// + /// public RootSignatureFlags Flags; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RootSignatureDescription1.cs b/src/Vortice.Win32.Direct3D12/Generated/RootSignatureDescription1.cs index 18b52b3..b3ebbd4 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RootSignatureDescription1.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RootSignatureDescription1.cs @@ -9,22 +9,22 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_ROOT_SIGNATURE_DESC1 public partial struct RootSignatureDescription1 { - /// + /// public uint NumParameters; - /// + /// public unsafe RootParameter1* pParameters; - /// + /// public uint NumStaticSamplers; - /// + /// public unsafe StaticSamplerDescription* pStaticSamplers; - /// + /// public RootSignatureFlags Flags; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RootSignatureFlags.cs b/src/Vortice.Win32.Direct3D12/Generated/RootSignatureFlags.cs index 1bde723..c186ae6 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RootSignatureFlags.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RootSignatureFlags.cs @@ -9,48 +9,48 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_ROOT_SIGNATURE_FLAGS [Flags] public enum RootSignatureFlags : uint { - /// + /// /// D3D12_ROOT_SIGNATURE_FLAG_NONE None = 0, - /// + /// /// D3D12_ROOT_SIGNATURE_FLAG_ALLOW_INPUT_ASSEMBLER_INPUT_LAYOUT AllowInputAssemblerInputLayout = 1, - /// + /// /// D3D12_ROOT_SIGNATURE_FLAG_DENY_VERTEX_SHADER_ROOT_ACCESS DenyVertexShaderRootAccess = 2, - /// + /// /// D3D12_ROOT_SIGNATURE_FLAG_DENY_HULL_SHADER_ROOT_ACCESS DenyHullShaderRootAccess = 4, - /// + /// /// D3D12_ROOT_SIGNATURE_FLAG_DENY_DOMAIN_SHADER_ROOT_ACCESS DenyDomainShaderRootAccess = 8, - /// + /// /// D3D12_ROOT_SIGNATURE_FLAG_DENY_GEOMETRY_SHADER_ROOT_ACCESS DenyGeometryShaderRootAccess = 16, - /// + /// /// D3D12_ROOT_SIGNATURE_FLAG_DENY_PIXEL_SHADER_ROOT_ACCESS DenyPixelShaderRootAccess = 32, - /// + /// /// D3D12_ROOT_SIGNATURE_FLAG_ALLOW_STREAM_OUTPUT AllowStreamOutput = 64, - /// + /// /// D3D12_ROOT_SIGNATURE_FLAG_LOCAL_ROOT_SIGNATURE LocalRootSignature = 128, - /// + /// /// D3D12_ROOT_SIGNATURE_FLAG_DENY_AMPLIFICATION_SHADER_ROOT_ACCESS DenyAmplificationShaderRootAccess = 256, - /// + /// /// D3D12_ROOT_SIGNATURE_FLAG_DENY_MESH_SHADER_ROOT_ACCESS DenyMeshShaderRootAccess = 512, - /// + /// /// D3D12_ROOT_SIGNATURE_FLAG_CBV_SRV_UAV_HEAP_DIRECTLY_INDEXED CbvSrvUavHeapDirectlyIndexed = 1024, - /// + /// /// D3D12_ROOT_SIGNATURE_FLAG_SAMPLER_HEAP_DIRECTLY_INDEXED SamplerHeapDirectlyIndexed = 2048, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RootSignatureVersion.cs b/src/Vortice.Win32.Direct3D12/Generated/RootSignatureVersion.cs index b6a221c..6622af0 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RootSignatureVersion.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RootSignatureVersion.cs @@ -9,14 +9,14 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D_ROOT_SIGNATURE_VERSION public enum RootSignatureVersion : int { - /// + /// /// D3D_ROOT_SIGNATURE_VERSION_1_0 V1_0 = 1, - /// + /// /// D3D_ROOT_SIGNATURE_VERSION_1_1 V1_1 = 2, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RtFormatArray.cs b/src/Vortice.Win32.Direct3D12/Generated/RtFormatArray.cs index 0f60439..aec9a56 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RtFormatArray.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RtFormatArray.cs @@ -9,11 +9,11 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RT_FORMAT_ARRAY public partial struct RtFormatArray { - /// + /// public RTFormats__FixedBuffer RTFormats; public unsafe struct RTFormats__FixedBuffer @@ -45,6 +45,6 @@ public partial struct RtFormatArray } } - /// + /// public uint NumRenderTargets; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/RtvDimension.cs b/src/Vortice.Win32.Direct3D12/Generated/RtvDimension.cs index b31fcab..810f282 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/RtvDimension.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/RtvDimension.cs @@ -9,35 +9,35 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_RTV_DIMENSION public enum RtvDimension : int { - /// + /// /// D3D12_RTV_DIMENSION_UNKNOWN Unknown = 0, - /// + /// /// D3D12_RTV_DIMENSION_BUFFER Buffer = 1, - /// + /// /// D3D12_RTV_DIMENSION_TEXTURE1D Texture1D = 2, - /// + /// /// D3D12_RTV_DIMENSION_TEXTURE1DARRAY Texture1DArray = 3, - /// + /// /// D3D12_RTV_DIMENSION_TEXTURE2D Texture2D = 4, - /// + /// /// D3D12_RTV_DIMENSION_TEXTURE2DARRAY Texture2DArray = 5, - /// + /// /// D3D12_RTV_DIMENSION_TEXTURE2DMS Texture2DMs = 6, - /// + /// /// D3D12_RTV_DIMENSION_TEXTURE2DMSARRAY Texture2DMsArray = 7, - /// + /// /// D3D12_RTV_DIMENSION_TEXTURE3D Texture3D = 8, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/SODeclarationEntry.cs b/src/Vortice.Win32.Direct3D12/Generated/SODeclarationEntry.cs index 17198a2..408702a 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/SODeclarationEntry.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/SODeclarationEntry.cs @@ -9,25 +9,25 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_SO_DECLARATION_ENTRY public partial struct SODeclarationEntry { - /// + /// public uint Stream; - /// + /// public unsafe sbyte* SemanticName; - /// + /// public uint SemanticIndex; - /// + /// public byte StartComponent; - /// + /// public byte ComponentCount; - /// + /// public byte OutputSlot; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/SamplePosition.cs b/src/Vortice.Win32.Direct3D12/Generated/SamplePosition.cs index b146052..8407e76 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/SamplePosition.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/SamplePosition.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_SAMPLE_POSITION public partial struct SamplePosition { - /// + /// public sbyte X; - /// + /// public sbyte Y; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/SamplerDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/SamplerDescription.cs index b779567..0717dd9 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/SamplerDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/SamplerDescription.cs @@ -9,37 +9,37 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_SAMPLER_DESC public partial struct SamplerDescription { - /// + /// public Filter Filter; - /// + /// public TextureAddressMode AddressU; - /// + /// public TextureAddressMode AddressV; - /// + /// public TextureAddressMode AddressW; - /// + /// public float MipLODBias; - /// + /// public uint MaxAnisotropy; - /// + /// public ComparisonFunction ComparisonFunc; - /// + /// public unsafe fixed float BorderColor[4]; - /// + /// public float MinLOD; - /// + /// public float MaxLOD; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/SamplerFeedbackTier.cs b/src/Vortice.Win32.Direct3D12/Generated/SamplerFeedbackTier.cs index cfa347c..b624a8c 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/SamplerFeedbackTier.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/SamplerFeedbackTier.cs @@ -9,17 +9,17 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_SAMPLER_FEEDBACK_TIER public enum SamplerFeedbackTier : int { - /// + /// /// D3D12_SAMPLER_FEEDBACK_TIER_NOT_SUPPORTED NotSupported = 0, - /// + /// /// D3D12_SAMPLER_FEEDBACK_TIER_0_9 Tier0_9 = 90, - /// + /// /// D3D12_SAMPLER_FEEDBACK_TIER_1_0 Tier1_0 = 100, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/SerializedDataDriverMatchingIdentifier.cs b/src/Vortice.Win32.Direct3D12/Generated/SerializedDataDriverMatchingIdentifier.cs index 9fc8e6f..482b2e9 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/SerializedDataDriverMatchingIdentifier.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/SerializedDataDriverMatchingIdentifier.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_SERIALIZED_DATA_DRIVER_MATCHING_IDENTIFIER public partial struct SerializedDataDriverMatchingIdentifier { - /// + /// public Guid DriverOpaqueGUID; - /// + /// public unsafe fixed byte DriverOpaqueVersioningData[16]; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/SerializedDataType.cs b/src/Vortice.Win32.Direct3D12/Generated/SerializedDataType.cs index 4dfa2b0..32805f3 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/SerializedDataType.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/SerializedDataType.cs @@ -9,11 +9,11 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_SERIALIZED_DATA_TYPE public enum SerializedDataType : int { - /// + /// /// D3D12_SERIALIZED_DATA_RAYTRACING_ACCELERATION_STRUCTURE RaytracingAccelerationStructure = 0, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/SerializedRaytracingAccelerationStructureHeader.cs b/src/Vortice.Win32.Direct3D12/Generated/SerializedRaytracingAccelerationStructureHeader.cs index f5d7511..8dce11f 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/SerializedRaytracingAccelerationStructureHeader.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/SerializedRaytracingAccelerationStructureHeader.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_SERIALIZED_RAYTRACING_ACCELERATION_STRUCTURE_HEADER public partial struct SerializedRaytracingAccelerationStructureHeader { - /// + /// public SerializedDataDriverMatchingIdentifier DriverMatchingIdentifier; - /// + /// public ulong SerializedSizeInBytesIncludingHeader; - /// + /// public ulong DeserializedSizeInBytes; - /// + /// public ulong NumBottomLevelAccelerationStructurePointersAfterHeader; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ShaderBufferDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/ShaderBufferDescription.cs index 2e073c5..f137b60 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ShaderBufferDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ShaderBufferDescription.cs @@ -9,22 +9,22 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_SHADER_BUFFER_DESC public partial struct ShaderBufferDescription { - /// + /// public unsafe sbyte* Name; - /// + /// public Graphics.Direct3D.CBufferType Type; - /// + /// public uint Variables; - /// + /// public uint Size; - /// + /// public uint uFlags; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ShaderBytecode.cs b/src/Vortice.Win32.Direct3D12/Generated/ShaderBytecode.cs index e196e3a..164b896 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ShaderBytecode.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ShaderBytecode.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_SHADER_BYTECODE public partial struct ShaderBytecode { - /// + /// public unsafe void* pShaderBytecode; - /// + /// public nuint BytecodeLength; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ShaderCacheControlFlags.cs b/src/Vortice.Win32.Direct3D12/Generated/ShaderCacheControlFlags.cs index 1e8f817..ecb320d 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ShaderCacheControlFlags.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ShaderCacheControlFlags.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_SHADER_CACHE_CONTROL_FLAGS [Flags] public enum ShaderCacheControlFlags : uint { None = 0, - /// + /// /// D3D12_SHADER_CACHE_CONTROL_FLAG_DISABLE Disable = 1, - /// + /// /// D3D12_SHADER_CACHE_CONTROL_FLAG_ENABLE Enable = 2, - /// + /// /// D3D12_SHADER_CACHE_CONTROL_FLAG_CLEAR Clear = 4, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ShaderCacheFlags.cs b/src/Vortice.Win32.Direct3D12/Generated/ShaderCacheFlags.cs index 36ad2f4..5d1de1f 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ShaderCacheFlags.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ShaderCacheFlags.cs @@ -9,18 +9,18 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_SHADER_CACHE_FLAGS [Flags] public enum ShaderCacheFlags : uint { - /// + /// /// D3D12_SHADER_CACHE_FLAG_NONE None = 0, - /// + /// /// D3D12_SHADER_CACHE_FLAG_DRIVER_VERSIONED DriverVersioned = 1, - /// + /// /// D3D12_SHADER_CACHE_FLAG_USE_WORKING_DIR UseWorkingDir = 2, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ShaderCacheKindFlags.cs b/src/Vortice.Win32.Direct3D12/Generated/ShaderCacheKindFlags.cs index c12472a..1049f75 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ShaderCacheKindFlags.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ShaderCacheKindFlags.cs @@ -9,22 +9,22 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_SHADER_CACHE_KIND_FLAGS [Flags] public enum ShaderCacheKindFlags : uint { None = 0, - /// + /// /// D3D12_SHADER_CACHE_KIND_FLAG_IMPLICIT_D3D_CACHE_FOR_DRIVER ImplicitD3DCacheForDriver = 1, - /// + /// /// D3D12_SHADER_CACHE_KIND_FLAG_IMPLICIT_D3D_CONVERSIONS ImplicitD3DConversions = 2, - /// + /// /// D3D12_SHADER_CACHE_KIND_FLAG_IMPLICIT_DRIVER_MANAGED ImplicitDriverManaged = 4, - /// + /// /// D3D12_SHADER_CACHE_KIND_FLAG_APPLICATION_MANAGED ApplicationManaged = 8, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ShaderCacheMode.cs b/src/Vortice.Win32.Direct3D12/Generated/ShaderCacheMode.cs index 8db2355..c354d46 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ShaderCacheMode.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ShaderCacheMode.cs @@ -9,14 +9,14 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_SHADER_CACHE_MODE public enum ShaderCacheMode : int { - /// + /// /// D3D12_SHADER_CACHE_MODE_MEMORY Memory = 0, - /// + /// /// D3D12_SHADER_CACHE_MODE_DISK Disk = 1, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ShaderCacheSessionDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/ShaderCacheSessionDescription.cs index abd23ea..f2d19a2 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ShaderCacheSessionDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ShaderCacheSessionDescription.cs @@ -9,28 +9,28 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_SHADER_CACHE_SESSION_DESC public partial struct ShaderCacheSessionDescription { - /// + /// public Guid Identifier; - /// + /// public ShaderCacheMode Mode; - /// + /// public ShaderCacheFlags Flags; - /// + /// public uint MaximumInMemoryCacheSizeBytes; - /// + /// public uint MaximumInMemoryCacheEntries; - /// + /// public uint MaximumValueFileSizeBytes; - /// + /// public ulong Version; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ShaderCacheSupportFlags.cs b/src/Vortice.Win32.Direct3D12/Generated/ShaderCacheSupportFlags.cs index 7af8b67..dd58e35 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ShaderCacheSupportFlags.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ShaderCacheSupportFlags.cs @@ -9,33 +9,33 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_SHADER_CACHE_SUPPORT_FLAGS [Flags] public enum ShaderCacheSupportFlags : uint { - /// + /// /// D3D12_SHADER_CACHE_SUPPORT_NONE None = 0, - /// + /// /// D3D12_SHADER_CACHE_SUPPORT_SINGLE_PSO SinglePso = 1, - /// + /// /// D3D12_SHADER_CACHE_SUPPORT_LIBRARY Library = 2, - /// + /// /// D3D12_SHADER_CACHE_SUPPORT_AUTOMATIC_INPROC_CACHE AutomaticInprocCache = 4, - /// + /// /// D3D12_SHADER_CACHE_SUPPORT_AUTOMATIC_DISK_CACHE AutomaticDiskCache = 8, - /// + /// /// D3D12_SHADER_CACHE_SUPPORT_DRIVER_MANAGED_CACHE DriverManagedCache = 16, - /// + /// /// D3D12_SHADER_CACHE_SUPPORT_SHADER_CONTROL_CLEAR ShaderControlClear = 32, - /// + /// /// D3D12_SHADER_CACHE_SUPPORT_SHADER_SESSION_DELETE ShaderSessionDelete = 64, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ShaderComponentMapping.cs b/src/Vortice.Win32.Direct3D12/Generated/ShaderComponentMapping.cs index f448804..8a6558b 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ShaderComponentMapping.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ShaderComponentMapping.cs @@ -9,26 +9,26 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_SHADER_COMPONENT_MAPPING public enum ShaderComponentMapping : int { - /// + /// /// D3D12_SHADER_COMPONENT_MAPPING_FROM_MEMORY_COMPONENT_0 FromMemoryComponent0 = 0, - /// + /// /// D3D12_SHADER_COMPONENT_MAPPING_FROM_MEMORY_COMPONENT_1 FromMemoryComponent1 = 1, - /// + /// /// D3D12_SHADER_COMPONENT_MAPPING_FROM_MEMORY_COMPONENT_2 FromMemoryComponent2 = 2, - /// + /// /// D3D12_SHADER_COMPONENT_MAPPING_FROM_MEMORY_COMPONENT_3 FromMemoryComponent3 = 3, - /// + /// /// D3D12_SHADER_COMPONENT_MAPPING_FORCE_VALUE_0 ForceValue0 = 4, - /// + /// /// D3D12_SHADER_COMPONENT_MAPPING_FORCE_VALUE_1 ForceValue1 = 5, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ShaderDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/ShaderDescription.cs index 1969e44..a8d4bd8 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ShaderDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ShaderDescription.cs @@ -9,121 +9,121 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_SHADER_DESC public partial struct ShaderDescription { - /// + /// public uint Version; - /// + /// public unsafe sbyte* Creator; - /// + /// public uint Flags; - /// + /// public uint ConstantBuffers; - /// + /// public uint BoundResources; - /// + /// public uint InputParameters; - /// + /// public uint OutputParameters; - /// + /// public uint InstructionCount; - /// + /// public uint TempRegisterCount; - /// + /// public uint TempArrayCount; - /// + /// public uint DefCount; - /// + /// public uint DclCount; - /// + /// public uint TextureNormalInstructions; - /// + /// public uint TextureLoadInstructions; - /// + /// public uint TextureCompInstructions; - /// + /// public uint TextureBiasInstructions; - /// + /// public uint TextureGradientInstructions; - /// + /// public uint FloatInstructionCount; - /// + /// public uint IntInstructionCount; - /// + /// public uint UintInstructionCount; - /// + /// public uint StaticFlowControlCount; - /// + /// public uint DynamicFlowControlCount; - /// + /// public uint MacroInstructionCount; - /// + /// public uint ArrayInstructionCount; - /// + /// public uint CutInstructionCount; - /// + /// public uint EmitInstructionCount; - /// + /// public Graphics.Direct3D.PrimitiveTopology GSOutputTopology; - /// + /// public uint GSMaxOutputVertexCount; - /// + /// public Graphics.Direct3D.Primitive InputPrimitive; - /// + /// public uint PatchConstantParameters; - /// + /// public uint cGSInstanceCount; - /// + /// public uint cControlPoints; - /// + /// public Graphics.Direct3D.TessellatorOutputPrimitive HSOutputPrimitive; - /// + /// public Graphics.Direct3D.TessellatorPartitioning HSPartitioning; - /// + /// public Graphics.Direct3D.TessellatorDomain TessellatorDomain; - /// + /// public uint cBarrierInstructions; - /// + /// public uint cInterlockedInstructions; - /// + /// public uint cTextureStoreInstructions; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ShaderInputBindDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/ShaderInputBindDescription.cs index 234f108..29be0a6 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ShaderInputBindDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ShaderInputBindDescription.cs @@ -9,37 +9,37 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_SHADER_INPUT_BIND_DESC public partial struct ShaderInputBindDescription { - /// + /// public unsafe sbyte* Name; - /// + /// public Graphics.Direct3D.ShaderInputType Type; - /// + /// public uint BindPoint; - /// + /// public uint BindCount; - /// + /// public uint uFlags; - /// + /// public Graphics.Direct3D.ResourceReturnType ReturnType; - /// + /// public Graphics.Direct3D.SrvDimension Dimension; - /// + /// public uint NumSamples; - /// + /// public uint Space; - /// + /// public uint uID; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ShaderMinPrecisionSupport.cs b/src/Vortice.Win32.Direct3D12/Generated/ShaderMinPrecisionSupport.cs index defc147..20337e3 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ShaderMinPrecisionSupport.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ShaderMinPrecisionSupport.cs @@ -9,18 +9,18 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_SHADER_MIN_PRECISION_SUPPORT [Flags] public enum ShaderMinPrecisionSupport : uint { - /// + /// /// D3D12_SHADER_MIN_PRECISION_SUPPORT_NONE None = 0, - /// + /// /// D3D12_SHADER_MIN_PRECISION_SUPPORT_10_BIT P10Bit = 1, - /// + /// /// D3D12_SHADER_MIN_PRECISION_SUPPORT_16_BIT P16Bit = 2, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ShaderModel.cs b/src/Vortice.Win32.Direct3D12/Generated/ShaderModel.cs index d0e242f..01274a7 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ShaderModel.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ShaderModel.cs @@ -9,35 +9,35 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D_SHADER_MODEL public enum ShaderModel : int { - /// + /// /// D3D_SHADER_MODEL_5_1 SM_5_1 = 81, - /// + /// /// D3D_SHADER_MODEL_6_0 SM_6_0 = 96, - /// + /// /// D3D_SHADER_MODEL_6_1 SM_6_1 = 97, - /// + /// /// D3D_SHADER_MODEL_6_2 SM_6_2 = 98, - /// + /// /// D3D_SHADER_MODEL_6_3 SM_6_3 = 99, - /// + /// /// D3D_SHADER_MODEL_6_4 SM_6_4 = 100, - /// + /// /// D3D_SHADER_MODEL_6_5 SM_6_5 = 101, - /// + /// /// D3D_SHADER_MODEL_6_6 SM_6_6 = 102, - /// + /// /// D3D_SHADER_MODEL_6_7 SM_6_7 = 103, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ShaderResourceViewDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/ShaderResourceViewDescription.cs index 2d4fbc2..955a6ad 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ShaderResourceViewDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ShaderResourceViewDescription.cs @@ -9,20 +9,20 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_SHADER_RESOURCE_VIEW_DESC public partial struct ShaderResourceViewDescription { - /// + /// public Graphics.Dxgi.Common.Format Format; - /// + /// public SrvDimension ViewDimension; - /// + /// public uint Shader4ComponentMapping; - /// + /// public _Anonymous_e__Union Anonymous; [UnscopedRef] @@ -138,47 +138,47 @@ public partial struct ShaderResourceViewDescription [StructLayout(LayoutKind.Explicit)] public partial struct _Anonymous_e__Union { - /// + /// [FieldOffset(0)] public BufferSrv Buffer; - /// + /// [FieldOffset(0)] public Texture1DSrv Texture1D; - /// + /// [FieldOffset(0)] public Texture1DArraySrv Texture1DArray; - /// + /// [FieldOffset(0)] public Texture2DSrv Texture2D; - /// + /// [FieldOffset(0)] public Texture2DArraySrv Texture2DArray; - /// + /// [FieldOffset(0)] public Texture2DMsSrv Texture2DMS; - /// + /// [FieldOffset(0)] public Texture2DMsArraySrv Texture2DMSArray; - /// + /// [FieldOffset(0)] public Texture3DSrv Texture3D; - /// + /// [FieldOffset(0)] public TexureCubeSrv TextureCube; - /// + /// [FieldOffset(0)] public TexureCubeArraySrv TextureCubeArray; - /// + /// [FieldOffset(0)] public RaytracingAccelerationStructureSrv RaytracingAccelerationStructure; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ShaderTypeDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/ShaderTypeDescription.cs index b231c52..3e19670 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ShaderTypeDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ShaderTypeDescription.cs @@ -9,31 +9,31 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_SHADER_TYPE_DESC public partial struct ShaderTypeDescription { - /// + /// public Graphics.Direct3D.ShaderVariableClass Class; - /// + /// public Graphics.Direct3D.ShaderVariableType Type; - /// + /// public uint Rows; - /// + /// public uint Columns; - /// + /// public uint Elements; - /// + /// public uint Members; - /// + /// public uint Offset; - /// + /// public unsafe sbyte* Name; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ShaderVariableDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/ShaderVariableDescription.cs index d36c1b4..9d40dd2 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ShaderVariableDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ShaderVariableDescription.cs @@ -9,34 +9,34 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_SHADER_VARIABLE_DESC public partial struct ShaderVariableDescription { - /// + /// public unsafe sbyte* Name; - /// + /// public uint StartOffset; - /// + /// public uint Size; - /// + /// public uint uFlags; - /// + /// public unsafe void* DefaultValue; - /// + /// public uint StartTexture; - /// + /// public uint TextureSize; - /// + /// public uint StartSampler; - /// + /// public uint SamplerSize; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ShaderVersionType.cs b/src/Vortice.Win32.Direct3D12/Generated/ShaderVersionType.cs index a47ffff..4d48f20 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ShaderVersionType.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ShaderVersionType.cs @@ -9,29 +9,29 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_SHADER_VERSION_TYPE public enum ShaderVersionType : int { - /// + /// /// D3D12_SHVER_PIXEL_SHADER PixelShader = 0, - /// + /// /// D3D12_SHVER_VERTEX_SHADER VertexShader = 1, - /// + /// /// D3D12_SHVER_GEOMETRY_SHADER GeometryShader = 2, - /// + /// /// D3D12_SHVER_HULL_SHADER HullShader = 3, - /// + /// /// D3D12_SHVER_DOMAIN_SHADER DomainShader = 4, - /// + /// /// D3D12_SHVER_COMPUTE_SHADER ComputeShader = 5, - /// + /// /// D3D12_SHVER_RESERVED0 Reserved0 = 65520, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ShaderVisibility.cs b/src/Vortice.Win32.Direct3D12/Generated/ShaderVisibility.cs index cd73e81..9344a20 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ShaderVisibility.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ShaderVisibility.cs @@ -9,32 +9,32 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_SHADER_VISIBILITY public enum ShaderVisibility : int { - /// + /// /// D3D12_SHADER_VISIBILITY_ALL All = 0, - /// + /// /// D3D12_SHADER_VISIBILITY_VERTEX Vertex = 1, - /// + /// /// D3D12_SHADER_VISIBILITY_HULL Hull = 2, - /// + /// /// D3D12_SHADER_VISIBILITY_DOMAIN Domain = 3, - /// + /// /// D3D12_SHADER_VISIBILITY_GEOMETRY Geometry = 4, - /// + /// /// D3D12_SHADER_VISIBILITY_PIXEL Pixel = 5, - /// + /// /// D3D12_SHADER_VISIBILITY_AMPLIFICATION Amplification = 6, - /// + /// /// D3D12_SHADER_VISIBILITY_MESH Mesh = 7, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ShadingRate.cs b/src/Vortice.Win32.Direct3D12/Generated/ShadingRate.cs index 85602ed..5fd22a9 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ShadingRate.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ShadingRate.cs @@ -9,29 +9,29 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_SHADING_RATE public enum ShadingRate : int { - /// + /// /// D3D12_SHADING_RATE_1X1 Rate1x1 = 0, - /// + /// /// D3D12_SHADING_RATE_1X2 Rate1x2 = 1, - /// + /// /// D3D12_SHADING_RATE_2X1 Rate2x1 = 4, - /// + /// /// D3D12_SHADING_RATE_2X2 Rate2x2 = 5, - /// + /// /// D3D12_SHADING_RATE_2X4 Rate2x4 = 6, - /// + /// /// D3D12_SHADING_RATE_4X2 Rate4x2 = 9, - /// + /// /// D3D12_SHADING_RATE_4X4 Rate4x4 = 10, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ShadingRateCombiner.cs b/src/Vortice.Win32.Direct3D12/Generated/ShadingRateCombiner.cs index 4883ab9..eae8b72 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ShadingRateCombiner.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ShadingRateCombiner.cs @@ -9,23 +9,23 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_SHADING_RATE_COMBINER public enum ShadingRateCombiner : int { - /// + /// /// D3D12_SHADING_RATE_COMBINER_PASSTHROUGH Passthrough = 0, - /// + /// /// D3D12_SHADING_RATE_COMBINER_OVERRIDE Override = 1, - /// + /// /// D3D12_SHADING_RATE_COMBINER_MIN Min = 2, - /// + /// /// D3D12_SHADING_RATE_COMBINER_MAX Max = 3, - /// + /// /// D3D12_SHADING_RATE_COMBINER_SUM Sum = 4, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/SharedResourceCompatibilityTier.cs b/src/Vortice.Win32.Direct3D12/Generated/SharedResourceCompatibilityTier.cs index 729e66f..bc9d7cb 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/SharedResourceCompatibilityTier.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/SharedResourceCompatibilityTier.cs @@ -9,17 +9,17 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_SHARED_RESOURCE_COMPATIBILITY_TIER public enum SharedResourceCompatibilityTier : int { - /// + /// /// D3D12_SHARED_RESOURCE_COMPATIBILITY_TIER_0 Tier0 = 0, - /// + /// /// D3D12_SHARED_RESOURCE_COMPATIBILITY_TIER_1 Tier1 = 1, - /// + /// /// D3D12_SHARED_RESOURCE_COMPATIBILITY_TIER_2 Tier2 = 2, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/SignatureParameterDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/SignatureParameterDescription.cs index d021d0e..a0c2a2f 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/SignatureParameterDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/SignatureParameterDescription.cs @@ -9,34 +9,34 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_SIGNATURE_PARAMETER_DESC public partial struct SignatureParameterDescription { - /// + /// public unsafe sbyte* SemanticName; - /// + /// public uint SemanticIndex; - /// + /// public uint Register; - /// + /// public Graphics.Direct3D.Name SystemValueType; - /// + /// public Graphics.Direct3D.RegisterComponentType ComponentType; - /// + /// public byte Mask; - /// + /// public byte ReadWriteMask; - /// + /// public uint Stream; - /// + /// public Graphics.Direct3D.MinPrecision MinPrecision; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/SrvDimension.cs b/src/Vortice.Win32.Direct3D12/Generated/SrvDimension.cs index 416be8d..549ba11 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/SrvDimension.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/SrvDimension.cs @@ -9,44 +9,44 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_SRV_DIMENSION public enum SrvDimension : int { - /// + /// /// D3D12_SRV_DIMENSION_UNKNOWN Unknown = 0, - /// + /// /// D3D12_SRV_DIMENSION_BUFFER Buffer = 1, - /// + /// /// D3D12_SRV_DIMENSION_TEXTURE1D Texture1D = 2, - /// + /// /// D3D12_SRV_DIMENSION_TEXTURE1DARRAY Texture1DArray = 3, - /// + /// /// D3D12_SRV_DIMENSION_TEXTURE2D Texture2D = 4, - /// + /// /// D3D12_SRV_DIMENSION_TEXTURE2DARRAY Texture2DArray = 5, - /// + /// /// D3D12_SRV_DIMENSION_TEXTURE2DMS Texture2DMs = 6, - /// + /// /// D3D12_SRV_DIMENSION_TEXTURE2DMSARRAY Texture2DMsArray = 7, - /// + /// /// D3D12_SRV_DIMENSION_TEXTURE3D Texture3D = 8, - /// + /// /// D3D12_SRV_DIMENSION_TEXTURECUBE TextureCube = 9, - /// + /// /// D3D12_SRV_DIMENSION_TEXTURECUBEARRAY TextureCubeArray = 10, - /// + /// /// D3D12_SRV_DIMENSION_RAYTRACING_ACCELERATION_STRUCTURE RaytracingAccelerationStructure = 11, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/StateObjectConfig.cs b/src/Vortice.Win32.Direct3D12/Generated/StateObjectConfig.cs index 95d6edb..9fc61d5 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/StateObjectConfig.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/StateObjectConfig.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_STATE_OBJECT_CONFIG public partial struct StateObjectConfig { - /// + /// public StateObjectFlags Flags; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/StateObjectDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/StateObjectDescription.cs index 347e11d..cd4bac2 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/StateObjectDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/StateObjectDescription.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_STATE_OBJECT_DESC public partial struct StateObjectDescription { - /// + /// public StateObjectType Type; - /// + /// public uint NumSubobjects; - /// + /// public unsafe StateSubObject* pSubobjects; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/StateObjectFlags.cs b/src/Vortice.Win32.Direct3D12/Generated/StateObjectFlags.cs index 7d60ea3..7f0923a 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/StateObjectFlags.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/StateObjectFlags.cs @@ -9,21 +9,21 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_STATE_OBJECT_FLAGS [Flags] public enum StateObjectFlags : uint { - /// + /// /// D3D12_STATE_OBJECT_FLAG_NONE None = 0, - /// + /// /// D3D12_STATE_OBJECT_FLAG_ALLOW_LOCAL_DEPENDENCIES_ON_EXTERNAL_DEFINITIONS AllowLocalDependenciesOnExternalDefinitions = 1, - /// + /// /// D3D12_STATE_OBJECT_FLAG_ALLOW_EXTERNAL_DEPENDENCIES_ON_LOCAL_DEFINITIONS AllowExternalDependenciesOnLocalDefinitions = 2, - /// + /// /// D3D12_STATE_OBJECT_FLAG_ALLOW_STATE_OBJECT_ADDITIONS AllowStateObjectAdditions = 4, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/StateObjectType.cs b/src/Vortice.Win32.Direct3D12/Generated/StateObjectType.cs index 317ae0d..f797e37 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/StateObjectType.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/StateObjectType.cs @@ -9,14 +9,14 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_STATE_OBJECT_TYPE public enum StateObjectType : int { - /// + /// /// D3D12_STATE_OBJECT_TYPE_COLLECTION Collection = 0, - /// + /// /// D3D12_STATE_OBJECT_TYPE_RAYTRACING_PIPELINE RaytracingPipeline = 3, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/StateSubObject.cs b/src/Vortice.Win32.Direct3D12/Generated/StateSubObject.cs index cd8064a..32b0135 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/StateSubObject.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/StateSubObject.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_STATE_SUBOBJECT public partial struct StateSubObject { - /// + /// public StateSubObjectType Type; - /// + /// public unsafe void* pDesc; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/StateSubObjectType.cs b/src/Vortice.Win32.Direct3D12/Generated/StateSubObjectType.cs index 00a946d..14b67cb 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/StateSubObjectType.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/StateSubObjectType.cs @@ -9,47 +9,47 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_STATE_SUBOBJECT_TYPE public enum StateSubObjectType : int { - /// + /// /// D3D12_STATE_SUBOBJECT_TYPE_STATE_OBJECT_CONFIG StateObjectConfig = 0, - /// + /// /// D3D12_STATE_SUBOBJECT_TYPE_GLOBAL_ROOT_SIGNATURE GlobalRootSignature = 1, - /// + /// /// D3D12_STATE_SUBOBJECT_TYPE_LOCAL_ROOT_SIGNATURE LocalRootSignature = 2, - /// + /// /// D3D12_STATE_SUBOBJECT_TYPE_NODE_MASK NodeMask = 3, - /// + /// /// D3D12_STATE_SUBOBJECT_TYPE_DXIL_LIBRARY DxilLibrary = 5, - /// + /// /// D3D12_STATE_SUBOBJECT_TYPE_EXISTING_COLLECTION ExistingCollection = 6, - /// + /// /// D3D12_STATE_SUBOBJECT_TYPE_SUBOBJECT_TO_EXPORTS_ASSOCIATION SubObjectToExportsAssociation = 7, - /// + /// /// D3D12_STATE_SUBOBJECT_TYPE_DXIL_SUBOBJECT_TO_EXPORTS_ASSOCIATION DxilSubObjectToExportsAssociation = 8, - /// + /// /// D3D12_STATE_SUBOBJECT_TYPE_RAYTRACING_SHADER_CONFIG RaytracingShaderConfig = 9, - /// + /// /// D3D12_STATE_SUBOBJECT_TYPE_RAYTRACING_PIPELINE_CONFIG RaytracingPipelineConfig = 10, - /// + /// /// D3D12_STATE_SUBOBJECT_TYPE_HIT_GROUP HitGroup = 11, - /// + /// /// D3D12_STATE_SUBOBJECT_TYPE_RAYTRACING_PIPELINE_CONFIG1 RaytracingPipelineConfig1 = 12, - /// + /// /// D3D12_STATE_SUBOBJECT_TYPE_MAX_VALID MaxValid = 13, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/StaticBorderColor.cs b/src/Vortice.Win32.Direct3D12/Generated/StaticBorderColor.cs index 6c7db8e..3eab7fa 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/StaticBorderColor.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/StaticBorderColor.cs @@ -9,17 +9,17 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_STATIC_BORDER_COLOR public enum StaticBorderColor : int { - /// + /// /// D3D12_STATIC_BORDER_COLOR_TRANSPARENT_BLACK TransparentBlack = 0, - /// + /// /// D3D12_STATIC_BORDER_COLOR_OPAQUE_BLACK OpaqueBlack = 1, - /// + /// /// D3D12_STATIC_BORDER_COLOR_OPAQUE_WHITE OpaqueWhite = 2, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/StaticSamplerDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/StaticSamplerDescription.cs index cf10080..cf22342 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/StaticSamplerDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/StaticSamplerDescription.cs @@ -9,46 +9,46 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_STATIC_SAMPLER_DESC public partial struct StaticSamplerDescription { - /// + /// public Filter Filter; - /// + /// public TextureAddressMode AddressU; - /// + /// public TextureAddressMode AddressV; - /// + /// public TextureAddressMode AddressW; - /// + /// public float MipLODBias; - /// + /// public uint MaxAnisotropy; - /// + /// public ComparisonFunction ComparisonFunc; - /// + /// public StaticBorderColor BorderColor; - /// + /// public float MinLOD; - /// + /// public float MaxLOD; - /// + /// public uint ShaderRegister; - /// + /// public uint RegisterSpace; - /// + /// public ShaderVisibility ShaderVisibility; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/StencilOperation.cs b/src/Vortice.Win32.Direct3D12/Generated/StencilOperation.cs index c65113f..d38734a 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/StencilOperation.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/StencilOperation.cs @@ -9,32 +9,32 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_STENCIL_OP public enum StencilOperation : int { - /// + /// /// D3D12_STENCIL_OP_KEEP Keep = 1, - /// + /// /// D3D12_STENCIL_OP_ZERO Zero = 2, - /// + /// /// D3D12_STENCIL_OP_REPLACE Replace = 3, - /// + /// /// D3D12_STENCIL_OP_INCR_SAT IncrSat = 4, - /// + /// /// D3D12_STENCIL_OP_DECR_SAT DecrSat = 5, - /// + /// /// D3D12_STENCIL_OP_INVERT Invert = 6, - /// + /// /// D3D12_STENCIL_OP_INCR Incr = 7, - /// + /// /// D3D12_STENCIL_OP_DECR Decr = 8, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/StreamOutputBufferView.cs b/src/Vortice.Win32.Direct3D12/Generated/StreamOutputBufferView.cs index a47d826..1b58c95 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/StreamOutputBufferView.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/StreamOutputBufferView.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_STREAM_OUTPUT_BUFFER_VIEW public partial struct StreamOutputBufferView { - /// + /// public ulong BufferLocation; - /// + /// public ulong SizeInBytes; - /// + /// public ulong BufferFilledSizeLocation; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/StreamOutputDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/StreamOutputDescription.cs index a4eb037..229bc18 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/StreamOutputDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/StreamOutputDescription.cs @@ -9,22 +9,22 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_STREAM_OUTPUT_DESC public partial struct StreamOutputDescription { - /// + /// public unsafe SODeclarationEntry* pSODeclaration; - /// + /// public uint NumEntries; - /// + /// public unsafe uint* pBufferStrides; - /// + /// public uint NumStrides; - /// + /// public uint RasterizedStream; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/SubObjectToExportsAssociation.cs b/src/Vortice.Win32.Direct3D12/Generated/SubObjectToExportsAssociation.cs index cb073df..cfd078d 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/SubObjectToExportsAssociation.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/SubObjectToExportsAssociation.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_SUBOBJECT_TO_EXPORTS_ASSOCIATION public partial struct SubObjectToExportsAssociation { - /// + /// public unsafe StateSubObject* pSubobjectToAssociate; - /// + /// public uint NumExports; - /// + /// public unsafe ushort** pExports; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/SubresourceData.cs b/src/Vortice.Win32.Direct3D12/Generated/SubresourceData.cs index c08528f..3aa6123 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/SubresourceData.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/SubresourceData.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_SUBRESOURCE_DATA public partial struct SubresourceData { - /// + /// public unsafe void* pData; - /// + /// public nint RowPitch; - /// + /// public nint SlicePitch; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/SubresourceFootprint.cs b/src/Vortice.Win32.Direct3D12/Generated/SubresourceFootprint.cs index 47de9e0..90908f6 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/SubresourceFootprint.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/SubresourceFootprint.cs @@ -9,22 +9,22 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_SUBRESOURCE_FOOTPRINT public partial struct SubresourceFootprint { - /// + /// public Graphics.Dxgi.Common.Format Format; - /// + /// public uint Width; - /// + /// public uint Height; - /// + /// public uint Depth; - /// + /// public uint RowPitch; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/SubresourceInfo.cs b/src/Vortice.Win32.Direct3D12/Generated/SubresourceInfo.cs index f0eaa52..1a24535 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/SubresourceInfo.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/SubresourceInfo.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_SUBRESOURCE_INFO public partial struct SubresourceInfo { - /// + /// public ulong Offset; - /// + /// public uint RowPitch; - /// + /// public uint DepthPitch; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/SubresourceRangeUInt64.cs b/src/Vortice.Win32.Direct3D12/Generated/SubresourceRangeUInt64.cs index 1a5132d..19b50fd 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/SubresourceRangeUInt64.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/SubresourceRangeUInt64.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_SUBRESOURCE_RANGE_UINT64 public partial struct SubresourceRangeUInt64 { - /// + /// public uint Subresource; - /// + /// public RangeUInt64 Range; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/SubresourceTiling.cs b/src/Vortice.Win32.Direct3D12/Generated/SubresourceTiling.cs index 35c2009..15cd37f 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/SubresourceTiling.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/SubresourceTiling.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_SUBRESOURCE_TILING public partial struct SubresourceTiling { - /// + /// public uint WidthInTiles; - /// + /// public ushort HeightInTiles; - /// + /// public ushort DepthInTiles; - /// + /// public uint StartTileIndexInOverallResource; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/Texture1DArrayDsv.cs b/src/Vortice.Win32.Direct3D12/Generated/Texture1DArrayDsv.cs index 48a9219..2d436ff 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/Texture1DArrayDsv.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/Texture1DArrayDsv.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_TEX1D_ARRAY_DSV public partial struct Texture1DArrayDsv { - /// + /// public uint MipSlice; - /// + /// public uint FirstArraySlice; - /// + /// public uint ArraySize; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/Texture1DArrayRtv.cs b/src/Vortice.Win32.Direct3D12/Generated/Texture1DArrayRtv.cs index 2858978..8183690 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/Texture1DArrayRtv.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/Texture1DArrayRtv.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_TEX1D_ARRAY_RTV public partial struct Texture1DArrayRtv { - /// + /// public uint MipSlice; - /// + /// public uint FirstArraySlice; - /// + /// public uint ArraySize; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/Texture1DArraySrv.cs b/src/Vortice.Win32.Direct3D12/Generated/Texture1DArraySrv.cs index 0c9e9b9..6e58292 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/Texture1DArraySrv.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/Texture1DArraySrv.cs @@ -9,22 +9,22 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_TEX1D_ARRAY_SRV public partial struct Texture1DArraySrv { - /// + /// public uint MostDetailedMip; - /// + /// public uint MipLevels; - /// + /// public uint FirstArraySlice; - /// + /// public uint ArraySize; - /// + /// public float ResourceMinLODClamp; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/Texture1DArrayUav.cs b/src/Vortice.Win32.Direct3D12/Generated/Texture1DArrayUav.cs index cdff954..334dc7a 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/Texture1DArrayUav.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/Texture1DArrayUav.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_TEX1D_ARRAY_UAV public partial struct Texture1DArrayUav { - /// + /// public uint MipSlice; - /// + /// public uint FirstArraySlice; - /// + /// public uint ArraySize; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/Texture1DDsv.cs b/src/Vortice.Win32.Direct3D12/Generated/Texture1DDsv.cs index ced52b9..7501509 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/Texture1DDsv.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/Texture1DDsv.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_TEX1D_DSV public partial struct Texture1DDsv { - /// + /// public uint MipSlice; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/Texture1DRtv.cs b/src/Vortice.Win32.Direct3D12/Generated/Texture1DRtv.cs index 54d0ca0..27b5471 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/Texture1DRtv.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/Texture1DRtv.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_TEX1D_RTV public partial struct Texture1DRtv { - /// + /// public uint MipSlice; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/Texture1DSrv.cs b/src/Vortice.Win32.Direct3D12/Generated/Texture1DSrv.cs index 7b463ad..b42b755 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/Texture1DSrv.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/Texture1DSrv.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_TEX1D_SRV public partial struct Texture1DSrv { - /// + /// public uint MostDetailedMip; - /// + /// public uint MipLevels; - /// + /// public float ResourceMinLODClamp; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/Texture1DUav.cs b/src/Vortice.Win32.Direct3D12/Generated/Texture1DUav.cs index c43c895..9bd9b75 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/Texture1DUav.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/Texture1DUav.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_TEX1D_UAV public partial struct Texture1DUav { - /// + /// public uint MipSlice; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/Texture2DArrayDsv.cs b/src/Vortice.Win32.Direct3D12/Generated/Texture2DArrayDsv.cs index 5cd9471..4885f53 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/Texture2DArrayDsv.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/Texture2DArrayDsv.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_TEX2D_ARRAY_DSV public partial struct Texture2DArrayDsv { - /// + /// public uint MipSlice; - /// + /// public uint FirstArraySlice; - /// + /// public uint ArraySize; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/Texture2DArrayRtv.cs b/src/Vortice.Win32.Direct3D12/Generated/Texture2DArrayRtv.cs index 106409c..181f0f9 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/Texture2DArrayRtv.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/Texture2DArrayRtv.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_TEX2D_ARRAY_RTV public partial struct Texture2DArrayRtv { - /// + /// public uint MipSlice; - /// + /// public uint FirstArraySlice; - /// + /// public uint ArraySize; - /// + /// public uint PlaneSlice; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/Texture2DArraySrv.cs b/src/Vortice.Win32.Direct3D12/Generated/Texture2DArraySrv.cs index de6b77b..3350e88 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/Texture2DArraySrv.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/Texture2DArraySrv.cs @@ -9,25 +9,25 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_TEX2D_ARRAY_SRV public partial struct Texture2DArraySrv { - /// + /// public uint MostDetailedMip; - /// + /// public uint MipLevels; - /// + /// public uint FirstArraySlice; - /// + /// public uint ArraySize; - /// + /// public uint PlaneSlice; - /// + /// public float ResourceMinLODClamp; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/Texture2DArrayUav.cs b/src/Vortice.Win32.Direct3D12/Generated/Texture2DArrayUav.cs index 9a55b07..0515357 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/Texture2DArrayUav.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/Texture2DArrayUav.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_TEX2D_ARRAY_UAV public partial struct Texture2DArrayUav { - /// + /// public uint MipSlice; - /// + /// public uint FirstArraySlice; - /// + /// public uint ArraySize; - /// + /// public uint PlaneSlice; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/Texture2DDsv.cs b/src/Vortice.Win32.Direct3D12/Generated/Texture2DDsv.cs index 337d555..1bb7fef 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/Texture2DDsv.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/Texture2DDsv.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_TEX2D_DSV public partial struct Texture2DDsv { - /// + /// public uint MipSlice; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/Texture2DMsArrayDsv.cs b/src/Vortice.Win32.Direct3D12/Generated/Texture2DMsArrayDsv.cs index 1e73403..b3ee736 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/Texture2DMsArrayDsv.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/Texture2DMsArrayDsv.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_TEX2DMS_ARRAY_DSV public partial struct Texture2DMsArrayDsv { - /// + /// public uint FirstArraySlice; - /// + /// public uint ArraySize; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/Texture2DMsArrayRtv.cs b/src/Vortice.Win32.Direct3D12/Generated/Texture2DMsArrayRtv.cs index 2de8e2a..691bc0f 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/Texture2DMsArrayRtv.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/Texture2DMsArrayRtv.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_TEX2DMS_ARRAY_RTV public partial struct Texture2DMsArrayRtv { - /// + /// public uint FirstArraySlice; - /// + /// public uint ArraySize; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/Texture2DMsArraySrv.cs b/src/Vortice.Win32.Direct3D12/Generated/Texture2DMsArraySrv.cs index 9c04b84..0267c24 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/Texture2DMsArraySrv.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/Texture2DMsArraySrv.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_TEX2DMS_ARRAY_SRV public partial struct Texture2DMsArraySrv { - /// + /// public uint FirstArraySlice; - /// + /// public uint ArraySize; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/Texture2DMsDsv.cs b/src/Vortice.Win32.Direct3D12/Generated/Texture2DMsDsv.cs index 9877a17..a452a4c 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/Texture2DMsDsv.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/Texture2DMsDsv.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_TEX2DMS_DSV public partial struct Texture2DMsDsv { - /// + /// public uint UnusedField_NothingToDefine; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/Texture2DMsRtv.cs b/src/Vortice.Win32.Direct3D12/Generated/Texture2DMsRtv.cs index c7a3664..467a969 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/Texture2DMsRtv.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/Texture2DMsRtv.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_TEX2DMS_RTV public partial struct Texture2DMsRtv { - /// + /// public uint UnusedField_NothingToDefine; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/Texture2DMsSrv.cs b/src/Vortice.Win32.Direct3D12/Generated/Texture2DMsSrv.cs index a6f9c3e..2574b6c 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/Texture2DMsSrv.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/Texture2DMsSrv.cs @@ -9,10 +9,10 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_TEX2DMS_SRV public partial struct Texture2DMsSrv { - /// + /// public uint UnusedField_NothingToDefine; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/Texture2DRtv.cs b/src/Vortice.Win32.Direct3D12/Generated/Texture2DRtv.cs index 1a53430..37324d1 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/Texture2DRtv.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/Texture2DRtv.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_TEX2D_RTV public partial struct Texture2DRtv { - /// + /// public uint MipSlice; - /// + /// public uint PlaneSlice; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/Texture2DSrv.cs b/src/Vortice.Win32.Direct3D12/Generated/Texture2DSrv.cs index cae39b4..67e3c9c 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/Texture2DSrv.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/Texture2DSrv.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_TEX2D_SRV public partial struct Texture2DSrv { - /// + /// public uint MostDetailedMip; - /// + /// public uint MipLevels; - /// + /// public uint PlaneSlice; - /// + /// public float ResourceMinLODClamp; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/Texture2DUav.cs b/src/Vortice.Win32.Direct3D12/Generated/Texture2DUav.cs index 1a01370..9f88cd7 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/Texture2DUav.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/Texture2DUav.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_TEX2D_UAV public partial struct Texture2DUav { - /// + /// public uint MipSlice; - /// + /// public uint PlaneSlice; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/Texture3DRtv.cs b/src/Vortice.Win32.Direct3D12/Generated/Texture3DRtv.cs index 2d603a3..5edc9b5 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/Texture3DRtv.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/Texture3DRtv.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_TEX3D_RTV public partial struct Texture3DRtv { - /// + /// public uint MipSlice; - /// + /// public uint FirstWSlice; - /// + /// public uint WSize; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/Texture3DSrv.cs b/src/Vortice.Win32.Direct3D12/Generated/Texture3DSrv.cs index e1242ce..719ecfd 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/Texture3DSrv.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/Texture3DSrv.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_TEX3D_SRV public partial struct Texture3DSrv { - /// + /// public uint MostDetailedMip; - /// + /// public uint MipLevels; - /// + /// public float ResourceMinLODClamp; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/Texture3DUav.cs b/src/Vortice.Win32.Direct3D12/Generated/Texture3DUav.cs index 07e2732..d39faaa 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/Texture3DUav.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/Texture3DUav.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_TEX3D_UAV public partial struct Texture3DUav { - /// + /// public uint MipSlice; - /// + /// public uint FirstWSlice; - /// + /// public uint WSize; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/TextureAddressMode.cs b/src/Vortice.Win32.Direct3D12/Generated/TextureAddressMode.cs index c771b87..5c34fa4 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/TextureAddressMode.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/TextureAddressMode.cs @@ -9,23 +9,23 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_TEXTURE_ADDRESS_MODE public enum TextureAddressMode : int { - /// + /// /// D3D12_TEXTURE_ADDRESS_MODE_WRAP Wrap = 1, - /// + /// /// D3D12_TEXTURE_ADDRESS_MODE_MIRROR Mirror = 2, - /// + /// /// D3D12_TEXTURE_ADDRESS_MODE_CLAMP Clamp = 3, - /// + /// /// D3D12_TEXTURE_ADDRESS_MODE_BORDER Border = 4, - /// + /// /// D3D12_TEXTURE_ADDRESS_MODE_MIRROR_ONCE MirrorOnce = 5, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/TextureCopyLocation.cs b/src/Vortice.Win32.Direct3D12/Generated/TextureCopyLocation.cs index dc91523..dd34212 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/TextureCopyLocation.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/TextureCopyLocation.cs @@ -9,17 +9,17 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_TEXTURE_COPY_LOCATION public partial struct TextureCopyLocation { - /// + /// public unsafe ID3D12Resource* pResource; - /// + /// public TextureCopyType Type; - /// + /// public _Anonymous_e__Union Anonymous; [UnscopedRef] @@ -45,11 +45,11 @@ public partial struct TextureCopyLocation [StructLayout(LayoutKind.Explicit)] public partial struct _Anonymous_e__Union { - /// + /// [FieldOffset(0)] public PlacedSubresourceFootprint PlacedFootprint; - /// + /// [FieldOffset(0)] public uint SubresourceIndex; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/TextureCopyType.cs b/src/Vortice.Win32.Direct3D12/Generated/TextureCopyType.cs index 5b6ef02..9b2f22f 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/TextureCopyType.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/TextureCopyType.cs @@ -9,14 +9,14 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_TEXTURE_COPY_TYPE public enum TextureCopyType : int { - /// + /// /// D3D12_TEXTURE_COPY_TYPE_SUBRESOURCE_INDEX SubresourceIndex = 0, - /// + /// /// D3D12_TEXTURE_COPY_TYPE_PLACED_FOOTPRINT PlacedFootprint = 1, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/TextureLayout.cs b/src/Vortice.Win32.Direct3D12/Generated/TextureLayout.cs index 98a3e2d..ddc0586 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/TextureLayout.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/TextureLayout.cs @@ -9,20 +9,20 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_TEXTURE_LAYOUT public enum TextureLayout : int { - /// + /// /// D3D12_TEXTURE_LAYOUT_UNKNOWN Unknown = 0, - /// + /// /// D3D12_TEXTURE_LAYOUT_ROW_MAJOR RowMajor = 1, - /// + /// /// D3D12_TEXTURE_LAYOUT_64KB_UNDEFINED_SWIZZLE L64KbUndefinedSwizzle = 2, - /// + /// /// D3D12_TEXTURE_LAYOUT_64KB_STANDARD_SWIZZLE L64KbStandardSwizzle = 3, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/TexureCubeArraySrv.cs b/src/Vortice.Win32.Direct3D12/Generated/TexureCubeArraySrv.cs index 46fe4e1..673b927 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/TexureCubeArraySrv.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/TexureCubeArraySrv.cs @@ -9,22 +9,22 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_TEXCUBE_ARRAY_SRV public partial struct TexureCubeArraySrv { - /// + /// public uint MostDetailedMip; - /// + /// public uint MipLevels; - /// + /// public uint First2DArrayFace; - /// + /// public uint NumCubes; - /// + /// public float ResourceMinLODClamp; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/TexureCubeSrv.cs b/src/Vortice.Win32.Direct3D12/Generated/TexureCubeSrv.cs index 3aa7abf..9ed2706 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/TexureCubeSrv.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/TexureCubeSrv.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_TEXCUBE_SRV public partial struct TexureCubeSrv { - /// + /// public uint MostDetailedMip; - /// + /// public uint MipLevels; - /// + /// public float ResourceMinLODClamp; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/TileCopyFlags.cs b/src/Vortice.Win32.Direct3D12/Generated/TileCopyFlags.cs index bbfab7f..240dce5 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/TileCopyFlags.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/TileCopyFlags.cs @@ -9,21 +9,21 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_TILE_COPY_FLAGS [Flags] public enum TileCopyFlags : uint { - /// + /// /// D3D12_TILE_COPY_FLAG_NONE None = 0, - /// + /// /// D3D12_TILE_COPY_FLAG_NO_HAZARD NoHazard = 1, - /// + /// /// D3D12_TILE_COPY_FLAG_LINEAR_BUFFER_TO_SWIZZLED_TILED_RESOURCE LinearBufferToSwizzledTiledResource = 2, - /// + /// /// D3D12_TILE_COPY_FLAG_SWIZZLED_TILED_RESOURCE_TO_LINEAR_BUFFER SwizzledTiledResourceToLinearBuffer = 4, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/TileMappingFlags.cs b/src/Vortice.Win32.Direct3D12/Generated/TileMappingFlags.cs index 5b375d6..449f76e 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/TileMappingFlags.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/TileMappingFlags.cs @@ -9,15 +9,15 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_TILE_MAPPING_FLAGS [Flags] public enum TileMappingFlags : uint { - /// + /// /// D3D12_TILE_MAPPING_FLAG_NONE None = 0, - /// + /// /// D3D12_TILE_MAPPING_FLAG_NO_HAZARD NoHazard = 1, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/TileRangeFlags.cs b/src/Vortice.Win32.Direct3D12/Generated/TileRangeFlags.cs index a20a44b..7f7186c 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/TileRangeFlags.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/TileRangeFlags.cs @@ -9,21 +9,21 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_TILE_RANGE_FLAGS [Flags] public enum TileRangeFlags : int { - /// + /// /// D3D12_TILE_RANGE_FLAG_NONE None = 0, - /// + /// /// D3D12_TILE_RANGE_FLAG_NULL Null = 1, - /// + /// /// D3D12_TILE_RANGE_FLAG_SKIP Skip = 2, - /// + /// /// D3D12_TILE_RANGE_FLAG_REUSE_SINGLE_TILE ReuseSingleTile = 4, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/TileRegionSize.cs b/src/Vortice.Win32.Direct3D12/Generated/TileRegionSize.cs index f8cd680..e0fcea8 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/TileRegionSize.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/TileRegionSize.cs @@ -9,22 +9,22 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_TILE_REGION_SIZE public partial struct TileRegionSize { - /// + /// public uint NumTiles; - /// + /// public Bool32 UseBox; - /// + /// public uint Width; - /// + /// public ushort Height; - /// + /// public ushort Depth; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/TileShape.cs b/src/Vortice.Win32.Direct3D12/Generated/TileShape.cs index d0df8d4..585a4b2 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/TileShape.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/TileShape.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_TILE_SHAPE public partial struct TileShape { - /// + /// public uint WidthInTexels; - /// + /// public uint HeightInTexels; - /// + /// public uint DepthInTexels; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/TiledResourceCoordinate.cs b/src/Vortice.Win32.Direct3D12/Generated/TiledResourceCoordinate.cs index a084e33..643d2cb 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/TiledResourceCoordinate.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/TiledResourceCoordinate.cs @@ -9,19 +9,19 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_TILED_RESOURCE_COORDINATE public partial struct TiledResourceCoordinate { - /// + /// public uint X; - /// + /// public uint Y; - /// + /// public uint Z; - /// + /// public uint Subresource; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/TiledResourcesTier.cs b/src/Vortice.Win32.Direct3D12/Generated/TiledResourcesTier.cs index d82fd91..011a912 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/TiledResourcesTier.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/TiledResourcesTier.cs @@ -9,23 +9,23 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_TILED_RESOURCES_TIER public enum TiledResourcesTier : int { - /// + /// /// D3D12_TILED_RESOURCES_TIER_NOT_SUPPORTED NotSupported = 0, - /// + /// /// D3D12_TILED_RESOURCES_TIER_1 Tier1 = 1, - /// + /// /// D3D12_TILED_RESOURCES_TIER_2 Tier2 = 2, - /// + /// /// D3D12_TILED_RESOURCES_TIER_3 Tier3 = 3, - /// + /// /// D3D12_TILED_RESOURCES_TIER_4 Tier4 = 4, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/UavDimension.cs b/src/Vortice.Win32.Direct3D12/Generated/UavDimension.cs index 9ae73c6..4948644 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/UavDimension.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/UavDimension.cs @@ -9,29 +9,29 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_UAV_DIMENSION public enum UavDimension : int { - /// + /// /// D3D12_UAV_DIMENSION_UNKNOWN Unknown = 0, - /// + /// /// D3D12_UAV_DIMENSION_BUFFER Buffer = 1, - /// + /// /// D3D12_UAV_DIMENSION_TEXTURE1D Texture1D = 2, - /// + /// /// D3D12_UAV_DIMENSION_TEXTURE1DARRAY Texture1DArray = 3, - /// + /// /// D3D12_UAV_DIMENSION_TEXTURE2D Texture2D = 4, - /// + /// /// D3D12_UAV_DIMENSION_TEXTURE2DARRAY Texture2DArray = 5, - /// + /// /// D3D12_UAV_DIMENSION_TEXTURE3D Texture3D = 8, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/UnorderedAccessViewDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/UnorderedAccessViewDescription.cs index 1071f39..78e9aa0 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/UnorderedAccessViewDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/UnorderedAccessViewDescription.cs @@ -9,17 +9,17 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_UNORDERED_ACCESS_VIEW_DESC public partial struct UnorderedAccessViewDescription { - /// + /// public Graphics.Dxgi.Common.Format Format; - /// + /// public UavDimension ViewDimension; - /// + /// public _Anonymous_e__Union Anonymous; [UnscopedRef] @@ -85,27 +85,27 @@ public partial struct UnorderedAccessViewDescription [StructLayout(LayoutKind.Explicit)] public partial struct _Anonymous_e__Union { - /// + /// [FieldOffset(0)] public BufferUav Buffer; - /// + /// [FieldOffset(0)] public Texture1DUav Texture1D; - /// + /// [FieldOffset(0)] public Texture1DArrayUav Texture1DArray; - /// + /// [FieldOffset(0)] public Texture2DUav Texture2D; - /// + /// [FieldOffset(0)] public Texture2DArrayUav Texture2DArray; - /// + /// [FieldOffset(0)] public Texture3DUav Texture3D; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/VariableShadingRateTier.cs b/src/Vortice.Win32.Direct3D12/Generated/VariableShadingRateTier.cs index 0c7e1cc..3a6bd95 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/VariableShadingRateTier.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/VariableShadingRateTier.cs @@ -9,17 +9,17 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_VARIABLE_SHADING_RATE_TIER public enum VariableShadingRateTier : int { - /// + /// /// D3D12_VARIABLE_SHADING_RATE_TIER_NOT_SUPPORTED NotSupported = 0, - /// + /// /// D3D12_VARIABLE_SHADING_RATE_TIER_1 Tier1 = 1, - /// + /// /// D3D12_VARIABLE_SHADING_RATE_TIER_2 Tier2 = 2, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/VersionedDeviceRemovedExtendedData.cs b/src/Vortice.Win32.Direct3D12/Generated/VersionedDeviceRemovedExtendedData.cs index 9ed8990..df2478f 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/VersionedDeviceRemovedExtendedData.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/VersionedDeviceRemovedExtendedData.cs @@ -9,14 +9,14 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_VERSIONED_DEVICE_REMOVED_EXTENDED_DATA public partial struct VersionedDeviceRemovedExtendedData { - /// + /// public DredVersion Version; - /// + /// public _Anonymous_e__Union Anonymous; [UnscopedRef] @@ -62,19 +62,19 @@ public partial struct VersionedDeviceRemovedExtendedData [StructLayout(LayoutKind.Explicit)] public partial struct _Anonymous_e__Union { - /// + /// [FieldOffset(0)] public DeviceRemovedExtendedData Dred_1_0; - /// + /// [FieldOffset(0)] public DeviceRemovedExtendedData1 Dred_1_1; - /// + /// [FieldOffset(0)] public DeviceRemovedExtendedData2 Dred_1_2; - /// + /// [FieldOffset(0)] public DeviceRemovedExtendedData3 Dred_1_3; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/VersionedRootSignatureDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/VersionedRootSignatureDescription.cs index 15f7f18..04168da 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/VersionedRootSignatureDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/VersionedRootSignatureDescription.cs @@ -9,14 +9,14 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_VERSIONED_ROOT_SIGNATURE_DESC public partial struct VersionedRootSignatureDescription { - /// + /// public RootSignatureVersion Version; - /// + /// public _Anonymous_e__Union Anonymous; [UnscopedRef] @@ -42,11 +42,11 @@ public partial struct VersionedRootSignatureDescription [StructLayout(LayoutKind.Explicit)] public partial struct _Anonymous_e__Union { - /// + /// [FieldOffset(0)] public RootSignatureDescription Desc_1_0; - /// + /// [FieldOffset(0)] public RootSignatureDescription1 Desc_1_1; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/VertexBufferView.cs b/src/Vortice.Win32.Direct3D12/Generated/VertexBufferView.cs index e5f6a6a..c40ca2c 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/VertexBufferView.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/VertexBufferView.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_VERTEX_BUFFER_VIEW public partial struct VertexBufferView { - /// + /// public ulong BufferLocation; - /// + /// public uint SizeInBytes; - /// + /// public uint StrideInBytes; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ViewInstanceLocation.cs b/src/Vortice.Win32.Direct3D12/Generated/ViewInstanceLocation.cs index 25fe7ea..2c12c90 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ViewInstanceLocation.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ViewInstanceLocation.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_VIEW_INSTANCE_LOCATION public partial struct ViewInstanceLocation { - /// + /// public uint ViewportArrayIndex; - /// + /// public uint RenderTargetArrayIndex; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ViewInstancingDescription.cs b/src/Vortice.Win32.Direct3D12/Generated/ViewInstancingDescription.cs index 649529d..d7855ef 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ViewInstancingDescription.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ViewInstancingDescription.cs @@ -9,16 +9,16 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_VIEW_INSTANCING_DESC public partial struct ViewInstancingDescription { - /// + /// public uint ViewInstanceCount; - /// + /// public unsafe ViewInstanceLocation* pViewInstanceLocations; - /// + /// public ViewInstancingFlags Flags; } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ViewInstancingFlags.cs b/src/Vortice.Win32.Direct3D12/Generated/ViewInstancingFlags.cs index 796808a..1d8633b 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ViewInstancingFlags.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ViewInstancingFlags.cs @@ -9,15 +9,15 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_VIEW_INSTANCING_FLAGS [Flags] public enum ViewInstancingFlags : uint { - /// + /// /// D3D12_VIEW_INSTANCING_FLAG_NONE None = 0, - /// + /// /// D3D12_VIEW_INSTANCING_FLAG_ENABLE_VIEW_INSTANCE_MASKING EnableViewInstanceMasking = 1, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/ViewInstancingTier.cs b/src/Vortice.Win32.Direct3D12/Generated/ViewInstancingTier.cs index 961261f..2157f1f 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/ViewInstancingTier.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/ViewInstancingTier.cs @@ -9,20 +9,20 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_VIEW_INSTANCING_TIER public enum ViewInstancingTier : int { - /// + /// /// D3D12_VIEW_INSTANCING_TIER_NOT_SUPPORTED NotSupported = 0, - /// + /// /// D3D12_VIEW_INSTANCING_TIER_1 Tier1 = 1, - /// + /// /// D3D12_VIEW_INSTANCING_TIER_2 Tier2 = 2, - /// + /// /// D3D12_VIEW_INSTANCING_TIER_3 Tier3 = 3, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/WaveMmaTier.cs b/src/Vortice.Win32.Direct3D12/Generated/WaveMmaTier.cs index ef19031..15b2f9d 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/WaveMmaTier.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/WaveMmaTier.cs @@ -9,14 +9,14 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_WAVE_MMA_TIER public enum WaveMmaTier : int { - /// + /// /// D3D12_WAVE_MMA_TIER_NOT_SUPPORTED NotSupported = 0, - /// + /// /// D3D12_WAVE_MMA_TIER_1_0 Tier1_0 = 10, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/WriteBufferImmediateMode.cs b/src/Vortice.Win32.Direct3D12/Generated/WriteBufferImmediateMode.cs index 61daf99..233deee 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/WriteBufferImmediateMode.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/WriteBufferImmediateMode.cs @@ -9,17 +9,17 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_WRITEBUFFERIMMEDIATE_MODE public enum WriteBufferImmediateMode : int { - /// + /// /// D3D12_WRITEBUFFERIMMEDIATE_MODE_DEFAULT Default = 0, - /// + /// /// D3D12_WRITEBUFFERIMMEDIATE_MODE_MARKER_IN MarkerIn = 1, - /// + /// /// D3D12_WRITEBUFFERIMMEDIATE_MODE_MARKER_OUT MarkerOut = 2, } diff --git a/src/Vortice.Win32.Direct3D12/Generated/WriteBufferImmediateParameter.cs b/src/Vortice.Win32.Direct3D12/Generated/WriteBufferImmediateParameter.cs index 9cad51a..ac13823 100644 --- a/src/Vortice.Win32.Direct3D12/Generated/WriteBufferImmediateParameter.cs +++ b/src/Vortice.Win32.Direct3D12/Generated/WriteBufferImmediateParameter.cs @@ -9,13 +9,13 @@ namespace Win32.Graphics.Direct3D12; -/// +/// /// D3D12_WRITEBUFFERIMMEDIATE_PARAMETER public partial struct WriteBufferImmediateParameter { - /// + /// public ulong Dest; - /// + /// public uint Value; } diff --git a/src/Vortice.Win32/Generated/Graphics/Direct3D.Fxc/Apis.Functions.cs b/src/Vortice.Win32/Generated/Graphics/Direct3D.Fxc/Apis.Functions.cs index 4b34089..6707655 100644 --- a/src/Vortice.Win32/Generated/Graphics/Direct3D.Fxc/Apis.Functions.cs +++ b/src/Vortice.Win32/Generated/Graphics/Direct3D.Fxc/Apis.Functions.cs @@ -43,7 +43,7 @@ public static unsafe partial class Apis [DllImport("D3DCOMPILER_47.dll", ExactSpelling = true)] public static extern HResult D3DDisassembleRegion(void* pSrcData, nuint SrcDataSize, uint Flags, sbyte* szComments, nuint StartByteOffset, nuint NumInsts, nuint* pFinishByteOffset, Graphics.Direct3D.ID3DBlob** ppDisassembly); - + [DllImport("D3DCOMPILER_47.dll", ExactSpelling = true)] public static extern HResult D3DGetTraceInstructionOffsets(void* pSrcData, nuint SrcDataSize, uint Flags, nuint StartInstIndex, nuint NumInsts, nuint* pOffsets, nuint* pTotalInsts); diff --git a/src/Vortice.Win32/Graphics/Dxgi.Manual.cs b/src/Vortice.Win32/Graphics/Dxgi.Manual.cs index 599d831..34f2faf 100644 --- a/src/Vortice.Win32/Graphics/Dxgi.Manual.cs +++ b/src/Vortice.Win32/Graphics/Dxgi.Manual.cs @@ -8,7 +8,7 @@ namespace Win32.Graphics.Dxgi; public unsafe partial struct AdapterDescription { - /// + /// public readonly string GetDescription() { fixed (ushort* ptr = Description) @@ -20,7 +20,7 @@ public unsafe partial struct AdapterDescription public unsafe partial struct AdapterDescription1 { - /// + /// public readonly string GetDescription() { fixed (ushort* ptr = Description) @@ -32,7 +32,7 @@ public unsafe partial struct AdapterDescription1 public unsafe partial struct AdapterDescription2 { - /// + /// public readonly string GetDescription() { fixed (ushort* ptr = Description)