mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-23 19:15:36 +00:00
Added missing XML documentation.
This commit is contained in:
parent
c730a706a6
commit
e630b600a2
|
@ -32,14 +32,23 @@ using System.Runtime.InteropServices;
|
|||
|
||||
namespace OpenTK.Compute.CL10
|
||||
{
|
||||
/// <summary>
|
||||
/// Defines the format of an OpenCL image.
|
||||
/// </summary>
|
||||
[StructLayout(LayoutKind.Sequential)]
|
||||
public struct ImageFormat
|
||||
{
|
||||
ChannelOrder image_channel_order;
|
||||
ChannelType image_channel_data_type;
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a <see cref="ChannelOrder"/> value, which indicates the order of the image channels.
|
||||
/// </summary>
|
||||
public ChannelOrder ChannelOrder { get { return image_channel_order; } set { image_channel_order = value; } }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a <see cref="ChannelType"/> value, which indicates the data type of each image channel.
|
||||
/// </summary>
|
||||
public ChannelType ChannelType { get { return image_channel_data_type; } set { image_channel_data_type = value; } }
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue