-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathChangeLog
1962 lines (1315 loc) · 59.6 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
commit 1f213af8270c11c4945ff247a411ddea7e74c54f
Author: Denis Oliver Kropp <dok@cyto.(none)>
Date: Tue May 20 11:05:05 2008 +0200
[df_dok] Fixed floating point exception with big benchmark sizes in FillSpan() test.
commit da13be38f9696ed2afd328cde79a445138bfa887
Author: Denis Oliver Kropp <dok@cyto.(none)>
Date: Mon May 5 17:27:13 2008 +0200
[df_input] Change typenames to match current sources
Signed-off-by: Eric Nelson (Boundary Devices) <[email protected]>
commit 18854266692cac25e554bd0267094954343c0ee5
Author: Claudio Ciccani <[email protected]>
Date: Thu Apr 17 15:42:33 2008 +0200
[df_matrix] Follow IDirectFBSurface API changes.
commit db87733860f5544819ee8807fee460ccb2ad5c2a
Author: Denis Oliver Kropp <[email protected]>
Date: Thu Mar 20 20:24:32 2008 +0100
[water] Follow WaterShape API change.
commit 19cce0b9e53d79d1f1f3dca7ced196dfbde37d31
Author: Denis Oliver Kropp <[email protected]>
Date: Wed Mar 19 16:33:05 2008 +0100
[df_matrix_mater] minor fixes
commit 9ababf4f1e745410a13956c999d645399f65d92a
Author: Denis Oliver Kropp <[email protected]>
Date: Wed Mar 19 16:32:43 2008 +0100
[configure] Check for Water.
commit d1dfadf0b7c442a7a55eed38c3fea808e84bdf56
Author: Denis Oliver Kropp <[email protected]>
Date: Wed Mar 19 14:18:19 2008 +0100
Oops, commented out df_matrix_water again (master branch).
commit 7d10efb26b9752e92221cd8b76d970704ebae67d
Author: Denis Oliver Kropp <[email protected]>
Date: Wed Mar 19 14:17:01 2008 +0100
[df_input] Fixed build because of changed struct names.
commit b3b82d2f80ebbfd382fb58e54f46cfcd488fcc26
Author: Denis Oliver Kropp <[email protected]>
Date: Wed Mar 19 14:11:38 2008 +0100
[water] Added df_matrix version using Water (one call vs. 24 calls before).
Cleaned up code.
commit 94aff9c07db344e4a13ddce9cbcddd108dba6837
Author: Claudio Ciccani <[email protected]>
Date: Sun Feb 24 21:35:41 2008 +0100
[df_matrix] When drawing antialiased rectangles, blend using [SRCALPHASAT, ONE].
This is because the hardware renders quadrangles using triangle primitives, so
without this trick you will be having rectangles with an antialiased diagonal.
For more info, see OpenGL Programming Guide - Chapter 6:
http://glprogramming.com/red/chapter06.html#name2
commit 8ed13579301dabbe82cf3abc8167db268ac7fca1
Author: Denis Oliver Kropp <[email protected]>
Date: Tue Feb 19 23:57:17 2008 +0100
[df_dok] New option --all-demos, fixes for --accel-only and stable detection for blended DrawString().
commit 62e6420771de3dea8509e3dc1c026e2b043396a4
Author: Denis Oliver Kropp <[email protected]>
Date: Sat Feb 16 05:49:42 2008 +0100
[df_dok] Give each file in --dump mode a name with the benchmark description and an index in front of it.
commit 01f7bbcb27731730adfc5068668c8b2cccaec900
Merge: 18d9714... 4732fcf...
Author: Denis Oliver Kropp <[email protected]>
Date: Sat Feb 16 04:55:31 2008 +0100
Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/extras/DirectFB-examples
commit 18d97147df6f562ec5baaff6da29bf0cd54e0d13
Author: Denis Oliver Kropp <[email protected]>
Date: Sat Feb 16 04:45:48 2008 +0100
[df_dok] Added --blit-mask benchmark.
commit 4732fcf8b8e245eb68ac14a7e51aa61c53cc6b9d
Author: Denis Oliver Kropp <[email protected]>
Date: Sat Feb 16 04:45:48 2008 +0100
[df_dok] Added --blit-mask benchmark.
commit 96c17eb260c8f089c25490b8b71a39dc246c4314
Author: Denis Oliver Kropp <[email protected]>
Date: Sun Feb 10 11:55:45 2008 +0100
DF_DOK: Added --xor option.
commit 9d8e99fef9ac74a26c07d4c7145aa7e5d5a0dae4
Merge: 290e055... a300fff...
Author: Denis Oliver Kropp <[email protected]>
Date: Fri Feb 1 03:25:23 2008 +0100
Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/extras/DirectFB-examples
commit a300fff8f68b92d8bf1bfa312aaf7417001cbb3b
Author: Claudio Ciccani <[email protected]>
Date: Sat Jan 19 16:46:34 2008 +0100
Replaced D_HEAVYDEBUG by D_DEBUG.
commit 290e0552df974f5a8b55db569e50ec1bda2c14dc
Author: Denis Oliver Kropp <[email protected]>
Date: Thu Jan 3 20:48:47 2008 +0100
DF_DOK: If "--pixelformat <format>" is given, load images in that format.
commit 36b2c3507d3a8047178d26a71002cc31f3648039
Author: Denis Oliver Kropp <[email protected]>
Date: Thu Jan 3 20:48:12 2008 +0100
update
commit 0459d356e10872c7db4e2914c7d10f2c25d285c1
Author: Denis Oliver Kropp <[email protected]>
Date: Thu Jan 3 20:47:55 2008 +0100
1.0.1
commit d2549dbf79c8104055af38102cbf3729c5f4a7f2
Author: Denis Oliver Kropp <[email protected]>
Date: Fri Dec 28 23:10:42 2007 +0100
Replace D_HEAVYDEBUG by D_DEBUG.
commit a1956271e2c8d2242f1d6d7a1e3095c71573d30e
Author: Denis Oliver Kropp <[email protected]>
Date: Wed Dec 26 04:53:40 2007 +0100
DF_DOK: Added "--dump", "--aa", "--matrix", "--smooth" and "--load-image <file>".
commit 69766dff934b24e257ff65e623bde5514dbb710c
Author: Denis Oliver Kropp <[email protected]>
Date: Thu Dec 6 16:52:13 2007 +0100
DF_MATRIX: Added more objects, scale down, rotate faster.
http://www.directfb.org/images/tests/df_matrix/index.html
commit f88bb1084bcd610cf07a1a9a64a761d18a64506c
Author: Denis Oliver Kropp <[email protected]>
Date: Thu Dec 6 14:07:49 2007 +0100
DF_MATRIX: Also show anti-aliasing.
commit 3b7cff73d953b111ff2e1ebf2b9b9386d57f8ce6
Author: Denis Oliver Kropp <[email protected]>
Date: Thu Dec 6 14:07:05 2007 +0100
Fixed Makefile.
commit 5c28304a0963f74aacad664c6cd52b97803f57e9
Author: Denis Oliver Kropp <[email protected]>
Date: Wed Dec 5 16:34:50 2007 +0100
MATRIX: Added test program for IDirectFBSurface::SetMatrix().
Initial version, based on Cairo matrix code, just rotating a
few objects around the screen center at the moment.
commit c8d0f1e7b183d8ca95dd3bafc6d0a03c19812b84
Author: Denis Oliver Kropp <[email protected]>
Date: Tue Nov 20 05:15:08 2007 +0100
DF_DOK: Changed accuracy of load output to 0.1% steps.
commit 9ac4263910ba0bd77b9ed12bfb1a6b6725b1a2a3
Author: Denis Oliver Kropp <[email protected]>
Date: Mon Oct 8 23:46:54 2007 +0200
ignore files
commit 09ea98d1902222947ca5c1050d4f7e7683499fbe
Author: Denis Oliver Kropp <[email protected]>
Date: Mon Oct 8 23:46:24 2007 +0200
Added image loading benchmarks to df_dok.
Use --load-dfiff, --load-gif, --load-jpeg and/or --load-png.
The surface is created once, but the provider is released
and recreated for each RenderTo().
commit 9acf0bfb941ba4d1d1c8b038993dd2984179bfce
Author: Denis Oliver Kropp <[email protected]>
Date: Thu Oct 4 17:41:20 2007 +0200
Use DSCAPS_SHARED when creating the background image surface.
commit 7757dce716819d57229cb9d3abad9ad3da084893
Author: Denis Oliver Kropp <[email protected]>
Date: Tue Sep 25 10:30:46 2007 +0200
Added DSBLIT_ROTATE180 benchmark.
commit 1cb4db7627150377d0b5d85bcd07e1249300efa3
Author: Denis Oliver Kropp <[email protected]>
Date: Fri Sep 21 02:43:48 2007 +0200
Added Flip() to see result screen on always-flipping-systems.
commit 20843763d6f718205b437fbeaabb8a0e2883b5f8
Author: Denis Oliver Kropp <[email protected]>
Date: Fri Sep 21 00:28:09 2007 +0200
Measure CPU load per benchmark.
commit 8b26f46486b3e5091f6789b27cf783ac760cebe3
Author: Denis Oliver Kropp <dok@shizo.(none)>
Date: Fri Sep 7 13:34:39 2007 +0200
Fixed warning.
commit 39f00e2eb44d04da407a51741b400d5ac1bba10c
Author: Denis Oliver Kropp <[email protected]>
Date: Thu Aug 9 23:47:20 2007 +0200
Added a Flip() for showing the "Preparing..." screen.
commit 01ffb616e61e5de8e28e840b0ce338131048e56e
Author: Denis Oliver Kropp <[email protected]>
Date: Thu Jul 5 15:26:11 2007 +0200
Added scaling benchmark from indexed source.
Flip the destination at least after every benchmark to see
the output on non-direct systems like SDL or X11.
commit 2abc2713a0b73e03f8ca7fd0826ee5e1fd214091
Author: Denis Oliver Kropp <[email protected]>
Date: Wed Mar 7 15:01:50 2007 +0000
1.0.0
commit dc3f21403c002b32552300b4e45a40c4610b7f08
Author: Denis Oliver Kropp <[email protected]>
Date: Wed Feb 21 23:07:57 2007 +0000
Added option "--accelonly", guess what it does :)
commit dedd0a4abe2f347f5a2dd6d90afc1d305549cefc
Author: Denis Oliver Kropp <[email protected]>
Date: Mon Jan 29 00:33:39 2007 +0000
Fix version check for automake.
commit 9df88c0c19581ffd0eb6d4616abe17727e449b94
Author: Ville Syrjala <[email protected]>
Date: Wed Jan 10 22:44:21 2007 +0000
Add --pixelformat command line option.
commit a9b55a434f4db58074655f86e00edfe63c50a53a
Author: Ville Syrjala <[email protected]>
Date: Wed Jan 10 22:41:49 2007 +0000
Force offscreen test surface into video memory.
commit ade781b6f2fbbfe7ade4cd0a7714c3c7b833725e
Author: Claudio Ciccani <[email protected]>
Date: Thu Nov 23 13:54:44 2006 +0000
Release font on exit.
commit ec4c2a67b86e59e171cd3371987e18190e547f3c
Author: Denis Oliver Kropp <[email protected]>
Date: Mon Oct 23 09:20:24 2006 +0000
Release the font.
commit 2c0691fff994820516dbc2246f9375fc79c20c32
Author: Denis Oliver Kropp <[email protected]>
Date: Mon Oct 16 12:42:23 2006 +0000
Use u32 instead of __u32 etc.
commit 9bf0d7f0a6437d16a84a39a9f77bfc1ce90d5561
Author: Denis Oliver Kropp <[email protected]>
Date: Sun Oct 1 19:41:49 2006 +0000
Added AC_CHECK_HEADERS(stdbool.h).
commit 2cb85685e485a059a44fbbd09ca7c3e1d225b47d
Author: Claudio Ciccani <[email protected]>
Date: Thu Aug 3 09:12:52 2006 +0000
Fixed FrameCallback type.
commit 26d2e1ae06ded1d0017a73148f4fbbb665fb35d4
Author: Claudio Ciccani <[email protected]>
Date: Fri Jun 30 06:53:03 2006 +0000
Disabled YCbCr StretchBlit demo by default.
commit be81ab9f91a4d77a523b288fc1bf5b4b1c480700
Author: Claudio Ciccani <[email protected]>
Date: Thu Jun 29 14:52:33 2006 +0000
Added YCbrCr StretchBlit demo.
commit 9fe5c0869fd5652912065d425340fcf3202738fb
Author: Claudio Ciccani <[email protected]>
Date: Thu Jun 29 14:51:36 2006 +0000
Show recently added rules.
commit c1d9763d03b75027c2857da7b88e6eabf1b7b04c
Author: Claudio Ciccani <[email protected]>
Date: Thu Jun 29 14:50:57 2006 +0000
Fixed image callback type.
commit 2ef1b26699f209571b4655c4828dcf1a57e541da
Author: Denis Oliver Kropp <[email protected]>
Date: Sat May 20 07:41:36 2006 +0000
0.9.26 required
commit fddacbf65e44376ca4fc4ed04aefc955cbdd860a
Author: Denis Oliver Kropp <[email protected]>
Date: Sat May 20 07:26:00 2006 +0000
updated
commit d45a50e55499a2246b8d355fe4fe96b2cebb5abf
Author: Denis Oliver Kropp <[email protected]>
Date: Sun May 7 00:01:51 2006 +0000
Print list of encodings when the font is loaded for the first time.
commit 3d7e7a331c94659792e3c16969c3f719c6ce44bd
Author: Denis Oliver Kropp <[email protected]>
Date: Sun Mar 26 18:56:06 2006 +0000
Fix autoconf version detection.
commit 1a40381f50314174f51fd6c40df7e79513d97951
Author: Claudio Ciccani <[email protected]>
Date: Mon Jan 16 10:06:49 2006 +0000
Removed an unnecessary memory allocation.
commit 3143be781d6c905ba00ef3f3abc1bd7720260e99
Author: Claudio Ciccani <[email protected]>
Date: Mon Jan 16 10:04:56 2006 +0000
Raise the limit of data in the buffer to 64 Kb.
commit 9faa1d10979e52393920a05ff71533e3000a9de6
Author: Denis Oliver Kropp <[email protected]>
Date: Sun Dec 18 12:39:07 2005 +0000
Show button and axis events for non-mouse/joystick devices, too.
commit f076cf361d1ae61aab329fb7cc8c64db2ec60628
Author: Ville Syrjala <[email protected]>
Date: Thu Dec 1 19:20:46 2005 +0000
Alpha modulation can now be turned on/off.
commit 57b0744d812a3d6390dc5578a4046d6e6a5ceb0b
Author: Denis Oliver Kropp <[email protected]>
Date: Sat Oct 29 02:42:30 2005 +0000
Fixed warnings.
commit 0d04057bafa1e5abf6733fc6867e698f6e7548d4
Author: Denis Oliver Kropp <[email protected]>
Date: Tue Oct 18 10:45:51 2005 +0000
Use CreateInputEventBuffer().
commit b47e4e4f8bd11958c9fc88452b27c90a379ba74c
Author: Claudio Ciccani <[email protected]>
Date: Mon Sep 26 10:44:02 2005 +0000
Call IDirectFBDataBuffer::Finish() when the end-of-file has been reached.
commit 6b3f289632f62e8d0d3361da808804ad53d8aa5f
Author: Claudio Ciccani <[email protected]>
Date: Sat Sep 24 14:15:12 2005 +0000
Limit the amount of bytes in the streamed databuffer to 8192 bytes.
commit 975318b940de5e66b5a71c463241f0bc83ed32f3
Author: Claudio Ciccani <[email protected]>
Date: Fri Sep 23 09:54:50 2005 +0000
Do not force texture format to RGB16.
commit af887be4d11684700dab60c494aca769e01a220f
Author: Claudio Ciccani <[email protected]>
Date: Fri Sep 23 09:53:56 2005 +0000
Try both IDirectFBDataBuffer::CreateImageProvider() and IDirectFBDataBuffer::CreateVideoProvider().
commit c98633fbe9dc20bb71bc9c3d562fed41df344d22
Author: Denis Oliver Kropp <[email protected]>
Date: Wed Apr 6 20:55:53 2005 +0000
0.9.23
commit e38c977b6080831085940504ecd918da6f3cd8ab
Author: Denis Oliver Kropp <[email protected]>
Date: Wed Apr 6 20:55:22 2005 +0000
Follow API change.
commit 348782cef32038bef717e71aad1db93e687d32a5
Author: Denis Oliver Kropp <[email protected]>
Date: Thu Mar 31 21:43:06 2005 +0000
Create premultiplied primary and premultiplied temporary ARGB surface.
Blit a slightly dimmed background image to the primary.
Render drawings to temporary surface and use SRC_OVER to compose with primary.
Better layout, colors etc.
commit 6aabac20d858ab9d39a69900df86c79afe7a4a63
Author: Denis Oliver Kropp <[email protected]>
Date: Fri Mar 18 16:21:48 2005 +0000
Use triple buffering if available.
Use floats instead of doubles. Should be converted to integer only.
commit f20900cb4f983f496efeeb9545d880a56cdc86e8
Author: Claudio Ciccani <[email protected]>
Date: Fri Mar 18 16:19:55 2005 +0000
Allow to select the net interface on command line (for example: df_netload ppp0).
commit 6248af22f036d7950d13125435eaa1e99d12c996
Author: Denis Oliver Kropp <[email protected]>
Date: Fri Mar 18 14:10:52 2005 +0000
Added colorizing benchmarks.
commit c4a3f6ab87472836e9d1bcf1128e1d2d9ca3264d
Author: Denis Oliver Kropp <[email protected]>
Date: Fri Mar 18 11:30:24 2005 +0000
Added option --noaccel to usage information.
commit a8675ca8d46809d3883f358243b842ea74e837a4
Author: Denis Oliver Kropp <[email protected]>
Date: Mon Feb 28 11:15:19 2005 +0000
Added "--noaccel" option for testing IDirectFBSurface::DisableAcceleration().
commit 0e4b6553222af8e2727d40af9845292446c1776d
Author: Denis Oliver Kropp <[email protected]>
Date: Thu Feb 24 15:55:16 2005 +0000
0.9.22
commit 7ba96fb8d0134b91671af39e6a81e8fff104aee0
Author: Denis Oliver Kropp <[email protected]>
Date: Fri Feb 18 15:21:13 2005 +0000
The DrawString() benchmark didn't use 36 characters
as the speed calculation formula supposed ;-(
Added "!!!" at the end of the test string to fix that...
commit 10f938cba0c4da56d6b1059c00fe5a47d31baf07
Author: Denis Oliver Kropp <[email protected]>
Date: Fri Feb 18 15:18:50 2005 +0000
Added FillRectangles() benchmark.
All benchmarks fit onto screen again.
commit b6a137b74f6d95a9704f91307650f4dd2cdb3e72
Author: Denis Oliver Kropp <[email protected]>
Date: Fri Feb 18 14:29:20 2005 +0000
Cope with failing IDirectFBSurface::Lock() instead of segfaulting.
commit 930c8e394be0f611a94ef2ace88883a368ac4d8e
Author: Denis Oliver Kropp <[email protected]>
Date: Tue Feb 15 07:37:30 2005 +0000
Ignore df_bltload.
commit d46208593a6410a7d81ddb0da0a07ff6de533831
Author: Andreas Hundt <[email protected]>
Date: Mon Feb 14 19:27:07 2005 +0000
- removed legacy ;)
commit 66ceaace11a8a847cd9e13499096c8427c974f25
Author: Denis Oliver Kropp <[email protected]>
Date: Mon Jan 17 19:31:43 2005 +0000
Fix stack overflow caused by too many penguins.
commit cbf5286853d07362c7ffc7738ec4d54983a3b98a
Author: Ville Syrjala <[email protected]>
Date: Mon Jan 17 11:22:43 2005 +0000
Display acceleration status also in the graphical results.
commit 01117a53312fec5ddc0d77c3d278025d1f0766d4
Author: Ville Syrjala <[email protected]>
Date: Mon Jan 17 11:12:34 2005 +0000
Create the primary surface before the background surface to guarantee that
both surface will have the same pixelformat.
commit 8b27b0d21b551358c9d565b0041f7a1b31d703bf
Author: Denis Oliver Kropp <[email protected]>
Date: Tue Nov 23 17:39:28 2004 +0000
Added "df_bltload" which reads information from /proc/bltstat ;)
Use DWCAPS_NODECORATION.
commit 620911913fcbafc821e25a1b58a6dc29f6ffc625
Author: Denis Oliver Kropp <[email protected]>
Date: Fri Nov 19 06:13:19 2004 +0000
Fixes to last changes.
commit 9e766247eae414d7d6f2b84b9bc5d7110a672190
Author: Denis Oliver Kropp <[email protected]>
Date: Fri Nov 19 05:57:54 2004 +0000
Use BatchBlit() :-)
commit 89de2b801ef5bf871c3a657175292d627551f7db
Author: Denis Oliver Kropp <[email protected]>
Date: Fri Nov 19 05:32:57 2004 +0000
Try to use DSCAPS_TRIPLE with DSFLIP_ONSYNC.
commit f18ad7b1c966805853759a2beb6be3c57a198878
Author: Denis Oliver Kropp <[email protected]>
Date: Fri Nov 19 04:43:11 2004 +0000
Use DSFLIP_WAITFORSYNC.
commit 412871a01dac650f78a73b329173b2372116d74b
Author: Denis Oliver Kropp <[email protected]>
Date: Sun Nov 7 09:48:13 2004 +0000
Minor cleanup.
commit 2fb244e9c0f8e3cb9b7aa03b71576ac7386d37cc
Author: Denis Oliver Kropp <[email protected]>
Date: Sun Nov 7 03:17:58 2004 +0000
Added FPS display.
Made globals static.
commit 5dece7fa91528d03b00ebbee1b76d48d08941ca7
Author: Denis Oliver Kropp <[email protected]>
Date: Sun Nov 7 03:17:17 2004 +0000
Fixed warnings.
commit f08bd0634437597c208202223effb7ec81712813
Author: Denis Oliver Kropp <[email protected]>
Date: Sun Nov 7 02:37:13 2004 +0000
Slightly reduced number of triangles.
commit de030ca1f21ae561d19c77df86c2d4e5ffcb632e
Author: Denis Oliver Kropp <[email protected]>
Date: Fri Oct 15 09:11:14 2004 +0000
Use an ^4 function for the alpha values, ^3 for red (entries 0-47).
commit 2a100e117447112687f95a3ba3046b29f9d1f88a
Author: Denis Oliver Kropp <[email protected]>
Date: Fri Oct 15 05:20:32 2004 +0000
More enhancements.
commit 1a25d8756f19c70eed4b31f9cdbcf4bda3f31f97
Author: Denis Oliver Kropp <[email protected]>
Date: Fri Oct 15 04:21:55 2004 +0000
cleanups
commit 1aa7e8a2c95347620cc84761503f18195f3dea64
Author: Denis Oliver Kropp <[email protected]>
Date: Fri Oct 15 04:05:29 2004 +0000
Use DFB_COLOR_BITS_PER_PIXEL instead of DFB_BITS_PER_PIXEL.
commit 03dc62548f6828ba8bd4875635eb95785e943fc4
Author: Denis Oliver Kropp <[email protected]>
Date: Mon Sep 6 04:44:03 2004 +0000
For FillSpans() test without blending use alpha 0xff for visibility on ARGB1555.
commit d956b4cb755bb0b63ffbb73c25ef91a075a9d2b4
Author: Denis Oliver Kropp <[email protected]>
Date: Mon Sep 6 01:49:37 2004 +0000
Changed all translucent palette alpha entries from 0x77 to 0x80
to get a reasonable result for non-blended blitting to ARGB1555.
commit 40eff3a355d590904cb8c377efe913e451f4bf08
Author: Denis Oliver Kropp <[email protected]>
Date: Mon Sep 6 00:59:47 2004 +0000
Attach the event buffer earlier to receive the initial focus event.
commit 1984aba4a05d4ec2a1590c9c3446c4b787e45be4
Author: Denis Oliver Kropp <[email protected]>
Date: Fri Aug 13 11:10:08 2004 +0000
Added blended span filling.
commit 968413d365d6343724b744d7c7d0f99da5962775
Author: Denis Oliver Kropp <[email protected]>
Date: Mon Aug 9 18:31:24 2004 +0000
Fixed true/false mixup for default benchmark selection.
commit 92d878dbff4c23b654f90f3dcfe6ed984f4a949e
Author: Denis Oliver Kropp <[email protected]>
Date: Mon Aug 9 16:24:20 2004 +0000
Added a FillSpan() test showing quite good results on my P3 800 with G450:
Fill Rectangles 3.001 secs (* 777.434 MPixel/sec)
Fill Spans 3.003 secs (* 560.864 MPixel/sec)
For each span the driver function FillRectangle() is called,
i.e. in this test case the number of driver calls is 256 times higher!
commit d50913ccb602ab848206ac7e51ec23e303d0481b
Author: Denis Oliver Kropp <[email protected]>
Date: Fri Jun 4 15:20:10 2004 +0000
Fixed warnings.
commit c73ff0c4f48af51a0150845b598b773f3077f171
Author: Denis Oliver Kropp <[email protected]>
Date: Thu May 27 08:43:37 2004 +0000
Implemented clipping of all vertices against the view volume including
all necessary stuff like splitting a triangle into two or more.
It's now possible to render a full 3D scene around the viewer.
Cleaned up code and added lots of comments to the vector engine header.
commit c68531c3ec03d96f048cd038e0e5a839d9f17a95
Author: Denis Oliver Kropp <[email protected]>
Date: Wed May 26 02:23:07 2004 +0000
Reduced number of vertices.
commit af9bb24f06e2863b3b288a1d7d2fc3b977424973
Author: Denis Oliver Kropp <[email protected]>
Date: Wed May 26 01:51:27 2004 +0000
Added VE_QUAD_STRIP to VePrimitiveType for vertex buffers.
df_texture shows a waving flag now.
commit 40c991ed32b1837821d69c834a179b6300e92b3e
Author: Denis Oliver Kropp <[email protected]>
Date: Tue May 25 22:28:55 2004 +0000
Added FPS measurement utilities.
Cleaned up and structured code of df_texture a bit, added lots of comments.
commit 5c35797bdb3c70be2bb048f58c9048024c70ae97
Author: Denis Oliver Kropp <[email protected]>
Date: Tue May 25 21:49:28 2004 +0000
Write to DFBVertex directly in veTransform().
Added initial version of vertex buffer functions a la
vbNew(), vbAdd(), vbClear(), vbExec() and vbDestroy().
commit 8d90b86ce1559cef53aef953c9be9eac209e9003
Author: Denis Oliver Kropp <[email protected]>
Date: Tue May 25 16:33:40 2004 +0000
Number of vertices now depends on the screen size.
Added "-D_GNU_SOURCE".
commit a7ebb621e3f2a2a367be77870fc8bd320e029aa2
Author: Denis Oliver Kropp <[email protected]>
Date: Tue May 25 15:14:50 2004 +0000
Use DSBLIT_BLEND_ALPHACHANNEL only if the window surface has alpha.
commit c7c3dd2ed5e42a3f07f7d92bd956b0f649763d65
Author: Denis Oliver Kropp <[email protected]>
Date: Tue May 25 15:05:16 2004 +0000
Added FPS counter.
commit 05708d5a9c4a691aa3c003f488f8a1bb09b2fe82
Author: Denis Oliver Kropp <[email protected]>
Date: Tue May 25 12:58:40 2004 +0000
Added vector and matrix stuff with a simplified OpenGL like API based on Mesa.
It provides functions like veFrustum(), veOrtho(), vePerspective(),
veViewport(), vePushMatrix(), veRotate(), veLoadIdentity() etc.
Use veTransform() to calculate DFBVertex values from object coordinates.
Increased the number vertices from 36 to 128 in df_texture and
added dynamic mesh generation with a small animation.
commit 749117dbe9ca58208b038ed65f936ef93997321e
Author: Denis Oliver Kropp <[email protected]>
Date: Fri May 21 09:34:07 2004 +0000
Use DSCAPS_DEPTH.
commit 5b3a780ef1585d6c2113347c9b143d6977e051c7
Author: Denis Oliver Kropp <[email protected]>
Date: Wed May 19 17:00:42 2004 +0000
Use 36 vertices and calculate a shell like mesh.
Rotation requires pressing the middle mouse button now.
commit 91fcbc90d0e00d64794ab738c5c7764e2920020e
Author: Denis Oliver Kropp <[email protected]>
Date: Wed May 19 12:05:06 2004 +0000
You specify a window id on the command line to use the surface of an existing
window as the texture ;)
Try "df_texture <ID> --dfb:force-windowed,pixelformat=ARGB"!
You will get a transformed version of the window next to the original one,
both with live updates, the 3d window can be rotated with the mouse.
IDs are shown by "dfbdump".
commit adbf5c21838208597b3e4cea1631a93f8a3b2d95
Author: Denis Oliver Kropp <[email protected]>
Date: Wed May 19 03:57:00 2004 +0000
Added a cool texture (made with Gimp).
The object can be rotated with the mouse now!
commit eddc6e73b58a4a6d360fdaa6f357c3f8dd7e2f25
Author: Denis Oliver Kropp <[email protected]>
Date: Tue May 18 22:44:06 2004 +0000
Fixed vertex generation.
commit 00ba40c6ed8c62524b22707204235879f07c859b
Author: Denis Oliver Kropp <[email protected]>
Date: Tue May 11 03:51:59 2004 +0000
Query DFXL_DRAWSTRING to show if font rendering is accelerated.
commit 8ed68bf01ba2471e53fdf9d2d1caae52d42b9fc0
Author: Denis Oliver Kropp <[email protected]>
Date: Tue May 11 01:47:59 2004 +0000
Reflect acceleration in the printed results.
commit 8516602c3c74556663da571579824d405b4ff67b
Author: Denis Oliver Kropp <[email protected]>
Date: Wed May 5 20:59:31 2004 +0000
No need for GetCursorPosition().
commit 933697bd745a26ec00f60c8ae03a2a21bbf04eaa
Author: Denis Oliver Kropp <[email protected]>
Date: Thu Apr 29 23:14:21 2004 +0000
Removed unused layer interface.
commit 69a6530dcfabaa1402dd7bf507179f54efb2b628
Author: Denis Oliver Kropp <[email protected]>
Date: Thu Apr 29 10:01:21 2004 +0000
Removed obsolete/unused stuff.
commit f0e67bd0d73ab184fd0afa9322c1d2854c3e67d8
Author: Andreas Hundt <[email protected]>
Date: Wed Apr 21 17:21:14 2004 +0000
joystick icon
commit 8567d3e7653f7ca396299315dc7936eec2fa08ad
Author: Andreas Hundt <[email protected]>
Date: Wed Apr 21 17:20:51 2004 +0000
- add support for joysticks, draws 6 axis for now
commit 438c5e90249a769cb50bd3653fdde694bda85401
Author: Andreas Hundt <[email protected]>
Date: Wed Apr 14 17:15:37 2004 +0000
- added benchmark for destination colorkeying.
(this feature is not yet mplemented in the software driver)
commit 8c4e660d65a643303c2d1801c8a2a5f60dddbe95
Author: Ville Syrjala <[email protected]>
Date: Tue Feb 24 09:35:27 2004 +0000
Renamed DSCALS_FLIPPING to DSCAPS_DOUBLE.
commit 56a301eea533a491ab211be59a6bb83bd1c7e64e
Author: Denis Oliver Kropp <[email protected]>
Date: Mon Jan 19 18:16:22 2004 +0000
Don't wait for user input.
commit 8e479413c645e22b14051f14953bccd1a0919364
Author: Denis Oliver Kropp <[email protected]>
Date: Mon Jan 19 14:13:24 2004 +0000
Added df_texture.
commit 95f3d5b5b06b9119ece2984eadf4dd308168235d
Author: Denis Oliver Kropp <[email protected]>
Date: Mon Jan 19 14:12:19 2004 +0000
Use a video texture if e.g. "/dev/video" is specified on the command line.
commit 1915f7d37b70dd1faafcdc345127518b57aff7fa
Author: Denis Oliver Kropp <[email protected]>
Date: Mon Jan 19 12:47:20 2004 +0000
Show hardware key code, too.
commit 3568160969c04d46a5e3a39b13e64b8bb870ae45
Author: Michael Natterer <[email protected]>
Date: Thu Jan 15 11:02:01 2004 +0000
Added df_drivertest.
commit 4d8e8b5332447fd92895b1eb40860ef5b81d6336
Author: Andreas Hundt <[email protected]>
Date: Fri Jan 9 17:52:20 2004 +0000
require DirectFB >=0.9.21
commit 766df3dc760aa6ddcbd66b0de686c01ea6648554
Author: Denis Oliver Kropp <[email protected]>
Date: Thu Jan 8 19:53:42 2004 +0000
My first TextureTriangles() example.
commit b1f001136abef81cf917e02a71da7ecb2a43dfba
Author: Denis Oliver Kropp <[email protected]>
Date: Tue Dec 16 05:52:15 2003 +0000
Fixed new smoothing formula.
commit 80e7765d130ab6d2d440870978831a73020da888
Author: Denis Oliver Kropp <[email protected]>
Date: Tue Dec 16 05:03:42 2003 +0000
Take additional values in /proc/stat into account (for 2.6 kernel).
Smoothing uses 1/4 old + 3/4 new value now.
Removed floating point.
commit aa03efd9cd212b883f7e22fb2d57fad5199edf62
Author: Andreas Kotes <[email protected]>
Date: Wed Dec 10 16:00:34 2003 +0000
Added DIKS_EXIT ('Exit' on remote control) for quitting.
commit 44134c268a18aa51d1e44d432bd9994af3bfb2e9
Author: Denis Oliver Kropp <[email protected]>
Date: Wed Dec 10 15:57:11 2003 +0000
Show PRESS and RELEASE.
commit 725dd4d26729bdcaaedd7a1b6476642804ad2688
Author: Andreas Hundt <[email protected]>
Date: Thu Nov 6 21:56:38 2003 +0000
- added DrawRectangle (press d)
commit ba1ab5d30ad25fe2f6a6f388dbb0c0d414e118b9
Author: Denis Oliver Kropp <[email protected]>
Date: Wed Oct 29 17:53:42 2003 +0000
Use custom (fast) rand().
commit 811e50ed3a7bf6f12e3b4aa3b07f5ef56fc9e7e4
Author: Denis Oliver Kropp <[email protected]>
Date: Wed Oct 29 17:51:39 2003 +0000
Fixed anti aliased fonts.
commit bf22c22872308c76b2e9fad099f1b8d5df56aa8c
Author: Andreas Hundt <[email protected]>
Date: Tue Oct 14 11:52:25 2003 +0000
fix image file name
commit 8f69f24b875760b91c94e6fbf2eed18e4330a25f
Author: Andreas Hundt <[email protected]>
Date: Wed Oct 8 17:06:14 2003 +0000
added df_drivertest, a small tool to check drivers for bugs and accuracy,
more checks should be added.
commit b55feb397b1a7a1807cc8ad6f6b0bd6d3eb8faaf
Author: Denis Oliver Kropp <[email protected]>
Date: Fri Sep 26 21:01:56 2003 +0000
Added option "--mono" which disables anti aliased fonts.
commit c80d8d408044da49d1bce28b86dc31943c70a620
Author: Andreas Kotes <[email protected]>
Date: Fri Sep 19 13:48:51 2003 +0000
separate rx/tx
commit d840f52ee5c0d665dc62cb6836e9d37d4a478373
Author: Andreas Kotes <[email protected]>
Date: Fri Sep 19 13:44:21 2003 +0000
s/df_ideload/df_dioload/
commit a4d5bda02a1b85ae9204ac7c9655aa776b288f79
Author: Andreas Kotes <[email protected]>
Date: Thu Sep 18 13:39:10 2003 +0000
whoops
commit 75d7b99a6231e1605d48dcf479612d7d7aa28bc8
Author: Andreas Kotes <[email protected]>
Date: Thu Sep 18 13:37:48 2003 +0000
- inferior support interrupt counter /proc/interrupts removed
- using disk_io from /proc/stat (spans ALL disk devices)
- separate gauges for read/write
commit aa77b6d59c49700cbb06b6e324adf4ee4c8838cd
Author: Andreas Kotes <[email protected]>
Date: Fri Sep 12 12:04:01 2003 +0000
added df_ideload, fixed grabbing key by removing it altogether.
commit c52513d14a1192f9de00fc5f8d3a141e659cbfbc
Author: Denis Oliver Kropp <[email protected]>
Date: Mon Aug 11 11:08:39 2003 +0000
Applied patch from ad <[email protected]> reducing float usage, thanks.
commit ee8e7d9b3ec793befe8c30cd65c0048704c2d6db
Author: Andreas Hundt <[email protected]>
Date: Tue Jul 29 13:05:54 2003 +0000
version 0.9.19+0.9.20WIP-1
commit 7c98bf97f35929e778e5e16ede776915c77fab58
Author: Denis Oliver Kropp <[email protected]>
Date: Sun Jul 27 12:27:24 2003 +0000
Added df_netload (next to df_cpuload). Currently hardcoded to eth0, autoscaling.
commit c321472a178fce3c5acab0f5d044c500196dcf61
Author: Denis Oliver Kropp <[email protected]>
Date: Mon Jul 21 13:04:44 2003 +0000
Updated ChangeLogs.
commit 0b3ef1fe7eeb520d2f3b56fa6e200f27c3d7c315
Author: Andreas Hundt <[email protected]>
Date: Fri Jun 27 23:49:03 2003 +0000
changed package version to 0.9.18+0.9.19WIP-1