Added missing XML documentation.

This commit is contained in:
the_fiddler 2009-09-04 21:31:31 +00:00
parent c730a706a6
commit e630b600a2

View file

@ -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; } }
}
}