Added memoryOffset value to DNAFieldAttribute, regenerated files.

This commit is contained in:
Samuele Lorefice
2025-02-20 21:00:55 +01:00
parent b171b65aa5
commit f383debd18
939 changed files with 9636 additions and 9605 deletions

View File

@@ -15,49 +15,49 @@ namespace BlendFile.DNA {
[DNAClassAttribute(615, "ImageFormatData", 336)]
public struct ImageFormatData {
[DNAFieldAttribute(0, "char", "imtype", "char", 1, false)]
[DNAFieldAttribute(0, "char", "imtype", "char", 1, false, 0)]
public char imtype;
[DNAFieldAttribute(1, "char", "depth", "char", 1, false)]
[DNAFieldAttribute(1, "char", "depth", "char", 1, false, 1)]
public char depth;
[DNAFieldAttribute(2, "char", "planes", "char", 1, false)]
[DNAFieldAttribute(2, "char", "planes", "char", 1, false, 2)]
public char planes;
[DNAFieldAttribute(3, "char", "flag", "char", 1, false)]
[DNAFieldAttribute(3, "char", "flag", "char", 1, false, 3)]
public char flag;
[DNAFieldAttribute(4, "char", "quality", "char", 1, false)]
[DNAFieldAttribute(4, "char", "quality", "char", 1, false, 4)]
public char quality;
[DNAFieldAttribute(5, "char", "compress", "char", 1, false)]
[DNAFieldAttribute(5, "char", "compress", "char", 1, false, 5)]
public char compress;
[DNAFieldAttribute(6, "char", "exr_codec", "char", 1, false)]
[DNAFieldAttribute(6, "char", "exr_codec", "char", 1, false, 6)]
public char exr_codec;
[DNAFieldAttribute(7, "char", "cineon_flag", "char", 1, false)]
[DNAFieldAttribute(7, "char", "cineon_flag", "char", 1, false, 7)]
public char cineon_flag;
[DNAFieldAttribute(8, "short", "cineon_white", "short", 2, false)]
[DNAFieldAttribute(8, "short", "cineon_white", "short", 2, false, 8)]
public short cineon_white;
[DNAFieldAttribute(9, "short", "cineon_black", "short", 2, false)]
[DNAFieldAttribute(9, "short", "cineon_black", "short", 2, false, 10)]
public short cineon_black;
[DNAFieldAttribute(10, "float", "cineon_gamma", "float", 4, false)]
[DNAFieldAttribute(10, "float", "cineon_gamma", "float", 4, false, 12)]
public float cineon_gamma;
[DNAFieldAttribute(11, "char", "jp2_flag", "char", 1, false)]
[DNAFieldAttribute(11, "char", "jp2_flag", "char", 1, false, 16)]
public char jp2_flag;
[DNAFieldAttribute(12, "char", "jp2_codec", "char", 1, false)]
[DNAFieldAttribute(12, "char", "jp2_codec", "char", 1, false, 17)]
public char jp2_codec;
[DNAFieldAttribute(13, "char", "tiff_codec", "char", 1, false)]
[DNAFieldAttribute(13, "char", "tiff_codec", "char", 1, false, 18)]
public char tiff_codec;
[DNAFieldAttribute(14, "char", "_pad[4]", "System.Char[]", 4, false)]
[DNAFieldAttribute(14, "char", "_pad[4]", "System.Char[]", 4, false, 19)]
public char[] _pad = new System.Char[4];
[DNAFieldAttribute(15, "char", "views_format", "char", 1, false)]
[DNAFieldAttribute(15, "char", "views_format", "char", 1, false, 23)]
public char views_format;
[DNAFieldAttribute(16, "Stereo3dFormat", "stereo3d_format", "Stereo3dFormat", 8, false)]
[DNAFieldAttribute(16, "Stereo3dFormat", "stereo3d_format", "Stereo3dFormat", 8, false, 24)]
public Stereo3dFormat stereo3d_format;
[DNAFieldAttribute(17, "char", "color_management", "char", 1, false)]
[DNAFieldAttribute(17, "char", "color_management", "char", 1, false, 32)]
public char color_management;
[DNAFieldAttribute(18, "char", "_pad1[7]", "System.Char[]", 7, false)]
[DNAFieldAttribute(18, "char", "_pad1[7]", "System.Char[]", 7, false, 33)]
public char[] _pad1 = new System.Char[7];
[DNAFieldAttribute(19, "ColorManagedViewSettings", "view_settings", "ColorManagedViewSettings", 168, false)]
[DNAFieldAttribute(19, "ColorManagedViewSettings", "view_settings", "ColorManagedViewSettings", 168, false, 40)]
public ColorManagedViewSettings view_settings;
[DNAFieldAttribute(20, "ColorManagedDisplaySettings", "display_settings", "ColorManagedDisplaySettings", 64, false)]
[DNAFieldAttribute(20, "ColorManagedDisplaySettings", "display_settings", "ColorManagedDisplaySettings", 64, false, 208)]
public ColorManagedDisplaySettings display_settings;
[DNAFieldAttribute(21, "ColorManagedColorspaceSettings", "linear_colorspace_settings", "ColorManagedColorspaceSettings", 64, false)]
[DNAFieldAttribute(21, "ColorManagedColorspaceSettings", "linear_colorspace_settings", "ColorManagedColorspaceSettings", 64, false, 272)]
public ColorManagedColorspaceSettings linear_colorspace_settings;
public ImageFormatData() {
this.imtype = default;