forked from x3dom/x3dom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
2667 lines (1682 loc) · 51.7 KB
/
CHANGELOG
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
2011-04-05 thyrell
[r993] Added some runtime.* API methods and testcase
[r992] Added some runtime.* API methods and testcase
[r991] Moved slides and paper to doc directory
[r990] Fixes to tests
[r989] Updated tests to include flash backend
[r988] Added python script to update html includes with
test/functional
2011-04-05 akustikkoppler
[r987]
[r986] - Add Flash Backend Alpha 0.1
2011-04-04 thyrell
[r985] Fixed problem in Makfile
[r984] Refactored x3dom.Mesh code to src/mesh.js. Also added
script and Makefileupdate to search and replace the
script-includes in test/functioncal. However tools/sedml.sh not
working yet due to what seems to be encoding problems. Need to
crosscheck on a native unix machine
[r983] More cleaning of src/ folder
2011-03-29 thyrell
[r982] Removed old tests from src/
[r981] Removed old tests from src
[r980] Moved rest of the tests to test/functional
[r979] Moving textures for blinkingLight test
[r978] Moved a good deal more of tests from src/ to dedicated
test/functional
[r977] Moved a good deal more of tests from src/ to dedicated
test/functional
[r976] Moved some tests to test/functional
[r975] More tests moved to test/functional
[r974] Adding index.html to test/ directory
[r973] Converted two more tests to test/functional
[r972] Updated canvas painting test (adapted to test/functional)
2011-03-28 thyrell
[r971] Moved x3dom.isa() and defineClass() methods from x3d.js to
x3dom-internals.js
[r970] Added blinkingLight test to test/functional/
[r969] Additional function test in test/
[r968] Refactored static x3dom.getStyle() function to
x3dom-internals.js and added documentation
[r967] Starting re-org of src/ tree. Tests in src/ will most
likely break the next couple of weeks. Tests in test/functional
still work.
[r966] Starting re-org of src/ tree. Tests in src/ will most
likely break the next couple of weeks. Tests in test/functional
still work.
[r965] Using camel case convetion with tests
[r964] Implemented x3dom._runtime.getActiveBindable(typeName).
Please review
2011-03-22 thyrell
[r963] Added the runtime object to each X3D element instead of
using a system wide object.
2011-03-22 jbehr
[r962] getActiveBindable() func added
2011-03-22 thyrell
[r961] API documentation
[r960] API documentation
[r959] Added support for generating API documentation using lean
and mean NaturalDocs.org system
[r958] Added x3dom.runtime stub
2011-03-14 thyrell
[r957] More test cleanup
[r956] Renaming __loop() to mainloop() for requestAnimFrame
callback
[r955] Added requestAnimationFrame feature for browsers that
support it
2011-03-14 yjung
[r954] fixed example
2011-03-08 thyrell
[r953] Added comment in code to switch to requestAnimationFrame.
Not yet implemented though
2011-03-07 thyrell
[r952] More cleaning up of tests
2011-03-01 thyrell
[r951] Started work on putting acceptance tests in seperate
directory
2011-02-28 tobold
[r950] Fixed multitouch zooming.
2011-02-25 jbehr
[r949] fixed for extra browser support
2011-02-24 yjung
[r948] oops
[r947] worked on mt
2011-02-23 jbehr
[r946] namespace added
2011-02-22 thyrell
[r945] More work on multitouch. For now only FF is supported, and
only partially. Added a pinch-gesture to zoom scene. Partially
working with FF only
[r944] Merge branch 'mt'
[r943] Adding multitouch examples (mock)
2011-02-21 thyrell
[r942] I found a bug and fixed it, fortunately it does not bug us
anymore (semi-colon warning)
[r941] Fixed log output for touch events
[r940] Started target for running a local server
[r939] Started to working on touch support
2011-02-15 thyrell
[r938] Fixing CSS of camera animation example
[r937] Lint errors down to 'Dont make functions within a loop.'
[r936] Down to 52 liniting errors
[r935] Lint error cleanup installment 2
[r934] Fixed a whole slew of Lint errors
[r933] Making the Flipper test case work as HTML variant
[r932] Using src/VERSION instead of version.txt
2011-02-11 thyrell
[r931] Renaming the python module marker (.py not ,py)
2011-02-10 yjung
[r930] batch for make
[r929] try catch around python svn call
2011-02-08 thyrell
[r928] Regenerated ChangeLog
[r927] Layout fixes in tests index file
[r926] Merge branch 'buildsystem'
Conflicts:
src/gfx_webgl.js
[r925] CSS fix (right padding for exmaples)
[r924] CSS fix (right padding for exmaples)
[r923] Probably fixed #52, however due to no avail of a ATI card,
unable to test
[r922] Added the use of webfonts in HTML to text examples
(webfonts not rendered on canvas if not displayed before in plain
HTML). Also switch back to innerHTML() in logging because FF does
not support innerText().
[r921] Making webfonts work
[r920] Text not distorted anymore
[r919] Power of two textures now working
[r918] Tuned text exmaple to use smaller viewarea
[r917] Text not distorted anymore
[r916] Power of two textures now working
[r915] CSS fine tuning for examples pages
2011-02-07 thyrell
[r914] Text example layout fix
[r913] Fixes to styles of exmaples
[r912] Revert "Merge branch 'text'"
This reverts commit 9c5bd1aaafb7ae3ebffeb6aa2d5da20af2dd41be,
reversing
changes made to 9a9ca2b9a862d6410393c2da130b33c09399e677.
[r911] Merge branch 'text'
[r910] Added link back to the examples index (in text exmaple)
2011-02-03 thyrell
[r909] CSS fixes (examples layout)
[r908] Added CSS file and media directories for exmaples. Added
basic text exmaple
2011-02-01 thyrell
[r907] Regenerated Changelog
[r906] Added AUTHORS file to credit contributors
[r905] Changed innerHTML to innerText in logging
[r904] Some HTML cleanup
2011-01-27 akustikkoppler
[r903] - remove sphereMapping/origChannelCount Hack
[r902] - add origChannelCount in x3dom_bmwConfig.html and
x3dom_bmwConfig.xhtml
2011-01-25 thyrell
[r901] Adding directionality to text, though noop working yet
[r900] Todos
[r899] Fixed bug appearning in in FF with textAlign value of text
canvas (NS_ERROR_ILLEGAL_VALUE).
2011-01-20 thyrell
[r898] Added plain TODO file
2011-01-18 thyrell
[r897] Work on Text implementation: Added more FontStyle
attributes processing
[r896] More work on Text integration
2011-01-18 akustikkoppler
[r895]
[r894]
2011-01-18 thyrell
[r893] Switched font test to TYPEWRITER font. Webfonts not yet
working in FF and Chrome
[r892] Whoops forgot to remove alerts for debugging
[r891] Text stuff
[r890] Using a webfont
[r889] Fixed path in Text test
[r888] Better changelog
[r887] File cleanup
[r886] Started work on Text implementation
[r885] Fixing parent._nameSpace undefined bug. When appending a
non X3D node to the X3D element (like the statDiv) the
onNodeInserted handler fired and the code expected the inserted
not a X3D node. With the statDiv this is not the case. Now only
X3D nodes are processed by the handlers
2011-01-13 yjung
[r884]
2011-01-11 thyrell
[r883] Fixing error in URL
[r882] Fix no support message
[r881] Fixing links in tutorials files
[r880] Added final movie for tutorial
[r879] Tutorial changes
[r878] Updated CSS styling tutorial
[r877] Using local copy of stars background
[r876] Slicht re-org of styling tutorial
[r875] Refactoring test dir according to bp
[r874] Cleanup: Renaming unit test dir to test/ according to best
practices.
[r873] Ignoring x3dom.css/x3dom.js since its built automatically
[r872] Added css example
[r871] Adding LICENSE file. This is very important in order to
allow the open source community to use X3DOM.
[r870] Adding a better CHANGELOG file
[r869] * added detailed info about how example works
[r868] rename example
[r867] HTML5 cleanup
[r866] Style fixes
[r865] Keep log hidden in css example
[r864] Disable log in example
[r863] Layout fixes for FF
[r862] Added CSS Integration example
[r861] Added CSS Integration Example
[r860] Fixed problem in log string (does not escape <>)
[r859] * Removing canvasDiv style
* Adding line-height to statDiv
[r858] Added altImg to css demo (image shown as X3D background in
case of no-context)
[r857] Big cleanup:
* removed old canvasDiv stuff
* unified code style
* removed unused code
* documentation fixes
2011-01-10 yjung
[r856] minor cleanup
2011-01-08 yjung
[r855] fixed styling issues
2011-01-07 yjung
[r854]
2011-01-06 jbehr
[r853] initial checkin
[r852] initial checkin
[r851] initial checkin
2011-01-04 thyrell
[r850] Started to clean-up canvasDiv references in source
[r849] Fixing styles for teapot example
[r848] Updated some examples to use self-cleraing floats for a
div which contains the X3d element
[r847] Updated some examples to use self-cleraing floats for a
div which contains the X3d element
[r846] * added self-clearing float class to x3dom.css
* updated some examples to use self-cleraing floats for a div
which contains the X3d element
[r845] Fix dynamic event handler routing to canvas
[r844] removed old styles test and added test_cssIntegration.html
to the index
[r843] Updated teapot css to account for changes in x3dom.css due
to removing canvas-div
[r842] Fixed HTML. X3D was nested into p.
[r841] Fix for picking in FF (layout problem)
2011-01-03 yjung
[r840] example
[r839] impl. skyColor field in Bgnd. and ColorInterpolator
nodetest_skyColor.xhtml
2010-12-23 jbehr
[r838] initial checkin
2010-12-22 yjung
[r837]
[r836]
2010-12-21 thyrell
[r835] Adding event listeners to canvas element instead of the
(experimentally) defunct canvasDiv.
[r834] WARNING
This is an highly experimental change. I completely removed the
canvasDiv and nested the canvas tag beneath the x3d element. This
solved almost all our styling problems and makes x3d tag behave
like a normal HTML tag. The exmaples work so far but this commit
is not thorougly tested.
Sorry for pushing to HEAD but there are no easy branches in svn
:(
[r833] More work on syles
[r832] Fixed FF not getting style changes (now working)
[r831] More work on style integration. Strange problem:
* Webkit does not get height syle change (always returns 0px)
* Firefox does not get background style change
* Style change by switching classes still not detectable
2010-12-16 thyrell
[r830] A few renames and cleanup
[r829] Started to work on revised CSS integration stuff. At the
moment 'background' and 'backgroundColor' changes to the X3D
element are propagated to the canvasDiv as proof-of-conept.
Know problems:
- might cause the resize problem in FF (though can't reproduce it
so far)
- only background and background-color properties are propagated
right now
- Style changes made by attaching or removing CSS classes from
elements are not recognized (need further research why
x3dom.getStyle() does give new values in that case)
- Only testest on WebKit right now
[r828] Added test for CSS integration
[r827] Documentation for subroutine: x3dElm.checkStyleChanges
2010-12-14 jbehr
[r826] initial checkin
2010-12-13 yjung
[r825] started working on bgnd.
[r824] scaled points a bit bigger that one can see them better
[r823] added barcelona model
[r822] fixes
2010-12-12 yjung
[r821]
[r820] lookAt mode
2010-12-11 yjung
[r819] walk
[r818] fixes
2010-12-10 yjung
[r817] added simple billboard test
[r816] impl. fly mode
2010-12-08 yjung
[r815]
2010-12-07 akustikkoppler
[r814] - add Common Surface Shader Normal Mapping (Beta 2.0)
- add Common Surface Shader Specular Mapping
- add test_commonSurfaceShader01.xhtml
- add test_commonSurfaceShader02.xhtml
2010-12-07 yjung
[r813] removed unnecessary matrix
2010-12-06 akustikkoppler
[r812] - fix shader for ANGLE support
2010-12-02 yjung
[r811]
[r810] fixes
[r809]
2010-12-02 jbehr
[r808] small/tiny version added
2010-12-02 akustikkoppler
[r807] - Add forgotten test_cssNormalMapping.xhtml
2010-12-02 jbehr
[r806] texture url update
[r805] initial checkin
2010-12-02 keijen
[r804]
2010-12-02 jbehr
[r803] some text update
2010-12-02 keijen
[r802] stars bg
[r801] Pimp up of carousel example
2010-12-02 yjung
[r800] removed wrong comma
2010-12-01 akustikkoppler
[r799] - Add CommonSurfaceShader Normal Mapping (beta)
- Add test_cssNormalMapping.xhtml
- Update test_commonSurface.xhtml
2010-12-01 yjung
[r798]
2010-11-30 juangabreil
[r797] Billboard node implemented
2010-11-30 yjung
[r796]
2010-11-30 thyrell
[r795] Adding basic text example (HTML5)
[r794] Tutorial fix
[r793] Tutorial fix
[r792] tutorials/ folder reorg
[r791] Removing empty folders
[r790] First (rough) draft of styling tutorial
[r789] more work on styling tutorial
[r788] Fixing some copy in tutorial
[r787] * more work on tutorial for styling
[r786] * Fixed bug with resizing
[r785] Rename tutorial files
[r784] Started working on tutorial for styling x3d element
2010-11-30 jbehr
[r783] button text fixed
2010-11-30 thyrell
[r782] Changed debug output log_div to use "display:none" instead
of "visibility:hidden"
2010-11-30 jbehr
[r781] initial checkin
2010-11-29 yjung
[r780]
[r779]
2010-11-29 juangabreil
[r778] Billboard partially implemented
2010-11-29 yjung
[r777] undo
[r776] initial check-in
2010-11-29 juangabreil
[r775] In line 1100, changed Math.Pi to Math.PI
2010-11-27 yjung
[r774]
2010-11-27 jbehr
[r773] texture link fixed
2010-11-26 jbehr
[r772] initial checkin
2010-11-26 yjung
[r771]
[r770]
2010-11-25 thyrell
[r769] Added outline for spec (roughly mirrors SVG spec)
[r768] Set svn:ignore property
[r767] Set svn:ignore property
[r766] Set svn:ignore property
2010-11-25 yjung
[r765]
2010-11-25 thyrell
[r764] * fullscreen example updated
* refactor: using global 16ms timer to watch for CSS changes
[r763] Updated fullscreen example to support floating button
(floats over x3d element)
[r762] * added watching of CSS change events to implement
fullsize stuff.
* removed x3dom.css() and refactored to use x3dom.getStyle()
(hidden in x3d.js)
* Updated fullscreen example (test_fullscreen.xhtml)
2010-11-24 yjung
[r761] simple cover flow test
[r760] impl. removeEventListener
[r759] example for preventing bubbling
[r758] removed warnings
2010-11-23 thyrell
[r757] Test styles change w/h to 50% (css)
[r756] Added test to resize X3D element
[r755] Testcase for HTML5 styles
[r754] Styling, some properties work.
2010-11-19 yjung
[r753] example for simple self-made context menu
2010-11-17 yjung
[r752] UI event handler for X3D element
2010-11-15 akustikkoppler
[r751] - Add test_FromMaxExportedCoordIntp.xhtml
2010-11-11 thyrell
[r750] Styles test
[r749] Aspect ratios working now
[r748] Styles integration. At the moment the viewarea is not
properly updated: elements get stretched when canvas is of
dynamic size (i.e. 45%) and browser window is being resized.
[r747] Added test file to check audio capabilities
[r746] Added test for CSS styles (styling of X3D element via
styles property)
[r745] height and width of x3d tag take precedence over
hight/width given in styles
[r744] Work commit styles
2010-11-09 yjung
[r743] added audio code that hangs in Chrome...
2010-11-09 thyrell
[r742] Started to work on styles
2010-11-09 akustikkoppler
[r741] - fix texture Bug
2010-11-08 jbehr
[r740] sound added
[r739] initial checkin
[r738] switched plane model
2010-11-08 yjung
[r737] check for null
2010-11-05 jbehr
[r736] title added
2010-11-05 thyrell
[r735] * Added a method to enable proper prototypical inheritance
(x3dom.extend()).
If inheritance is desired, I should now be done like so:
obj.prototype = x3dom.extend(new Array)
* Removed the _wrap() workaround
* Added jsdoc documentation to new x3dom.extend() method
2010-11-03 akustikkoppler
[r734] - fix originalChannelCount
- add test_originalChannelCount.xhtml
2010-11-02 yjung
[r733]
2010-11-01 yjung
[r732] check for 0 instead of eps to fix precision error in
matrix inversion
[r731]
[r730]
[r729] whitepaper for documentation purposes
2010-10-31 yjung
[r728] patch from Andreas to workaround Minefield Array bug
[r727] removed doubled file with wrong suffix
2010-10-30 jbehr
[r726] fixed suffix
[r725] add bind to better name the example
[r724] font changed
[r723] initial checkin
2010-10-30 yjung
[r722] added debug info for older WebGL version
2010-10-29 yjung
[r721] addEventListener
[r720] events as function
2010-10-27 yjung
[r719] experiment with event object
2010-10-26 yjung
[r718]
[r717] typo
[r716]
[r715]
[r714] bugfix
[r713] transitionType/-Time
2010-10-25 yjung
[r712]
2010-10-25 jbehr
[r711] fixed prev transform for all/reset-anim
2010-10-25 yjung
[r710]
2010-10-25 jbehr
[r709] viewpoint-bind anim added
2010-10-25 yjung
[r708]
2010-10-24 yjung
[r707]
[r706]
[r705]
[r704] improved mouse event handling
2010-10-22 jbehr
[r703] cleanups to handle includes more flexible
2010-10-22 yjung
[r702] gl cleanup on node removal
[r701]
2010-10-22 jbehr
[r700] viewpoint next/prev switching added to key [ and ]
2010-10-22 yjung
[r699]
[r698] _nodeBag clean-up
2010-10-22 jbehr
[r697] changed version to 1.2-alpha
[r696] initial checkin
2010-10-22 akustikkoppler
[r695] - fixed #32 Add support for ColorRGBA
2010-10-22 yjung
[r694] typo fixed
[r693]
2010-10-22 jbehr
[r692] initial checkin
[r691] initial checkin
[r690] w3c link added
[r689] initial checkin
[r688] changed version to 1.1
2010-10-21 akustikkoppler
[r687] - rename Iphone_Video from .ogm to .ogv for Firefox Beta
[r686] - add IPhone Example
2010-10-20 keijen
[r685] index with backlink to x3dom.org
2010-10-20 jbehr
[r684] fixed chrome link
[r683] typo fixed
2010-10-19 yjung
[r682] movies are NPOT: repeatS='false' repeatT='false'
2010-10-19 jbehr
[r681] initial checkin
2010-10-18 jbehr
[r680] added Abb 2 link
2010-10-18 keijen
[r679] added x3dom.css again and integrated sculpture example
2010-10-18 yjung
[r678]
[r677] started with texcoord pickMode
2010-10-18 jbehr
[r676] skulptur added
[r675] cleanup
2010-10-15 jbehr
[r674] fixed texture node
[r673] initial checkin
[r672] initial checkin
2010-10-14 keijen
[r671]
2010-10-14 yjung
[r670]
2010-10-14 keijen
[r669] Styling der IX Seiten: Alle neuen haben hinten ein
name_2_.html am Ende
2010-10-12 jbehr
[r668] initial checkin
2010-10-06 yjung
[r667]
[r666]
[r665]
[r664]
2010-10-01 yjung
[r663]
[r662]
[r661] field test update
2010-09-24 yjung
[r660]
[r659]
[r658]
2010-09-24 jbehr
[r657] creaseAngle fixes
[r656] initial checkin
2010-09-24 yjung
[r655]
[r654] Timms iX-Modell
2010-09-23 yjung
[r653] iX examples
2010-09-23 jbehr
[r652] initial checkin
2010-09-23 yjung
[r651]
[r650] fix
2010-09-22 akustikkoppler
[r649] - add NPOT Texture Scaling
2010-09-15 yjung
[r648]
[r647] fixed matrix mixer
2010-09-14 yjung
[r646] matrix log/exp
[r645] 2 high-poly models - EG dragon
2010-09-13 yjung
[r644]
[r643]
2010-09-12 yjung
[r642]
2010-09-10 yjung
[r641]
2010-08-24 yjung
[r640] some extra version info
2010-08-24 jbehr
[r639] two tests added
2010-08-20 yjung
[r638] impl. scene field in RT
2010-08-19 jbehr
[r637] initial checkin
[r636] moved script to head
[r635] switch off log
[r634] initial checkin
[r633] initial checkin
2010-08-18 yjung
[r632]
[r631] implemented Metadata node
[r630] fix for ticket #44
2010-08-17 yjung
[r629]
[r628] first version of PixelTexture
[r627] initial checkin
2010-08-17 akustikkoppler
[r626] - fix Shader-Cache (per-Context)
2010-08-17 yjung
[r625] added keysEnabled field to x3d elem
[r624] remove focus border
2010-08-17 jbehr
[r623] moved src- timo do arch/timo-shaderComposer
[r622] added code to activate/deactivate stat-view with space-key
2010-08-17 yjung
[r621] using Typed Arrays instead WebGLxxx
2010-08-16 yjung
[r620] fix for ticket #38
2010-08-12 akustikkoppler
[r619] - integrate Shader-Cache
2010-08-12 yjung
[r618] updated readPixels stuff
2010-08-09 jbehr
[r617] initial checkin
[r616] fixed log output
2010-08-04 jbehr
[r615] initial checkin
[r614] changed size of canvas
[r613] initial checkin
2010-08-04 yjung
[r612] modified code to work with shader validation
2010-08-03 yjung
[r611] removed obsolete texture code
2010-07-22 akustikkoppler
[r610] - change Headlight calculation for testing
[r609]
2010-07-22 jbehr
[r608] title added
[r607] initial checkin
[r606] initial checkin
[r605] local ar links added
2010-07-22 tobold
[r604] Added batch file to create x3dom.js from all .js files.
2010-07-22 akustikkoppler
[r603] - fix Shader for disabled Lighting
2010-07-22 tobold
[r602] Fixed color values.
[r601] Added one more example.
[r600]