Files
BlenderSharp/BlendFile/DNA/ImageFormatData.cs
2025-03-04 18:48:04 +01:00

134 lines
5.9 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", 336)]
public class ImageFormatData {
[DNAFieldAttribute(1, "char", 0, "imtype", "char", false, 0)]
public char imtype;
[DNAFieldAttribute(1, "char", 1, "depth", "char", false, 1)]
public char depth;
[DNAFieldAttribute(1, "char", 2, "planes", "char", false, 2)]
public char planes;
[DNAFieldAttribute(1, "char", 3, "flag", "char", false, 3)]
public char flag;
[DNAFieldAttribute(1, "char", 4, "quality", "char", false, 4)]
public char quality;
[DNAFieldAttribute(1, "char", 5, "compress", "char", false, 5)]
public char compress;
[DNAFieldAttribute(1, "char", 6, "exr_codec", "char", false, 6)]
public char exr_codec;
[DNAFieldAttribute(1, "char", 7, "cineon_flag", "char", false, 7)]
public char cineon_flag;
[DNAFieldAttribute(2, "short", 8, "cineon_white", "short", false, 8)]
public short cineon_white;
[DNAFieldAttribute(2, "short", 9, "cineon_black", "short", false, 10)]
public short cineon_black;
[DNAFieldAttribute(4, "float", 10, "cineon_gamma", "float", false, 12)]
public float cineon_gamma;
[DNAFieldAttribute(1, "char", 11, "jp2_flag", "char", false, 16)]
public char jp2_flag;
[DNAFieldAttribute(1, "char", 12, "jp2_codec", "char", false, 17)]
public char jp2_codec;
[DNAFieldAttribute(1, "char", 13, "tiff_codec", "char", false, 18)]
public char tiff_codec;
[DNAFieldAttribute(4, "char", 14, "_pad[4]", "System.Char[]", false, 19)]
public char[] _pad = new System.Char[4];
[DNAFieldAttribute(1, "char", 15, "views_format", "char", false, 23)]
public char views_format;
[DNAFieldAttribute(8, "Stereo3dFormat", 16, "stereo3d_format", "Stereo3dFormat", false, 24)]
public Stereo3dFormat stereo3d_format;
[DNAFieldAttribute(1, "char", 17, "color_management", "char", false, 32)]
public char color_management;
[DNAFieldAttribute(7, "char", 18, "_pad1[7]", "System.Char[]", false, 33)]
public char[] _pad1 = new System.Char[7];
[DNAFieldAttribute(168, "ColorManagedViewSettings", 19, "view_settings", "ColorManagedViewSettings", false, 40)]
public ColorManagedViewSettings view_settings;
[DNAFieldAttribute(64, "ColorManagedDisplaySettings", 20, "display_settings", "ColorManagedDisplaySettings", false, 208)]
public ColorManagedDisplaySettings display_settings;
[DNAFieldAttribute(64, "ColorManagedColorspaceSettings", 21, "linear_colorspace_settings", "ColorManagedColorspaceSettings", false, 272)]
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;
}
}
}