draco-core 2.0.0

Pure Rust core encoder and decoder for Draco geometry compression
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
//! Integer sequential attribute encoder.
//!
//! [`SequentialIntegerAttributeEncoder`] quantizes (when needed) and encodes
//! integer attribute values, applying the chosen prediction scheme and writing
//! prediction residuals. Encode-side counterpart of
//! `SequentialIntegerAttributeDecoder`. Port of Draco's
//! `sequential_integer_attribute_encoder.h`.

use crate::attribute_quantization_transform::AttributeQuantizationTransform;
use crate::attribute_transform::AttributeTransform;
use crate::data_buffer::DataBuffer;
use crate::draco_types::DataType;
use crate::encoder_buffer::EncoderBuffer;
use crate::encoder_options::EncoderOptions;
use crate::geometry_attribute::{GeometryAttributeType, PointAttribute};
use crate::geometry_indices::PointIndex;
use crate::mesh_prediction_scheme_data::MeshPredictionSchemeData;
use crate::point_cloud::PointCloud;
use crate::point_cloud_encoder::GeometryEncoder;
use crate::portable_attribute::PredictionParent;
use crate::prediction_scheme::PredictionScheme;
use crate::prediction_scheme::{
    EntryToPointIdMap, PredictionSchemeEncoder, PredictionSchemeMethod,
    PredictionSchemeTransformType,
};
use crate::prediction_scheme_constrained_multi_parallelogram::MeshPredictionSchemeConstrainedMultiParallelogramEncoder;
use crate::prediction_scheme_delta::PredictionSchemeDeltaEncoder;
use crate::prediction_scheme_geometric_normal::MeshPredictionSchemeGeometricNormalEncoder;
#[cfg(feature = "legacy_bitstream_encode")]
use crate::prediction_scheme_multi_parallelogram::MeshPredictionSchemeMultiParallelogramEncoder;
use crate::prediction_scheme_normal_octahedron_canonicalized_encoding_transform::PredictionSchemeNormalOctahedronCanonicalizedEncodingTransform;
use crate::prediction_scheme_parallelogram::MeshPredictionSchemeParallelogramEncoder;
use crate::prediction_scheme_selection::select_prediction_method;
#[cfg(feature = "legacy_bitstream_encode")]
use crate::prediction_scheme_tex_coords_deprecated::MeshPredictionSchemeTexCoordsDeprecatedEncoder;
use crate::prediction_scheme_tex_coords_portable::{
    MeshPredictionSchemeTexCoordsPortableEncoder,
    PredictionSchemeTexCoordsPortableEncodingTransform,
};
use crate::prediction_scheme_wrap::PredictionSchemeWrapEncodingTransform;
use crate::sequential_attribute_encoder::SequentialAttributeEncoder;
use crate::status::{DracoError, Status};
use crate::symbol_encoding::{encode_symbols, SymbolEncodingOptions};

/// Which transform family this encoder builds its prediction schemes with.
///
/// Upstream expresses the same choice as a virtual: the base
/// `SequentialIntegerAttributeEncoder::CreateIntPredictionScheme` names
/// `PredictionSchemeWrapEncodingTransform`, and `SequentialNormalAttributeEncoder`
/// overrides it to name the canonicalized octahedron transform instead. That is
/// the only axis that varies between the two, so it is the only thing this
/// carries.
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq)]
pub enum IntPredictionTransformFamily {
    /// Every attribute but an octahedral normal.
    #[default]
    Wrap,
    /// Octahedral normals, carrying the transform's `max_quantized_value` and
    /// whether to emit the canonicalized transform (id 3) or the pre-0.10.0
    /// non-canonicalized one (id 2).
    NormalOctahedron {
        max_quantized_value: i32,
        canonicalized: bool,
    },
}

impl IntPredictionTransformFamily {
    fn build_octahedron(
        max_quantized_value: i32,
        canonicalized: bool,
    ) -> PredictionSchemeNormalOctahedronCanonicalizedEncodingTransform {
        let mut transform = PredictionSchemeNormalOctahedronCanonicalizedEncodingTransform::new(
            max_quantized_value,
        );
        transform.set_canonicalized(canonicalized);
        transform
    }
}

/// Whether this attribute's quantization parameters belong inline, before the
/// integer values, rather than after them.
///
/// Shared by the encoder and by `MeshEncoder`'s trailing-parameter pass, so the
/// two cannot both write them or both skip them. Keyed on
/// [`select_sequential_encoder`] rather than on the data type directly: a
/// quantized normal takes the octahedron transform, which has its own inline
/// block at a different version boundary just above this one.
///
/// [`select_sequential_encoder`]: crate::sequential_attribute_encoder::select_sequential_encoder
#[cfg(all(feature = "encoder", feature = "legacy_bitstream_encode"))]
pub(crate) fn uses_inline_quantization_parameters(
    attribute: &crate::geometry_attribute::PointAttribute,
    options: &EncoderOptions,
    att_id: i32,
) -> bool {
    use crate::sequential_attribute_encoder::{
        select_sequential_encoder, SequentialAttributeEncoderType,
    };

    let quantization_bits = options.get_attribute_int(att_id, "quantization_bits", -1);
    if select_sequential_encoder(attribute, quantization_bits)
        != SequentialAttributeEncoderType::Quantization
    {
        return false;
    }
    let (major, minor) = options.get_version();
    let bitstream_version = crate::version::bitstream_version(major, minor);
    // Upstream decides on the version alone: `DecodeQuantizedDataInfo` is called
    // from `DecodeIntegerValues` for every stream below 2.0 and from
    // `DecodeDataNeededByPortableTransform` at 2.0 and up, and the attribute
    // decoder it lives in is shared by meshes and point clouds. Splitting the
    // rule by geometry type put a point cloud's parameters where no C++ decoder
    // looks for them, and this crate's own decoder had the matching split, so
    // the round trip agreed with itself.
    bitstream_version != 0 && bitstream_version < 0x0200
}

/// Binds the position parent by the rule the decoder runs, not by the scheme.
///
/// The decoder offers a parent-reading scheme one of two things: the portable
/// copy, when the position is a parent with a registered one, or -- only
/// below bitstream 2.0, where upstream's `InitPredictionScheme` passes the
/// attribute itself -- the attribute as it stands. Which of the two applies
/// is the version's to decide, not the scheme's: the deprecated tex-coord
/// predictor reads real positions, but from 2.0 there are no real positions
/// on offer to anyone, and an encode that predicted from them wrote a stream
/// its own decoder refuses. The two arguments are the two things that can
/// exist: the registered copy, and the attribute behind the named position
/// id. The `None` arm below is upstream's
/// `portable_attribute_ != nullptr ? portable : attribute()` written where
/// the choice is made rather than folded into the lookup.
///
/// At 2.0 and above a parent the portable pass cannot have written fails the
/// way upstream's decoder fails the scheme; the selection downgrade has
/// already declined every state that reaches that arm.
fn bind_position_parent<'p>(
    version_major: u8,
    version_minor: u8,
    portable_position: Option<&'p PointAttribute>,
    raw_position: Option<&'p PointAttribute>,
    label: &str,
) -> Result<PredictionParent<'p>, DracoError> {
    let pre_2_0 = !crate::version::binds_portable_parent_only(version_major, version_minor);
    let needs_position =
        || DracoError::invalid_parameter(format!("{label} prediction needs a position attribute"));
    let Some(att) = portable_position else {
        // No registered copy. Below 2.0 that leaves the attribute itself,
        // which is what the decoder hands over; from 2.0 there is nothing to
        // bind and the scheme fails.
        if pre_2_0 {
            return Ok(PredictionParent::legacy(
                raw_position.ok_or_else(needs_position)?,
            ));
        }
        return Err(DracoError::general(format!(
            "No portable position attribute for {label}"
        )));
    };
    match PredictionParent::portable(att) {
        Ok(parent) => Ok(parent),
        // A position the portable pass cannot have written -- a float one
        // nobody quantized. Below 2.0 that is still what the decoder offers
        // the scheme, so bind it as the decoder would.
        Err(_) if pre_2_0 => Ok(PredictionParent::legacy(
            raw_position.ok_or_else(needs_position)?,
        )),
        Err(e) => Err(e),
    }
}

pub struct SequentialIntegerAttributeEncoder {
    pub base: SequentialAttributeEncoder,
    /// Stores the quantization transform if one was applied, for later encoding
    quantization_transform: Option<AttributeQuantizationTransform>,
    transform_family: IntPredictionTransformFamily,
    /// What `encode_values` settled on, recorded where it writes the two bytes
    /// into the stream. The choice is the encoder's to make -- a caller asking
    /// for a scheme gets it only when the attribute and the mesh support one,
    /// and several arms fall back to `Difference` -- so this is the only place
    /// that knows the answer.
    selected_prediction: Option<(PredictionSchemeMethod, PredictionSchemeTransformType)>,
}

impl Default for SequentialIntegerAttributeEncoder {
    fn default() -> Self {
        Self::new()
    }
}

impl SequentialIntegerAttributeEncoder {
    pub fn new() -> Self {
        Self {
            base: SequentialAttributeEncoder::new(),
            quantization_transform: None,
            transform_family: IntPredictionTransformFamily::Wrap,
            selected_prediction: None,
        }
    }

    /// The prediction scheme and transform the last `encode_values` chose, or
    /// `None` if it has not run.
    pub fn selected_prediction(
        &self,
    ) -> Option<(PredictionSchemeMethod, PredictionSchemeTransformType)> {
        self.selected_prediction
    }

    /// Selects the transform family the prediction schemes are built with.
    ///
    /// Counterpart of overriding `CreateIntPredictionScheme`. Defaults to wrap,
    /// so only the normal encoder needs to call this.
    pub fn set_transform_family(&mut self, family: IntPredictionTransformFamily) {
        self.transform_family = family;
    }

    pub fn init(&mut self, attribute_id: i32) {
        self.base.init(attribute_id);
    }

    /// Encodes the quantization transform parameters if a quantization transform was applied.
    /// This should be called AFTER encode_values(), matching the C++ encoding order:
    /// 1. EncodePortableAttributes (encode_values) - prediction method + compressed data
    /// 2. EncodeDataNeededByPortableTransforms (this method) - quantization parameters
    pub fn encode_data_needed_by_portable_transform(
        &self,
        out_buffer: &mut EncoderBuffer,
    ) -> Status {
        if let Some(ref q_transform) = self.quantization_transform {
            q_transform.encode_parameters(out_buffer)
        } else {
            Ok(()) // No transform to encode
        }
    }

    // Symmetric to decode_values: requires 7 parameters for mesh encoding including
    // traversal order, corner table for prediction schemes, and buffer management.
    // Parameter count matches C++ API design for complex mesh attribute encoding.
    #[allow(clippy::too_many_arguments)]
    pub fn encode_values(
        &mut self,
        point_cloud: &PointCloud,
        point_ids: &[PointIndex],
        out_buffer: &mut EncoderBuffer,
        options: &EncoderOptions,
        encoder: &dyn GeometryEncoder,
        pre_computed_portable_attribute: Option<&crate::geometry_attribute::PointAttribute>,
        transform_already_encoded: bool,
    ) -> Status {
        let att_id = self.base.attribute_id();
        if att_id < 0 || att_id >= point_cloud.num_attributes() {
            return Err(DracoError::invalid_parameter(format!(
                "Attribute {att_id} is outside the {} the geometry has",
                point_cloud.num_attributes()
            )));
        }

        let attribute = point_cloud.attribute(att_id);

        let mut local_portable_attribute = crate::geometry_attribute::PointAttribute::default();
        let mut is_portable_attribute = false;

        // Attribute transform handling:
        // - For mesh encoding (transform_already_encoded == true): attribute transform is
        //   handled externally (e.g., by MeshEncoder which writes transform type and params).
        // - For point cloud encoding (transform_already_encoded == false): we need to apply
        //   the transform here but NOT write transform type/params - those are written later
        //   via encode_data_needed_by_portable_transform().
        let current_attribute = if transform_already_encoded {
            // Mesh path: transform already encoded, just use provided portable attribute
            if let Some(pa) = pre_computed_portable_attribute {
                is_portable_attribute = true;
                pa
            } else {
                attribute
            }
        } else if let Some(pa) = pre_computed_portable_attribute {
            // Portable attribute already prepared externally (e.g., normal encoding)
            is_portable_attribute = true;
            pa
        } else {
            // Point cloud path: check if we need to apply quantization
            let quantization_bits = options.get_attribute_int(att_id, "quantization_bits", -1);
            if quantization_bits > 0
                && (attribute.data_type() == DataType::Float32
                    || attribute.data_type() == DataType::Float64)
            {
                // Apply quantization transform (but don't write params yet - that happens
                // in encode_data_needed_by_portable_transform)
                let mut q_transform = AttributeQuantizationTransform::new();
                q_transform.compute_parameters(attribute, quantization_bits)?;
                q_transform.transform_attribute(
                    attribute,
                    EntryToPointIdMap::from_point_indices(point_ids),
                    &mut local_portable_attribute,
                )?;
                // Store transform for later encoding
                self.quantization_transform = Some(q_transform);
                is_portable_attribute = true;
                &local_portable_attribute
            } else {
                attribute
            }
        };

        // 1. Gather values
        let num_components = current_attribute.num_components() as usize;
        let num_points = point_ids.len();
        let num_values = num_points * num_components;
        #[cfg(feature = "debug_logs")]
        {
            debug_log!(
                "DEBUG: encode_values: num_points={} num_components={} num_values={}",
                num_points,
                num_components,
                num_values
            );
            debug_log!("DEBUG: is_portable_attribute={}", is_portable_attribute);
        }

        let mut values = Vec::with_capacity(num_values);
        let byte_stride = current_attribute.byte_stride() as usize;
        let data_type = current_attribute.data_type();
        let component_size = data_type.byte_length();
        for i in 0..num_points {
            let entry_index = if is_portable_attribute {
                crate::geometry_indices::AttributeValueIndex(i as u32)
            } else {
                let pid = point_ids[i];
                attribute.mapped_index(pid)
            };
            let entry_offset = entry_index.0 as usize * byte_stride;

            for c in 0..num_components {
                let component_offset = entry_offset + c * component_size;
                let val =
                    read_value_as_i32(current_attribute.buffer(), component_offset, data_type);
                values.push(val);
            }
        }

        // Debug: print encoded values
        #[cfg(feature = "debug_logs")]
        {
            if num_components == 3 {
                debug_log!("DEBUG encoder values (first 25 x/y/z):");
                for i in 0..std::cmp::min(25, num_points) {
                    let x = values[i * 3];
                    let y = values[i * 3 + 1];
                    let z = values[i * 3 + 2];
                    debug_log!(
                        "  data_id={} -> point_ids[{}]={:?}: quantized({}, {}, {})",
                        i,
                        i,
                        point_ids[i],
                        x,
                        y,
                        z
                    );
                }
            }
        }

        // 2. Prediction Selection
        // Per attribute, then global, then the automatic choice -- upstream's
        // GetPredictionMethodFromOptions reads it off the attribute.
        let preferred_scheme = options.get_attribute_prediction_scheme(att_id);
        let mut selected_method;

        if preferred_scheme != -1 {
            selected_method = match preferred_scheme {
                0 => PredictionSchemeMethod::Difference,
                1 => PredictionSchemeMethod::MeshPredictionParallelogram,
                2 => PredictionSchemeMethod::MeshPredictionMultiParallelogram,
                3 => PredictionSchemeMethod::MeshPredictionTexCoordsDeprecated,
                4 => PredictionSchemeMethod::MeshPredictionConstrainedMultiParallelogram,
                5 => PredictionSchemeMethod::MeshPredictionTexCoordsPortable,
                6 => PredictionSchemeMethod::MeshPredictionGeometricNormal,
                _ => PredictionSchemeMethod::None,
            };
        } else {
            selected_method = select_prediction_method(att_id, options, encoder);
        }

        // Whichever way it was chosen. A scheme that predicts from position
        // needs a three-component `Position` to predict from, and the decoder
        // is where that is enforced, so selecting one without it writes a
        // stream this crate's own decoder refuses.
        selected_method = crate::prediction_scheme_selection::downgrade_without_position_parent(
            selected_method,
            encoder,
            options,
        );

        // An octahedron-folded normal can only be predicted by a scheme that
        // carries the octahedron transform, which is the geometric-normal and
        // difference pair -- upstream's
        // `SequentialNormalAttributeEncoder::CreateIntPredictionScheme` builds
        // no others. Every remaining method here is wrap-transformed, and a
        // wrap-transformed normal is a stream no decoder reads back: below 2.0
        // the octahedron's bit count rides between the prediction header and
        // the values, and it is written only when the transform says
        // octahedron, so choosing one of the parallelogram schemes for a normal
        // left the decoder reading the first value byte as a bit count.
        if !matches!(self.transform_family, IntPredictionTransformFamily::Wrap)
            && !matches!(
                selected_method,
                PredictionSchemeMethod::None
                    | PredictionSchemeMethod::Difference
                    | PredictionSchemeMethod::MeshPredictionGeometricNormal
            )
        {
            selected_method = PredictionSchemeMethod::Difference;
        }

        // The wrap transform stores `1 + (max - min)` of the raw values in an
        // i32 (see `PredictionSchemeWrapEncodingTransform::init`), and its
        // decoder counterpart refuses any stream whose span does not fit --
        // see the matching check in `decode_transform_data`. An explicit
        // (unquantized) integer attribute can carry values spanning close to
        // the full i32 range, which this crate's own decoder would then
        // reject. Every branch below that predicts with `Difference`,
        // `MeshPredictionParallelogram`, etc. still measures its correction
        // against these same raw values, so the span is the same no matter
        // which wrap-based predictor gets picked -- check it once, up front,
        // and downgrade to `None` (which copies the values through with no
        // transform at all) rather than build a predictor whose output the
        // decoder cannot read back.
        if self.transform_family == IntPredictionTransformFamily::Wrap {
            if let (Some(&min_v), Some(&max_v)) = (values.iter().min(), values.iter().max()) {
                let dif = (max_v as i64) - (min_v as i64);
                if dif >= i32::MAX as i64 {
                    selected_method = PredictionSchemeMethod::None;
                }
            }
        }

        // 3. Apply Prediction
        let mut corrections = vec![0i32; num_values];
        let mut selected_transform_type = PredictionSchemeTransformType::Wrap;
        let mut predictor_delta = None;
        let mut predictor_delta_octahedron = None;
        let mut predictor_parallelogram = None;
        #[cfg(feature = "legacy_bitstream_encode")]
        let mut predictor_multi_parallelogram = None;
        #[cfg(feature = "legacy_bitstream_encode")]
        let mut predictor_tex_coords_deprecated = None;
        let mut predictor_constrained_multi_parallelogram = None;
        let mut predictor_tex_coords_portable = None;
        let mut predictor_geometric_normal = None;

        // Maps need to live long enough
        let mut vertex_to_data_map = Vec::new();
        let mut data_to_corner_map = Vec::new();

        match selected_method {
            // Delta over whichever transform family this encoder was given.
            // The decoder makes the same split on the way back in, keyed on
            // the transform byte -- see the Difference arm of
            // `sequential_integer_attribute_decoder.rs`.
            PredictionSchemeMethod::Difference => match self.transform_family {
                IntPredictionTransformFamily::NormalOctahedron {
                    max_quantized_value,
                    canonicalized,
                } => {
                    let transform = IntPredictionTransformFamily::build_octahedron(
                        max_quantized_value,
                        canonicalized,
                    );
                    let mut predictor = PredictionSchemeDeltaEncoder::new(transform);
                    selected_transform_type = predictor.get_transform_type();
                    predictor.compute_correction_values(
                        &values,
                        &mut corrections,
                        num_values,
                        num_components,
                        None,
                    )?;
                    predictor_delta_octahedron = Some(predictor);
                }
                IntPredictionTransformFamily::Wrap => {
                    let transform = PredictionSchemeWrapEncodingTransform::<i32>::new();
                    let mut predictor = PredictionSchemeDeltaEncoder::new(transform);
                    selected_transform_type = predictor.get_transform_type();
                    predictor.compute_correction_values(
                        &values,
                        &mut corrections,
                        num_values,
                        num_components,
                        None,
                    )?;
                    predictor_delta = Some(predictor);
                }
            },
            PredictionSchemeMethod::MeshPredictionParallelogram => {
                if let Some(_mesh) = encoder.mesh() {
                    if let Some(corner_table) = encoder.corner_table() {
                        // Generate maps
                        // For Edgebreaker, vertex_to_data_map is indexed by corner table VertexIndex.
                        // For Sequential, it's indexed by mesh PointIndex (which equals VertexIndex).
                        let is_edgebreaker = encoder.get_encoding_method() == Some(1);

                        // vertex_to_data_map must be indexed by corner table VertexIndex
                        let map_size = corner_table.num_vertices();
                        vertex_to_data_map.resize(map_size, -1);
                        data_to_corner_map.resize(num_points, 0);

                        if is_edgebreaker {
                            // For Edgebreaker, get both maps from the encoder.
                            // These maps were computed during connectivity encoding and
                            // are consistent with each other.
                            if let Some(map) = encoder.get_data_to_corner_map() {
                                if map.len() == num_points {
                                    data_to_corner_map.copy_from_slice(map);
                                }
                            }
                            if let Some(map) = encoder.get_vertex_to_data_map() {
                                // Use the pre-computed vertex_to_data_map from the encoder
                                replace_vec_from_slice(&mut vertex_to_data_map, map);
                            }
                        } else {
                            // Sequential encoding: PointIndex == VertexIndex (1:1 mapping)
                            for (i, &point_id) in point_ids.iter().enumerate() {
                                if (point_id.0 as usize) < vertex_to_data_map.len()
                                    && vertex_to_data_map[point_id.0 as usize] == -1
                                {
                                    vertex_to_data_map[point_id.0 as usize] = i as i32;
                                }
                                let ci = corner_table.left_most_corner(
                                    crate::geometry_indices::VertexIndex(point_id.0),
                                );
                                data_to_corner_map[i] = ci.0;
                            }
                        }

                        let mut mesh_data = MeshPredictionSchemeData::new();
                        mesh_data.set(corner_table, &data_to_corner_map, &vertex_to_data_map);

                        #[cfg(feature = "debug_logs")]
                        {
                            let head = vertex_to_data_map.iter().take(16).collect::<Vec<_>>();
                            let tail = vertex_to_data_map.iter().rev().take(16).collect::<Vec<_>>();
                            debug_log!(
                                "Parallelogram encoder: vertex_to_data_map size={}, head={:?}, tail(reversed)={:?}",
                                vertex_to_data_map.len(),
                                head,
                                tail
                            );
                            debug_log!(
                                "Parallelogram encoder: data_to_corner_map head={:?}",
                                data_to_corner_map.iter().take(16).collect::<Vec<_>>()
                            );
                        }

                        let transform = PredictionSchemeWrapEncodingTransform::<i32>::new();
                        let mut predictor = MeshPredictionSchemeParallelogramEncoder::new(
                            current_attribute,
                            transform,
                            mesh_data,
                        );
                        selected_transform_type = predictor.get_transform_type();

                        predictor.compute_correction_values(
                            &values,
                            &mut corrections,
                            num_values,
                            num_components,
                            None,
                        )?;
                        predictor_parallelogram = Some(predictor);
                    } else {
                        // Compatibility fallback: match C++ factory behavior and use
                        // Difference when a mesh-only prediction scheme cannot be created.
                        selected_method = PredictionSchemeMethod::Difference;
                        let transform = PredictionSchemeWrapEncodingTransform::<i32>::new();
                        let mut predictor = PredictionSchemeDeltaEncoder::new(transform);
                        selected_transform_type = predictor.get_transform_type();
                        predictor.compute_correction_values(
                            &values,
                            &mut corrections,
                            num_values,
                            num_components,
                            None,
                        )?;
                        predictor_delta = Some(predictor);
                    }
                } else {
                    // Compatibility fallback: mesh-only prediction schemes degrade to
                    // Difference for non-mesh geometry, matching C++.
                    selected_method = PredictionSchemeMethod::Difference;
                    let transform = PredictionSchemeWrapEncodingTransform::<i32>::new();
                    let mut predictor = PredictionSchemeDeltaEncoder::new(transform);
                    selected_transform_type = predictor.get_transform_type();
                    predictor.compute_correction_values(
                        &values,
                        &mut corrections,
                        num_values,
                        num_components,
                        None,
                    )?;
                    predictor_delta = Some(predictor);
                }
            }
            PredictionSchemeMethod::MeshPredictionConstrainedMultiParallelogram => {
                if let Some(_mesh) = encoder.mesh() {
                    if let Some(corner_table) = encoder.corner_table() {
                        // Generate maps - vertex_to_data_map indexed by corner table VertexIndex
                        let is_edgebreaker = encoder.get_encoding_method() == Some(1);

                        let map_size = corner_table.num_vertices();
                        vertex_to_data_map.resize(map_size, -1);
                        data_to_corner_map.resize(num_points, 0);

                        if is_edgebreaker {
                            // For Edgebreaker, get both maps from the encoder.
                            if let Some(map) = encoder.get_data_to_corner_map() {
                                if map.len() == num_points {
                                    data_to_corner_map.copy_from_slice(map);
                                }
                            }
                            if let Some(map) = encoder.get_vertex_to_data_map() {
                                replace_vec_from_slice(&mut vertex_to_data_map, map);
                            }
                        } else {
                            for (i, &point_id) in point_ids.iter().enumerate() {
                                if (point_id.0 as usize) < vertex_to_data_map.len()
                                    && vertex_to_data_map[point_id.0 as usize] == -1
                                {
                                    vertex_to_data_map[point_id.0 as usize] = i as i32;
                                }
                                let ci = corner_table.left_most_corner(
                                    crate::geometry_indices::VertexIndex(point_id.0),
                                );
                                data_to_corner_map[i] = ci.0;
                            }
                        }

                        let mut mesh_data = MeshPredictionSchemeData::new();
                        mesh_data.set(corner_table, &data_to_corner_map, &vertex_to_data_map);

                        let transform = PredictionSchemeWrapEncodingTransform::<i32>::new();
                        let mut predictor =
                            MeshPredictionSchemeConstrainedMultiParallelogramEncoder::new(
                                transform, mesh_data,
                            );
                        let (vmaj, vmin) = options.get_version();
                        predictor
                            .set_bitstream_version(crate::version::bitstream_version(vmaj, vmin));
                        selected_transform_type = predictor.get_transform_type();

                        predictor.compute_correction_values(
                            &values,
                            &mut corrections,
                            num_values,
                            num_components,
                            None,
                        )?;
                        predictor_constrained_multi_parallelogram = Some(predictor);
                    } else {
                        // Compatibility fallback: match C++ factory behavior and use
                        // Difference when a mesh-only prediction scheme cannot be created.
                        selected_method = PredictionSchemeMethod::Difference;
                        let transform = PredictionSchemeWrapEncodingTransform::<i32>::new();
                        let mut predictor = PredictionSchemeDeltaEncoder::new(transform);
                        predictor.compute_correction_values(
                            &values,
                            &mut corrections,
                            num_values,
                            num_components,
                            None,
                        )?;
                        predictor_delta = Some(predictor);
                    }
                } else {
                    // Compatibility fallback: mesh-only prediction schemes degrade to
                    // Difference for non-mesh geometry, matching C++.
                    selected_method = PredictionSchemeMethod::Difference;
                    let transform = PredictionSchemeWrapEncodingTransform::<i32>::new();
                    let mut predictor = PredictionSchemeDeltaEncoder::new(transform);
                    predictor.compute_correction_values(
                        &values,
                        &mut corrections,
                        num_values,
                        num_components,
                        None,
                    )?;
                    predictor_delta = Some(predictor);
                }
            }
            #[cfg(feature = "legacy_bitstream_encode")]
            PredictionSchemeMethod::MeshPredictionMultiParallelogram => {
                if let Some(_mesh) = encoder.mesh() {
                    if let Some(corner_table) = encoder.corner_table() {
                        let is_edgebreaker = encoder.get_encoding_method() == Some(1);

                        let map_size = corner_table.num_vertices();
                        vertex_to_data_map.resize(map_size, -1);
                        data_to_corner_map.resize(num_points, 0);

                        if is_edgebreaker {
                            if let Some(map) = encoder.get_data_to_corner_map() {
                                if map.len() == num_points {
                                    data_to_corner_map.copy_from_slice(map);
                                }
                            }
                            if let Some(map) = encoder.get_vertex_to_data_map() {
                                replace_vec_from_slice(&mut vertex_to_data_map, map);
                            }
                        } else {
                            for (i, &point_id) in point_ids.iter().enumerate() {
                                if (point_id.0 as usize) < vertex_to_data_map.len()
                                    && vertex_to_data_map[point_id.0 as usize] == -1
                                {
                                    vertex_to_data_map[point_id.0 as usize] = i as i32;
                                }
                                let ci = corner_table.left_most_corner(
                                    crate::geometry_indices::VertexIndex(point_id.0),
                                );
                                data_to_corner_map[i] = ci.0;
                            }
                        }

                        let mut mesh_data = MeshPredictionSchemeData::new();
                        mesh_data.set(corner_table, &data_to_corner_map, &vertex_to_data_map);

                        let transform = PredictionSchemeWrapEncodingTransform::<i32>::new();
                        let mut predictor = MeshPredictionSchemeMultiParallelogramEncoder::new(
                            transform, mesh_data,
                        );
                        selected_transform_type = predictor.get_transform_type();

                        predictor.compute_correction_values(
                            &values,
                            &mut corrections,
                            num_values,
                            num_components,
                            None,
                        )?;
                        predictor_multi_parallelogram = Some(predictor);
                    } else {
                        selected_method = PredictionSchemeMethod::Difference;
                        let transform = PredictionSchemeWrapEncodingTransform::<i32>::new();
                        let mut predictor = PredictionSchemeDeltaEncoder::new(transform);
                        selected_transform_type = predictor.get_transform_type();
                        predictor.compute_correction_values(
                            &values,
                            &mut corrections,
                            num_values,
                            num_components,
                            None,
                        )?;
                        predictor_delta = Some(predictor);
                    }
                } else {
                    selected_method = PredictionSchemeMethod::Difference;
                    let transform = PredictionSchemeWrapEncodingTransform::<i32>::new();
                    let mut predictor = PredictionSchemeDeltaEncoder::new(transform);
                    selected_transform_type = predictor.get_transform_type();
                    predictor.compute_correction_values(
                        &values,
                        &mut corrections,
                        num_values,
                        num_components,
                        None,
                    )?;
                    predictor_delta = Some(predictor);
                }
            }
            #[cfg(not(feature = "legacy_bitstream_encode"))]
            PredictionSchemeMethod::MeshPredictionMultiParallelogram => {
                return Err(DracoError::unsupported_feature(
                    "MultiParallelogram prediction needs the legacy_bitstream_encode feature"
                        .to_string(),
                ))
            }
            #[cfg(feature = "legacy_bitstream_encode")]
            PredictionSchemeMethod::MeshPredictionTexCoordsDeprecated => {
                if let Some(_mesh) = encoder.mesh() {
                    if let Some(corner_table) = encoder.corner_table() {
                        let is_edgebreaker = encoder.get_encoding_method() == Some(1);

                        let map_size = corner_table.num_vertices();
                        vertex_to_data_map.resize(map_size, -1);
                        data_to_corner_map.resize(num_points, 0);

                        if is_edgebreaker {
                            if let Some(map) = encoder.get_data_to_corner_map() {
                                if map.len() == num_points {
                                    data_to_corner_map.copy_from_slice(map);
                                }
                            }
                            if let Some(map) = encoder.get_vertex_to_data_map() {
                                replace_vec_from_slice(&mut vertex_to_data_map, map);
                            }
                        } else {
                            for (i, &point_id) in point_ids.iter().enumerate() {
                                if (point_id.0 as usize) < vertex_to_data_map.len()
                                    && vertex_to_data_map[point_id.0 as usize] == -1
                                {
                                    vertex_to_data_map[point_id.0 as usize] = i as i32;
                                }
                                let ci = corner_table.left_most_corner(
                                    crate::geometry_indices::VertexIndex(point_id.0),
                                );
                                data_to_corner_map[i] = ci.0;
                            }
                        }

                        let mut mesh_data = MeshPredictionSchemeData::new();
                        mesh_data.set(corner_table, &data_to_corner_map, &vertex_to_data_map);

                        let transform = PredictionSchemeWrapEncodingTransform::<i32>::new();
                        let mut predictor =
                            MeshPredictionSchemeTexCoordsDeprecatedEncoder::new(transform);
                        let (version_major, version_minor) = options.get_version();
                        predictor.set_bitstream_version(version_major, version_minor);
                        selected_transform_type = predictor.get_transform_type();

                        let pos_att_id = encoder
                            .point_cloud()
                            .unwrap()
                            .named_attribute_id(GeometryAttributeType::Position);
                        let parent = bind_position_parent(
                            version_major,
                            version_minor,
                            encoder.get_portable_attribute(pos_att_id),
                            encoder
                                .point_cloud()
                                .unwrap()
                                .named_attribute(GeometryAttributeType::Position),
                            "Texture-coordinate",
                        )?;
                        predictor.set_parent_attribute(parent)?;
                        predictor.init(&mesh_data);

                        let entry_to_point_id_map: Vec<u32> =
                            point_ids.iter().map(|p| p.0).collect();

                        predictor.compute_correction_values(
                            &values,
                            &mut corrections,
                            num_values,
                            num_components,
                            Some(crate::prediction_scheme::EntryToPointIdMap::from_u32_slice(
                                &entry_to_point_id_map,
                            )),
                        )?;
                        // A prediction that produced no orientations writes a
                        // count of zero, and a count of zero is where both this
                        // decoder and upstream's stop -- so the encode would
                        // have produced a stream nothing reads. Whether any
                        // orientation comes out is a property of the mesh, not
                        // of the request, so the answer is the downgrade this
                        // arm already makes when there is no corner table to
                        // predict from.
                        if predictor.num_orientations() == 0 {
                            selected_method = PredictionSchemeMethod::Difference;
                            let transform = PredictionSchemeWrapEncodingTransform::<i32>::new();
                            let mut fallback = PredictionSchemeDeltaEncoder::new(transform);
                            selected_transform_type = fallback.get_transform_type();
                            fallback.compute_correction_values(
                                &values,
                                &mut corrections,
                                num_values,
                                num_components,
                                None,
                            )?;
                            predictor_delta = Some(fallback);
                        } else {
                            predictor_tex_coords_deprecated = Some(predictor);
                        }
                    } else {
                        selected_method = PredictionSchemeMethod::Difference;
                        let transform = PredictionSchemeWrapEncodingTransform::<i32>::new();
                        let mut predictor = PredictionSchemeDeltaEncoder::new(transform);
                        selected_transform_type = predictor.get_transform_type();
                        predictor.compute_correction_values(
                            &values,
                            &mut corrections,
                            num_values,
                            num_components,
                            None,
                        )?;
                        predictor_delta = Some(predictor);
                    }
                } else {
                    selected_method = PredictionSchemeMethod::Difference;
                    let transform = PredictionSchemeWrapEncodingTransform::<i32>::new();
                    let mut predictor = PredictionSchemeDeltaEncoder::new(transform);
                    selected_transform_type = predictor.get_transform_type();
                    predictor.compute_correction_values(
                        &values,
                        &mut corrections,
                        num_values,
                        num_components,
                        None,
                    )?;
                    predictor_delta = Some(predictor);
                }
            }
            #[cfg(not(feature = "legacy_bitstream_encode"))]
            PredictionSchemeMethod::MeshPredictionTexCoordsDeprecated => {
                return Err(DracoError::unsupported_feature(
                    "TexCoordsDeprecated prediction needs the legacy_bitstream_encode feature"
                        .to_string(),
                ))
            }
            PredictionSchemeMethod::MeshPredictionTexCoordsPortable => {
                if let Some(_mesh) = encoder.mesh() {
                    if let Some(corner_table) = encoder.corner_table() {
                        let is_edgebreaker = encoder.get_encoding_method() == Some(1);

                        // vertex_to_data_map indexed by corner table VertexIndex
                        let map_size = corner_table.num_vertices();
                        vertex_to_data_map.resize(map_size, -1);
                        data_to_corner_map.resize(num_points, 0);

                        if is_edgebreaker {
                            // For Edgebreaker, get both maps from the encoder.
                            if let Some(map) = encoder.get_data_to_corner_map() {
                                if map.len() == num_points {
                                    data_to_corner_map.copy_from_slice(map);
                                }
                            }
                            if let Some(map) = encoder.get_vertex_to_data_map() {
                                replace_vec_from_slice(&mut vertex_to_data_map, map);
                            }
                        } else {
                            for (i, &point_id) in point_ids.iter().enumerate() {
                                if (point_id.0 as usize) < vertex_to_data_map.len()
                                    && vertex_to_data_map[point_id.0 as usize] == -1
                                {
                                    vertex_to_data_map[point_id.0 as usize] = i as i32;
                                }
                                let ci = corner_table.left_most_corner(
                                    crate::geometry_indices::VertexIndex(point_id.0),
                                );
                                data_to_corner_map[i] = ci.0;
                            }
                        }

                        let mut mesh_data = MeshPredictionSchemeData::new();
                        mesh_data.set(corner_table, &data_to_corner_map, &vertex_to_data_map);

                        let transform = PredictionSchemeTexCoordsPortableEncodingTransform::new();
                        let mut predictor =
                            MeshPredictionSchemeTexCoordsPortableEncoder::new(transform);
                        let (version_major, version_minor) = options.get_version();
                        predictor.set_bitstream_version(version_major, version_minor);
                        selected_transform_type = predictor.get_transform_type();

                        // The portable position, not the original floats: the
                        // predictor works in quantized space and the decoder
                        // has nothing else to predict from. C++ reaches it
                        // through PointCloudEncoder::GetPortableAttribute in
                        // SequentialAttributeEncoder::InitPredictionScheme,
                        // and fails outright when it is missing.
                        let pos_att_id = encoder
                            .point_cloud()
                            .unwrap()
                            .named_attribute_id(GeometryAttributeType::Position);
                        if pos_att_id < 0 {
                            return Err(DracoError::invalid_parameter(
                                "Texture-coordinate prediction needs a position attribute"
                                    .to_string(),
                            ));
                        }
                        let parent = bind_position_parent(
                            version_major,
                            version_minor,
                            encoder.get_portable_attribute(pos_att_id),
                            encoder
                                .point_cloud()
                                .unwrap()
                                .named_attribute(GeometryAttributeType::Position),
                            "Texture-coordinate",
                        )?;
                        predictor.set_parent_attribute(parent)?;

                        predictor.init(&mesh_data);

                        let entry_to_point_id_map: Vec<u32> =
                            point_ids.iter().map(|p| p.0).collect();

                        predictor.compute_correction_values(
                            &values,
                            &mut corrections,
                            num_values,
                            num_components,
                            Some(crate::prediction_scheme::EntryToPointIdMap::from_u32_slice(
                                &entry_to_point_id_map,
                            )),
                        )?;
                        predictor_tex_coords_portable = Some(predictor);
                    } else {
                        // Compatibility fallback: match C++ factory behavior and use
                        // Difference when a mesh-only prediction scheme cannot be created.
                        selected_method = PredictionSchemeMethod::Difference;
                        let transform = PredictionSchemeWrapEncodingTransform::<i32>::new();
                        let mut predictor = PredictionSchemeDeltaEncoder::new(transform);
                        selected_transform_type = predictor.get_transform_type();
                        predictor.compute_correction_values(
                            &values,
                            &mut corrections,
                            num_values,
                            num_components,
                            None,
                        )?;
                        predictor_delta = Some(predictor);
                    }
                } else {
                    // Compatibility fallback: mesh-only prediction schemes degrade to
                    // Difference for non-mesh geometry, matching C++.
                    selected_method = PredictionSchemeMethod::Difference;
                    let transform = PredictionSchemeWrapEncodingTransform::<i32>::new();
                    let mut predictor = PredictionSchemeDeltaEncoder::new(transform);
                    selected_transform_type = predictor.get_transform_type();
                    predictor.compute_correction_values(
                        &values,
                        &mut corrections,
                        num_values,
                        num_components,
                        None,
                    )?;
                    predictor_delta = Some(predictor);
                }
            }
            PredictionSchemeMethod::MeshPredictionGeometricNormal => {
                if let Some(_mesh) = encoder.mesh() {
                    if let Some(corner_table) = encoder.corner_table() {
                        let is_edgebreaker = encoder.get_encoding_method() == Some(1);

                        // vertex_to_data_map indexed by corner table VertexIndex
                        let map_size = corner_table.num_vertices();
                        vertex_to_data_map.resize(map_size, -1);
                        data_to_corner_map.resize(num_points, 0);

                        if is_edgebreaker {
                            // For Edgebreaker, get both maps from the encoder.
                            if let Some(map) = encoder.get_data_to_corner_map() {
                                if map.len() == num_points {
                                    data_to_corner_map.copy_from_slice(map);
                                }
                            }
                            if let Some(map) = encoder.get_vertex_to_data_map() {
                                replace_vec_from_slice(&mut vertex_to_data_map, map);
                            }
                        } else {
                            for (i, &point_id) in point_ids.iter().enumerate() {
                                if (point_id.0 as usize) < vertex_to_data_map.len()
                                    && vertex_to_data_map[point_id.0 as usize] == -1
                                {
                                    vertex_to_data_map[point_id.0 as usize] = i as i32;
                                }
                                let ci = corner_table.left_most_corner(
                                    crate::geometry_indices::VertexIndex(point_id.0),
                                );
                                data_to_corner_map[i] = ci.0;
                            }
                        }

                        let mut mesh_data = MeshPredictionSchemeData::new();
                        mesh_data.set(corner_table, &data_to_corner_map, &vertex_to_data_map);

                        // This scheme predicts in octahedral coordinates, so
                        // it only means anything over the octahedron
                        // transform -- upstream templates it on that and
                        // reads the quantization bits back off it.
                        if let IntPredictionTransformFamily::NormalOctahedron {
                            max_quantized_value,
                            canonicalized,
                        } = self.transform_family
                        {
                            let transform = IntPredictionTransformFamily::build_octahedron(
                                max_quantized_value,
                                canonicalized,
                            );
                            let mut predictor =
                                MeshPredictionSchemeGeometricNormalEncoder::new(transform);
                            let (version_major, version_minor) = options.get_version();
                            predictor.set_bitstream_version(version_major, version_minor);
                            selected_transform_type = predictor.get_transform_type();

                            predictor.init(&mesh_data);

                            // The parent the predictor reads positions from,
                            // in quantized space -- upstream binds it in
                            // SetPredictionSchemeParentAttributes. Without it
                            // `is_initialized` is false and the call below
                            // refuses.
                            let pos_att_id =
                                point_cloud.named_attribute_id(GeometryAttributeType::Position);
                            if pos_att_id < 0 {
                                return Err(DracoError::invalid_parameter(
                                    "Geometric normal prediction needs a position attribute"
                                        .to_string(),
                                ));
                            }
                            let parent = bind_position_parent(
                                version_major,
                                version_minor,
                                encoder.get_portable_attribute(pos_att_id),
                                point_cloud.named_attribute(GeometryAttributeType::Position),
                                "Geometric normal",
                            )?;
                            predictor.set_parent_attribute(parent)?;

                            let entry_to_point_id_map: Vec<u32> =
                                point_ids.iter().map(|p| p.0).collect();

                            predictor.compute_correction_values(
                                &values,
                                &mut corrections,
                                num_values,
                                num_components,
                                Some(crate::prediction_scheme::EntryToPointIdMap::from_u32_slice(
                                    &entry_to_point_id_map,
                                )),
                            )?;
                            predictor_geometric_normal = Some(predictor);
                        } else {
                            // Reached by a normal attribute whose values are
                            // already integral, so nothing quantized it and
                            // there are no octahedral coordinates to predict.
                            //
                            // Upstream reaches the same combination and
                            // handles it badly: its encoder factory has no
                            // per-transform specialization where the
                            // decoder's does, so it builds this scheme over
                            // the wrap transform and asks that for
                            // quantization bits -- a stub returning -1 behind
                            // DRACO_DCHECK(false), carrying upstream's own
                            // TODO. Debug asserts; release predicts from an
                            // uninitialized toolbox.
                            //
                            // Take instead the fallback the same factory uses
                            // when a mesh scheme cannot be built, and encode a
                            // delta.
                            selected_method = PredictionSchemeMethod::Difference;
                            let transform = PredictionSchemeWrapEncodingTransform::<i32>::new();
                            let mut predictor = PredictionSchemeDeltaEncoder::new(transform);
                            selected_transform_type = predictor.get_transform_type();
                            predictor.compute_correction_values(
                                &values,
                                &mut corrections,
                                num_values,
                                num_components,
                                None,
                            )?;
                            predictor_delta = Some(predictor);
                        }
                    } else {
                        // Compatibility fallback: match C++ factory behavior and use
                        // Difference when a mesh-only prediction scheme cannot be created.
                        selected_method = PredictionSchemeMethod::Difference;
                        let transform = PredictionSchemeWrapEncodingTransform::<i32>::new();
                        let mut predictor = PredictionSchemeDeltaEncoder::new(transform);
                        selected_transform_type = predictor.get_transform_type();
                        predictor.compute_correction_values(
                            &values,
                            &mut corrections,
                            num_values,
                            num_components,
                            None,
                        )?;
                        predictor_delta = Some(predictor);
                    }
                } else {
                    // Compatibility fallback: mesh-only prediction schemes degrade to
                    // Difference for non-mesh geometry, matching C++.
                    selected_method = PredictionSchemeMethod::Difference;
                    let transform = PredictionSchemeWrapEncodingTransform::<i32>::new();
                    let mut predictor = PredictionSchemeDeltaEncoder::new(transform);
                    selected_transform_type = predictor.get_transform_type();
                    predictor.compute_correction_values(
                        &values,
                        &mut corrections,
                        num_values,
                        num_components,
                        None,
                    )?;
                    predictor_delta = Some(predictor);
                }
            }
            PredictionSchemeMethod::None => {
                corrections.copy_from_slice(&values);
            }
            _ => {
                return Err(DracoError::unsupported_feature(format!(
                    "Prediction method {selected_method:?}"
                )))
            }
        }

        // Precompute prediction-data bytes so we can append them after symbols.
        let mut pred_data_opt: Option<Vec<u8>> = None;
        try_encode_prediction_data(predictor_delta, &mut pred_data_opt)?;
        try_encode_prediction_data(predictor_delta_octahedron, &mut pred_data_opt)?;
        try_encode_prediction_data(predictor_parallelogram, &mut pred_data_opt)?;
        #[cfg(feature = "legacy_bitstream_encode")]
        try_encode_prediction_data(predictor_multi_parallelogram, &mut pred_data_opt)?;
        #[cfg(feature = "legacy_bitstream_encode")]
        try_encode_prediction_data(predictor_tex_coords_deprecated, &mut pred_data_opt)?;
        try_encode_prediction_data(
            predictor_constrained_multi_parallelogram,
            &mut pred_data_opt,
        )?;
        try_encode_prediction_data(predictor_tex_coords_portable, &mut pred_data_opt)?;
        try_encode_prediction_data(predictor_geometric_normal, &mut pred_data_opt)?;

        // Pre-2.2 prefixes the constrained-multi-parallelogram prediction data with
        // an optimal-multi-parallelogram mode byte that the decoder reads before
        // the crease-edge streams; 2.2+ dropped it. Mirror of the decode-side
        // mode-byte read. get_version() is (0, 0) for the default (2.2).
        #[cfg(feature = "legacy_bitstream_encode")]
        if selected_method == PredictionSchemeMethod::MeshPredictionConstrainedMultiParallelogram {
            let (major, minor) = options.get_version();
            let bitstream_version = crate::version::bitstream_version(major, minor);
            if bitstream_version != 0 && bitstream_version < 0x0202 {
                if let Some(pd) = pred_data_opt.as_mut() {
                    pd.insert(0, 0); // OPTIMAL_MULTI_PARALLELOGRAM
                }
            }
        }

        // 4. Encode Prediction Method and Transform Type
        #[cfg(feature = "debug_logs")]
        if crate::debug_env_enabled("DRACO_DEBUG_CMP_CPP") {
            debug_log!(
                "RUST: Encoding prediction method {} (0x{:x}), transform type {:?}",
                selected_method as i8,
                selected_method as u8,
                selected_transform_type
            );
        }
        self.selected_prediction = Some((selected_method, selected_transform_type));
        out_buffer.encode_u8(selected_method as u8);

        if selected_method != PredictionSchemeMethod::None {
            // Encode transform type
            out_buffer.encode_u8(selected_transform_type as u8);
        }

        // Keyed on the attribute being octahedron-folded, not on the transform
        // that ended up in the header: upstream writes this byte from
        // `PrepareValues`, which runs for every normal attribute including the
        // one whose prediction came out `None` and therefore carries no
        // transform byte at all. The decoder reads it back the same way.
        #[cfg(feature = "legacy_bitstream_encode")]
        if !matches!(self.transform_family, IntPredictionTransformFamily::Wrap) {
            let (major, minor) = options.get_version();
            let bitstream_version = crate::version::bitstream_version(major, minor);
            // Version alone, for the same reason as `writes_inline_quantization`.
            let uses_inline_normal_transform_data =
                bitstream_version != 0 && bitstream_version < 0x0200;
            if uses_inline_normal_transform_data {
                let quantization_bits = options.get_attribute_int(att_id, "quantization_bits", -1);
                if !(2..=30).contains(&quantization_bits) {
                    return Err(DracoError::invalid_parameter(format!(
                        "Octahedral quantization bits {quantization_bits} outside the supported range 2..=30"
                    )));
                }
                out_buffer.encode_u8(quantization_bits as u8);
            }
        }

        // The same split, one version boundary later, for the plain quantization
        // transform: a pre-2.0 mesh carries its parameters here, between the
        // prediction header and the integer values, while 2.0+ writes them after
        // the values in `encode_data_needed_by_portable_transform`. The encoder
        // wrote them trailing at every version, so a pre-2.0 quantized attribute
        // produced a stream whose decode failed on the parameters it expected to
        // find in front.
        #[cfg(feature = "legacy_bitstream_encode")]
        if uses_inline_quantization_parameters(attribute, options, att_id) {
            let quantization_bits = options.get_attribute_int(att_id, "quantization_bits", -1);
            let mut transform = AttributeQuantizationTransform::new();
            transform.compute_parameters(attribute, quantization_bits)?;
            transform.encode_parameters(out_buffer)?;
        }

        // 5. Convert corrections to symbols (ZigZag) if needed
        // For normal octahedron encoding, corrections are already positive, so skip ZigZag
        //
        // Decided from the transform that is about to be written, which is what
        // the decoder reads it back from. Asking the prediction scheme instead
        // would not work here: every one of them is a local, built inside the
        // match above because they borrow the corner table, so there is no
        // object left to ask by this point.
        let are_corrections_positive = matches!(
            selected_transform_type,
            PredictionSchemeTransformType::NormalOctahedron
                | PredictionSchemeTransformType::NormalOctahedronCanonicalized
        );

        let symbols: Vec<u32> = if are_corrections_positive {
            // Corrections are already unsigned - just cast
            corrections.iter().map(|&c| c as u32).collect()
        } else {
            // Apply ZigZag encoding
            corrections
                .iter()
                .map(|&c| ((c << 1) ^ (c >> 31)) as u32)
                .collect()
        };

        // 6. Encode symbols
        // Write compression level/type (1 = compressed with symbols)
        out_buffer.encode_u8(1);

        // The larger of the two speeds, as SetSymbolEncodingCompressionLevel is
        // handed `10 - GetSpeed()`. Reading the encoding speed alone agrees
        // only while the two are set to the same value. Saturating because the
        // speed is a caller-set option with no declared range and
        // `10 - i32::MIN` overflows.
        //
        // Out of range the level is discarded rather than clamped, which is
        // upstream's own behaviour and not a safety choice: its setter refuses
        // anything outside 0..=10 and leaves the option unset, so `EncodeSymbols`
        // reads `kDefaultSymbolCodingCompressionLevel` -- 7, what
        // `SymbolEncodingOptions::default()` already carries. The two differ in
        // what they write. Clamping a speed of 11 gives level 0, which subtracts
        // 2 from the symbol bit length; discarding it gives 7, which adjusts
        // nothing. Verified against C++ 1.5.7: speeds at or below -2 and at or
        // above 11 produced different bytes before this, and match after.
        let mut symbol_options = SymbolEncodingOptions::default();
        let compression_level = 10i32.saturating_sub(options.get_speed());
        if (0..=10).contains(&compression_level) {
            symbol_options.compression_level = compression_level;
        }

        let _start_len = out_buffer.size();
        encode_symbols(&symbols, num_components, &symbol_options, out_buffer).map_err(|err| {
            DracoError::general(format!(
                "Failed to entropy-code the prediction residuals: {err}"
            ))
        })?;

        // 7. Encode Prediction Data (after symbols)
        if selected_method != PredictionSchemeMethod::None {
            if let Some(pd) = pred_data_opt {
                out_buffer.encode_data(&pd);
            }
        }

        Ok(())
    }
}

pub(crate) fn read_value_as_i32(buffer: &DataBuffer, offset: usize, data_type: DataType) -> i32 {
    match data_type {
        DataType::Int8 => {
            let mut bytes = [0u8; 1];
            buffer.read(offset, &mut bytes);
            bytes[0] as i8 as i32
        }
        DataType::Uint8 => {
            let mut bytes = [0u8; 1];
            buffer.read(offset, &mut bytes);
            bytes[0] as i32
        }
        DataType::Int16 => {
            let mut bytes = [0u8; 2];
            buffer.read(offset, &mut bytes);
            i16::from_le_bytes(bytes) as i32
        }
        DataType::Uint16 => {
            let mut bytes = [0u8; 2];
            buffer.read(offset, &mut bytes);
            u16::from_le_bytes(bytes) as i32
        }
        DataType::Int32 => {
            let mut bytes = [0u8; 4];
            buffer.read(offset, &mut bytes);
            i32::from_le_bytes(bytes)
        }
        DataType::Uint32 => {
            let mut bytes = [0u8; 4];
            buffer.read(offset, &mut bytes);
            u32::from_le_bytes(bytes) as i32
        }
        _ => 0,
    }
}

#[inline]
fn replace_vec_from_slice<T: Copy>(dst: &mut Vec<T>, src: &[T]) {
    if dst.len() == src.len() {
        dst.copy_from_slice(src);
    } else {
        dst.clear();
        dst.extend_from_slice(src);
    }
}

/// If `out` is still empty and `predictor` was built, encodes its
/// prediction-data bytes into `out`. Returns false only on an actual encode
/// failure. Collapses the seven identical "try this predictor next" blocks in
/// the prediction-data emission phase.
fn try_encode_prediction_data<'a, P: PredictionSchemeEncoder<'a, i32, i32>>(
    predictor: Option<P>,
    out: &mut Option<Vec<u8>>,
) -> Status {
    if out.is_none() {
        if let Some(mut predictor) = predictor {
            let mut pred_data = Vec::new();
            predictor.encode_prediction_data(&mut pred_data)?;
            *out = Some(pred_data);
        }
    }
    Ok(())
}