Files
BlenderSharp/BlendFile/DNA/ImageFormatData.cs
2025-02-19 17:07:50 +01:00

134 lines
5.8 KiB
C#

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
namespace BlendFile.DNA {
using BlendFile;
[DNAClassAttribute(615, "ImageFormatData")]
public struct ImageFormatData {
[DNAFieldAttribute(0, "char", "imtype", "char", 1, false)]
public char imtype;
[DNAFieldAttribute(1, "char", "depth", "char", 1, false)]
public char depth;
[DNAFieldAttribute(2, "char", "planes", "char", 1, false)]
public char planes;
[DNAFieldAttribute(3, "char", "flag", "char", 1, false)]
public char flag;
[DNAFieldAttribute(4, "char", "quality", "char", 1, false)]
public char quality;
[DNAFieldAttribute(5, "char", "compress", "char", 1, false)]
public char compress;
[DNAFieldAttribute(6, "char", "exr_codec", "char", 1, false)]
public char exr_codec;
[DNAFieldAttribute(7, "char", "cineon_flag", "char", 1, false)]
public char cineon_flag;
[DNAFieldAttribute(8, "short", "cineon_white", "short", 2, false)]
public short cineon_white;
[DNAFieldAttribute(9, "short", "cineon_black", "short", 2, false)]
public short cineon_black;
[DNAFieldAttribute(10, "float", "cineon_gamma", "float", 4, false)]
public float cineon_gamma;
[DNAFieldAttribute(11, "char", "jp2_flag", "char", 1, false)]
public char jp2_flag;
[DNAFieldAttribute(12, "char", "jp2_codec", "char", 1, false)]
public char jp2_codec;
[DNAFieldAttribute(13, "char", "tiff_codec", "char", 1, false)]
public char tiff_codec;
[DNAFieldAttribute(14, "char", "_pad[4]", "System.Char[]", 4, false)]
public char[] _pad = new System.Char[4];
[DNAFieldAttribute(15, "char", "views_format", "char", 1, false)]
public char views_format;
[DNAFieldAttribute(16, "Stereo3dFormat", "stereo3d_format", "Stereo3dFormat", 8, false)]
public Stereo3dFormat stereo3d_format;
[DNAFieldAttribute(17, "char", "color_management", "char", 1, false)]
public char color_management;
[DNAFieldAttribute(18, "char", "_pad1[7]", "System.Char[]", 7, false)]
public char[] _pad1 = new System.Char[7];
[DNAFieldAttribute(19, "ColorManagedViewSettings", "view_settings", "ColorManagedViewSettings", 168, false)]
public ColorManagedViewSettings view_settings;
[DNAFieldAttribute(20, "ColorManagedDisplaySettings", "display_settings", "ColorManagedDisplaySettings", 64, false)]
public ColorManagedDisplaySettings display_settings;
[DNAFieldAttribute(21, "ColorManagedColorspaceSettings", "linear_colorspace_settings", "ColorManagedColorspaceSettings", 64, false)]
public ColorManagedColorspaceSettings linear_colorspace_settings;
public ImageFormatData() {
this.imtype = default;
this.depth = default;
this.planes = default;
this.flag = default;
this.quality = default;
this.compress = default;
this.exr_codec = default;
this.cineon_flag = default;
this.cineon_white = default;
this.cineon_black = default;
this.cineon_gamma = default;
this.jp2_flag = default;
this.jp2_codec = default;
this.tiff_codec = default;
this._pad = default;
this.views_format = default;
this.stereo3d_format = default;
this.color_management = default;
this._pad1 = default;
this.view_settings = default;
this.display_settings = default;
this.linear_colorspace_settings = default;
}
public ImageFormatData(
char imtype,
char depth,
char planes,
char flag,
char quality,
char compress,
char exr_codec,
char cineon_flag,
short cineon_white,
short cineon_black,
float cineon_gamma,
char jp2_flag,
char jp2_codec,
char tiff_codec,
char[] _pad,
char views_format,
Stereo3dFormat stereo3d_format,
char color_management,
char[] _pad1,
ColorManagedViewSettings view_settings,
ColorManagedDisplaySettings display_settings,
ColorManagedColorspaceSettings linear_colorspace_settings) {
this.imtype = imtype;
this.depth = depth;
this.planes = planes;
this.flag = flag;
this.quality = quality;
this.compress = compress;
this.exr_codec = exr_codec;
this.cineon_flag = cineon_flag;
this.cineon_white = cineon_white;
this.cineon_black = cineon_black;
this.cineon_gamma = cineon_gamma;
this.jp2_flag = jp2_flag;
this.jp2_codec = jp2_codec;
this.tiff_codec = tiff_codec;
this._pad = _pad;
this.views_format = views_format;
this.stereo3d_format = stereo3d_format;
this.color_management = color_management;
this._pad1 = _pad1;
this.view_settings = view_settings;
this.display_settings = display_settings;
this.linear_colorspace_settings = linear_colorspace_settings;
}
}
}