forked from umlaeute/Gem
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ChangeLog
12943 lines (8590 loc) · 402 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
2007-06-05 23:44 cclepper
* src/Pixes/recordQT.cpp: fixed looooong first frame bug. added
detection for colorspace and image flipping.
2007-05-31 19:52 zmoelnig
* src/Pixes/pix_buffer.cpp: make old-images tiny (almost free them)
when resizing the array: important when you resize large arrays;
TODO: do not resize buffers that already have the correct size
2007-05-31 17:18 zmoelnig
* src/Pixes/: pix_buffer.cpp, pix_buffer.h: added "resize" message
2007-05-30 16:49 zmoelnig
* src/Pixes/: pix_buffer.cpp, pix_buffer.h: added "resize" message
2007-04-02 17:27 zmoelnig
* src/Pixes/: pix_videoNEW.cpp, videoV4L2.cpp: fixed v4l2-code as
to set the "m_capturing"-flag whenever we exit the capturing
thread (not just when we power it down);
in pix_videoNEW do not startTransfer() in the constructor phase
2007-04-02 12:24 zmoelnig
* src/Base/TextBase.h: incidentially deleted the "using
std::string;" line...now it is back
2007-04-02 12:18 zmoelnig
* src/README.linux: updated documentation a bit
2007-04-02 09:36 zmoelnig
* src/: Base/TextBase.cpp, Base/TextBase.h, Base/config.h,
Base/configGeneric.h.in, Base/configLinux.h.in, Base/configNT.h,
Geos/text2d.cpp, Geos/text2d.h, Geos/text3d.cpp, Geos/text3d.h,
Geos/textextruded.cpp, Geos/textoutline.cpp, Geos/textoutline.h:
removed GLTT support; added wide-character support for FTGL (at
least in "string" mode)
2007-04-02 09:34 zmoelnig
* src/configure.ac: removed GLTT support; added wide character
support for FTGL-font rendering (at least in "string" mode)
2007-03-14 11:57 zmoelnig
* src/Pixes/videoDV4L.cpp: minor issue with using fprintf() without
carriage return; this solution uses verbose(), though i am not
sure whether this is really thread safe... have i really
forgotten to check this in...?
2007-03-12 10:15 zmoelnig
* src/Pixes/: pix_offset.cpp, pix_offset.h: added saturated logic
and made it default (is the LATTER a good idea?)
2007-02-20 11:13 zmoelnig
* src/Base/GemGL.h: fixed typos in comment
2007-02-20 11:11 zmoelnig
* src/Base/GemGL.h: fixed comment
2007-02-20 10:58 zmoelnig
* src/: configure.ac, Base/GemGL.h, Base/configDarwin.h.in,
Base/configLinux.h.in: added a configure-flag to specify the
maximum openGL-version to use. use this information in GemGL.h
to exclude certain parts of the openGL-headers thanks ico for the
suggestion
2007-02-20 10:56 zmoelnig
* src/openGL/GEMglBlendEquation.cpp: glBlendEquation() needs
openGL-1.2
2007-02-20 10:43 zmoelnig
* src/Pixes/pix_texture.cpp: glActiveTexture() is not always
defined
2007-02-20 10:42 zmoelnig
* src/Pixes/video.h: indentation
2007-02-19 12:29 zmoelnig
* src/Pixes/: pix_videoNEW.cpp, videoDV4L.cpp, videoV4L.cpp:
applied ico's patches in order to stabilize dv4l (note: use
delete[] on ~pix_videoNEW)
2007-02-13 14:10 zmoelnig
* src/: Pixes/filmQT.h, Pixes/pix_filmDarwin.h, Pixes/pix_filmQT.h,
Pixes/pix_videoDarwin.h, Base/GemMan.cpp,
Base/GemPixImageLoad.cpp: fixed cases for os-x includes (fixes
bug#1613373)
2007-02-12 23:33 tigital
* src/Base/GemPixUtil.cpp: small changes to get correct colors on
intel macs
2007-02-12 22:43 tigital
* src/Pixes/pix_write.cpp: small change to get correct colors on
intel macs
2007-01-07 23:32 tigital
* src/Manips/: glsl_fragment.cpp, glsl_program.cpp, glsl_program.h,
glsl_vertex.cpp, glsl_vertex.h: added GL_VERSION_2_0 compile path
for non-ARB glsl functions
2007-01-07 20:52 zmoelnig
* src/Vertex/: vertex_add.cpp, vertex_combine.cpp: proper calling
of CPPExtern::error() in the static member functions
2006-12-07 19:19 cclepper
* src/Pixes/pix_convolve.cpp: quick fix for YUV 3x3 on x86. for
now it just does the generic loop.
2006-12-06 21:08 cclepper
* src/Pixes/pix_filmNEW.cpp: added an ifdef to make sure this is
not compiled on OSX. pix_filmDarwin is used instead
2006-12-06 20:56 cclepper
* src/Pixes/pix_movieNEW.cpp: added an ifdef to make sure this is
not compiled on OSX. pix_movieDarwin is used instead
2006-12-06 20:44 cclepper
* src/Pixes/pix_movie.cpp: added another ifdef to make sure this is
not compiled on OSX
2006-12-04 16:35 zmoelnig
* src/Geos/scopeXYZ.cpp: sped things up a bit; cleaned up post()
2006-12-04 10:11 zmoelnig
* help/depth.pd: added comment about initial state and a note, that
you now can set this initial state via arguments
2006-12-04 10:09 zmoelnig
* src/Manips/: depth.cpp, depth.h: add an optional argument to the
object, so the initial state can be given at object creation
(thanks cyrille for the request)
2006-11-25 21:04 zmoelnig
* src/Pixes/: pix_gain.cpp, pix_gain.h: added "saturate" message to
turn saturation on/off; fixed bug in MMX code with gains>1; added
initial arguments
2006-11-21 13:10 zmoelnig
* src/Base/GemPixConvert.h: less warnings when compiling
2006-11-21 13:00 zmoelnig
* GEM_RELUNIX.sh: nobody uses this and if they do, it wouldn't work
anyhow
2006-11-21 12:58 zmoelnig
* GEM.README: updated documentation a tiny bit...
2006-11-21 12:57 zmoelnig
* src/: Base/GemPixDualObj.cpp, Base/GemPixObj.cpp,
Controls/gemframebuffer.cpp, Manips/glsl_program.cpp,
Manips/glsl_vertex.cpp, Manips/vertex_program.cpp,
Pixes/pix_buffer_read.cpp, Pixes/pix_buffer_write.cpp,
Pixes/pix_fiducialtrack.cpp, Pixes/pix_multitexture.cpp,
Pixes/pix_rgba.cpp, Pixes/pix_texture.cpp,
openGL/GEMglBlendEquation.cpp: minor code cleanup
2006-11-21 11:10 zmoelnig
* src/Pixes/pix_artoolkit.cpp: bail out when using wrong messages
2006-11-15 12:12 zmoelnig
* src/Base/GemPixConvert.h: fixed typo (it is __GNUC__ and not
__GNUC___)
2006-11-15 12:08 zmoelnig
* src/Base/GemPixConvert.h: more verbosity when disabling the
culprit altivec stuff (since the code does not seem to work and i
don't know why...watch out for the autobuild logs tomorrow...)
2006-11-14 11:58 zmoelnig
* src/Base/: GemPixConvert.h, GemPixConvertAltivec.cpp: disable
YUV422_to_YV12_altivec() for gcc<4.0 via the
NO_VECTORINT_TO_VECTORUNSIGNEDINT define (the fix yesterday
coukdn't have worked); btw YUV422_to_YV12_altivec() is really
_unused_ in the current sources!!
2006-11-14 11:34 zmoelnig
* src/Pixes/: pix_artoolkit.cpp, pix_artoolkit.h: can't use methods
with "float, symbol" type; have to use A_GIMME instead
2006-11-13 16:49 zmoelnig
* src/Base/GemPixConvertAltivec.cpp: disabling __VEC__ for older
gcc's (<4); LATER fix the code
2006-11-12 16:20 zmoelnig
* src/Pixes/pix_artoolkit.cpp: print credits on first object
creation
2006-11-12 16:14 zmoelnig
* src/Pixes/pix_artoolkit.cpp: removed the default
"HAVE_ARTOOLKIT"; this is checked by configure
2006-11-12 16:05 zmoelnig
* src/Pixes/: pix_artoolkit.cpp, pix_artoolkit.h: added shigeyuki's
[pix_artoolkit]
2006-11-12 16:04 zmoelnig
* src/: configure.ac, Base/configLinux.h.in: checks for artoolkit
2006-11-08 21:30 zmoelnig
* examples/07.texture/10.framebuffer.pd: added example file for the
use of [gemframebuffer]; note that i use [pix_texture] instead of
[pix_multitexture]
2006-11-08 20:24 zmoelnig
* examples/07.texture/09.sharedTextures.pd: removed the
[pix_coordinate] stuff, since it is now unneccessary (i thought i
removed this already...)
2006-11-06 18:39 zmoelnig
* src/Pixes/filmFFMPEG.cpp: fail to load movie when fps get's
weird... (LATER fix the ffmpeg code)
2006-11-06 17:48 zmoelnig
* src/Pixes/: film.cpp, film.h, pix_filmNEW.cpp: made film::m_auto
protected; from outside it can now only be set via setAuto();
this should make it easier to make optimized decoding paths for
sequential reading (e.g. non-random-access)
2006-11-06 17:40 zmoelnig
* src/Pixes/filmFFMPEG.cpp: better handling of decoding errors...
2006-11-03 17:50 zmoelnig
* src/Pixes/pix_videoDarwin.cpp: fixed calls to post()
2006-11-03 09:37 zmoelnig
* src/Pixes/pix_freeframe.cpp: fixed calls to ::error() and
::post()
2006-11-03 09:32 zmoelnig
* src/: Base/CPPExtern.cpp, Base/CPPExtern.h, Base/GemBase.cpp,
Base/GemGluObj.cpp, Base/GemPixDualObj.cpp, Base/GemPixUtil.cpp,
Base/GemPixUtil.h, Base/TextBase.cpp,
Controls/gemframebuffer.cpp, Controls/gemwin.cpp,
Nongeos/world_light.cpp, Particles/part_color.cpp,
Pixes/pix_background.cpp, Pixes/pix_buffer.cpp,
Pixes/pix_color.cpp, Pixes/pix_film.cpp, Pixes/pix_filmNEW.cpp,
Pixes/pix_halftone.cpp, Pixes/pix_multitexture.cpp,
Pixes/pix_rds.cpp, Pixes/pix_record.cpp, Pixes/pix_record.h,
Pixes/pix_share_write.cpp, Pixes/pix_sig2pix.cpp,
Pixes/pix_videoNEW.cpp: added post() method to CPPExtern.cpp
which automatically prepends the object's name (if available);
accordingly had to change a lot of uses uses of post() where
either the object's name was hard- or softcoded or ::post() was
used (in the callback functions)
2006-11-03 09:26 zmoelnig
* src/Pixes/: pix_texture.cpp, pix_texture.h: extended the
texture-sharing message to: textureID, texCoords, type, flags
2006-11-03 09:25 zmoelnig
* src/Pixes/: videoV4L.cpp, videoV4L2.cpp, videoV4L2.h: fixed v4l-1
to work with my usb-2u-cam; v4l-2 starts to work too...
2006-11-03 09:24 zmoelnig
* src/: BUGS, README.linux, TODO.091: updated info-files
2006-11-01 23:33 tigital
* src/: Pixes/pix_multitexture.cpp, Pixes/pix_multitexture.h,
Base/GemShape.cpp, Base/GemState.cpp, Base/GemState.h:
[pix_multitexture] now works as expected! - new [dimen x y<
message needed so that it can determine texcoords - GemShape's
SetVertex() has been modified to loop thru glMultiTexCoord2f,
when needed - GemState has new variable: state->multiTexCoords,
which is 0 by default, but set in pix_multitexture based on the #
of texUnits requested
2006-10-30 21:57 tigital
* src/Base/GemPixConvertAltivec.cpp: more attempts at fixes for bad
type-ing of vec's on 10.3
2006-10-30 19:51 zmoelnig
* src/configure.ac: added option to disable "-fPIC"
2006-10-30 19:45 zmoelnig
* src/configure.ac: make "-Os" the default on Darwin
2006-10-30 19:37 zmoelnig
* src/configure.ac: added more tests for compiler-flags as
suggested by tigital (-mpowerpc-gfxopt is turned OFF by default;
LATER think about the "-Os" flag on os-x)
2006-10-30 19:24 zmoelnig
* src/Base/GemPixConvertAltivec.cpp: reverted the type changes
(while this still breaks compilation with older gcc's, at least
it is functional)
2006-10-30 09:47 zmoelnig
* src/configure.ac: oops, fixed typo
2006-10-30 09:46 zmoelnig
* src/configure.ac: added check for "-fpascal-strings" which allows
us to use pascal-strings (containing '\p') on os-x
2006-10-30 09:26 zmoelnig
* src/Base/GemPixConvertAltivec.cpp: tried to fix another error
with types; NEEDS TESTING
2006-10-26 22:04 tigital
* src/Base/GemPixConvertAltivec.cpp: fixes for bad type comparisons
in some vec_sl()/vec_add and loop comparisons
2006-10-26 22:00 tigital
* src/Base/CPPExtern.h: fix for gcc4 warning "'GemException' has
virtual functions but non-virtual destructor"
2006-10-22 21:51 zmoelnig
* src/configure: finally removed "configure" since it really should
be generated (and therefore happens to get out of sync with
configure.ac too often)
2006-10-20 19:48 zmoelnig
* src/Manips/glsl_program.cpp: only call glUseProgramObjectARB() in
postrender() when we have a linked module (less crashy on systems
that don't really support shaders...)
2006-10-20 19:40 zmoelnig
* src/Base/TextBase.cpp: changed type of for-loop variable from
(size_t) to (singed long long), since unsigned numbers never get
negative!
2006-10-18 15:49 zmoelnig
* src/: Make.config.in, Makefile, configure.ac: store the
CONFIGUREFLAGS in Make.config, so that automatic calls to
"configure" produce the same results; additionally this should
make it possible to just call:
'CONFIGUREFLAGS="--with-pd=/bi/ba/bo" make" in a distclean
environment and it will build everything; LATER remove
configure/aclocal.m4
2006-10-18 13:06 zmoelnig
* src/Pixes/videoV4L.cpp: setNorm() now has an effect even if
capturing is currently not running; LATER think about making the
"mode <norm> <channel>" message work again (it seems like this is
some threading problem)
2006-10-18 13:05 zmoelnig
* src/Pixes/pix_videoNEW.cpp: fixed if/else at the "mode" message
2006-10-18 12:53 zmoelnig
* src/Pixes/videoV4L2.cpp: hmm...
2006-10-18 12:52 zmoelnig
* src/Base/GemWinCreateXWin.cpp: made it a tiny bit more readable;
added accumbuffer-bits to window-creation
2006-10-18 12:50 zmoelnig
* examples/07.texture/09.sharedTextures.pd: example for
texture-sharing
2006-10-18 12:46 zmoelnig
* examples/08.io/04.UseOrb.pd: dont use markEx-objects anymore;
LATER remove this example altogether
2006-10-18 12:44 zmoelnig
* examples/06.particle/: 04.combo.pd, 05.twoSrc.pd, 08.info.pd:
dont use markEx-objects anymore
2006-10-18 12:43 zmoelnig
* examples/05.text/: 01.Text.pd, 01.TextNoLoadBang.pd,
03.ChangeText.pd, 03.ChangeTextNoLoadBang.pd, arial.ttf,
vera.ttf: updated to use vera.ttf instead of arial.ttf and to not
use markEx-objects anymore
2006-10-18 12:40 zmoelnig
* examples/04.pix/: 05.movie.pd, 18.Curves.pd: dont use
markEx-objects anymore
2006-10-18 12:39 zmoelnig
* examples/02.advanced/: 03.View_OSD.pd, 08.Snapshot2.pd: updated
to use vera.ttf instead of arial.ttf and to not use
markEx-objects anymore
2006-10-06 16:53 cclepper
* src/Pixes/pix_filmDarwin.cpp: updated RGBA pixel packings for Mac
Intel
2006-10-06 16:50 cclepper
* src/Base/GemPixImageLoad.cpp: update for proper Mac Intel pixel
packing
2006-10-04 13:38 zmoelnig
* src/Pixes/pix_fiducialtrack.cpp: proper initialization
(memset(0)) for fidtrackerx (used to crash on my x64_64)
2006-10-03 17:13 zmoelnig
* src/configure.ac: hopefully fixed the check whether
OpenGL-framework is used
2006-10-03 17:08 zmoelnig
* src/configure.ac: disable checks for libGL and libGLU if we use
the OpenGL-framework
2006-10-03 13:51 zmoelnig
* src/configure.ac: disable checks for lqt and libquicktime if
QuickTime-framework is being used
2006-09-27 14:55 zmoelnig
* tests/all/objects.txt: deleted obsoleted objects from this list
2006-09-27 14:53 zmoelnig
* tests/all/existence.sh: make pd-binary settable via the PD
variable
2006-09-27 12:11 zmoelnig
* src/: configure, configure.ac: removed the test for
AC_PROG_GCC_TRADITIONAL since we use c++ instead of cc
2006-09-27 11:53 zmoelnig
* src/: configure, configure.ac: hopefully fixed the FFMPEG-thing
(the AVCodecContext-check was broken since i changed the language
from "C" to "C++")
2006-09-27 11:04 zmoelnig
* src/: configure, configure.ac: added some magic for FTGL and
ffmpeg
2006-09-26 11:56 zmoelnig
* src/Base/GemGL.h: use our own glew.h (if so)
2006-09-26 11:55 zmoelnig
* src/Manips/vertex_program.cpp: glProgramEnvParameter4fvARB() can
only be used if GL_ARB_vertex_program is defined
(GL_NV_vertex_program doesn't matter)
2006-09-26 11:27 zmoelnig
* src/configure.ac: removed check for "-no-builtin" gcc-flags,
since this prevents us from building with older gcc-version
2006-09-25 15:28 zmoelnig
* src/: README.glew, importGLEW.sh, Base/glew.cpp, Base/glew.h,
Base/glxew.h, Base/wglew.h: regenerated glew from 1.3.4 sources;
fixed importGLEW.sh so that it automatically adds the "#ifdef
USE_GLEW" clauses around the code
2006-09-21 21:36 zmoelnig
* src/: configure, configure.ac: added checks for the
not-deprecated linking flags on OSX; disabled altivec on x86_64
machines
2006-09-21 16:38 zmoelnig
* src/Pixes/pix_deinterlace.cpp: added newline at end of file
2006-09-21 16:32 zmoelnig
* src/Pixes/: pix_multitexture.cpp, pix_multitexture.h: add generic
inlets for each textureunit
2006-09-21 16:31 zmoelnig
* src/Base/: CPPExtern.cpp, CPPExtern.h: added PDerror() which
calls pd_error() without having to worry about the object
("ourselves")
2006-09-20 17:57 zmoelnig
* src/: Make.config.in, acinclude.m4, configure, configure.ac:
disabled Vertex by default (since it is very experimental)
disabled SSE2 by default (since most processors do not yet
support it)
2006-09-20 17:56 cclepper
* src/Controls/gemframebuffer.cpp: added glfrustum call with GEM
default setting. Uncommented some of the matirx calls which get
closer to correct rendering.
2006-09-20 17:51 zmoelnig
* src/Base/GemGL.h: indentation of preprocessor-directives, so i
can read them
2006-09-20 09:55 zmoelnig
* src/Vertex/vertex_model.cpp: removed the legacy
HaveValidContext() function call (since it does no longer exist)
2006-09-19 22:48 cclepper
* src/Controls/gemframebuffer.cpp: init m_FBOcolor not m_color
2006-09-19 22:42 cclepper
* src/Controls/: gemframebuffer.h, gemframebuffer.cpp: added a
color message to set the background color.
2006-09-18 13:09 zmoelnig
* src/Manips/glsl_vertex.cpp: another check for illegal filenames
2006-09-18 12:39 zmoelnig
* help/: alternate.pd, average.pd, counter.pd, hsv2rgb.pd,
invert.pd, oneshot.pd, randomF.pd, rgb2hsv.pd, tripleLine.pd,
tripleRand.pd, v+.pd, v-.pd, vector+.pd, vector-.pd: removed
MarkEx from Gem
2006-09-18 12:39 zmoelnig
* help/: pix_kaleidoscope.pd, pix_multiblob.pd: removed dependency
on [v+] and friends (which are no longer part of Gem)
2006-09-17 17:41 zmoelnig
* src/Pixes/recordQT.h: put "float seconds;" in the
platform-independent section, since it is used by both __APPLE__
and __WIN32__
2006-09-15 20:15 tigital
* src/Pixes/pix_image.cpp: [OSX] small fix for close() definition
2006-09-14 11:44 zmoelnig
* src/Vertex/vertex_draw.cpp: hopefully made this work with older
openGL-headers
2006-09-14 11:20 zmoelnig
* src/Base/: GemMan.cpp, GemVersion.h: put the authors into
GemVersion.h and removed the OS-information (since this is
blurry)
2006-09-14 11:00 zmoelnig
* tests/all/existence.bat: w32 batch file for testing; LATER make
this via make
2006-09-13 00:38 cclepper
* src/Pixes/: recordQT.cpp, recordQT.h: updated to include timers
and matrix flipping on windows
2006-09-12 21:58 cclepper
* src/Pixes/pix_recordQT.h: adds a timer for the movie framerate on
windows. also flips the image around when a directshow source is
used.
2006-09-12 21:54 cclepper
* src/Pixes/pix_recordQT.cpp: adds a timer for the movie framerate
on windows. also flips the image around when a directshow source
is used.
2006-09-12 21:44 cclepper
* src/Base/GemGL.h: added header for GLEW
2006-09-12 21:42 cclepper
* src/Base/: GemMan.cpp, GemMan.h: Quicktime init on first launch
for Windows. This could possibly go in GemWinCreateNT, but it
works fine here.
2006-09-12 21:40 cclepper
* src/Base/GemWinCreateNT.cpp: GLEW init code for Windows
2006-09-12 21:37 cclepper
* src/Base/GemSIMD.cpp: added a working SIMD feature check for
Windows.
2006-09-11 23:56 cclepper
* src/Pixes/pix_filmNEW.cpp: m_auto is passed to the handle.
useful for DirectShow and Quicktime which are more efficient
handling auto play than just incrementing a frame counter.
2006-09-11 23:55 cclepper
* src/Pixes/film.h: moved m_auto to public member variable
2006-09-11 23:53 cclepper
* src/Pixes/filmDS.cpp: added right inlet frame handling and auto
now sets rate
2006-09-07 23:28 cclepper
* src/Geos/rectangle.cpp: fixed error in SetVertex that made
everything square
2006-09-05 17:27 tigital
* src/Pixes/pix_texture.cpp: added more informative output when
changing mode
2006-09-03 18:50 zmoelnig
* src/Base/CPPExtern.h: removed inheritance of GemException from
std::exception to not set up M$VC; hope this works
2006-09-02 20:37 zmoelnig
* src/Pixes/: pix_image.cpp, pix_movieDS.cpp: use "-path" for
searching images
2006-09-02 20:37 zmoelnig
* src/Makefile: added installabs target for installing
abstractions; install Gem.${EXT} into pd/extra/Gem/
2006-08-31 21:45 cclepper
* src/Pixes/: pix_deinterlace.cpp, pix_deinterlace.h: added a
message apative to set the threshold for deinterlacing. also
attempted to make the deinterlacing a little nicer looking for
RGBA.
2006-08-31 21:36 cclepper
* src/Geos/rectangle.cpp: changed drawing to use SetVertex() which
allows for texturing from texture units other than 0
2006-08-31 20:47 cclepper
* src/Pixes/: pix_texture.cpp, pix_texture.h: added texunit message
and handling of multiple texture units
2006-08-29 17:34 zmoelnig
* src/Base/GemVersion.h: added "cvs" to the version string
2006-08-29 16:46 zmoelnig
* src/Makefile: removed the tailing slash from BUILDDIR (avoid
double-slashes in paths)
2006-08-29 09:35 zmoelnig
* src/Pixes/: filmDS.cpp, filmDS.h: fixed compilation issue on
systems without HAVE_DIRECTSHOW
2006-08-24 23:20 cclepper
* src/Pixes/pix_filmNEW.cpp: added HAVE_DIRECTSHOW define to select
filmDS or filmAVI
2006-08-24 23:15 cclepper
* src/Pixes/: filmDS.h, filmDS.cpp: changed defines to add
HAVE_DIRECTSHOW
2006-08-24 22:54 cclepper
* src/Pixes/: filmDS.cpp, filmDS.h: DirectShow class for pix_film
on Windows.
2006-08-22 14:05 zmoelnig
* abstractions/pix_blobtracker-help.pd: replaced [v+] and friends
with pd-objects
2006-08-22 14:03 zmoelnig
* abstractions/: gemorb.pd, gemtablet.pd: dummy objects that print
an error when being instantiated, telling the user that the real
objects ceased to exist
2006-08-22 13:52 zmoelnig
* examples/09.openGL/03.stencilBuffer.pd: cyrille's stencil buffer
patch
2006-08-22 09:52 zmoelnig
* src/Controls/gemframebuffer.cpp: newline at end of file (after
all, C++ MUST have a newline at the EOF)
2006-08-22 09:40 zmoelnig
* src/Pixes/: pix_movieDS.cpp, pix_movieDS.h, pix_videoDS.cpp,
pix_videoDS.h: put the DirectShow code into #ifdef's to prevent
it from bulding on other platforms; dos2unix
2006-08-21 23:21 cclepper
* src/Pixes/: pix_videoDS.cpp, pix_videoDS.h: Changed callback to
GetCurrentBuffer. Added method to record video to disk in native
format (useful for DV capture).
2006-08-21 23:16 cclepper
* src/Pixes/: pix_movieDS.cpp, pix_movieDS.h: Object for loading
DirectShow files on Windows
2006-08-21 20:48 cclepper
* src/openGL/: GEMglClearDepth.cpp, GEMglClearDepth.h: fixed cast
to GLclampd for depth flag
2006-08-17 13:08 zmoelnig
* src/Pixes/pix_movieNEW.cpp: remove the 2nd inlet inherited from
[pix_texture] since this object always has its own texture
2006-08-17 13:07 zmoelnig
* src/Pixes/: pix_texture.cpp, pix_texture.h: added a second inlet
for setting a "remote" texture, which is used optionally if no
image is present
2006-08-17 11:13 zmoelnig
* src/Pixes/pix_snap2tex.cpp: deleted commented out leftovers; use
window-dimensions when given dimensions <=0 (instead of <0)
2006-08-17 10:22 zmoelnig
* examples/07.texture/08.MotionBlur.pd: an example on how to use
full-screen motion-bluring with feedback-textures
2006-08-16 14:40 zmoelnig
* src/TODO.091: autoconf working on OSX
2006-08-16 14:39 zmoelnig
* src/Controls/: orb.h, orbserial.cpp, orbserial.h, gemorb.cpp,
gemorb.h, gemtablet.cpp, gemtablet.h, orb.cpp: deleted [gemorb]
and [gemtablet]
2006-08-16 14:31 zmoelnig
* src/: configure, configure.ac: removed MarkEx from Gem; added
Vertex-branch to configure
2006-08-16 14:27 zmoelnig
* src/MarkEx/: MarkExSetup.cpp, README.txt, abs.cpp, average.cpp,
counter.cpp, hsvrgb.cpp, m_control.cpp, multiselect.cpp,
randomF.cpp, reson.cpp, strcat.cpp, tripleLine.cpp, vector.cpp:
removed MarkEx from Gem
2006-08-16 12:03 zmoelnig
* src/Base/: CPPExtern.cpp, CPPExtern.h: better(?) declarations of
exceptions...
2006-08-14 17:32 zmoelnig
* src/Pixes/pix_fiducialtrack.cpp: removed debugging printout
2006-08-14 17:31 zmoelnig
* src/Pixes/pix_fiducialtrack.cpp: initialization of treeidmap
2006-08-14 17:07 zmoelnig
* tests/all/objects.txt: more arguments to objects that need it
2006-08-14 16:58 zmoelnig
* tests/all/: existence.pd, objects.txt: allow arguments to objects
2006-08-14 16:37 zmoelnig
* src/openGL/: GEMglProgramStringARB.cpp, GEMglProgramStringARB.h:
changed this object to A_GIMME, since default args do not like
symbols to come after floats... LATER: this object should refuse
from being created, if the arguments do not match what we expect
LATER: there are other objects who also suffer from this...
2006-08-09 19:15 zmoelnig
* src/: configure, configure.ac: rearranged a bit, so that it is
possible to find the "--with-pd" flag in the help...
2006-08-09 19:08 zmoelnig
* src/: configure, configure.ac: this might work on os-x! changed
the behaviour of "--with-pd" so that it's argument should direct
to the base-path of pd, where we can find both headers
(<pdpath>/src) and libraries (<pdpath>/bin)
2006-08-09 18:44 zmoelnig
* src/Pixes/recordQT.cpp: use "0" instead of NULL for setting
characters
2006-08-09 18:40 zmoelnig
* src/Pixes/filmQT4L.cpp: protect the inclusion of <colormodels.h>
with HAVE_QUICKTIME4LINUX
2006-07-27 18:00 zmoelnig
* src/Base/TextBase.cpp: use "vera.ttf" as default font (whoa, this
could break things!)
2006-07-27 17:59 zmoelnig
* src/Controls/gemhead.cpp: use GemState->reset() instead of
resetting things manually
2006-07-27 17:58 zmoelnig
* src/Base/: GemState.cpp, GemState.h: removed the "stereo"
membervariable: this is handled by "tickTime"; added a "reset()"
method (to be used in [gemhead] instead of resetting things
manually)
2006-07-27 17:56 zmoelnig
* src/Base/GemMan.cpp: replaced setting GemState->stereo by setting
GemState->tickTime;
2006-07-27 14:12 zmoelnig
* src/Pixes/pix_freeframe.cpp: removed an unconditional exception
thrown in the constructor
2006-07-25 18:37 zmoelnig
* src/Particles/: part_color.cpp, part_damp.cpp, part_draw.cpp,
part_follow.cpp, part_gravity.cpp, part_info.cpp,
part_killold.cpp, part_killslow.cpp, part_orbitpoint.cpp,
part_render.cpp, part_sink.cpp, part_size.cpp, part_source.cpp,
part_targetcolor.cpp, part_targetsize.cpp, part_velcone.cpp,
part_velocity.cpp, part_velsphere.cpp, part_vertex.cpp: use
"state->tickTime" instead of "state->stereo" for (not) updating
movements
2006-07-25 16:47 zmoelnig
* examples/09.openGL/02.displayList.pd: made the warning go away. a
bit more text...
2006-07-20 20:45 tigital
* src/Controls/gemframebuffer.cpp: removed
"GL_FRAMEBUFFER_INCOMPLETE_DUPLICATE_ATTACHMENT_EXT" from fbo
status checking because it has been removed from the spec
2006-07-20 19:09 tigital
* help/ortho.pd: add info about compat message
2006-07-12 06:47 tigital
* src/Controls/: gemframebuffer.cpp, gemframebuffer.h: replaced
"colorspace" with separate "type" and "format" messages (also can
affect creation args): default type=GL_UNSIGNED_BYTE and
format=GL_RGB; more informative (and more gem-like) error
reporting; better setup of fbo's; switchable textureType
(default=GL_TEXTURE_2D); better cleanup
2006-07-12 06:26 tigital
* src/Base/GemPixUtil.cpp: [osx] "type = ..._REV" or not:
compile-time check for __BIG_ENDIAN__, to help support intel-macs
2006-07-12 06:22 tigital
* src/Base/GemSIMD.cpp: [osx] start of code to detect altivec at
runtime
2006-07-12 06:21 tigital
* src/Base/GemWinCreateMac.cpp: [osx] possibility of using generic
float (software) renderer: should come up with a way to switch
between renderer's at runtime
2006-07-12 06:19 tigital
* src/Pixes/pix_freeframe.cpp: [osx] check for resource's existence
before releasing them
2006-07-12 06:17 tigital
* src/Pixes/pix_multitexture.cpp: added glTexParameteri()'s;
removed auto texcoord generation (for now...); better support for
older GL's; seems to work (atm) with geo's
2006-07-12 06:04 tigital
* src/Vertex/: vertex_tabread.cpp, vertex_tabread.h: starting to
merge in vertex_array stuff (finally) - accepts tables in this
order atm: vertex, color, normal, texcoord
2006-07-12 06:00 tigital
* src/: Vertex/vertex_draw.cpp, Vertex/vertex_draw.h,
Base/GemVertex.cpp, Base/GemVertex.h: starting to merge in
vertex_array stuff (finally)
2006-07-12 04:58 tigital
* src/: Controls/gemhead.cpp, Base/GemCache.cpp, Base/GemCache.h,
Base/GemState.cpp, Base/GemState.h: starting to merge in
vertex_array stuff (finally)
2006-07-04 16:48 zmoelnig
* src/Pixes/: filmAVIPLAY.cpp, filmQT4L.cpp: use setCSizeByFormat()
2006-07-04 16:47 zmoelnig
* src/Pixes/pix_filmNEW.cpp: use a define for the debug-printout at
decoder-instantiation: makes code much more readable
2006-07-04 16:46 zmoelnig