-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathChangeLog.v2.0.0
4764 lines (3106 loc) · 137 KB
/
ChangeLog.v2.0.0
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
2004-10-11 10:24 mortene
* configure: bootstrap
2004-10-11 10:23 mortene
* INSTALL, NEWS, configure.ac, docs/announcement-2_0_0.txt: Version
number update.
2004-10-11 10:20 mortene
* aclocal.m4, configure, cfg/errors.txt, cfg/simvoleon.m4,
lib/VolumeViz/elements/Makefile.in: Bootstrap.
2004-10-11 10:09 mortene
* RELNOTES, docs/announcement-2_0_0.txt: Release preparations.
2004-10-11 10:09 mortene
* lib/VolumeViz/: misc/Util.cpp, misc/VoxelChunk.cpp,
nodes/CvrIndexedSetRenderBaseP.cpp,
nodes/CvrNonIndexedSetRenderBaseP.cpp, nodes/ROI.cpp,
nodes/VolumeRender.cpp, render/3D/3DTexCube.cpp: Minor clean-up
stuff.
2004-10-11 10:09 mortene
* lib/VolumeViz/: nodes/SoVolumeData.h, nodes/VolumeData.cpp,
readers/SoVolumeReader.h, readers/VRMemReader.cpp,
readers/VRVolFileReader.cpp, readers/VolumeReader.cpp:
Compatibility fixes vs TGS VolumeViz.
2004-10-11 10:09 mortene
* lib/VolumeViz/nodes/: ObliqueSlice.cpp, OrthoSlice.cpp,
SoObliqueSlice.h: Compatibility fixes: API for alternate
representations.
2004-10-08 17:08 mortene
* lib/VolumeViz/nodes/: SoVolumeData.h, VolumeData.cpp:
Compatibility fix: match TGS VolumeViz API.
2004-10-08 15:02 mortene
* lib/VolumeViz/nodes/: OrthoSlice.cpp, SoOrthoSlice.h:
Compatibility fix: add alternateRep field (no real
implementation, just stubbed).
2004-10-08 14:50 mortene
* lib/VolumeViz/nodes/: SoTransferFunction.h, TransferFunction.cpp:
Compatibility fix: adds function hasTransparency().
2004-10-08 14:50 mortene
* lib/VolumeViz/nodes/VolumeRendering.cpp: Compile fix.
2004-10-08 14:34 mortene
* lib/VolumeViz/nodes/: SoVolumeRendering.h, VolumeRendering.cpp:
Compatibility fixes: stub up functions from TGS VolumeViz.
2004-10-08 12:17 mortene
* lib/VolumeViz/nodes/: SoVolumeRendering.h, VolumeRendering.cpp:
Bug / compatibility fix: node should be abstract.
2004-10-08 11:10 mortene
* lib/VolumeViz/nodes/: ObliqueSlice.cpp, VolumeFaceSet.cpp,
VolumeIndexedFaceSet.cpp, VolumeIndexedTriangleStripSet.cpp,
VolumeSkin.cpp, VolumeTriangleStripSet.cpp: Doc: update
'since'-information to reflect that we are releasing as 2.0, not
1.1.
2004-10-08 11:10 mortene
* lib/VolumeViz/details/: ObliqueSliceDetail.cpp,
OrthoSliceDetail.cpp, SoObliqueSliceDetail.h,
SoOrthoSliceDetail.h, SoVolumeDetail.h, SoVolumeRenderDetail.h,
SoVolumeSkinDetail.h, VolumeDetail.cpp, VolumeRenderDetail.cpp,
VolumeSkinDetail.cpp: Bugfixes: copy() functions were not
implemented correct.
2004-10-08 11:10 mortene
* lib/VolumeViz/elements/SoTransferFunctionElement.h: Remove from
public API.
2004-10-08 09:52 mortene
* lib/VolumeViz/nodes/VolumeRendering.cpp: Minor fix: slight
improvement to how HW features are reported.
2004-10-08 09:18 mortene
* RELNOTES, docs/announcement-2_0_0.txt,
lib/VolumeViz/elements/Makefile.am: Prepare 2.0 release.
2004-10-08 06:16 mortene
* lib/VolumeViz/readers/VRVolFileReader.cpp: Doc: tiny API doc
addition.
2004-10-07 16:49 handegar
* lib/VolumeViz/details/VolumeDetail.cpp: Fixed raypick bug.
2004-10-07 16:44 mortene
* lib/VolumeViz/render/3D/: 3DTexSubCube.cpp, Cvr3DTexSubCube.h:
Optimalization: reuse list elements to avoid unnecessary memory
allocation.
2004-10-07 16:14 mortene
* lib/VolumeViz/render/3D/: 3DTexSubCube.cpp, Cvr3DTexSubCube.h:
Optimalization: reuse SbClip, to avoid unnecessary memory
allocation during rendering.
2004-10-07 15:50 mortene
* lib/VolumeViz/render/3D/: 3DTexSubCube.cpp, Cvr3DTexSubCube.h:
Optimalization: faster clipping.
2004-10-07 15:07 mortene
* lib/VolumeViz/render/3D/3DTexSubCube.cpp: Improved debug output,
more code comments.
2004-10-07 13:14 mortene
* lib/VolumeViz/render/3D/: 3DTexSubCube.cpp, Cvr3DTexSubCube.h:
Optimalization: don't new SbVec3f instances, just copy them to
object-global list.
2004-10-07 12:55 mortene
* lib/VolumeViz/nodes/VolumeData.cpp: Doc: more interface doc.
2004-10-07 12:54 mortene
* lib/VolumeViz/readers/VRMemReader.cpp: Compatibility fix:
normalize world size to be within 2x2x2 cube.
2004-10-07 11:24 mortene
* lib/VolumeViz/nodes/VolumeRender.cpp: Debug: less default debug
output.
2004-10-07 11:23 mortene
* lib/VolumeViz/nodes/VolumeData.cpp: Updates FIXME note.
2004-10-07 11:23 mortene
* lib/VolumeViz/readers/: VRVolFileReader.cpp, VolumeReader.cpp:
Compatibility fix: volume should by default be normalized to be
within a cube with dimensions <2,2,2> in unit coordinates.
2004-10-07 09:46 mortene
* lib/VolumeViz/nodes/: SoVolumeData.h, VolumeData.cpp: New field,
recently added by TGS, or previously overlooked by us. Also fill
in stub messages and FIXMEs at unimplemented functions.
2004-09-23 11:51 mortene
* docs/todo.txt: Misc updates.
2004-09-23 11:10 mortene
* lib/VolumeViz/: nodes/CvrIndexedSetRenderBaseP.cpp,
nodes/CvrNonIndexedSetRenderBaseP.cpp, nodes/SoVolumeFaceSet.h,
nodes/SoVolumeIndexedFaceSet.h,
nodes/SoVolumeIndexedTriangleStripSet.h,
nodes/SoVolumeTriangleStripSet.h, render/3D/Cvr3DTexCube.h: Build
fix: don't use internal header files from public headers\!
2004-09-23 11:03 mortene
* lib/VolumeViz/nodes/: SoTransferFunction.h, TransferFunction.cpp:
Provide a work-around for mis-design on behalf of TGS: add
''unofficial'' fields for narrowing the transfer function.
2004-09-23 10:30 mortene
* lib/VolumeViz/nodes/TransferFunction.cpp: Doc: minor fix.
2004-09-23 10:19 mortene
* lib/VolumeViz/nodes/: TransferFunction.cpp, VolumeRendering.cpp:
Doc: API doc enhancements.
2004-09-21 14:00 handegar
* BUGS.txt: Removed bug 018.
2004-09-21 13:59 handegar
* lib/VolumeViz/details/VolumeDetail.cpp: Fixed RayPick bug 018.
2004-09-20 16:45 handegar
* lib/VolumeViz/render/3D/3DTexCube.cpp: Robustified obliqueslice.
2004-09-20 12:21 mortene
* BUGS.txt: New item.
2004-09-20 11:39 mortene
* BUGS.txt: New item.
2004-09-19 15:28 mortene
* BUGS.txt: New item.
2004-09-17 10:00 mortene
* BUGS.txt, docs/todo.txt: New to-do item.
2004-09-17 09:41 mortene
* lib/VolumeViz/render/3D/3DTexSubCube.cpp: Codestyle and minor
optimization fixes.
2004-09-16 15:56 mortene
* lib/VolumeViz/misc/CLUT.cpp: Tiny debug output fix.
2004-09-16 15:56 mortene
* lib/VolumeViz/render/: 3D/3DTexCube.cpp, 3D/3DTexSubCube.cpp,
3D/Cvr3DTexCube.h, 3D/Cvr3DTexSubCube.h,
common/CvrTextureObject.cpp, common/CvrTextureObject.h:
Rearranged code to correct a bug with abort callback, plus
simplifies code flow. Many parts of the internal interfaces
improved in various ways.
2004-09-15 15:13 handegar
* lib/VolumeViz/nodes/VolumeRender.cpp: Better fix for bug017.
2004-09-15 12:45 handegar
* BUGS.txt: Removed a non-alphabetical char.
2004-09-15 12:42 mortene
* lib/VolumeViz/nodes/VolumeRender.cpp: SoVolumeDataElement gone.
2004-09-15 12:38 handegar
* BUGS.txt: Removed bug017
2004-09-15 12:37 handegar
* lib/VolumeViz/nodes/VolumeRender.cpp: Fixed bug 017
2004-09-15 10:47 handegar
* BUGS.txt: Remove bug011.
2004-09-15 10:46 handegar
* lib/VolumeViz/nodes/: CvrIndexedSetRenderBaseP.cpp,
CvrNonIndexedSetRenderBaseP.cpp: Fixed bug011.
2004-09-15 10:08 mortene
* BUGS.txt: New item.
2004-09-14 12:09 mortene
* docs/simvoleon.doxygen.in: Updates for obsoleted element, and new
detail classes.
2004-09-14 12:08 mortene
* lib/VolumeViz/: elements/Makefile.am, elements/Makefile.in,
elements/SoVolumeDataElement.h, elements/VolumeDataElement.cpp,
nodes/VolumeRender.cpp: Remove class SoVolumeDataElement
obsoleted for 2.0 release.
2004-09-14 12:00 mortene
* configure, configure.ac: Bump version number.
2004-09-08 17:26 handegar
* lib/VolumeViz/render/3D/3DTexSubCube.cpp: Minor typo.
2004-09-08 17:24 handegar
* BUGS.txt: Clarified text for bug 016.
2004-09-07 16:25 handegar
* lib/VolumeViz/nodes/VolumeRender.cpp: Added support for
SoDrawStyle::POINTS.
2004-09-07 16:13 handegar
* BUGS.txt: Added a new bug (016). Typos.
2004-09-07 15:23 handegar
* BUGS.txt: Added an update to bug 002.
2004-09-07 15:10 handegar
* BUGS.txt: Removed bug 014.
2004-09-07 15:08 handegar
* lib/VolumeViz/render/: 2D/2DTexSubPage.cpp, 3D/3DTexSubCube.cpp:
Added support for SoDrawStyle::LINES for SoObliqueSlice &
SoOrthoSlice.
2004-09-07 14:58 handegar
* lib/VolumeViz/nodes/VolumeRender.cpp: Typo.
2004-09-07 14:38 handegar
* lib/VolumeViz/nodes/VolumeRender.cpp: Added SoDrawStyle::LINES
support for SoVolumeRender.
2004-09-07 13:40 handegar
* BUGS.txt: Remove bugs.
2004-09-07 13:38 handegar
* lib/VolumeViz/nodes/: volumeraypickintersection.cpp,
volumeraypickintersection.h: New files (internal raypick code).
2004-09-07 13:22 handegar
* lib/VolumeViz/: details/SoVolumeDetail.h,
details/VolumeDetail.cpp, nodes/Makefile.am, nodes/Makefile.in,
nodes/SoVolumeSkin.h, nodes/VolumeRender.cpp,
nodes/VolumeSkin.cpp: Restructured RayPick and SoVolumeDetail
code for SoVolumeRender & SoVolumeSkin. Bootstrap.
2004-09-02 15:33 handegar
* lib/VolumeViz/nodes/VolumeRendering.cpp: Classinit()-ing new
detail nodes.
2004-09-02 15:30 handegar
* lib/VolumeViz/nodes/: ObliqueSlice.cpp, OrthoSlice.cpp: Minor
message-text fix.
2004-09-02 15:30 handegar
* lib/VolumeViz/details/: Makefile.am, Makefile.in,
SoVolumeDetail.h, SoVolumeRenderDetail.h, SoVolumeSkinDetail.h,
VolumeDetail.cpp, VolumeRenderDetail.cpp, VolumeSkinDetail.cpp:
New detail nodes. Reorganizing the volumedetail class system
according to VolumeViz.
2004-09-02 15:23 handegar
* lib/VolumeViz/nodes/: ObliqueSlice.cpp, OrthoSlice.cpp: Display
warning if raypicking when CVR_USE_FLIPPED_Y_AXIS=1.
2004-09-02 15:20 handegar
* lib/VolumeViz/elements/VoxelBlockElement.cpp: Minor raypick
bugfix.
2004-09-02 11:14 mortene
* BUGS.txt: New item.
2004-08-24 13:08 mortene
* configure.ac: Make simvoleon-config self-sufficient for src
builds.
2004-08-17 13:40 mortene
* BUGS.txt: Make a note of a known problem.
2004-08-09 10:27 handegar
* lib/VolumeViz/render/3D/CubeHandler.cpp: Minor fix/cleanup.
2004-08-06 16:19 handegar
* lib/VolumeViz/render/2D/: CvrPageHandler.h, PageHandler.cpp:
Voxel dimensions can now be changed during runtime as one update
voxel data (Bug reported by Kristofer Tingdahl).
2004-08-06 15:49 handegar
* lib/VolumeViz/render/3D/: CubeHandler.cpp, CvrCubeHandler.h:
Voxel dimensions can now be changed during runtime as one update
voxel data (Bug reported by Kristofer Tingdahl).
2004-08-06 15:31 handegar
* lib/VolumeViz/nodes/VolumeData.cpp: Plugged a potential memleak.
2004-08-05 15:40 handegar
* lib/VolumeViz/nodes/TransferFunction.cpp: Doxygen enum-list fix.
2004-08-04 23:59 mortene
* lib/VolumeViz/: nodes/ObliqueSlice.cpp, render/3D/3DTexCube.cpp,
render/3D/3DTexSubCube.cpp, render/3D/Cvr3DTexCube.h,
render/3D/Cvr3DTexSubCube.h, render/3D/CvrCubeHandler.h: Debug:
added more control envvars for debugging aid. Misc header include
clean-ups.
2004-08-04 11:47 handegar
* lib/VolumeViz/nodes/TransferFunction.cpp: Doxygen fix.
2004-08-04 10:27 mortene
* lib/VolumeViz/: misc/CvrUtil.h, misc/Util.cpp,
nodes/VolumeRender.cpp, render/2D/2DTexPage.cpp,
render/2D/2DTexSubPage.cpp, render/2D/Cvr2DTexPage.h,
render/2D/Cvr2DTexSubPage.h, render/2D/CvrPageHandler.h,
render/3D/3DTexCube.cpp, render/3D/3DTexSubCube.cpp,
render/3D/Cvr3DTexCube.h, render/3D/Cvr3DTexSubCube.h,
render/common/CvrPaletteTexture.h: Debugging: more flexibility in
control of visual debugging with box/slice wireframes.
2004-08-04 10:25 mortene
* BUGS.txt: New item.
2004-08-03 10:05 handegar
* lib/VolumeViz/nodes/TransferFunction.cpp: Doxygen typo.
2004-08-02 10:51 handegar
* lib/VolumeViz/nodes/TransferFunction.cpp: Doc fix.
2004-07-30 13:29 handegar
* lib/VolumeViz/nodes/TransferFunction.cpp: Added more doc.
2004-07-30 11:30 handegar
* docs/todo.txt: A note on raycasting.
2004-07-30 10:51 handegar
* lib/VolumeViz/nodes/VolumeRendering.cpp: Minor doc adjustments.
2004-07-29 22:34 mortene
* docs/todo.txt: Start off the wish list with a bunch of tasks
simmering in my head.
2004-07-29 16:31 handegar
* lib/VolumeViz/nodes/VolumeRendering.cpp: More doc.
2004-07-29 12:14 kyrah
* lib/VolumeViz/nodes/VolumeRendering.cpp: Doc fix. It's called Mac
OS X. :)
2004-07-28 15:59 mortene
* lib/VolumeViz/render/3D/: 3DTexCube.cpp, 3DTexSubCube.cpp,
CubeHandler.cpp, Cvr3DTexSubCube.h: Clean-up: minor internal
interface design fix.
2004-07-28 15:38 handegar
* lib/VolumeViz/nodes/VolumeRendering.cpp: Minor doc fix.
2004-07-28 14:40 handegar
* lib/VolumeViz/misc/VoxelChunk.cpp: Removed a lot of redundant
code. Added support for 2D 16 bits textures.
2004-07-28 14:20 handegar
* lib/VolumeViz/render/3D/CubeHandler.cpp: RGBA => palette texture
bug fix.
2004-07-28 13:09 handegar
* lib/VolumeViz/render/common/: CvrTextureObject.cpp,
CvrTextureObject.h: Compare fix by mortene. Small memleak fix.
2004-07-27 16:42 handegar
* lib/VolumeViz/render/3D/3DTexCube.cpp: minor optimization.
2004-07-27 13:39 handegar
* lib/VolumeViz/: nodes/CvrIndexedSetRenderBaseP.cpp,
nodes/CvrNonIndexedSetRenderBaseP.cpp, render/3D/3DTexCube.cpp,
render/3D/3DTexSubCube.cpp, render/3D/CubeHandler.cpp,
render/3D/Cvr3DTexCube.h, render/3D/Cvr3DTexSubCube.h: 3D texture
optimization.
2004-07-27 12:46 handegar
* lib/VolumeViz/nodes/VolumeRendering.cpp: New mainpage doc item.
2004-07-27 12:18 handegar
* lib/VolumeViz/nodes/VolumeRendering.cpp: Minor doc fix.
2004-07-27 11:48 handegar
* lib/VolumeViz/misc/VoxelChunk.cpp: Re-enabled 16 bit voxel support
(scales values down to 8 bit).
2004-07-27 11:35 handegar
* lib/VolumeViz/nodes/VolumeRendering.cpp: Added some doc.
2004-07-27 11:35 handegar
* lib/VolumeViz/nodes/VolumeData.cpp: Increased max subcube size to
128x128x128.
2004-07-23 18:08 mortene
* lib/VolumeViz/render/common/: resourcehandler.c,
resourcehandler.h: Implement hooks for context activation and
context destruction.
2004-07-23 17:44 mortene
* lib/VolumeViz/render/common/: resourcehandler.c,
resourcehandler.h: Clean-up: remove obsoleted code.
2004-07-23 16:19 mortene
* lib/VolumeViz/: caches/CvrGLTextureCache.h,
caches/GLTextureCache.cpp, render/2D/PageHandler.cpp,
render/common/CvrTextureObject.cpp,
render/common/CvrTextureObject.h,
render/common/resourcehandler.c, render/common/resourcehandler.h:
Internal design: connect CvrGLTextureCache to the GL resource
handler.
2004-07-23 12:57 handegar
* lib/VolumeViz/render/common/CvrTextureObject.cpp: msvc compile
fix
2004-07-23 12:47 handegar
* lib/VolumeViz/render/common/CvrTextureObject.cpp: Bug fix
(fragment program support ignored due to missing define).
2004-07-23 12:33 mortene
* BUGS.txt: Update item #12 after work-around to move from status
critical to status medium priority.
2004-07-23 12:28 mortene
* lib/VolumeViz/render/common/: Cvr2DPaletteTexture.h,
Cvr2DRGBATexture.h, Cvr3DPaletteTexture.h, Cvr3DRGBATexture.h,
CvrTextureObject.cpp, CvrTextureObject.h: Half-way work-around
for bug with visible seams between textures.
2004-07-23 12:25 mortene
* configure: Bootstrap.
2004-07-23 12:25 mortene
* configure.ac: Bugfix: activate stricter checking by the compiler.
2004-07-23 11:22 mortene
* BUGS.txt: Fixed one bug, but that uncovered 2 new ones...
2004-07-23 11:22 mortene
* lib/VolumeViz/render/3D/: 3DTexCube.cpp, Cvr3DTexCube.h: Bugfix:
heed SoVolumeData's pagesize setting.
2004-07-23 11:06 mortene
* lib/VolumeViz/render/common/CvrTextureObject.cpp: Info text block
moved over from obsoleted file about texture resource queries.
2004-07-23 11:02 mortene
* lib/VolumeViz/render/2D/: CvrTexManager.h, Makefile.am,
Makefile.in, TexManager.cpp: Removes obsoleted files.
2004-07-22 22:34 mortene
* lib/VolumeViz/render/common/CvrTextureObject.cpp: Bugfix: had a
regression for volumes with non-power-of-two dimensions. Now
fixed.
2004-07-22 21:49 mortene
* lib/VolumeViz/render/2D/: 2DTexPage.cpp, Cvr2DTexPage.h,
CvrPageHandler.h, PageHandler.cpp: Minor clean-ups. Internal
design FIXMEs.
2004-07-22 16:01 mortene
* lib/VolumeViz/render/3D/: 3DTexCube.cpp, 3DTexSubCube.cpp,
Cvr3DTexCube.h, Cvr3DTexSubCube.h: Minor code clean-ups
(constness, header inclusion).
2004-07-22 16:00 mortene
* lib/VolumeViz/render/common/CvrTextureObject.cpp: Remove FIXME
note for issue which has been taken care of.
2004-07-22 15:59 mortene
* configure, configure.ac: Build fix.
2004-07-22 15:39 handegar
* BUGS.txt: Added some bugs.
2004-07-22 15:11 mortene
* lib/VolumeViz/: Makefile.am, Makefile.in,
caches/CvrGLTextureCache.h, caches/GLTextureCache.cpp,
caches/Makefile.am, caches/Makefile.in, misc/Makefile.am,
misc/Makefile.in, render/common/CvrTextureObject.cpp,
render/common/CvrTextureObject.h: Implementation clean-up: use
the Coin caching mechanism to track the validity of GL texture
ids.
2004-07-22 11:11 mortene
* NEWS: Sync.
2004-07-22 10:28 mortene
* lib/VolumeViz/nodes/VolumeRender.cpp: Tuning: recent changes
biased performance of 2D texturing, so lower threshold for
accepting 3D texturing.
2004-07-22 10:26 mortene
* lib/VolumeViz/render/common/: Cvr2DPaletteTexture.cpp,
Cvr2DPaletteTexture.h, Cvr2DRGBATexture.cpp, Cvr2DRGBATexture.h,
Cvr3DPaletteTexture.cpp, Cvr3DPaletteTexture.h,
Cvr3DRGBATexture.cpp, Cvr3DRGBATexture.h, CvrPaletteTexture.cpp,
CvrPaletteTexture.h, CvrRGBATexture.cpp, CvrRGBATexture.h,
CvrTextureObject.cpp, CvrTextureObject.h: Internal interface
clean-up: get rid of friend'ing of superclass, use Coin
type-system for creating instances.
2004-07-22 10:07 mortene
* lib/VolumeViz/: misc/CLUT.cpp, misc/CvrCLUT.h,
misc/CvrVoxelChunk.h, misc/VoxelChunk.cpp,
render/2D/Cvr2DTexSubPage.h,
render/common/Cvr2DPaletteTexture.cpp,
render/common/Cvr2DPaletteTexture.h,
render/common/Cvr2DRGBATexture.cpp,
render/common/Cvr2DRGBATexture.h,
render/common/Cvr3DPaletteTexture.cpp,
render/common/Cvr3DPaletteTexture.h,
render/common/Cvr3DRGBATexture.cpp,
render/common/Cvr3DRGBATexture.h,
render/common/CvrPaletteTexture.cpp,
render/common/CvrTextureObject.cpp,
render/common/CvrTextureObject.h: Various internal design
clean-ups. Performance improvement: hash on a key for
CvrTextureObject-instances, to avoid costly linear array
searches.
2004-07-20 15:34 mortene
* lib/VolumeViz/nodes/: CvrIndexedSetRenderBaseP.cpp,
CvrIndexedSetRenderBaseP.h, CvrNonIndexedSetRenderBaseP.cpp,
CvrNonIndexedSetRenderBaseP.h: Bugfix: corrects the check and
exit for systems without 3d-textures. Clean-ups: get rid of
unneeded enums and header inclusion.
2004-07-20 15:16 mortene
* lib/VolumeViz/: elements/CvrGLInterpolationElement.h,
elements/GLInterpolationElement.cpp, elements/Makefile.am,
elements/Makefile.in, nodes/CvrIndexedSetRenderBaseP.cpp,
nodes/CvrNonIndexedSetRenderBaseP.cpp, nodes/ObliqueSlice.cpp,
nodes/OrthoSlice.cpp, nodes/SoObliqueSlice.h,
nodes/SoOrthoSlice.h, nodes/VolumeFaceSet.cpp,
nodes/VolumeIndexedFaceSet.cpp,
nodes/VolumeIndexedTriangleStripSet.cpp, nodes/VolumeRender.cpp,
nodes/VolumeRendering.cpp, nodes/VolumeTriangleStripSet.cpp,
render/2D/2DTexPage.cpp, render/2D/2DTexSubPage.cpp,
render/2D/Cvr2DTexPage.h, render/2D/Cvr2DTexSubPage.h,
render/2D/CvrPageHandler.h, render/2D/PageHandler.cpp,
render/3D/3DTexCube.cpp, render/3D/3DTexSubCube.cpp,
render/3D/CubeHandler.cpp, render/3D/Cvr3DTexCube.h,
render/3D/Cvr3DTexSubCube.h, render/3D/CvrCubeHandler.h,
render/common/CvrTextureObject.cpp,
render/common/CvrTextureObject.h: Internal design fixes:
collected common activateTexture() from 2DTexSubPage and
3DTexSubCube into CvrTextureObject. Passing interpolation info on
state stack.
2004-07-20 11:23 mortene
* aclocal.m4, configure: Bootstrap.
2004-07-20 11:06 mortene
* configure.ac: Be stricter with compiler warnings.
2004-07-20 11:04 mortene
* lib/VolumeViz/render/: 2D/2DTexPage.cpp, 2D/2DTexSubPage.cpp,
2D/Cvr2DTexSubPage.h, 3D/3DTexSubCube.cpp,
common/Cvr2DPaletteTexture.h, common/Cvr2DRGBATexture.h,
common/Cvr3DPaletteTexture.h, common/Cvr3DRGBATexture.h,
common/CvrPaletteTexture.cpp, common/CvrTextureObject.cpp,
common/CvrTextureObject.h: Internal design work: make
Cvr2DTexSubPage also use CvrTextureObject for texture handling /
sharing.
2004-07-19 15:29 mortene
* lib/VolumeViz/: elements/CvrVoxelBlockElement.h,
elements/VoxelBlockElement.cpp, misc/CvrVoxelChunk.h,
misc/VoxelChunk.cpp, nodes/VolumeData.cpp,
nodes/VolumeRender.cpp, readers/VRMemReader.cpp,
readers/VRVolFileReader.cpp, render/2D/2DTexPage.cpp,
render/Pointset/PointRendering.cpp,
render/common/CvrTextureObject.cpp: Minor internal interface fix:
remove unnecessary enum.
2004-07-19 14:56 mortene
* RELNOTES, lib/VolumeViz/elements/CvrPageSizeElement.h,
lib/VolumeViz/elements/CvrPalettedTexturesElement.h,
lib/VolumeViz/elements/CvrStorageHintElement.h,
lib/VolumeViz/elements/CvrVoxelBlockElement.h,
lib/VolumeViz/elements/Makefile.am,
lib/VolumeViz/elements/Makefile.in,
lib/VolumeViz/elements/PageSizeElement.cpp,
lib/VolumeViz/elements/PalettedTexturesElement.cpp,
lib/VolumeViz/elements/SoVolumeDataElement.h,
lib/VolumeViz/elements/StorageHintElement.cpp,
lib/VolumeViz/elements/VolumeDataElement.cpp,
lib/VolumeViz/elements/VoxelBlockElement.cpp,
lib/VolumeViz/misc/CvrUtil.h, lib/VolumeViz/misc/CvrVoxelChunk.h,
lib/VolumeViz/misc/Util.cpp, lib/VolumeViz/misc/VoxelChunk.cpp,
lib/VolumeViz/nodes/CvrIndexedSetRenderBaseP.cpp,
lib/VolumeViz/nodes/CvrNonIndexedSetRenderBaseP.cpp,
lib/VolumeViz/nodes/ObliqueSlice.cpp,
lib/VolumeViz/nodes/OrthoSlice.cpp,
lib/VolumeViz/nodes/VolumeData.cpp,
lib/VolumeViz/nodes/VolumeFaceSet.cpp,
lib/VolumeViz/nodes/VolumeIndexedFaceSet.cpp,
lib/VolumeViz/nodes/VolumeIndexedTriangleStripSet.cpp,
lib/VolumeViz/nodes/VolumeRender.cpp,
lib/VolumeViz/nodes/VolumeRendering.cpp,
lib/VolumeViz/nodes/VolumeSkin.cpp,
lib/VolumeViz/nodes/VolumeTriangleStripSet.cpp,
lib/VolumeViz/render/2D/2DTexPage.cpp,
lib/VolumeViz/render/2D/Cvr2DTexPage.h,
lib/VolumeViz/render/2D/CvrPageHandler.h,
lib/VolumeViz/render/2D/PageHandler.cpp,
lib/VolumeViz/render/3D/3DTexCube.cpp,
lib/VolumeViz/render/3D/CubeHandler.cpp,
lib/VolumeViz/render/3D/Cvr3DTexCube.h,
lib/VolumeViz/render/3D/CvrCubeHandler.h,
lib/VolumeViz/render/Pointset/PointRendering.cpp,
lib/VolumeViz/render/common/CvrTextureObject.cpp,
lib/VolumeViz/render/common/CvrTextureObject.h: Internal design
clean-up: use state stack for misc variables in SoVolumeData.
2004-07-18 22:05 mortene
* lib/VolumeViz/: elements/Makefile.in, nodes/Makefile.in,
readers/Makefile.in: Bootstrap.
2004-07-18 22:02 mortene
* lib/VolumeViz/: nodes/Makefile.am, readers/Makefile.am: Bugfix:
don't install private headers.
2004-07-18 21:57 mortene
* lib/VolumeViz/: elements/CompressedTexturesElement.cpp,
elements/CvrCompressedTexturesElement.h, elements/Makefile.am,
nodes/VolumeData.cpp, render/2D/2DTexPage.cpp,
render/2D/2DTexSubPage.cpp, render/2D/Cvr2DTexSubPage.h,
render/3D/3DTexCube.cpp, render/3D/3DTexSubCube.cpp,
render/3D/Cvr3DTexSubCube.h, render/common/CvrTextureObject.cpp:
Internal design fix: use an element for info about wanted setting
for texture compression.
2004-07-18 14:54 mortene
* lib/VolumeViz/render/: 3D/3DTexCube.cpp, 3D/3DTexSubCube.cpp,
common/CvrTextureObject.cpp: Minor clean-ups, ref() from caller.
2004-07-18 14:38 mortene
* lib/VolumeViz/nodes/VolumeRender.cpp: Misc improvements and
clean-ups to 3d-vs-2d texturing performance tests.
2004-07-16 17:09 mortene
* lib/VolumeViz/: misc/CLUT.cpp,
render/common/CvrTextureObject.cpp: Important FIXMEs.
2004-07-16 17:07 mortene
* lib/VolumeViz/render/common/: CvrTextureObject.cpp,
CvrTextureObject.h: Remove faulty compression texture checking.
2004-07-16 17:07 mortene
* lib/VolumeViz/render/3D/3DTexCube.cpp: Compile fix.
2004-07-16 16:34 mortene
* lib/VolumeViz/render/common/: CvrTextureManager.cpp,
CvrTextureManager.h: Remove CvrTextureManager class, as it seems
possible to improve the design a lot by using the
CvrTextureObject for its tasks.
2004-07-16 16:28 mortene
* BUGS.txt: New item.
2004-07-16 16:27 mortene
* lib/VolumeViz/: misc/CvrVoxelChunk.h, misc/VoxelChunk.cpp,
render/2D/2DTexSubPage.cpp, render/3D/3DTexCube.cpp,
render/3D/3DTexSubCube.cpp, render/3D/Cvr3DTexSubCube.h,
render/common/CvrPaletteTexture.h,
render/common/CvrRGBATexture.h,
render/common/CvrTextureManager.cpp,
render/common/CvrTextureManager.h,
render/common/CvrTextureObject.cpp,
render/common/CvrTextureObject.h, render/common/Makefile.am,
render/common/Makefile.in: Remove CvrTextureManager class, as it
seems possible to improve the design a lot by using the
CvrTextureObject for its tasks.
2004-07-16 15:49 mortene
* lib/VolumeViz/nodes/VolumeRender.cpp: Robustify texture
performance averaging calculation to not crash and burn on slow
systems.
2004-07-16 11:37 mortene
* lib/VolumeViz/: misc/CvrVoxelChunk.h, misc/VoxelChunk.cpp,
render/common/CvrTextureManager.cpp,
render/common/CvrTextureManager.h: Tmp remove interface for 2D
textures. Not in use (nor implemented) yet. For clarity and less
unnecessary effort during other dev work.
2004-07-16 10:17 mortene
* lib/VolumeViz/nodes/: SoVolumeData.h, SoVolumeFaceSet.h,
SoVolumeIndexedFaceSet.h, SoVolumeIndexedTriangleStripSet.h,
SoVolumeSkin.h, SoVolumeTriangleStripSet.h: Minor style fixes,
remove some unneeded friend'ing.
2004-07-16 09:39 mortene
* lib/VolumeViz/: misc/VoxelChunk.cpp, render/2D/2DTexSubPage.cpp,
render/3D/3DTexSubCube.cpp,
render/common/Cvr2DPaletteTexture.cpp,
render/common/Cvr2DPaletteTexture.h,
render/common/Cvr2DRGBATexture.cpp,
render/common/Cvr2DRGBATexture.h,
render/common/Cvr3DPaletteTexture.cpp,
render/common/Cvr3DPaletteTexture.h,
render/common/Cvr3DRGBATexture.cpp,
render/common/Cvr3DRGBATexture.h,
render/common/CvrPaletteTexture.cpp,
render/common/CvrPaletteTexture.h,
render/common/CvrRGBATexture.cpp, render/common/CvrRGBATexture.h,
render/common/CvrTextureManager.cpp,
render/common/CvrTextureObject.cpp,
render/common/CvrTextureObject.h: Internal design clean-up:
remove public variable duplicated for all
CvrTextureObject-classes, move to superclass.
2004-07-15 17:02 mortene
* lib/VolumeViz/render/: 2D/2DTexPage.cpp,
common/Cvr2DPaletteTexture.cpp, common/Cvr2DPaletteTexture.h,
common/Cvr2DRGBATexture.cpp, common/Cvr2DRGBATexture.h,
common/Cvr3DPaletteTexture.h, common/CvrTextureManager.cpp,
common/CvrTextureObject.h: Internal design fix: make
blankUnused() virtual, and define in superclass, to make client
code simpler.
2004-07-15 16:42 mortene
* lib/VolumeViz/render/2D/: 2DTexSubPage.cpp, Cvr2DTexSubPage.h:
Bugfix: display textures on first frame.
2004-07-15 15:52 mortene
* lib/VolumeViz/render/: 2D/2DTexPage.cpp, 2D/2DTexSubPage.cpp,
2D/Cvr2DTexSubPage.h, common/resourcehandler.c,
common/resourcehandler.h: Connect OpenGL textures to the specific
rendering context. Corrections to the cvr_rc interface.
2004-07-15 15:49 mortene
* lib/VolumeViz/render/common/CvrTextureObject.cpp: Bugfix: ouch.
2004-07-15 15:20 mortene
* lib/VolumeViz/render/common/: Cvr2DRGBATexture.h,
Cvr3DRGBATexture.h, CvrPaletteTexture.h, CvrRGBATexture.h,
CvrTextureManager.cpp, CvrTextureObject.h: Misc clean-up of
internal design.
2004-07-15 14:59 mortene
* lib/VolumeViz/render/common/: CvrTextureManager.cpp,
CvrTextureObject.cpp, CvrTextureObject.h: Internal design fixes:
much of the point of reference counting is that the object should
destruct itself.
2004-07-14 17:00 mortene
* aclocal.m4, configure, cfg/errors.txt,
lib/VolumeViz/render/common/Makefile.in: Bootstrap.
2004-07-14 16:59 mortene
* lib/VolumeViz/render/common/: Makefile.am, resourcehandler.c,
resourcehandler.h: Initial implementation of internal interface
for tracking resources connected to a GL context.
2004-07-14 14:43 mortene
* lib/VolumeViz/render/2D/2DTexSubPage.cpp: Clean-up: GLCMD()
wrapping not useful now. Remove for clarity.
2004-07-14 14:38 mortene
* data/maketestvol.cpp: Simple util to generate test volume.
2004-07-14 11:12 mortene
* lib/VolumeViz/render/: 2D/2DTexSubPage.cpp, 3D/3DTexCube.cpp,
common/CvrTextureManager.cpp: FIXME notes. Disable use of
GL_CLAMP_TO_EDGE, see how that works out.
2004-07-13 19:51 mortene
* lib/VolumeViz/nodes/VolumeRender.cpp: Tweak: be more slack with
the 3d-to-2d texture performance ratio. When 3d-texturing is not
accelerated, the ratio seems to run in the hundreds, so this
should be safe.
2004-07-12 14:17 mortene
* lib/VolumeViz/: misc/CLUT.cpp, render/2D/2DTexSubPage.cpp,
render/common/CvrTextureManager.cpp: Codestyle fixes.
2004-07-12 14:17 mortene
* lib/VolumeViz/misc/VoxelChunk.cpp: Bugfix: must also check
availability of fragment programs before deciding whether or not
paletted textures can be used.
2004-07-12 10:35 mortene
* lib/VolumeViz/nodes/VolumeRender.cpp: Minor debugging fix: inform
about missing 3d-texture support in GL driver. Also simplified
code for render method decision.
2004-07-12 10:35 mortene
* lib/VolumeViz/nodes/VolumeData.cpp: FIXME notes on unimplemented
storageHint settings.
2004-07-12 10:25 handegar
* lib/VolumeViz/nodes/VolumeRender.cpp: Better 3D texture perf.
test parameters.