mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-07-08 15:30:49 +00:00
Added missing XML documentation.
This commit is contained in:
parent
b89b377119
commit
9701b97bb8
|
@ -32,14 +32,23 @@ using System.Runtime.InteropServices;
|
||||||
|
|
||||||
namespace OpenTK.Compute.CL10
|
namespace OpenTK.Compute.CL10
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Defines the format of an OpenCL image.
|
||||||
|
/// </summary>
|
||||||
[StructLayout(LayoutKind.Sequential)]
|
[StructLayout(LayoutKind.Sequential)]
|
||||||
public struct ImageFormat
|
public struct ImageFormat
|
||||||
{
|
{
|
||||||
ChannelOrder image_channel_order;
|
ChannelOrder image_channel_order;
|
||||||
ChannelType image_channel_data_type;
|
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; } }
|
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; } }
|
public ChannelType ChannelType { get { return image_channel_data_type; } set { image_channel_data_type = value; } }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue