-
Notifications
You must be signed in to change notification settings - Fork 45
/
ChangeLog
6944 lines (4825 loc) · 178 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
2018-10-14 21:17 Frank Heckenbach <[email protected]>
* NEWS, configure.ac, ppa_upload.sh, msvc/config.h, debian/rules:
* Mark package as being version 2.3.0.
2008-06-19 13:11 sammy
* [r1193] NEWS, configure.ac:
* Updated NEWS file.
* Mark package as being version 2.2.0.
2008-06-19 13:10 sammy
* [r1192] TODO:
* Mention fontconfig in the TODO list.
2008-06-13 21:16 dtremenak
* [r1191] demo/FTGLDemo.cpp, msvc/config.h, src/FTFont/FTFont.cpp,
src/FTLayout/FTSimpleLayout.cpp:
make windows use the FONT_FILE mechanism for setting default font
in demos also, no reason to special-case it.
add standard license verbage to msvc config.h.
tack a copyright notice on a couple files I made significant
changes to.
2008-06-12 14:56 sammy
* [r1190] ChangeLog:
* Update ChangeLog using svn2cl -i.
2008-06-12 14:13 sammy
* [r1189] NEWS, configure.ac:
* Updated NEWS file.
* Mark package as being version 2.1.3~rc5.
2008-06-12 14:13 sammy
* [r1188] src/FTGL/FTBufferGlyph.h, src/FTGlyph/FTGlyphGlue.cpp:
* ftglCreateBufferGlyph: do not export FTBufferFont in the C API:
we do not
have easy ways to emulate the FTBuffer object.
2008-06-12 14:13 sammy
* [r1187] src/FTFont/FTBufferFont.cpp:
* Prevent issues when strndup is defined as a macro.
2008-06-11 23:35 dtremenak
* [r1186] msvc/vc8/ftgl_dll.vcproj:
be consistent
2008-06-11 23:34 dtremenak
* [r1185] msvc/vc71/ftgl_dll.vcproj:
fix vc7.1 project
2008-06-11 23:23 dtremenak
* [r1184] configure.ac, src/FTFont/FTBufferFont.cpp:
provide for us poor sobs who don't have a native strndup
implementation
2008-06-09 14:21 sammy
* [r1183] README:
* Update README.
2008-06-09 12:57 sammy
* [r1182] AUTHORS, src/FTCharmap.cpp, src/FTContour.cpp,
src/FTContour.h, src/FTFace.cpp, src/FTFont/FTBitmapFont.cpp,
src/FTFont/FTBitmapFontImpl.h, src/FTFont/FTExtrudeFont.cpp,
src/FTFont/FTExtrudeFontImpl.h, src/FTFont/FTFont.cpp,
src/FTFont/FTFontGlue.cpp, src/FTFont/FTFontImpl.h,
src/FTFont/FTOutlineFont.cpp, src/FTFont/FTOutlineFontImpl.h,
src/FTFont/FTPixmapFont.cpp, src/FTFont/FTPixmapFontImpl.h,
src/FTFont/FTPolygonFont.cpp, src/FTFont/FTPolygonFontImpl.h,
src/FTFont/FTTextureFont.cpp, src/FTFont/FTTextureFontImpl.h,
src/FTGlyph/FTBitmapGlyph.cpp, src/FTGlyph/FTBitmapGlyphImpl.h,
src/FTGlyph/FTExtrudeGlyph.cpp, src/FTGlyph/FTExtrudeGlyphImpl.h,
src/FTGlyph/FTGlyph.cpp, src/FTGlyph/FTGlyphGlue.cpp,
src/FTGlyph/FTGlyphImpl.h, src/FTGlyph/FTOutlineGlyph.cpp,
src/FTGlyph/FTOutlineGlyphImpl.h, src/FTGlyph/FTPixmapGlyph.cpp,
src/FTGlyph/FTPixmapGlyphImpl.h, src/FTGlyph/FTPolygonGlyph.cpp,
src/FTGlyph/FTPolygonGlyphImpl.h, src/FTGlyph/FTTextureGlyph.cpp,
src/FTGlyph/FTTextureGlyphImpl.h, src/FTGlyphContainer.cpp,
src/FTGlyphContainer.h, src/FTInternals.h,
src/FTLayout/FTLayout.cpp, src/FTLayout/FTLayoutGlue.cpp,
src/FTLayout/FTLayoutImpl.h, src/FTLayout/FTSimpleLayout.cpp,
src/FTLayout/FTSimpleLayoutImpl.h, src/FTPoint.cpp,
src/FTVectoriser.cpp, src/FTVectoriser.h:
* Add my copyright information to files I modified significantly.
* Add the Unicode, Inc. to the list of authors because of
FTUnicode.h.
2008-06-09 11:47 sammy
* [r1181] src/FTContour.cpp, src/FTContour.h:
* Code simplifications in FTContour.
2008-06-09 11:47 sammy
* [r1180] src/FTGL/FTPoint.h:
* Add "const" qualifier to FTPoint's scalar multiplication
operator.
2008-06-09 11:45 sammy
* [r1179] src/FTBuffer.cpp, src/FTContour.cpp,
src/FTFont/FTBufferFont.cpp, src/FTGL/FTBuffer.h,
src/FTGlyph/FTBufferGlyph.cpp:
* Document and reorganise FTBuffer. It is now clean enough.
2008-06-09 10:13 sammy
* [r1178] src/FTGL/FTBufferGlyph.h, src/FTGL/FTGlyph.h:
* Document missing function parameters.
2008-06-09 10:12 sammy
* [r1177] src/FTContour.cpp:
* Better FTContour::ComputeOutsetPoint() documentation.
2008-06-09 10:11 sammy
* [r1176] src/FTFont/FTBufferFont.cpp,
src/FTFont/FTExtrudeFont.cpp, src/FTFont/FTExtrudeFontImpl.h,
src/FTFont/FTFont.cpp, src/FTFont/FTFontGlue.cpp,
src/FTFont/FTFontImpl.h, src/FTFont/FTOutlineFont.cpp,
src/FTFont/FTOutlineFontImpl.h, src/FTFont/FTPixmapFont.cpp,
src/FTFont/FTPixmapFontImpl.h, src/FTFont/FTPolygonFont.cpp,
src/FTFont/FTPolygonFontImpl.h, src/FTFont/FTTextureFont.cpp,
src/FTGL/FTFont.h:
* Create FTFont::GlyphLoadFlags() to vary FT_Load_Glyph() calls
according
to the font type. Now we no longer load vector information when
not
needed.
2008-06-08 15:56 sammy
* [r1175] demo/FTGLDemo.cpp, demo/FTGLMFontDemo.cpp,
src/FTFont/FTFont.cpp, src/FTFont/FTFontGlue.cpp,
src/FTFont/FTFontImpl.h, src/FTGL/FTFont.h, src/FTGL/FTGlyph.h,
src/FTGlyph/FTGlyph.cpp, src/FTGlyph/FTGlyphGlue.cpp,
src/FTGlyph/FTGlyphImpl.h, src/FTGlyphContainer.cpp,
src/FTGlyphContainer.h, src/FTLayout/FTSimpleLayout.cpp,
test/FTFont-Test.cpp, test/FTGlyph-Test.cpp,
test/FTGlyphContainer-Test.cpp:
* Revert the FTFont::Advance() and FTGlyph::Advance()
improvements. After
discussion, I was convinced they were not worth the backwards
compatibility
breakage. They now return float again, instead of FTPoint.
2008-06-08 15:55 sammy
* [r1174] src/FTFont/FTBufferFont.cpp:
* Add a comment to FTBufferFont to not forget about bugs in it.
2008-06-03 12:24 sammy
* [r1173] src/FTGlyph/FTExtrudeGlyph.cpp:
* Fix a crash in FTExtrudeGlyph caused by uninitialised members.
2008-06-03 12:23 sammy
* [r1172] configure.ac, src/FTFont/FTBufferFont.cpp:
* FTBufferFont: use strndup() and, when available, wcsdup().
2008-06-03 12:23 sammy
* [r1171] demo/FTGLDemo.cpp, src/FTFont/FTBufferFont.cpp,
src/FTFont/FTFont.cpp, src/FTUnicode.h:
* Coding style: remove tabs and trailing spaces, wrap long lines.
2008-06-03 12:22 sammy
* [r1170] BUGS, m4/font.m4:
* Multiline sed scripts won't work very well on Cygwin. Falling
back to
two piped sed calls instead.
2008-05-30 04:07 brlcad
* [r1169] m4/font.m4:
push jwmelto's fix for the sed script error back upstream into
ftgl
2008-05-28 18:00 brlcad
* [r1168] configure.ac:
remove unused/unnecessary check for memset
2008-05-28 15:46 brlcad
* [r1167] demo/Makefile.am, test/Makefile.am:
target-specific CPPFLAGS was not added to automake until 1.7 so
use AM_CPPFLAGS instead
2008-05-28 06:07 brlcad
* [r1166] BUGS:
running configure on mac os x results in bad sed during search
for a truetype font. haven't had time to investigate, but at
least document it as a build system bug
2008-05-28 06:05 brlcad
* [r1165] m4/freetype2.m4:
merge freetype.m4 update from downstream bzflag, which is in turn
from latest freetype2 sources albeit modified to not abort on
failure to find the freetype-config script.
2008-05-28 04:43 brlcad
* [r1164] mac:
bye bye, baby, bye bye. no more mac dir. the xcode project was
entirely out of sync to be of any use and the includes are
pointless (do proper subconfigure management instead)
2008-05-24 19:04 dtremenak
* [r1163] src/FTFont/FTBufferFont.cpp:
from BZFlag r17264: rewrite StringCopy. wcscpy is not a standard
function; we have logic for doing it ourselves already (minus the
len = 0 case), so handle len = 0 and do it all ourselves.
2008-05-23 16:45 dtremenak
* [r1162] src/FTUnicode.h:
Copyright notices as requested by sam
2008-05-23 00:56 dtremenak
* [r1161] src/FTLayout/FTSimpleLayout.cpp:
include wctype.h to make gcc happy
2008-05-23 00:53 dtremenak
* [r1160] src/FTFont/FTFont.cpp:
no need to shadow variables
2008-05-23 00:46 dtremenak
* [r1159] TODO, demo/FTGLDemo.cpp, msvc/vc8/ftgl_static.vcproj,
src/FTFont/FTFont.cpp, src/FTLayout/FTSimpleLayout.cpp,
src/FTUnicode.h, src/Makefile.am:
* Provide a helper class for walking potentially-multibyte
unicode strings.
* Provide support for multibyte encodings (UTF-8, UTF-16) in
FTFont and derived classes, and in FTSimpleLayout.
* Put a few UTF-8 strings in non-latin codeplanes in FTGLDemo
(toggle at compile-time) for testing.
* FTSimpleLayout should be tested extensively before release. I
would be surprised if I didn't break at least one unusual use
case.
2008-05-23 00:20 dtremenak
* [r1158] msvc/vc8/FTGLDemo.vcproj, msvc/vc8/trackball.vcproj:
fix release mode configurations
2008-05-23 00:16 sammy
* [r1157] src/FTFont/FTBufferFont.cpp, src/FTGL/FTBuffer.h,
src/FTGlyph/FTBufferGlyph.cpp:
* Start protecting FTBuffer members using getters and setters.
2008-05-23 00:16 sammy
* [r1156] docs/projects_using_ftgl.txt:
* Add ~40 entries to the list of projects that use FTGL.
2008-05-23 00:16 sammy
* [r1155] docs/Makefile.am, docs/faq.dox, docs/ftgl.dox,
docs/projects_using_ftgl.txt, docs/tutorial.dox:
* Work around a Doxygen bug that creates fake latex references
whenever we
use "FTGL" in section names, and fails to remove the "%" in HTML
pages
whenever we use "%FTGL". Fixing HTML pages is easier.
2008-05-23 00:15 sammy
* [r1154] docs/Makefile.am, docs/ftgl.dox, docs/tutorial.dox:
* Simplify EPS creation rules.
2008-05-22 17:28 dtremenak
* [r1153] msvc/config.h:
quell deprecation messages for posix and c-style string functions
2008-05-22 15:32 sammy
* [r1152] docs/images/texturefont.png, docs/tutorial.dox:
* Add GLBufferFont to the tutorial.
2008-05-22 15:31 sammy
* [r1151] src/FTFont/FTBufferFont.cpp,
src/FTFont/FTBufferFontImpl.h:
* Empty the FTBufferFont cache when changing the face size.
2008-05-22 15:31 sammy
* [r1150] src/FTGlyph/FTBufferGlyph.cpp:
* Fix a visual bug in FTBufferFont caused by overlapping glyphs.
2008-05-22 15:30 sammy
* [r1149] docs/projects_using_ftgl.txt:
* Add a few entries to the list of projects using FTGL: Gem,
Libinstrudeo,
Light Speed!, projectM, Tulip.
2008-05-22 15:30 sammy
* [r1148] demo/c-demo.c, demo/simple.cpp:
* Print FPS information in the small demos.
2008-05-22 14:38 sammy
* [r1147] docs/Makefile.am, docs/doxygen.cfg.in, docs/faq.dox,
docs/ftgl.dox, docs/projects_using_ftgl.txt, docs/tutorial.dox:
* Refactor the documentation to have a cleaner frontpage: put the
tutorial
and the FAQ in two separate pages, add links to the most
important C and
C++ documentation, and add projects_using_ftgl.txt to the doxygen
project.
2008-05-22 12:39 sammy
* [r1146] src/FTFont/FTBufferFont.cpp,
src/FTFont/FTBufferFontImpl.h:
* Implement caching in FTBufferFont. To avoid unnecessary texture
uploads,
each font object keeps the last 16 strings in the graphic card.
2008-05-22 12:39 sammy
* [r1145] src/FTFont/FTBufferFont.cpp,
src/FTGlyph/FTBufferGlyph.cpp:
* Fix an off-by-one error in FTBufferGlyph::Render.
2008-05-21 16:38 sammy
* [r1144] demo/simple.cpp:
* Revert the simple C++ demo to its previous state, now that
FTBufferFont
starts to work.
2008-05-21 16:37 sammy
* [r1143] src/FTFont/FTBufferFont.cpp:
* Fix the quad vertex order in FTBufferFont.
2008-05-21 16:36 sammy
* [r1142] src/FTFont/FTFont.cpp:
* Fix a bug in the FTFont::BBox calculation: the first glyph bbox
was not
relative to the position argument.
2008-05-21 15:45 sammy
* [r1141] src/FTFont/FTBufferFont.cpp:
* Fix a texture coordinate bug caused by our next-power-of-two
ceiling.
2008-05-21 15:43 sammy
* [r1140] src/FTFont/FTBitmapFont.cpp, src/FTFont/FTBufferFont.cpp,
src/FTFont/FTOutlineFont.cpp, src/FTFont/FTPixmapFont.cpp,
src/FTFont/FTTextureFont.cpp:
* Add proper glPushAttrib() and glPushClientAttrib() calls to the
rendering methods that need them.
2008-05-21 11:39 sammy
* [r1139] src/FTFont/FTBufferFont.cpp,
src/FTFont/FTTextureFont.cpp:
* Enable GL_TEXTURE_2D in FTFont::Render variations that need it.
2008-05-21 11:39 sammy
* [r1138] demo/simple.cpp:
* Temporarily disabled lighting in the simple demo to test
FTBufferFont.
2008-05-21 10:11 sammy
* [r1137] demo/FTGLDemo.cpp:
* Add FTBufferFont to the complex FTGL demo.
2008-05-21 01:16 dtremenak
* [r1136] msvc/vc8/CDemo.vcproj, msvc/vc8/ftgl_demo.sln:
build C demo on windows
2008-05-21 01:14 dtremenak
* [r1135] demo/c-demo.c:
all variables must be declared at the start of a block for C89
compliance. also use explicit float constants.
2008-05-21 00:53 dtremenak
* [r1134] msvc/vc8/ftgl_dll.vcproj, msvc/vc8/ftgl_static.vcproj:
missed FTBuffer.cpp
2008-05-21 00:44 dtremenak
* [r1133] msvc/vc8/ftgl_dll.vcproj, msvc/vc8/ftgl_static.vcproj:
build bufferfont/bufferglyph stuff on windows too
2008-05-21 00:39 dtremenak
* [r1132] src/FTFont/FTFontGlue.cpp:
quell warning
2008-05-20 23:49 sammy
* [r1131] src/FTBuffer.cpp, src/FTFont/FTBufferFont.cpp,
src/FTFont/FTBufferFontImpl.h, src/FTGL/FTBuffer.h,
src/FTGL/FTBufferGlyph.h, src/FTGlyph/FTBufferGlyph.cpp,
src/FTGlyph/FTBufferGlyphImpl.h, src/FTGlyph/FTGlyphGlue.cpp:
* First try at the FTBufferFont/FTBufferGlyph implementation.
2008-05-20 23:48 sammy
* [r1130] src/FTGlyph/FTTextureGlyph.cpp,
src/FTGlyph/FTTextureGlyphImpl.h:
* Rename FTTextureGlyphImpl::pos to FTTextureGlyphImpl::corner
because pos
was misleading.
2008-05-19 15:45 sammy
* [r1129] src/FTBuffer.cpp, src/FTFont/FTBufferFont.cpp,
src/FTFont/FTBufferFontImpl.h, src/FTFont/FTFontGlue.cpp,
src/FTGL/FTBuffer.h, src/FTGL/FTBufferFont.h,
src/FTGL/FTBufferGlyph.h, src/FTGL/FTFont.h, src/FTGL/FTGlyph.h,
src/FTGL/ftgl.h, src/FTGlyph/FTBufferGlyph.cpp,
src/FTGlyph/FTBufferGlyphImpl.h, src/FTGlyph/FTGlyphGlue.cpp,
src/FTInternals.h, src/Makefile.am:
* Starting the buffer font class revival. For now, it just
consists in empty
FTBuffer, FTBufferGlyph and FTBufferFont classes.
2008-05-19 10:06 sammy
* [r1128] src/FTCharmap.cpp:
* Do not crash if the face has no charmaps. Bug found using zzuf:
xvfb-run zzuf -q -F5 -r0.0000001:0.1 -s0:10000 -c CTest
EunjinNakseo.ttf
2008-05-19 10:06 sammy
* [r1127] src/FTVectoriser.cpp:
* Simplified contour parity check routine, formula courtesy of
Guillaume
Bittoun.
2008-05-19 10:06 sammy
* [r1126] src/FTContour.cpp:
* Add parentheses around && within || to please gcc.
2008-05-19 10:05 sammy
* [r1125] Makefile.am:
* Add a "make upload-doc" rule for easy online documentation
updates.
2008-05-12 14:25 sammy
* [r1124] m4/font.m4:
* Use fontconfig to find fonts on the system.
2008-05-12 14:11 sammy
* [r1123] demo/FTGLDemo.cpp, demo/FTGLMFontDemo.cpp, demo/c-demo.c,
demo/simple.cpp:
* The examples now use FONT_FILE if it was found by the configure
step.
2008-05-12 14:10 sammy
* [r1122] configure.ac, m4/font.m4:
* Add an m4 check to look for a font file on the system.
2008-05-12 04:59 brlcad
* [r1121] docs/Makefile.am, docs/projects_using_ftgl.txt:
add a list of project using ftgl
2008-05-11 21:43 sammy
* [r1120] src/FTFont/FTFontGlue.cpp, src/FTGlyph/FTGlyphGlue.cpp,
src/FTLayout/FTLayoutGlue.cpp:
* Simplify the C bindings. 70 lines gained.
2008-05-11 21:43 sammy
* [r1119] src/FTGL/FTSimpleLayout.h, src/FTLayout/FTLayoutGlue.cpp,
src/FTLayout/FTSimpleLayout.cpp:
* Get rid of FTSimpleLayout::RenderSpace(). It's still useful in
FTSimpleLayoutImpl, but as a public method FTFont::Render() is
just
as powerful.
2008-05-11 21:43 sammy
* [r1118] demo/FTGLDemo.cpp, src/FTGL/FTFont.h,
src/FTGL/FTLayout.h, src/FTGL/FTSimpleLayout.h,
src/FTLayout/FTSimpleLayout.cpp,
src/FTLayout/FTSimpleLayoutImpl.h:
* Added optional position and string length to the Layout
methods.
2008-05-11 11:29 sammy
* [r1117] src/FTFont/FTFontImpl.h, src/FTGL/FTFont.h,
src/FTLayout/FTLayout.cpp, src/FTLayout/FTLayoutImpl.h,
src/FTLayout/FTSimpleLayout.cpp:
* Get rid of all methods in FTLayoutImpl that were accessing
FTFontImpl
internals, since FTFont now has all the proper public methods for
that.
2008-05-11 11:29 sammy
* [r1116] src/FTFont/FTFont.cpp, src/FTFont/FTFontImpl.h,
src/FTLayout/FTLayout.cpp:
* Get rid of FTFontImpl::DoRender(), one of the oldest TODOs.
2008-05-11 11:28 sammy
* [r1115] src/FTGL/FTFont.h:
* Re-add FTFont::BBox() implementations with the old prototype,
in case
old projects use them.
2008-05-11 11:28 sammy
* [r1114] src/FTGlyph/FTExtrudeGlyph.cpp,
src/FTGlyph/FTOutlineGlyph.cpp, src/FTGlyph/FTPolygonGlyph.cpp:
* Honour the pen's Z coordinate when rendering glyphs (except the
raster
ones, where the Z coordinate makes no sense).
2008-05-11 11:28 sammy
* [r1113] demo/FTGLDemo.cpp, demo/FTGLMFontDemo.cpp,
src/FTFont/FTBitmapFont.cpp, src/FTFont/FTBitmapFontImpl.h,
src/FTFont/FTExtrudeFont.cpp, src/FTFont/FTFont.cpp,
src/FTFont/FTFontGlue.cpp, src/FTFont/FTFontImpl.h,
src/FTFont/FTOutlineFont.cpp, src/FTFont/FTOutlineFontImpl.h,
src/FTFont/FTPixmapFont.cpp, src/FTFont/FTPixmapFontImpl.h,
src/FTFont/FTTextureFont.cpp, src/FTFont/FTTextureFontImpl.h,
src/FTGL/FTFont.h, src/FTGlyphContainer.cpp,
src/FTGlyphContainer.h, src/FTLayout/FTSimpleLayout.cpp,
test/FTFont-Test.cpp, test/FTGlyphContainer-Test.cpp:
* FTFont::Advance(), FTFont::Render() and FTFont::BBox() are now
far
more powerful, allowing for substring display and extra spacing
between
characters.
2008-05-11 11:26 sammy
* [r1112] src/FTFont/FTBitmapFont.cpp,
src/FTFont/FTBitmapFontImpl.h, src/FTFont/FTFont.cpp,
src/FTFont/FTFontImpl.h, src/FTFont/FTOutlineFont.cpp,
src/FTFont/FTOutlineFontImpl.h, src/FTFont/FTPixmapFont.cpp,
src/FTFont/FTPixmapFontImpl.h, src/FTFont/FTTextureFont.cpp,
src/FTFont/FTTextureFontImpl.h, src/FTGL/FTFont.h,
src/FTGL/FTLayout.h, src/FTGL/FTSimpleLayout.h, src/FTGL/ftgl.h,
src/FTLayout/FTSimpleLayout.cpp,
src/FTLayout/FTSimpleLayoutImpl.h:
* Kill 180 lines of code by removing duplicate *::Render()
functions and
giving a default value to the renderMode parameter.
2008-05-11 11:23 sammy
* [r1111] docs/ftgl.dox:
* More documentation.
2008-05-11 11:23 sammy
* [r1110] .gitignore:
* Ignore autom4te.cache and generated EPS files.
2008-05-09 15:43 brlcad
* [r1109] AUTHORS:
add daniel and jeff
2008-05-09 15:41 brlcad
* [r1108] demo/FTGLDemo.cpp, test/demo.cpp:
reference a font that actually exists.. alas we do not all have a
/Users/henry/Development directory. at least this one will exist
if X11 is installed.
2008-05-09 13:42 sammy
* [r1107] configure.ac, docs/Makefile.am, docs/ftgl.dox,
docs/images/ftgl.png, docs/images/logo.png,
docs/images/rasterfont.png, docs/images/texturefont.png,
docs/images/vectorfont.png:
* Add a few pictures to the documentation to illustrate what the
font
objects look like.
* Generate EPS files at build time if the LaTeX output is
activated.
2008-05-09 10:03 sammy
* [r1106] BUGS:
* Update BUGS.
2008-05-09 10:02 sammy
* [r1105] src/FTFont/FTFontGlue.cpp, src/FTGlyph/FTGlyphGlue.cpp,
src/FTLayout/FTLayoutGlue.cpp:
* Put a few wrapper functions into extern "C++" braces because
they return
references to C++ objects.
2008-05-09 10:01 sammy
* [r1104] src/FTContour.cpp:
* Minor cosmetic fix (remove tab).
2008-05-08 23:45 dtremenak
* [r1103] demo/trackball.c:
use float constants when assigning to floats
2008-05-08 23:31 dtremenak
* [r1102] msvc/config.h:
disable "'this': used in base member initializer list" warning.
although it is dangerous practice, it's valid and ftgl does not
use the passed pointer until well after the object is guaranteed
to be fully constructed.
2008-05-08 23:27 dtremenak
* [r1101] msvc/vc8/FTGLDemo.vcproj:
quell spurious deprecation warnings
2008-05-08 23:12 dtremenak
* [r1100] src/FTVectoriser.cpp:
and more fun with float/double consistency
2008-05-08 23:12 dtremenak
* [r1099] src/FTContour.cpp:
more fun with size_t consistency
2008-05-08 23:10 dtremenak
* [r1098] msvc/config.h:
M_PI and friends on MSVC are only defined if _USE_MATH_DEFINES is
defined first. include it appropriately in config.h.
2008-05-08 22:35 sammy
* [r1097] demo/c-demo.c, demo/simple.cpp,
src/FTFont/FTFontGlue.cpp, src/FTGL/FTFont.h, src/FTGL/FTGlyph.h,
src/FTGL/FTPolyGlyph.h, src/FTGlyph/FTGlyphGlue.cpp,
src/FTInternals.h:
* Implement C bindings for FTGlyph and FTFont subclassing.
* Add subclassing to the simple C demo to show how to do similar
stuff as
in the C++ demo.
2008-05-08 17:07 sammy
* [r1096] BUGS, TODO:
* Update BUGS and TODO now that we got rid of some bugs.
2008-05-08 17:07 sammy
* [r1095] src/FTContour.cpp, src/FTContour.h, src/FTVectoriser.cpp:
* When a glyph is created, check that all its contours have the
proper
clockwise/counterclockwise orientation. This fixes a nasty
display bug
with some badly encoded fonts.
2008-05-08 17:06 sammy
* [r1094] src/FTContour.cpp, src/FTContour.h:
* During contour creation, compute whether the contour is
clockwise or
anti-clockwise. This will be needed later to correct fonts that
do not
abide to the even-odd and non-zero winding number conventions,
thus
breaking our nice outset glyphs.
2008-05-08 17:05 sammy
* [r1093] src/FTGL/FTPoint.h:
* Add scalar product to the FTPoint operators.
2008-05-08 17:04 sammy
* [r1092] src/FTLayout/FTLayoutGlue.cpp:
* Cosmetic fixes in the FTLayout C bindings.
2008-05-08 17:03 sammy
* [r1091] src/FTContour.cpp:
* Small optimisation in FTContour::ComputeOutsetPoint().
2008-05-08 17:01 sammy
* [r1090] src/FTGL/FTFont.h, src/FTGL/FTGlyph.h,
src/FTGL/FTLayout.h:
* Made most FTFont, FTGlyph and FTLayout function virtual. It's
true that
most of them use private members of the pImpl class and thus are
not
easily replaced, but intercepting the information may be useful
in
subclassing, too.
2008-05-07 16:10 sammy
* [r1089] src/FTFace.cpp, src/FTFace.h, src/FTFont/FTFont.cpp,
src/FTFont/FTFontImpl.h, src/FTGL/FTFont.h,
src/FTGlyphContainer.cpp:
* Some code cleanup here and there, mostly in FTGlyphContainer.
2008-05-07 15:09 sammy
* [r1088] test/FTFont-Test.cpp, test/FTGlyph-Test.cpp,
test/FTGlyphContainer-Test.cpp, test/FTlayout-Test.cpp,
test/Makefile.am:
* Fixed and reactivated unit tests that were disabled during the
pImpl
refactoring.
2008-05-07 15:07 sammy
* [r1087] src/FTGL/FTBBox.h, src/FTGL/FTFont.h:
* Documentation updates.
2008-05-07 15:06 sammy
* [r1086] src/FTFont/FTFont.cpp, src/FTGL/FTBBox.h,
test/FTBBox-Test.cpp:
* Replace FTBBox::Move() with the += operator, to make it clearer
that the
object is modified in the process.
2008-05-07 15:03 sammy
* [r1085] src/FTFont/FTFont.cpp, src/FTGL/FTBBox.h,
src/FTLayout/FTSimpleLayout.cpp:
* Change the += operator for bounding boxes to |=, which better
represents
what is happening, and avoids future confusion with "FTBBox +
FTPoint"
constructs.
2008-05-07 15:01 sammy
* [r1084] demo/FTGLDemo.cpp, demo/FTGLMFontDemo.cpp,
src/FTFont/FTFont.cpp, src/FTFont/FTFontGlue.cpp,
src/FTGL/FTFont.h, src/FTGL/FTLayout.h,
src/FTGL/FTSimpleLayout.h, src/FTGlyph/FTGlyphGlue.cpp,
src/FTLayout/FTLayoutGlue.cpp, src/FTLayout/FTSimpleLayout.cpp,
src/FTLayout/FTSimpleLayoutImpl.h:
* Make all BBox functions return an FTBBox object instead of
doing
countless conversions to floats or arrays of floats.
2008-05-07 14:59 sammy
* [r1083] src/FTGL/FTBBox.h:
* Fix FTBBox::SetDepth() behaviour with negative depth values (as
done in
the FTExtrudeGlyph class).
2008-05-07 14:58 sammy
* [r1082] src/FTFont/FTFont.cpp, src/FTFont/FTFontImpl.h:
* Reimplement all FTFont::BBox() variants using the same
FTFontImpl::BBox()
common method.
2008-05-07 14:56 sammy
* [r1081] src/FTFont/FTFont.cpp, src/FTFont/FTFontImpl.h,
src/FTGL/FTFont.h:
* Add an overload of FTFont::BBox that returns an FTBBox object.
It will
save us a lot of code later.
2008-05-07 14:55 sammy
* [r1080] src/FTGL/FTBBox.h, src/FTGL/FTPoint.h:
* Allow to create an FTBBox using two FTPoint objects.
* Allow the operands to FTPoint's "+" and "-" operators to be
const.
2008-05-07 07:17 sammy
* [r1079] demo/c-demo.c, demo/simple.cpp:
* In the C++ demo, show that FTFont itself can be directly
derived, not
only its subclasses.
* Minor changes to the C demo to reduce the differences with the
C++ version.
2008-05-07 00:11 sammy
* [r1078] msvc/Makefile.am:
* Synchronise msvc/Makefile.am with its directory contents.
2008-05-06 22:36 dtremenak
* [r1077] msvc/demo.cpp, msvc/vc8/FTGLDemo.vcproj,
msvc/vc8/README_WIN32.txt, msvc/vc8/SimpleDemo.vcproj,
msvc/vc8/ftgl_demo.sln, msvc/vc8/ftgl_demo.vcproj,
msvc/vc8/ftgl_demo_2.vcproj, msvc/vc8/trackball.vcproj:
get rid of the (broken and obsolete) windows-specific demo, and
obsolete VC6 readme (which has been superceded by the global msvc
readme). build the normal and simple demos in visual studio too.
2008-05-06 21:43 dtremenak
* [r1076] msvc/demo.cpp, msvc/vc8/ftgl_demo.vcproj,
msvc/vc8/ftgl_demo_2.vcproj:
make the windows demo build (on vc8 at least)
2008-05-06 21:41 dtremenak
* [r1075] demo/simple.cpp:
on recent MS compilers one must include stdlib.h before glut.h
2008-05-06 21:19 sammy
* [r1074] src/FTContour.cpp:
* Refactor FTContour::ComputeOutsetPoint so that it's twice as
short, even
with the additional comments.
2008-05-06 21:19 sammy
* [r1073] src/FTContour.cpp:
* Make FTContour:FTContour comply with the FreeType specification
and
remove duplicate points in the Bézier curves. Fixes weird
rendering
errors with some fonts.
2008-05-06 21:19 sammy
* [r1072] demo/simple.cpp:
* Minor fixes to the simple demo.
2008-05-06 12:14 sammy
* [r1071] .gitignore, demo, demo/Makefile.am, demo/c-demo.c, docs:
* Create a C demo to show how the C bindings work.
2008-05-06 10:01 sammy
* [r1070] demo/simple.cpp:
* Show how to subclass FTFont classes in the simple demo.
2008-05-06 10:00 sammy
* [r1069] src/FTVectoriser.cpp:
* Fix an unsigned int / size_t mismatch in FTVectoriser.
2008-05-06 08:24 sammy
* [r1068] msvc/Makefile.am, msvc/vc8/Makefile.am:
* Move msvc/Makefile.am back to its proper place.
* Add the new visual studio build files to the distribution.
2008-05-06 07:08 sammy
* [r1067] src/FTCharmap.cpp, src/FTFace.cpp:
* Fix indentation by replacing a few tabs with spaces.
2008-05-06 06:54 dtremenak
* [r1066] src/FTFont/FTFontGlue.cpp:
l != 1, depending on your font of course
2008-05-06 06:38 dtremenak
* [r1065] src/FTCharmap.cpp, src/FTCharmap.h, src/FTContour.h,
src/FTFace.cpp, src/FTFont/FTFont.cpp, src/FTFont/FTFontGlue.cpp,
src/FTFont/FTTextureFont.cpp, src/FTGL/FTPoint.h,
src/FTGlyph/FTBitmapGlyph.cpp, src/FTGlyph/FTExtrudeGlyph.cpp,
src/FTGlyph/FTGlyphGlue.cpp, src/FTGlyph/FTOutlineGlyph.cpp,
src/FTGlyph/FTPixmapGlyph.cpp, src/FTGlyph/FTPolygonGlyph.cpp,
src/FTGlyph/FTTextureGlyph.cpp, src/FTGlyphContainer.cpp,
src/FTLayout/FTSimpleLayout.cpp, src/FTPoint.cpp,
src/FTVectoriser.cpp, src/FTVectoriser.h:
VC build fixes from bzflag revs 17848-17852.
* size_t consistency
* avoid coercing from int to bool
* make casts from double to float explicit rather than implicit,
mostly by way of a few new getter functions in FTPoint, or avoid
if possible.
2008-05-06 06:03 JeffM2501
* [r1064] msvc/README.txt:
mention the joy of the build dir.
2008-05-06 06:02 JeffM2501
* [r1063] msvc/README.txt:
a readme for those that like to read and learn and grow.
2008-05-06 05:51 JeffM2501
* [r1062] msvc/vc8/ftgl_demo.sln, msvc/vc8/ftgl_demo.vcproj,
msvc/vc8/ftgl_demo_2.vcproj:
make the demos build, and pair it down to just one set of build
targets, release and debug
2008-05-06 05:43 JeffM2501
* [r1061] msvc/vc8/ftgl_dll.vcproj:
put our stuff in build not debug
2008-05-06 05:43 JeffM2501
* [r1060] msvc/vc8/ftgl.sln, msvc/vc8/ftgl_static.vcproj:
build a static lib as an option
2008-05-06 05:12 JeffM2501
* [r1059] msvc/vc71, msvc/vc71/ftgl.sln, msvc/vc71/ftgl_dll.vcproj:
start a vc7.1 build
2008-05-06 04:55 JeffM2501
* [r1058] msvc/vc8/ftgl.sln, msvc/vc8/ftgl_dll.vcproj,
msvc/vc8/ftgl_static_lib.vcproj, msvc/vc8/unit_tests.vcproj:
build as a VC8 DLL again
2008-05-06 04:15 JeffM2501
* [r1057] msvc/config.h, msvc/demo.cpp, msvc/vc8/config.h,
msvc/vc8/demo.cpp:
move the config.h and demo file up so they can be shared with all
MSVC builds.
2008-05-06 04:04 brlcad
* [r1056] mac/Libraries:
begone, vile beasties
2008-05-06 04:03 JeffM2501
* [r1055] msvc/vc8/ftgl.sln, msvc/vc8/ftgl_demo.vcproj,
msvc/vc8/ftgl_demo_2.vcproj, msvc/vc8/ftgl_dll.vcproj,
msvc/vc8/ftgl_static_lib.vcproj, msvc/vc8/unit_tests.vcproj:
fix busted line endings
2008-05-06 03:59 JeffM2501
* [r1054] msvc/Makefile.am, msvc/README_WIN32.txt, msvc/config.h,
msvc/demo.cpp, msvc/ftgl.sln, msvc/ftgl_demo.vcproj,
msvc/ftgl_demo_2.vcproj, msvc/ftgl_dll.vcproj,
msvc/ftgl_static_lib.vcproj, msvc/unit_tests.vcproj, msvc/vc8,
msvc/vc8/Makefile.am, msvc/vc8/README_WIN32.txt,
msvc/vc8/config.h, msvc/vc8/demo.cpp, msvc/vc8/ftgl.sln,
msvc/vc8/ftgl_demo.vcproj, msvc/vc8/ftgl_demo_2.vcproj,
msvc/vc8/ftgl_dll.vcproj, msvc/vc8/ftgl_static_lib.vcproj,
msvc/vc8/unit_tests.vcproj:
move 2005 build files to VC8 dir so we can have more then one
windows build system
2008-05-05 22:16 sammy
* [r1053] .gitignore, demo, demo/Makefile.am, demo/simple.cpp:
* The FTGL "simple demo" is no longer simple. Wrote a really
simple one.