commit 56ba4031a184031c1149f1e0f73214509e9c0293
Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 17 12:19:49 2014 +0100 Core: allow access to core part data during its initialisation commit 0b0c22d6a1ddfa894b1240cd375931934f033e60 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 31 13:53:07 2014 +0100 configure: Evaluate module directory to show final directory commit 6fece410a5b946f1c0c017a66ea5884c7747dbcf Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 31 13:51:13 2014 +0100 configure: Change --with-sysroot option to --with-runtime-sysroot to avoid conflict with newer autoconf commit 549eb402b3141fb98c64f31bf84d116e2234fbe0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Sep 20 15:35:10 2014 +0200 mknames: add typecast to avoid errors with C++ commit 4d422fbdf6add491f20164b8b33a0b7b9064b06c Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 1 10:15:13 2015 +0100 Client: Create extended Graphics State object when needed for later usage commit 3a960cc384f97ea07e72385b442d6f65583a40cf Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 1 10:18:12 2015 +0100 ignore commit 618c81557d92e75351303c95aa086dd9657d7170 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 1 10:16:23 2015 +0100 debug: add some timing info to surface interface construct / destruct commit e5c8ab0e391ef139b9efc143053994a0bb34c409 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 1 10:04:27 2015 +0100 Core: Cascaded interlock in favor of optimization. commit 6f09d498b57d3559ba22e0d043664303a0ee1c37 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 1 10:01:24 2015 +0100 libfusion: deallocate call tls properly commit 36566929135390deb249c89ed657c057942a58fc Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 1 09:58:42 2015 +0100 1.7.7 commit 2f4f78cc43fa7e6ee8411c5f284aa533ad003729 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 1 09:56:19 2015 +0100 2015 commit 09d8d058ced264a3a7fd4041bbc4c95893d42691 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 4 08:38:19 2014 +0100 Core: When creating the layer surface also pass along the DSCAPS_GL flag. commit e2221b1dcad2c44f57b8f8e962c3e0816f393b94 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 14 09:21:39 2014 +0200 directfb 1.7.6 commit 4b4ca723b8dc7d83b8cd8c709f4b0d5e7a96e06b Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 14 09:17:21 2014 +0200 core: add missing ret variable commit b5d96d22f4dc2b5b0b340224dbd047bc1ef99918 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 14 09:14:41 2014 +0200 Revert "Core: Add Shutdown method to run in dispatch thread, solving (potential) shutdown issues caused by race conditions with dispatch thread" This reverts commit d1267d05fb964f882b90599b8259e41a9a4e811b. commit 3332d3e908946ad21def7820f9e17015693ea258 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 5 18:11:07 2014 +0200 [directfb-dev] [PATCH] StateClient: Fix double-free memory corruption. StateClient object instances are stored in thread local storage. Each thread can only have one instance of this object. There is however one shared list inside of TLSOjbect2 that holds references to all StateClient objects created in a given process. The instances of StateClient can be destroyed in two ways. 1. Something calls dfb_gfx_cleanup(). 2. Thread terminates. In the first case the function is called once when the process using directfb shuts down. This happens ony once during application life. The function iterates over all StateClient objects present in the TLSObject2::list and removes each one. The second case libc will call the callback function passed to direct_tls_register() when the thread which registered the tls object terminates. The problem is that while dfb_gfx_cleanup() does remove the deleted objects from the TLSObject2::list, the default callback function passed to direct_tls_register (TLSObject2::destructor) does not. As a result the following situation will lead to a double-free memory corruption. 1. The application starts and initializes directfb. 2. At least one extra thread is started, this thread uses some dfb APIs which internally create new StateClient object. 3. The extra thread terminates thus invokes TLSObject2::destructor. 4. The application exits, dfb_gfx_cleanup() is called, StateClient for the extra thread is deleted for the second time. The problem is nicely illustrated by valgrind. In this case dfbterm is used as the application triggering the problem. ==336== Invalid read of size 4 ==336== at 0x4EA4120: CoreGraphicsStateClient_Deinit (CoreGraphicsStateClient.cpp:387) ==336== by 0x4F7165F: StateClient::~StateClient() (util.cpp:78) ==336== by 0x4F71A07: Direct::TLSObject2<StateClient, StateClient, StateClient>::DeleteAll() (TLSObject.h:175) ==336== by 0x4EE3130: dfb_core_shutdown (core.c:1734) ==336== by 0x4EE36F3: dfb_core_arena_shutdown (core.c:2020) ==336== by 0x4EE418C: dfb_core_destroy (core.c:472) ==336== by 0x4E969A2: IDirectFB_Destruct (idirectfb.c:307) ==336== by 0x402813: main (term.c:523) ==336== Address 0x8b37730 is 1,072 bytes inside a block of size 1,136 free'd ==336== at 0x4C28D2C: operator delete(void*) (vg_replace_malloc.c:482) ==337== by 0x5233F81: __nptl_deallocate_tsd (pthread_create.c:158) ==337== by 0x52341E3: start_thread (pthread_create.c:325) ==336== by 0x5B7A0DC: clone (clone.S:111) This bug also triggers the following assertion: Assertion [(client)->magic == D_MAGIC("CoreGraphicsStateClient")] failed *** [CoreGraphicsStateClient.cpp:387 in CoreGraphicsStateClient_Deinit()] This patch is also applicable for directfb-1.7 branch. commit 650773f3b0a08be053687d9bffac6746fe9fe287 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 28 12:02:50 2014 +0200 update changelog commit a1a930c40f3ecdde7e1fa327a023a1eacff66a6c Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jul 24 13:08:45 2014 +0200 Screen: Add missing code for DSECONF_ASPECT_RATIO to PatchEncoderConfig commit be46411a640eb99a9ae0a89de0455481905412c0 Merge: 92f2850 4e7f089 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jul 24 11:20:24 2014 +0200 Merge branch 'directfb-1.7' of git+ssh://git.directfb.org/git/directfb/core/DirectFB into directfb-1.7 commit 4e7f089bc78848edff2f79e20dd19cf6920e1c30 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 15 18:55:35 2014 +0200 configure: 1.7.5 commit 06668550b900a9834b3ecebf3214027537f52eec Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 15 18:54:51 2014 +0200 gfx: Add GenefxEngine.h to Makefile commit 4ddbf722ce5f93bf383f476f6be4a845b70879fb Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 15 18:53:38 2014 +0200 configure: Set C++ standard to C++0x commit bfd4107bdec63ce1c6eac88eca8997ad92f462f2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 30 20:23:05 2014 +0200 libdirect: Fix deadlock using a fallback flag for removing a signal handler. commit b549164cfab2450222e4b5b54433806a29cad9dc Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 26 02:04:35 2014 +0200 Core: Fix order of CoreSystemFuncs initialisation commit 1f96cfdebdf971b0f45045af60b51976316316cf Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 26 01:57:42 2014 +0200 Core: Fix type of fusion_id in CoreDFB structure commit 9b23c3b5f0c6aa074d509309c916a8d5d9b1883f Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 26 01:57:09 2014 +0200 Core: Fix warnings commit 0ad1970a5ec52a8e9b0e910e1f92a45b858f2b3f Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 26 01:33:07 2014 +0200 libfusion: Add missing include of <map> to object.h commit b81a3809618048e147179209b3f97fb170596ca5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 15 22:56:44 2014 +0200 dfbtest_flip: Add visualisation of timings commit 05365c45fb42d982005773b763721f72c768549f Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat May 31 11:54:35 2014 +0200 Core: Add CSBF_RIGHT to indicate buffer is for right eye commit 21a55dffbbb6180dc249a444b61eedb80921b66e Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat May 31 11:47:59 2014 +0200 API: Add DSPF_ARGB8565 and DSPF_ABGR to DFB_COLOR_IS_RGB commit d1267d05fb964f882b90599b8259e41a9a4e811b Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 20 13:41:40 2014 +0200 Core: Add Shutdown method to run in dispatch thread, solving (potential) shutdown issues caused by race conditions with dispatch thread commit 9dcae150c8f40e6434fa28fdf433059c3adda60b Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 20 13:39:22 2014 +0200 libfusion: Run indirect calls directly in dispatcher in fusion_call_execute, like in fusion_call_execute3 commit 92f2850e2c19ce0f8de33789776f47b4a23ebe8c Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 16 11:30:37 2014 +0100 util: The rectangles used to be 1 pixel too small in both dimensions. (Thanks to Sven Neumann) commit 2e174bfdba7be1c284b13f5542d803e503dad984 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 18 18:06:39 2014 +0100 FPS: Fix long long commit 1001c04e8caa9007b11612fc3664c83da3225a76 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 18 17:53:04 2014 +0100 libfusion: Add deadlock note about reactor (to be replaced in 1.9 anyways) commit 2fde4b29539866097900cb347cc3452bd1dd0f3a Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 18 17:46:53 2014 +0100 API: Add event buffer calls and convenience GetSize() to IDirectFBSurface wrapper commit 1cce0c1e3953dddd8f2f5e30b50e37e4d9833c46 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 18 17:45:39 2014 +0100 API: Always include directfb++ utils when C++ is used commit 26164fb7ba2782e08d889299528d056c14502e89 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Mar 17 00:03:22 2014 +0100 TIFF: Fixes - use ABGR pixelformat instead of ARGB - use "lock.pitch" instead of image width Signed-off-by: Haithem Rahmani <haithem.rahmani@gmail.com> commit b3b402a3a102ea700e0ba0f75f4eeafa5634d0b8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 16 11:45:02 2014 +0100 JPEG: Fix setjmp() issue (thanks to Sven Neumann) Wrapping the call to setjmp() into a helper function is a bad idea as setjmp() saves the stack for later use by longjmp(). The way it was done here totally broke error handling for fatal errors from libjpeg. Reverting this part of commit aaebf60b86 restores error handling in the JPEG image provider. commit 62b3b1572952fe3fddd395e29ad76281a9e32ca5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 16 11:30:37 2014 +0100 util: The rectangles used to be 1 pixel too small in both dimensions. (Thanks to Sven Neumann) commit 355c10e39f3d173f1b25e03e35a81888887d396b Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 31 23:15:21 2014 +0100 Core: Add GenefxEngine.h commit 579c2becf2d973a86fe887736debdc22159493dc Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 15 10:26:41 2014 +0200 libfusion: Add fusion_object_pool_size() commit 375b5bf4f6a3b2802584554d4cac496ec74091b6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 31 23:01:31 2014 +0100 Core: Fix crash in dfb_core_wait_all commit a7515368a04486066d96dfcd00599fe8f4611d4e Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 31 22:56:32 2014 +0100 Core: Implement DSFLIP_UPDATE in dfb_layer_region_flip_update2 commit 768855340a190c4ae1aed07ee54106b58e592af0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 31 22:42:47 2014 +0100 Core: Add dfb_state_set_destination_2 including flip count commit 0e0844b9205344aa08333a3f3af2de639fb93cca Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 31 22:35:00 2014 +0100 Core: Optimise dfb_state_set_source_2 for flip count only updates commit 502dfeb31a591c2ceba11654ce938ea6be52f00f Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 31 22:20:51 2014 +0100 Core: Print warning when dfb_surface_allocation_update fails to find transfer method commit 9edd84d79887c306af60b8b5edd0248bece36bd6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 31 22:12:33 2014 +0100 Options: Set default for 'layers-clear' to false (previous behaviour) commit e917b21694d952aefe1409716c3d3a6a0157e9a9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 31 22:11:27 2014 +0100 API: minor debug message enhancements commit d4804909ba07e49f99cdfb6162d527952f861367 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 31 22:08:06 2014 +0100 Options: Add 'force-frametime' to call GetFrameTime() before each Flip() automatically commit 31ad1edb78d687b3451306173f13b4d90c33707b Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 31 19:54:13 2014 +0100 util: Remove some bogus assertions commit 8eda452dd8fa5ccb1ba97ddf7607e0d1250d52c0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 31 19:44:46 2014 +0100 Util: Add DFB_UPDATES_DEBUG_AT commit 22189cdb83abab6deed60319162978aee5051154 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 20 19:49:27 2014 +0100 DataBuffer: include <direct/Types++.h> commit 1e5e9b407ce99d5183ac2c60e410988408deb924 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 20 19:43:51 2014 +0100 C++: fix some includes Conflicts: lib/fusion/object.h commit d1702bdb13681c335adf708f5312bfb0cf859d89 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 17 02:28:33 2014 +0100 Core: Include direct/Types++.h earlier. commit b5ea55b15bf60ac6768c642056a5afdff360f51e Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jan 5 15:20:14 2014 +0100 API: Extend DFBRegion commit 9cffbbc9d4b60406f2f265d70ab5c3087e7fc470 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jan 5 15:19:03 2014 +0100 API: Add DirectFBDisplayLayerOptionsNames commit 5328cd22e64eabb84568745af50b237be2a5cfa5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 31 05:05:28 2013 +0100 libfusion: hash resizing in fusion_hash_replace (when new) commit 405a711996b90e558d9f91089c2a21138c60b372 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 3 21:59:35 2013 +0200 GLES2: Fix warning commit 68d05a048ec621786a87a52c234604e486aec4ad Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 3 04:05:06 2013 +0200 libdirect: extend domain name space in debug messages commit cb3168781edfbc957b052cfbcf01ac9d7a0a6d93 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 1 18:08:08 2013 +0200 GP2D: include direct/Types++ to fix build commit cf1ae22fb841f932b7631eef3aa284a0e0071b65 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Sep 29 22:17:26 2013 +0200 API: Add width() and height() to DFBRegion commit 54aeb5c9e0e96cc006da347e1565e4d4df791d99 Author: Marek Pikarski <mass@directfb.org> Date: Fri Sep 20 17:12:18 2013 +0200 [PATCH 2/2] drmkms: mute plane when opacity is set to zero. If the opacity value of zero is passed, then we mute the plane by disabling the plane. We re-enable when the plane if non-zero opacity value is passed. Thanks to Takanari Hayama <taki@igel.co.jp> commit 8ae0a7845d0f18c9f62c8ba633ab54151ad40153 Author: Marek Pikarski <mass@directfb.org> Date: Fri Sep 20 17:10:49 2013 +0200 [PATCH 1/2] drmkms: fix property to check when setting source color key. Thanks to Takanari Hayama <taki@igel.co.jp> commit b6f76750d71d7753c9be1715c0a65ead6c704d2b Author: Marek Pikarski <mass@directfb.org> Date: Fri Sep 20 14:57:27 2013 +0200 drmkms: add some timeouts commit f44e50fd0e16e9cfbed7938bde9084c3ffcab008 Author: Marek Pikarski <mass@directfb.org> Date: Wed Sep 18 15:23:15 2013 +0200 drmkms: allow setting of windows as layer surface commit 00f840635d362b5894825f243b1b3481fa39ce91 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Sep 16 15:09:57 2013 +0200 drmkms: add mixer and encoder to encoder and output config commit a23ecb35bd70ef4eab20be1502745096156d7ff4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Sep 14 02:27:20 2013 +0200 [PATCH] drmkms: correctly set a name that is created with DRM_IOCTL_GEM_FLINK, thanks to Kazunori Kobayashi <kkobayas@igel.co.jp> commit 1738cc9a02706398899567f43733d475f3442891 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jul 12 17:39:21 2014 +0200 libfusion: fix secure-fusion mode for reactor_globals and arenas_lock commit 741c5aa9bc589cf0e5540986a1c4c4de4e795947 Author: Marek Pikarski <mass@directfb.org> Date: Fri Sep 13 13:25:37 2013 +0200 [PATCH] imageprovider: fix crash when doing multiple RenderTo()'s in the webp provider Signed-off-by: Haithem Rahmani <haithem.rahmani@st.com> Thanks!!! commit c2a94d5c6eee5512b2c7e8d7ceb563e39943b1d5 Author: Marek Pikarski <mass@directfb.org> Date: Fri Sep 13 13:22:47 2013 +0200 [PATCH (DirectFB)] inputdrivers: set DICAPS_KEYS/DIDCAPS_KEYS only for input devices with keys DICAPS_KEYS/DIDCAPS_KEYS is set in DFBInputDeviceCapabilities for all linux input devices that have the EV_KEY bit set: keyboards, buttons, or other key-like devices. This patch sets DICAPS_KEYS/DIDCAPS_KEYS only for input devices with keys. Signed-off-by: Thouraya ANDOLSI <thouraya.andolsi@st.com> Thanks!!! commit d8ead68fe2ec578e7c4af5171d217c5301c62de6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Sep 10 22:21:09 2013 +0200 ++DFB: IDirectFBWindow::Get/SetApplicationID(), thanks to Krzysztof Konopko <kris@konagma.com>! commit 75ab289f036c085e8defd34f5d208a221fd71d3b Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Sep 10 22:19:11 2013 +0200 ++DFB: Add IDirectFBSurface::SetRenderOptions(), thanks to Krzysztof Konopko <kris@konagma.com>! commit 7b88cfebb6a40acab5571def6a2c9fe1543495cd Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Sep 10 21:31:09 2013 +0200 more gitignore commit 2364205f36d51554d5890133ed6440070e018617 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Sep 10 21:16:57 2013 +0200 Core: Add CoreLayerRegion::SetSurface(), add parameter to dfb_layer_region_set_surface() to preserve the old behaviour commit 46e40743d36c1acc3f36579c4811c29ee2a5229a Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Sep 10 20:39:28 2013 +0200 add more gitignore commit 5b5e4dac5145e07cee0d7bd50f29f12754cad0e9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Sep 10 20:34:40 2013 +0200 ++DFB: Add IDirectFBSurface::Flush() and IDirectFBDisplayLayer::SetSurface() commit 06a548428b1aebb207a8801f12b80e5b26e5ff45 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Sep 10 16:25:32 2013 +0200 API: Add IDirectFBDisplayLayer::SetSurface() to allow mapping of arbitrary surfaces onto hardware layers commit 50ff8566c2af6086687037b0c1f4ccdb88fadbae Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Sep 10 14:47:00 2013 +0200 Options: Add no-sighandler-thread to disable handling signals in a separate thread commit f1415337eeebd703734f15db85d50ccbe4ed25ad Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Sep 8 23:24:01 2013 +0200 IDirectFBSurface: add more debug commit f9b064347ebf356e8b070a9c165708f4c5bfb7bc Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Sep 7 14:50:11 2013 +0200 libdirect: Use prctl(GET_NAME) if thread was not created via direct_thread_create() commit b7c75e65a6278d34a3f4447ad717560d8b96f16a Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 4 13:07:27 2013 +0200 GP2D: Comment out forced debug mode commit 22e8e9a5f47e422688a14b4e04965f6c3db86a68 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 4 09:15:28 2013 +0200 DRMKMS: Add mixers, indicate which layer is on which output TODO: Allow moving layers from one mixer to another, or clone, ... commit 7ecb6e278f41de355f05bbd6cdc74657885cf7c7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Sep 10 16:24:24 2013 +0200 Core: Fix permissions on reactor, using FUSION_REACTOR_PERMIT_... instead of ioctl defs. commit d2922476919ac72e1b96c62491fb8a0b85f02b31 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 4 09:12:25 2013 +0200 Core: Hotfix IDirectFBWindows::RegisterWatcher() for slaves... commit a670233e784c270ebff2066473da4bb6114e4c3f Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 4 09:05:29 2013 +0200 libdirect: Implement 'delay-trap-ms' option commit 6b88a59dd71bbe3bc7218db654781be1250bbaae Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 4 09:04:38 2013 +0200 libdirect: Don't print warning when direct_dbg_free() is called with NULL commit 8c98917047cf0785655c508b6afbc4ecb4b8628d Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 4 09:03:46 2013 +0200 Options: Add 'delay-trap-ms' to make direct_trap() sleep instead of raising a signal, including a message for copy'n'paste 'gdb --pid=...' commit 60317ffe164b2ceebad7d966603b801d71cbb6cb Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Sep 3 23:37:25 2013 +0200 Options: Add '[no-]ownership-check' to not check for privileges when calling GetSurface() or GetWindow() by ID commit 5ed2d0ca30188c7f66e4cca90a7397e7270be2dc Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Sep 3 23:17:04 2013 +0200 Renderer: Support source flip count setting commit 14f089f01872462b0742f76ad68837c63c4350d4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Sep 3 23:15:43 2013 +0200 CoreGraphicsStateClient: Fix pending call buffer data, avoid creating requestor if not needed commit ff3bb090aecf5ce42bc472addc05706f9ab4c9ba Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Sep 3 23:10:57 2013 +0200 Options: Add no-force-windowed to disable force-windowed option commit 0971446792dfc76493a9b5f8145983fdb7b088ab Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 29 18:32:06 2013 +0200 libdirect: Include file name in error message in direct_modules_explore_directory commit ccffcc9a54fa356e68814000ef30052fbbe66291 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 26 21:29:38 2013 +0200 Core: Register DUMP signal handler to dump allocation data of surface buffers (e.g. killall -30 df_andi) commit 6aba6d402be4a716736a2f6c6f5da931cef6f502 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 26 21:27:18 2013 +0200 libdirect: Allow to register handlers for DUMP signal. commit 108738fb9b021ab5de9030b3f44ae1d2129df0a8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 26 13:22:46 2013 +0200 DirectFB: Add debug domain DirectFB/Main commit 96594295410c64ff5bbdfadeab7260c6ac8a3ce9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 26 13:16:38 2013 +0200 libfusion: slightly change debug output when printing function name in _fusion_call_process to allow highlighting commit 052bda1604d2ec6849b89b9bec16e9efa143f86e Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 26 13:15:16 2013 +0200 Core: Add dfb_surface_allocation_dump(), add dfb_surface_buffer_dump_type_locked2() that takes pointer/pitch instead of full buffer lock commit 1d91ae9493a8493fa5ffd5bc4cfa48c26dbf0155 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 19 12:24:47 2013 +0200 tests: C++ fixes commit 81381a87dc26d82b922f165d38d47909a58091ec Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Aug 16 20:37:29 2013 +0200 DRMKMS: Initialise also a mixer for each connector commit 901d83c8b6c5f78db6bde4f66e2f9cd547c15cbf Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Aug 16 17:08:42 2013 +0200 libdirect: Add debug to direct_stream_create commit 555300e0fe940a874ac5887ae3225c1309a53dc5 Author: André Draszik <andre.draszik@st.com> Date: Mon Aug 5 11:46:33 2013 +0100 configure: fix detection of pre-generated files When doing out-of-tree builds, pre-generated files are in $srcdir, otherwise we'd be looking for them in $CWD, which would be $builddir Signed-off-by: André Draszik <andre.draszik@st.com> commit d747f01d10421e39cac7564211e07d35bf855624 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jul 25 13:58:21 2013 +0200 ++dfb: Use DSCAPS_FLIPPING in DFBApp::Init. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 94e4df53de1681698bf2d2e416992cff6e737496 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 13 19:26:04 2014 +0100 ++DFB: Add premultiplied caps to DFBApp commit 1c2cc1e46872cc1be09bcd982033932773cbb6c9 Author: Marek Pikarski <mass@directfb.org> Date: Fri Jul 12 15:30:36 2013 +0200 convert non-windows files to have unix-style line endings commit fdf0f5fa1e9bd09b82d6d7755643b0ec6c1ab722 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jul 25 13:44:43 2013 +0200 Debug: Add/change some debug messages. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 089abf8f0f3e78c78daa97ef27c7f934638cc27b Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 11 22:56:17 2014 +0200 remove accidentally added files commit e76963cc9b970dce8f63b956ff4582445dce6388 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Apr 5 21:47:13 2014 +0200 update changelog for 1.7.4 commit f3a149e7d2488cbd2828f4aa230cc62ef87ad3dd Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Apr 5 21:46:55 2014 +0200 version: 1.7.4 commit 80f4db799f50cc7d34c907e31b99e97fee300dc5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 3 17:34:59 2014 +0200 core: Remove D_ASSERT in process_watcher. commit f4247a492f14ec2f3cf482e53672a86cc68b30d8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 29 20:25:14 2014 +0100 version: update changelog commit 1621480a68326ab22282d061b1ef9718117a5671 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 29 17:45:03 2014 +0100 SaWMan: Fix shutdown crash with slave processes exiting with master commit 036f75ddcf91c595caa7c66df2924310ca97b5b0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 29 14:28:26 2014 +0100 Revert "Core: Fix crash during slave shutdown by stopping dispatcher" This reverts commit fea3b66b06b68ff00984256450f0f4d7ad9ca25e. commit fea3b66b06b68ff00984256450f0f4d7ad9ca25e Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 29 14:23:26 2014 +0100 Core: Fix crash during slave shutdown by stopping dispatcher commit 822f3cae6cde0ae46d1e808d5e40002ac72177bb Merge: f846343 b8cec45 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 29 11:55:56 2014 +0100 Merge branch 'directfb-1.7' of git+ssh://git.directfb.org/git/directfb/core/DirectFB into directfb-1.7 commit b8cec4587563caa04e767671780dc790d2c45b0c Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 22 21:06:05 2014 +0100 configure: version 1.7.3 commit e047b1875751e29bedd19eacdb22d18e3e45fbb1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 18 17:38:25 2014 +0100 ++DFB: Fix crash when source is NULL in GetAccelerationMask() call commit f846343f7b0ec440c4e78ad5a06a7b81964a0e39 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 7 11:09:14 2014 +0100 update ChangeLog for 1.7.2 commit f08385db22f38e4761dca378b395986ecf86466b Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 7 11:09:03 2014 +0100 update ignore file commit 910ff7df860a8ef1eda496f2c44517d47b36a327 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 7 11:03:06 2014 +0100 dfbtest_layer: Use DLBM_FRONTONLY commit 545f6f94b3afb9986223c3578a4d566232557d74 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 31 21:58:04 2014 +0100 dfbtest_layer: Call Flip after SetSourceRectangle commit 47c0b7d56cb244726c7e39b1597e6c2bea23b1d3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 20 20:36:31 2014 +0100 Options: Add "fusion-shm-populate" to enable usage of MAP_POPULATE for shm buffers. commit e61750cb5d5e990cdda7e76ac3b8e919a558f1f0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 14 10:00:00 2014 +0100 dfbtest_layers: fix max number of layers, preventing a segfault commit 304c244c59ef1a92816fc94c0371b6844a2925f4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 31 05:06:36 2013 +0100 sawman: fix warning commit 22b108b7a18e176d5ee36d58648a7ff08b1e991e Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 17 10:29:21 2013 +0200 Core: Add ToString_CoreLayerRegion commit 98deee8a1d5e56187de46d775d9f563d1954ce2c Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 14 21:46:03 2013 +0200 add debug, fix warnings Conflicts: lib/egl/surface.cpp lib/egl/util.cpp src/core/layer_region.c commit 29ba64c14be84d194a7ddb2ee1695df122ee13ba Author: Marek Pikarski <mass@directfb.org> Date: Wed Mar 5 18:02:28 2014 +0100 Revert "Core: Fix stereo updates (don't dispatch from layer function)" (this is only working with internal surface clients in 1.8) This reverts commit 7bf5fc3591fa6661363c70f4e1ce71010f216ff6. commit b617d467fe4d2196cefae16eaa05ecce477c6b36 Author: Marek Pikarski <mass@directfb.org> Date: Wed Mar 5 17:30:52 2014 +0100 fusion: do not sync when shutting down (dispatcher is already stopped) commit 94d5482772583793b473e3950fd87ff65efb9365 Author: Marek Pikarski <mass@directfb.org> Date: Wed Mar 5 11:54:30 2014 +0100 configure: change version to 1.7.2 commit c0a6b1ec2b61a435e00ef423f2736d400fa09236 Author: Marek Pikarski <mass@directfb.org> Date: Wed Mar 5 11:01:24 2014 +0100 tests: build fix commit e0ba8e2092480e29d3bcb7d9ef81cc15c220ba1b Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 13 19:38:19 2014 +0100 dfbtest_font_blend: Add test for DSTF_BLEND_FUNCS commit 1818e5229d665c0cf14a7665aad53df35333d068 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 13 19:33:05 2014 +0100 IDirectFBSurface: Add DSTF_BLEND_FUNCS to keep custom blend funcs set, but follow blitting flags of font commit 649ab350f823601949ad8122a9efa8963b00b3d9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 13 19:32:01 2014 +0100 IDirectFB: For windowed primary, set DWOP_ALPHACHANNEL when DSCAPS_PREMULTIPLIED is used (assuming blending) commit 736a13371acdc4e66c3adc0288892ea78cb0aee2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 13 19:29:02 2014 +0100 API: Add DSTF_NONE commit 216aa0d76d0433f412836136b4ccb4653d8f4f33 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 13 19:26:04 2014 +0100 ++DFB: Add premultiplied caps to DFBApp Conflicts: examples/++dfb/dfbapp.h commit 28621f839a6f65f69bc8fc688816e6887ba40376 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 31 23:55:56 2014 +0100 Core: Shutdown fixes commit 9fccf631cc297fbad5443da442f3b33d64dfc233 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 31 23:55:31 2014 +0100 libfusion: Fix single app build commit 031f0e9931897a215c4341c0e37a841c4cf8eee8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 31 23:32:34 2014 +0100 libfusion: Set fd to non-blocking in fusion_stop_dispatcher commit 7bf5fc3591fa6661363c70f4e1ce71010f216ff6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 31 22:22:49 2014 +0100 Core: Fix stereo updates (don't dispatch from layer function) commit 9be19354f374d0945b273e910e0e36245f8a36d7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 31 21:57:15 2014 +0100 Core: Don't freeze when moving layer (update_primary_region_config) commit bd144603e1801d92cc4a79d04e0eb26a45c1ee2b Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 21 11:36:29 2013 +0100 libfusion: Add fusion_fd() and fusion_dispatch() to allow integration into main loop commit 4634a46453ebe73301f4342bd8630ba2a584603b Author: Marek Pikarski <mass@directfb.org> Date: Mon Mar 3 15:35:17 2014 +0100 fusion: fix memory corruption in single-app mode (fusion ref was already destroyed after execution completed) commit b32f77c8ab47ccbffc0d2d92b275ed70a1abe15d Merge: a99a541 9c79d75 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 10 17:22:36 2013 +0200 Merge branch 'directfb-1.7' of git+ssh://git.directfb.org/git/directfb/core/DirectFB into directfb-1.7 commit 9c79d750814419cac262174805105861e21b7f4e Author: Chris Tomlinson <christ@broadcom.com> Date: Thu Oct 10 10:42:00 2013 +0100 Add alternative UHDTV mode. commit a99a541e05f2b807323405fc6ecdf3a73840902f Merge: 8c62b55 906886c Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 9 18:46:36 2013 +0200 Merge branch 'directfb-1.7' of git+ssh://git.directfb.org/git/directfb/core/DirectFB into directfb-1.7 commit 906886c762a979f328f368ab30f4a2cccddb98bc Author: Chris Tomlinson <christ@broadcom.com> Date: Wed Oct 9 17:00:56 2013 +0100 Add 4k display resolution. commit 8c62b55231113bce6478a199909978d6e840fe88 Merge: 0b65bfa c0a350a Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 9 17:25:34 2013 +0200 Merge branch 'directfb-1.7' of git+ssh://git.directfb.org/git/directfb/core/DirectFB into directfb-1.7 commit c0a350a38c270a3f4a23f1a1bb9f40f4452e716e Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 26 15:04:57 2013 +0200 libdirect: Move C++ definitions to separate header file. commit 6f0bc100c28d35e62c3a704c030783391a5192b5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 3 04:06:54 2013 +0200 libdirect: Switch to using SIGPIPE for dumping stacks etc. (seems SIGPWR is not working in all cases) commit 0636d67de3ac116117953c1b0a2881eb938d3977 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 3 14:34:00 2013 +0200 libfusion: Fix fusion_object_get() which returned DR_OK even if lookup failed commit 3da2a59b6eda50ce763f7d0b73013bcf23e4e49c Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 3 04:05:59 2013 +0200 libdirect: Fix over length lines for D_ERROR() messages commit 661b0dce3030a732e14353bc50517dab38a63c9b Author: Marek Pikarski <mass@directfb.org> Date: Fri Sep 13 13:44:44 2013 +0200 [PATCH v2 2/2] Fix illegal fclose of a file pointer opened by popen. In direct_pclose, fclose() is called for a file pointer that opened by popen(). Signed-off-by: Tetsuya Mukawa <mukawa@igel.co.jp> Thanks!!! commit c594c0c78bd7ca3b8e7c2df74ee642e6413a5e16 Author: Marek Pikarski <mass@directfb.org> Date: Fri Sep 13 13:43:30 2013 +0200 [PATCH v2 1/2] Fix for double close of a single file descriptor. In direct_file_close(), 'file->fd' is closed twice if 'file->file' isn't NULL. Since'file->file' is assigned the result of fdopen(file->fd, ) in direct_fgets(), fclose(file->file,) also closes 'file->fd', so it doesn't need to be closed again with close(file->fd). Similary, in direct_pclose() close(file->fd) doesn't need to be called after calling fclose(file->file). v2 changes: - check a return value of fclose() in direct_file_close(). Signed-off-by: Tetsuya Mukawa <mukawa@igel.co.jp> Thanks!!! commit e805f7407594d2d237c77a7ce967a064211e794e Author: Marek Pikarski <mass@directfb.org> Date: Fri Sep 13 13:30:31 2013 +0200 [PATCH 2/2] fusion: object: initialize a shared/global skirmish for the object pool And rely on the fusion permissions for security. Signed-off-by: Ilyes Gouta <ilyes.gouta@st.com> Thanks!!! commit 7870c083f0951bd020c74a2786ad88931fd836ce Author: Marek Pikarski <mass@directfb.org> Date: Fri Sep 13 13:29:32 2013 +0200 [PATCH 1/2] fusion: always initialize reactor_globals and arenas_lock locks as globals Redirect fusion_skirmish_init2() through the fusion kernel module for creating the new skirmish. Also master adds the baseline permissions for the newly created object. Signed-off-by: Ilyes Gouta <ilyes.gouta@st.com> Thanks!!! commit f97cf9db93d20a608950cd5565bd1d031fef2206 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Sep 10 20:54:34 2013 +0200 fix warnings commit e4b0fbda0d339469bf4dba2af3293beea30f111f Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Sep 3 23:30:55 2013 +0200 C++: Add convenience classes like DFBRectangle to new header file <directfb++.h>, fix dynamic cast with NULL pointer commit b1241377c581bb60c84c07fc377f8c2fd700b290 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Sep 3 23:25:09 2013 +0200 Core: Remove lots of buffer references in allocation code where not needed commit 0ec2c1040ed15b113691f9b8eb01ac87eae589e1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 31 21:56:05 2013 +0200 libdirect: Remove redefinition of __typeof__!!! commit d11fc9b75abc69042b5d470808932d4dada266db Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 29 12:34:00 2013 +0200 dfbdump: Print object identity instead of creator. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 443590dc5057d668ea4a5c5c0c95b16b24d2d175 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 29 11:53:31 2013 +0200 libdirect: Include interfaces and memory allocations when dumping stacks upon signal 30. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 8900c205dafce717b41a1400271ccdc73ea313e1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 29 12:13:07 2013 +0200 sawman: Fix linkage of installed libs. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 45d99ce971b0356f8fd68f7f41447d0a824a5f24 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 28 10:50:22 2013 +0200 Task: Fix identity when handling allocations in DisplayTask. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 8cc76f6edea988927ba725439c211355201a7f83 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jul 25 13:31:06 2013 +0200 libdirect: [1.7] Fix direct_messages_info() to handle too long lines. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 768b24afb779cf838c900e29d65d9258662340b9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jul 25 13:37:14 2013 +0200 Options: Add 'shutdown-info' to enable object/interface dump at shutdown time (as done before). Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 1e4158ee1c85929c10cb683106380f8aac4ca912 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jul 25 13:27:08 2013 +0200 Options: Add 'nm-for-trace' option that must be used to run 'nm' at trace dump (as done before). Add D_ARGS env as input to libdirect's config_init (constructor). Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit e661f1d18942907eb4f79c3fae44a052be4cda52 Author: André Draszik <andre.draszik@st.com> Date: Thu May 9 14:49:14 2013 +0100 convert: modify conversion APIs to be able to support planar formats Since we can't calculate the Cb/Cr pixel addresses for most planar (YCbCr) formats, we have to get them passed in by the callers. Signed-off-by: André Draszik <andre.draszik@st.com> commit ad3b587e2f59d1c0c0fb103e470c3c4a9a82a682 Author: André Draszik <andre.draszik@st.com> Date: Thu May 9 14:45:37 2013 +0100 surface/surface_buffer/x11/sdl: use dfb_surface_get_data_offsets() This now allows us to figure out the correct address for split buffer chroma-downsampled planar YCbCr formats Signed-off-by: André Draszik <andre.draszik@st.com> commit 03affc536308c1baadcca5a250d08e3a3f12381f Author: André Draszik <andre.draszik@st.com> Date: Thu May 9 16:07:25 2013 +0100 convert: fix YV16 conversion to various formats We can now calculate the correct Cb/Cr start addresses, and at the same time can fix the RGB24 swap that erroneously happened. Signed-off-by: André Draszik <andre.draszik@st.com> commit ddc4d13583ce8ae5961d79d9fa58c6283e3c7c2a Author: André Draszik <andre.draszik@st.com> Date: Tue May 14 10:50:55 2013 +0100 surface: add dfb_surface_get_data_offsets() This can be used to calculate (and return) the pixel address and pitch for split buffer formats, for the CbCr or Cb and Cr components (2-plane or 3-plane formats). Signed-off-by: André Draszik <andre.draszik@st.com> commit 1f8a79c880c06aecb12c08db36d78f2eaa7530e4 Author: Chris Tomlinson <christ@broadcom.com> Date: Thu Aug 15 16:35:04 2013 +0100 ImageProvider: Add FFMPEG based image provider which will decode MPEG2 and AVC still images. commit 0b65bfad4536082e7b8f415c9b5adf53cfc3c887 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 29 12:16:57 2013 +0200 sawman: Fix linkage against installed libs. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 702096a8d9e03b3ea0489f25b99b30941c24045f Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 29 12:13:07 2013 +0200 sawman: Fix linkage of installed libs. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit fad83b125462464195da2febc8525cfb8703d0b1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jul 25 14:01:27 2013 +0200 make: Add more DFB_BASE_LIBS usage. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 182f40e8028b325f28513724696e8316191c1a61 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jul 25 13:56:42 2013 +0200 make: Add LIBS_TO_NMFILE variable to nmfile.make for selecting libs to process. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit ce7235c11394953cc39fb28768936bd3b0e93b56 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jul 25 13:31:06 2013 +0200 libdirect: [1.7] Fix direct_messages_info() to handle too long lines. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit b9bdac8580ce8e4bf635cc908e8507bcd8ff3e79 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jul 25 13:54:17 2013 +0200 make: Add more DFB_BASE_LIBS usage. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 84afe18860e78bea0d4ec04185b49b6526bb54f2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 29 20:01:01 2013 +0200 version: 1.7.1 commit b26a0171d0fd55aa69adceff3137b3768231a53e Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 17 21:20:28 2013 +0200 Core: Check for allocation identity when locking in pools without CSAF_SHARED. Add CSANF_DEALLOCATED. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit c1969b356d5ebf4cac85d05c8764734efba851f0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 17 21:18:50 2013 +0200 Core: Push master identity for locking the layer buffers, needed for allocation choosing. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit dfe80ea5fed78cdd237b89468822867a9922f387 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Jul 24 18:19:48 2013 +0200 interfaces: unregister watcher instances in local voodoo interfaces (fixes double-free) backport from 6feeb9df0f6e69687b25768c96773a1544b8c469 commit 589169473f4046515feaf62f75dc8a2a2add174b Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Jul 24 18:06:07 2013 +0200 interfaces: unregister local idirectfbwindows instance in voodoo (fixes segfault) backport from 1cd467daf8bdf77368b198ce9aff9dbf93d1d4c0 commit a087d09e69b557c5d9d1277f049673b125075719 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Jul 19 18:54:23 2013 +0200 direct: add missing include commit a09f44c730dd96b30faae3ebf15c5f69b509fdfc Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 17 21:21:40 2013 +0200 DRMKMS: Use DRM_IOCTL_GEM_FLINK to map buffers in slaves. Currently using a hack to initialise a local kms_bo! Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit dcde2a15588726e584ba3c7430b0b6a70f7163bd Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 12 16:47:04 2013 +0200 - drmkms: simplyfy locking, fix for task manager commit a6186acba69070fc05a84ca3c478fd3f9b8fd926 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Jul 12 16:18:06 2013 +0200 drmkms: fix deadlock while flipping commit 7c283408bc75c46c062a5862de6307df706787c9 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Jul 12 15:17:45 2013 +0200 drmkms: use vblank handler to synchronize flipping on planes commit c127663c46c74645e9de54b0bf61f6a102b16056 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Jul 12 14:44:17 2013 +0200 drmkms: set CSCAPS_DISPLAY_TASKS and CSCAPS_NOTIFY_DISPLAY commit 1bba3a5efca7b132b3ed43c2d1807a0b4a90f969 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Jul 11 15:06:44 2013 +0200 drmkms: refactoring, cleanups, fix flipping in multihead mode (multiple crtcs with one DirectFB layer each) commit 902016b20482f8918daa9f898780fefff35ee049 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 10 21:10:13 2013 +0200 update changelog commit 8e7e21bd19b8143f699476d3e6ee39721e192cb8 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Jul 10 20:54:27 2013 +0200 updated news commit 74a2bd4bb5d8cba1c42e0f82d4bfd8a913f576ec Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Jul 10 20:53:56 2013 +0200 fix header commit 0544e6e2394c107fa957ce5a79225be1bc7296db Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 10 20:45:16 2013 +0200 TIFF: New image provider by Haithem, thanks! Signed-off-by: Haithem Rahmani <haithem.rahmani@gmail.com> commit 6926a9312f0cb822931054091e906c154d86b078 Merge: 9fc9611 7e13aa3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 10 20:42:16 2013 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 9fc9611306f27e70687efb6f5794c6a189d23c05 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 10 20:42:02 2013 +0200 wm: comment out assume commit 7e13aa352145469b7b658c049082480fbd333235 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Jul 10 20:21:24 2013 +0200 debian: update package version commit 3982b0f5aceb56c43c178a8b997ce1aaadc75ae7 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Jul 10 20:17:26 2013 +0200 fix warning commit 791c31695e0bc0b93ad865a5d0bf86500cb946a7 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Jul 10 19:58:08 2013 +0200 remove df_input from Makefile.am which I forgot to add to git (too late for 1.7) commit ebc20b6897abf1cbc7a49a2e59344522215f57fc Merge: 357e349 9b9b7ab Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Jul 10 19:53:03 2013 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 357e349d465ddd4000ae543931b9cdf8eb285de0 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Jul 10 19:52:13 2013 +0200 add (very brief) NEWS for DirectFB 1.7.0 commit 9b9b7ab9c6f587df54baf0534f08ebc3917dcc74 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 10 19:38:18 2013 +0200 Core: Add FIXME about not blocking dispatcher thread for waiting application lock to become available. commit 594f835a3c27b60ec41e9975156b4e07388d72cc Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 10 19:37:31 2013 +0200 IDirectFBSurface: Fix dead lock in WaitForBackBuffer. commit 090f3bd2fd7f64983ed23177dda8a2fd4d7669d5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 10 18:33:22 2013 +0200 dummy: Add CSCAPS_ACCELERATION and CSCAPS_DISPLAY_PTS, return accelerator id from dfb_config. commit d0d6bc7a5c62775a793f734ea583202b29b75469 Merge: 3a36e30 cf07571 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 10 18:32:59 2013 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB Conflicts: lib/direct/fifo.c lib/direct/fifo.h commit 3a36e305fec88bd0742417ad8e0c49a0e0715a3a Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 10 18:27:42 2013 +0200 IDirectFBSurface: Remember buffer count at time of Flip. commit 9743282bca46a106e893b4992124ab85f505515f Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 10 17:13:16 2013 +0200 libdirect: have standard implementation in DirectFifo commit cf075710e16f5fc4362576b05e889fc98aa04def Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 10 17:13:16 2013 +0200 libdirect: have standard implementation in DirectFifo commit a035a1329e51ccf8fe2f0d6e1e07ad8af008a69b Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 9 11:28:43 2013 +0200 ++DFB: Fix linkage of examples and tests. Add internal lib++ reference (path) to libs_deps.make. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 5f28ac9fdf2acdd31788290f97ccd6da675cba71 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 9 11:27:25 2013 +0200 Virtual2D: Move serial number increase to GetSerial(). Add CCF_READSYSMEM and CCF_WRITESYSMEM. Call direct_processor_destroy() at close. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 53d873dd6a4c698eb249e6d7f4632982ebf800f9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 9 11:24:05 2013 +0200 Core: Fix allocation access after deallocation without task-manager. Wait for accelerator serial when accessed by GPU. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit f8cc8ed42baf99c97a2f31f6d716dbbd02707d7a Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 9 11:21:13 2013 +0200 Core: Call Graphics driver's GetSerial() function before (possible) EmitCommands() to have same order with and without gfx-emit-early option Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 35a6fdff93ea3162c8961743f080c7bea39865ed Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 9 11:12:40 2013 +0200 libdirect: avoid futex statistics when built without debug Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 31f7f930f4acd94140b338e7092a214d367a4392 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 9 10:57:24 2013 +0200 libdirect: add note about debug macro optimisation (domain check prior to parameter passing) Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 977d9c980fe931d5c57e75188939aac747c8e09c Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 9 10:55:24 2013 +0200 libdirect: Fix race condition in fifo implementation. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit e714918e642d245905b2f914c2246c0b3e2471fc Merge: 8d09ceb 9248943 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 9 00:24:52 2013 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB Conflicts: systems/drmkms/drmkms_surface_pool.c systems/x11vdpau/x11vdpau_surface_pool.c commit 8d09cebd1c2d12a26e796588cb7f77f22009ab73 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 7 19:36:59 2013 +0200 Core: Debug and cleanups. commit 06ec12bfe85ecd05b5552c09a48a4681df83927f Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 8 23:50:15 2013 +0200 libdirect: Add option 'fatal-messages' like 'quiet' but instead calling direct_trap(). Add DMT_BUG. commit 2a85fc89e28814367eed367e4d63485434469c02 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 7 19:42:48 2013 +0200 IDirectFB: Allow DirectFBCreate() to be called recursively from dfb_core_create(), providing ref counting without double initialisation. commit 1eff2682351e16d23fb1a99cd1e7f28e2bbae343 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 7 19:41:34 2013 +0200 libdirect: fix DEFINE_MODULE_DIRECTORY macro for older g++ commit ffc4174167e76a00a0d67dab1587a217faddac46 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 7 19:41:02 2013 +0200 vnc: fix warning commit f4f1763b233480099a5046959533a96b1c0e6075 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 7 19:39:53 2013 +0200 dfbtest_windows_watcher: fix warning commit eecdc54bf5e00066a4c7a524112926d9ece9d8e0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 7 19:39:09 2013 +0200 vdpau: comment out debug commit 20dbb30396004e4ec1e6f5a64ea45ae453536afd Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 7 19:38:40 2013 +0200 drmkms: comment out debug commit b8b28d72f76262d2a6f6edcd82c8e7f327e8e3f1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 7 19:34:29 2013 +0200 Core: Reset flip count to 0 when buffer mode changes to DLBM_BACKSYSTEM to fix wrong allocations being locked. commit 09ee2e1d44d9511c6ad1dc40804574dfcc49f8ef Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 7 19:32:11 2013 +0200 TaskThreads: When Run() fails, send task back via Done(ret). commit d72310d0e908996768178012288e3c0bd9b0761d Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jul 6 21:17:53 2013 +0200 IDirectFB: When DSCAPS_FLIPPING is specified for fullscreen primary, try DLBM_TRIPLE, then DLBM_BACKVIDEO/SYSTEM... commit 6e927965d787d4aab9baf426bd5f5a91888aa49c Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jul 6 20:30:22 2013 +0200 Debug: Add ToString<DFBResult> implementation. commit 0179697ab7fa73043db67a85288628809640166d Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jul 6 20:28:21 2013 +0200 libdirect: Replace FromString template by something working, a class again instead of a function. commit b28b622732db5e468541348dfb4c40e045582b53 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 5 17:28:25 2013 +0200 Core: Fix missing initialisation in CoreSurface::Flip2(). commit 3dcdfa0f3666128c5d525ff2b79bf3f1852e01af Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 5 19:19:04 2013 +0200 libdirect: Add FromString template returning true if conversion succeeded, default implementation returns always false. commit 5c1f05766da99d7611fcff6cca7edb526bb28e94 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 5 17:29:41 2013 +0200 API: Add DFB_NOBUFFER error code commit 9248943aa6ea9238bf904833030a83a65d6f7aea Author: Chris Tomlinson <christ@broadcom.com> Date: Fri Jul 5 17:39:43 2013 +0100 core: Remove warnings "ISO C restricts enumerator values to range of 'int'". commit afb3d3834169010a1a669b7ae19ca7ad8d26f945 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Jul 5 17:44:37 2013 +0200 added missing Makefile.am commit ce30aed0b72f10aa19c228c7173a042b47a89909 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Jul 5 17:41:33 2013 +0200 include df_matrix and df_input for distribution commit a5333208459174fee68f8944f0f415dacf173473 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Jul 5 17:11:41 2013 +0200 fix copyright header commit 00ed9cbfb3ff20656d096b43759251f791ec5c16 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Jul 5 16:53:41 2013 +0200 win32: move project files for ++DFB example commit c0c9e116103369346b05fbb2ab04faa95ba605e9 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Jul 5 16:51:54 2013 +0200 fix non-standard copyright headers commit be8c19b92b03b2d6ad518230d6b3926db160fa85 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Jul 5 15:31:18 2013 +0200 fixput example and tests copyright headers (using MIT license on all files) commit cd30bf919f1f3823fe97c85c238f9bbace7ef8e2 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Jul 5 15:20:16 2013 +0200 update all standard LGPL copyright headers to a single version commit fc645f991cb55297a99e9f240122b4ddd7e00064 Merge: 1e195f3 15631bd Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Jul 5 14:34:28 2013 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 1e195f32e0c9f4a7c218a1e14766b5e50f79f1a9 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Jul 5 14:33:54 2013 +0200 merge ++DFB commit f26498f12cc10e43fba95fb9aa769ae685cec97c Merge: b2f459a 8762f88 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Jul 5 13:23:18 2013 +0200 Merge branch 'master' of ++DFB.bundle commit 15631bdab0deb5d3afc16af316f4d2b7c5d79c8a Author: Marek Pikarski <mass@directfb.org> Date: Fri Jul 5 12:15:26 2013 +0200 sawman: fix order of drawing premultiplied windows commit 974642f343be6e1c9a363b58bd57f6dd6689b0b0 Author: Marek Pikarski <mass@directfb.org> Date: Fri Jul 5 10:07:34 2013 +0200 voodoo: fix memory corruption (do not finish response after unsuccessful request) commit b2f459acf175e96d792e33c1b5b64456b07b8258 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Jul 4 14:39:21 2013 +0200 drmkms: do not use drmModePageFlip() for planes commit a529e3eff1cf10ed45e6635beb870ea4de2552dd Author: Chris Tomlinson <christ@broadcom.com> Date: Mon Jul 1 14:12:13 2013 +0100 core: Only lock buffer after checking if accelerated operations are supported. commit 30f1048d91ada52197e30561cbbb0a4ec7b95858 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 1 04:45:15 2013 +0200 libdirect: Add String operator == and Strings.Concatenated( space ). commit db5b45e7d31122afbb810b073c35661d615f1dea Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 30 11:30:39 2013 +0200 libdirect: Add signal to handler for dumping stacks of all threads (currently SIGUNUSED-1 / SIGPOWER) commit 92c2615ca8c7a70881f2e2c891592848f0782190 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 23 18:52:34 2013 +0200 dfbtest_flip: Enhance time stamp display commit 5d529ccbd5e80595962f85333479693004a63928 Merge: fda3351 8f0a352 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 23 18:40:12 2013 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit fda335139beeef4604532731d5bb8db9ab637903 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 23 18:39:58 2013 +0200 data: add decker ttf file commit 8f0a352433b1cb792e2196e83aa43068f00f28a1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 23 18:25:44 2013 +0200 libfusion: hotfixes for user space fusion commit 2517a83a888ca288135555cd90e5d4d70d01238a Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 23 18:19:20 2013 +0200 Options: Add 'max-frame-advance' and 'max-render-tasks' to set default/limit for rendering ahead, queueing up render and display tasks. commit 0af58b6c78976a51b334cc0f38706d4d828975b2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 23 18:08:35 2013 +0200 proxy: For GetFrameTime() use voodoo_manager_clock_to_local() and add the conneciton delay to achieve same behaviour as local clients. commit 5e56fa135da10d55e5fa414860396160c8d9556a Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 23 17:32:14 2013 +0200 libvoodoo: Add voodoo_manager_connection_delay() to retrieve the mesaured roundtrip in micro seconds. commit 47a0aa4e6d126286a619e961ea89ce8b9af5889d Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 23 17:20:40 2013 +0200 libvoodoo: Add TimeService and keep connection delay and time difference, add APIs for conversion from/to remote monotonic clock. commit 647d4eb427da9be4a491c63c428d6f9930d4ebc3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 23 15:06:14 2013 +0200 proxy: Implement IDirectFBDisplayLayer::GetSurface() commit f583e5088cd2d352e467e59b558b2f0b2200f3f0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 23 15:01:21 2013 +0200 proxy: Implement IDirectFBDisplayLayer::SetConfiguration(). commit d4760accc9b171156b8d68bbb1c8935e1a452215 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 23 14:49:42 2013 +0200 proxy: Implement GetFrameTime() the easy way, with a synchronous call. Should implement an asynchronous version to keep the stream going and buffers full :) commit 64dc76c3ee63201f039fa346f37aa5366284b1ec Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 23 12:04:05 2013 +0200 configure: Fix user space fusion config. commit fef8b640b3f61430d3a3d83cda6ea9021880d0e0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 23 11:10:14 2013 +0200 libfusion: Follow behaviour of kernel fusion for user fusion with respect to direct calls. commit db679c4d65ae451b4401ed702c3c3ca00f89ca4e Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 23 11:09:30 2013 +0200 libfusion: Fix shm addresses for user space fusion. commit cd6df7c72b9c639dd0a056be78078cd21d325709 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 23 08:46:29 2013 +0200 IDirectFBSurface: When destructing a preallocated surface make sure the current state is idle. This is not a 100% fix for the issue seen with df_dok as a slave, but enough in that case. commit 97bbdcf340cb4a464b1f30b40e2621b18ad9bae7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 23 08:45:40 2013 +0200 Task: Fix core identity while locking buffers. commit 14f0342762fe6778cc2f53be06230d5d207e3add Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 23 08:45:08 2013 +0200 dfbproxy: Add usage info with voodoo options. commit f15de908debbd2e77f264a37c8bc8272c42dc8af Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 23 08:44:40 2013 +0200 libvoodoo: Add voodoo_config_usage() for programs. commit 8526319fc0071757e1dcd8ac4ead52feb719ea32 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 23 06:36:50 2013 +0200 Core: Fix region locking in case of unrealize error. commit baa5a17d384eeb3d9b4dcf02a0e1efd148e1f676 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 23 06:20:07 2013 +0200 Task: Add CacheInvalidate() to LockTask (used for application based locks). CacheFlush() is missing as the LockTask gets Done() immediately to prevent app from blocking further tasks. In a multi app scenario it is also unclear if the cache invalidate needs to happen in slave context. commit e79244d6bf81a797a7f9022c4c09aa56298ac560 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 23 05:37:58 2013 +0200 Task: Timed emits, optimisations, cleanups, few fixes Implement time stamp based emit() of tasks when ts_emit is set and in the future. This is used by the DisplayTask implementation for layers that don't support PTS with buffering of multiple display requests. Set CSCAPS_DISPLAY_PTS if queueing of buffers with PTS is supported. Fifo supports waiting with timeout based on target time stamp. commit a25dca3008b8a77f2ed3d68fd9958b2d5cee5d75 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 23 05:28:47 2013 +0200 Config: Add --enable-gcc-atomics to force GCC builtin atomics even when arch specific code is present. Use __sync_add_and_fetch() instead of our own lop. commit c85e06831a977b5da48a0a9a179dc81c50ddbfa4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 23 01:56:52 2013 +0200 Config: Set default for graphics-state-call-limit to 5000. commit f6b2b26b35b8bcc475498056735a36fe1cdefc86 Merge: 4de1c9f 3cf4ef5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jun 22 02:41:45 2013 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 4de1c9ffb5481801a1fdfad0734eef1d68e4cfb9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jun 22 02:40:45 2013 +0200 Task: Split source files commit 3cf4ef5444a5ddf79f249451d7530a17b7103bae Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 21 15:35:07 2013 +0200 SaWMan: Fix crash with cursor updates. commit 05ce52a87add75794dd513cffed1b0e5b892dda7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 21 15:34:18 2013 +0200 WM/Default: Fix crash with cursor updates. commit dc4721efdeb000fc7afe45a148bdd00dd961ab0e Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 20 16:22:13 2013 +0200 IDirectFBInputBuffer: Fix dead lock during Release. commit 3a760e62303844443666ccc5a89f85256df4f93e Author: Marek Pikarski <mass@directfb.org> Date: Tue Jun 18 13:06:52 2013 +0200 voodoo: prevent crash after failed socket initialisation, add some more informative debug messages in error case commit c565820b168c3d01fedaccf070c77811baf1a283 Merge: d6e6b66 310d69a Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 18 08:23:14 2013 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit d6e6b6678ec75303ff95f44340daec57edda24aa Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 18 08:20:05 2013 +0200 libfusion: For calls with 10000 bytes of data or more, don't buffer locally, just call ioctl. This avoids one of a few copies we're still doing for slave rendering. commit 310d69a2c2c7eadf7733b1e94416557b1ecbf412 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 17 08:28:01 2013 +0200 PNG: Add more debug to RenderTo() commit 633504657f61ce0cc17935d96da165d253bd7ebe Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 17 08:27:40 2013 +0200 Task: Fix race condition in Task::Release() commit 6d7818f907b30062468aa9569e274c5deff255c2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 17 08:26:55 2013 +0200 Core: Fix more issues during shutdown commit 8e3ced19d6a11147b1e018bc89bc77b1c36d55a8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 16 22:03:31 2013 +0200 Task: Create TaskThreads statically in TaskManager::Initialize() instead of implicitly in Task::Push(), add missing delete. commit c546411fe7b9c985655b1bffe9a8564e35de9b4a Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 16 22:02:49 2013 +0200 Task: Fix region locking in DisplayTask::Run(). commit 66270a47358926697d9f22e17f5cd69c2a2af34f Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 16 21:39:08 2013 +0200 Task: Turn magic assertion into assumption in Task::DumpLog() to have a chance to see the log even the magic is invalid. commit 64f1293218ca5c9a5658e61633e7616575a48587 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 16 21:36:49 2013 +0200 Task: Call dfb_gfx_init_tls() at beginning of DisplayTask::Run(), ref/unref region surface, unlock region later. commit 2fdd35b6e9af5a9442cda088eecc9946f08c47c5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 16 21:33:54 2013 +0200 Util: Add dfb_gfx_init_tls() for preinitialization of graphics state, to avoid dead locks with implicit creation later on. commit 790ae9c469504d7cbfea06be5b65e2b1100f21e3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 16 21:31:56 2013 +0200 Core: Disable regions rather than deactivating to prevent realization during shutdown due to reactivation. commit 9fe1d317946038a12341ff53be695f7b96b775ff Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 16 20:02:37 2013 +0200 Task: cleanup code, no real changes commit 46fa06945cbb0b67061a0d0223c97dae8f779711 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 16 20:01:47 2013 +0200 Renderer: Check for num_buffers before calling dfb_surface_get_buffer3(). commit 31fbbc040f6b96e01e15a52cbdcb0371bdf0044f Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 16 19:14:21 2013 +0200 Renderer: Add surface locking error checking/return and messages, enhance debug. commit d9680e2757cbaa1f9e4c24b3cb704acb4cc7bd51 Merge: acc14ba fa7c817 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 16 19:13:21 2013 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit acc14bab721e12fd3907861a6710c756d936e483 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 16 19:12:49 2013 +0200 Debug: Add ToString<CoreSurfaceBufferLock> commit fa7c817f444751644f49a3a607eef31848b03550 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 16 19:08:36 2013 +0200 Core: Shutdown improvements, deactivate regions, destroy window pool later after stopping dispatcher commit 4799af655ece23d3d1df1d6565eb441d740eb56e Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 16 18:53:11 2013 +0200 libdirect: Avoid too much locking in TLSObject implementation, just lock for list management commit fa64fd4a495ffc67cac05f677a40999e95eb1626 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 16 18:06:49 2013 +0200 Task: Fix layer shutdown with compatibility mode, calling Task_Done() after RemoveRegion(). commit 4a28770ae6cecc522fbbf33b60258f3c0d6b5cbf Merge: 87ffc1a 1857eef Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 16 18:06:26 2013 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 87ffc1ae8728201a742c46b30d6c8c4bd63d47e8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 16 18:06:09 2013 +0200 Task: fix warning commit 1857eef51314f49fbb4cd21e197dc75f23abe13c Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 16 11:06:46 2013 +0200 WM/Default: Fix few more shutdown issues Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit f8edf1b95afaac8881e42dac915284ed98a565fc Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 16 08:56:09 2013 +0200 Task: Fixes for display tasks on suspended regions Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 5d4e68a78e983d31ad2bb78461bdbea2ebc88ac8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 16 08:54:27 2013 +0200 Core: Fix another shutdown issue with threads by setting TLS' client to NULL in CoreGraphicsStateClient_Flush Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit ef6475aee27119a146020dad41fca822bdbe95dd Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 16 07:42:13 2013 +0200 WM/Default: Fix shutdown race condition with display notify task by NULLing the region and waiting for the task to be done. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 30f2a34b29807187845c603479d2dd43b03d0d27 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 16 07:41:11 2013 +0200 Genefx: Fix clipping error in Task with slaves where master task was running after all slaves exited and thought he's the only one and does not need clipping Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 0df7cfe259a892775b25a644aaadda95966fbd9d Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 16 06:42:51 2013 +0200 Core: Fix deletion of CallBuffer (from Requestor) in thread other than the one that did the last prepare() on it, assumes it's been flush()ed at least! Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit a716979aaf70514044e709829b7c49efe526f158 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 16 06:41:13 2013 +0200 Core: Don't ref up/down surface objects in dispatcher when processing calls, fixes assertion and should be a good speedup! Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit b3fab28fe9f7e8aee2b8e7f3389f3c06098dad46 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 16 06:03:15 2013 +0200 Task: Call Release() in DisplayTask::Run() at the end to prevent situation where system module calls Done() before returning to Run() Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 354ad504246d7f1d6a97948c9b5fbc88fdf63bf4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 16 06:02:14 2013 +0200 Task: Allow AddRef() and Release() in wider context and handle deletion in Task Manager thread via new TASK_DEAD state. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 0e443514d2b02afbe9231babd05dfceba6b5058f Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 16 05:59:35 2013 +0200 WM/Default: Fix zero argument to dfb_core_world(), though not relevant. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 88c95ac443f87b033772aa7d5fc498351ccac9dc Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 16 05:58:29 2013 +0200 SaWMan: Fix race condition with graphics state client ref counting as done in default WM Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 683c84cfa11b0fd722592107b2993c61dab0998d Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 16 02:51:00 2013 +0200 Task: Fix back to front copy blocking issue adding CoreGraphicsStateClientFlushFlags Add CoreGraphicsStateClientFlushFlags with CGSCFF_FOLLOW_READER and CGSCFF_FOLLOW_WRITER. Add flags to CoreGraphicsStateClient_Flush(), CoreGraphicsState::Flush(), Renderer::Flush() etc. Set TASK_FLAG_FOLLOW_READER/WRITER accordingly. Use CGSCFF_FOLLOW_READER in back_to_front_copy()! commit c64b1e15a77be70f583414b2841e325c5f516ffc Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 16 02:44:47 2013 +0200 libfusion: add debug to fusion_ref_catch/throw commit 2aa6338d8450c44b15b8948593fc3552a308ac28 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 16 00:46:43 2013 +0200 Task: Add Task::AddFlags() and TASK_FLAG_FOLLOW_READER and TASK_FLAG_FOLLOW_WRITER commit 511e8c40c48462ac786276f5a7ff098486b5ab67 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jun 15 22:50:20 2013 +0200 Task: Add TaskName() method for better debug. commit 5379a4e522fa44d262f3696cd9463fbefe042bb8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jun 15 22:49:05 2013 +0200 Core: Fix shutdown issue with implicitly created graphics state objects. commit d8e0e12562a75001f50246c126377ece6fca0934 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jun 15 22:09:30 2013 +0200 Core: Set graphics state call limit (quota) after creating the call commit 088fd06928483057e5feac48ffe9de6e886d6d58 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jun 15 22:08:53 2013 +0200 Task: Add Task::DumpTree() commit d98e914f5fe93fb0a403c8f43209fee01d41e480 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jun 15 22:07:42 2013 +0200 Renderer: Add missing lock in Throttle to fix waiting. commit d448923cc6bd7fb731c0c991654c111456490c0e Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jun 15 22:06:53 2013 +0200 Renderer: add some debug to CoreGraphicsState call based Throttle commit d534c849eaafe0dc31c78200fcc3c691c0478c9f Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jun 15 05:51:05 2013 +0200 Default: Fix race condition with defaultwm_surface_display_notify commit a889bf943c0308957244c640c588689a22dad06d Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jun 15 05:50:12 2013 +0200 x11: Set CSCAPS_DISPLAY_TASKS and CSCAPS_NOTIFY_DISPLAY commit 48557270ca65760c266ecd211929c4ca5da2b4f5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jun 15 05:49:44 2013 +0200 dummy: Set CSCAPS_DISPLAY_TASKS and CSCAPS_NOTIFY_DISPLAY commit 7a76c38f9b1b3314c42e9f43429205d72a7edaf6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jun 15 05:49:12 2013 +0200 Task: Add timeout to surface locking functions commit 7facd890ae0fa9aa90538741357417a7b5eb0a9d Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jun 15 05:45:23 2013 +0200 Core: Add missing prev_task to CoreLayer for CSCAPS_DISPLAY_TASKS commit 6f706b46027d2dc2f61d22e0d674b98c09c364a8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jun 15 05:44:28 2013 +0200 Core: Fix system module info by clearing it before calling next module. commit 5891ff86b4b2d5ad1ce86d38c99d981d6b5cec90 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jun 15 05:43:33 2013 +0200 Core: Add CSCAPS_DISPLAY_TASKS and CSCAPS_NOTIFY_DISPLAY for compatibility System modules doing Task_Done() calls need to set CSCAPS_DISPLAY_TASKS. System modules doing dfb_surface_notify_display() calls need to set CSCAPS_NOTIFY_DISPLAY. Otherwise, the core will call those functions for backward compatibility. commit 44e493a2d88efc35fd92a8baaf09b71fc54a2b23 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jun 15 05:40:35 2013 +0200 Task: Fix TASK_FLAG_EMITNOTIFIES and AddNotify() when master is done but slaves are still running commit b650322d11ccf10ba637e272f72f3f9566bac270 Merge: cc56e1b 67dca88 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jun 15 05:36:25 2013 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit cc56e1bf926d4a859f8cc2671a9c5bb976fa5caf Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jun 15 05:36:06 2013 +0200 Task: default to task debug when debug is enabled commit 67dca88d71672ddf48b2944be6880fe3dc8ca869 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Jun 14 12:59:21 2013 +0200 android: fix for including directfb.mk commit 5cf734a5c577ad882c29dfa203ac3143c7976800 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Jun 12 12:42:07 2013 +0200 android: disable voodoo for now, fixes for incuding directfb.mk from other makefiles commit 6cd29dc65c6d1454e3f343b0ae99cbde9e6ac818 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Jun 11 12:36:00 2013 +0200 android: fix build, update README commit bda9c321f22d6c945d3237a77da12ac1f5e7d8bf Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 11 01:45:48 2013 +0200 Task: Fix race condition in emit() by explicitly passing state to notifyAll(), warn/dump in destructor if notifies list is not empty. commit 2720fe1f118cf1bcbd17e2e375438ef2dfb312e8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 11 01:43:38 2013 +0200 Renderer: Add task dump to timeout in generic Throttle code. commit 35c86ccde5f7073461cb701a2f206c78d5b943e6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 11 01:42:48 2013 +0200 Renderer: Add timeout to ThrottleBlocking (20sec) with task dump. commit 8762f88005c37481db0c7485045c284e144636cb Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 10 23:32:13 2013 +0200 API: Add public PPDFB_DFBCHECK(), check return value of AddRef() and Release(). commit 9c1119d23d4d2dc9e4e2206cb14dfa4465d684ba Merge: 8d9f39d d5b940b Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 7 18:53:53 2013 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 8d9f39d18142ff8daacfd403032056e6ce507b3b Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 7 18:52:46 2013 +0200 Genefx: Fix prototypes according to recent change in Renderer. commit d5b940b008cafe5f438552453ac1cbea7dc8ed4c Author: Chris Tomlinson <christ@broadcom.com> Date: Fri Jun 7 17:38:33 2013 +0100 Tests: Add dfbtest_alloc dfbtest_layer dfbtest_stereo plus a few minor updates to others. commit d916da132fdd6fa660c2ea41255e3105c0b47a4d Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 6 10:33:00 2013 +0200 Renderer: Allow an Engine to return DFB_LIMITEXCEEDED from a rendering function and write back the number of operations being done for incremental processing. This is only implemented for StretchBlit so far. commit 0ac4b2006eb670acf0841e41063a412ac9d21023 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Jun 5 16:30:27 2013 +0200 Revert "Core: Reset flip counter to zero when changing buffer mode." This reverts commit 33fbf251e2d87ea2653260a010737b77e28b1518. commit 8fb40b2a6e860251f1f49e609c79539a12ee35a1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 5 15:50:47 2013 +0200 IDirectFBSurface: Fix WaitForBackBuffer() for single buffer case. commit aa7772b12302bc6a3e816400bc91e7697b8295c2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 5 12:45:32 2013 +0200 Renderer: Avoid notification in Renderer::Flush() if cookie is zero. commit ee433a211e41d737ce40b46f17c09b49cc3dc8c3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 5 12:44:33 2013 +0200 Core: Increase timeout to 20 seconds in CoreGraphicsStateClient. commit d45b83360a72c335f543f72c4c8b6080020ff98f Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 5 12:42:55 2013 +0200 Util: Remove assertion from unimplemented dfb_clear_depth(). commit dce57f08c3cce6b50cc8e0b2eeac21af62c1823b Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Jun 4 15:25:29 2013 +0200 fix buffer count in IDirectFBSurface_WaitForBackBuffer() commit a13ffe652a122b1d6825596da9d87b53eadeb867 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Jun 4 15:11:12 2013 +0200 remove duplicate function commit ec84591a944332fe6efcb36a546c1a54632c7640 Merge: b8832b9 ecca4ff Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Jun 4 15:06:40 2013 +0200 Merge branch 'doks-kaputter-branch' of git+ssh://git.directfb.org/git/directfb/core/DirectFB Conflicts: lib/fusion/object.c src/core/layer_region.c commit ecca4ffa23b7edcea1099a9343f77815f8576b3f Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 4 15:00:24 2013 +0200 dummy: Add missing dfb_surface_flip() call to dummyFlipRegion() commit 8c7a85c4be96b551d2347e1f8495e5197373ebad Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 4 14:53:10 2013 +0200 Core: Add missing include to make surface_allocation.h build standalone. commit 5ba4cc71624fe0161c36a4d9e2302d695fae99fe Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 4 14:52:26 2013 +0200 Task: Enhance debug output in SurfaceTask::Setup() commit c3049bdd05f5ddca22c8884140e6aa95f44bf259 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 4 14:51:36 2013 +0200 Core: Use timeout in GraphicsStateClient when waiting for cookie commit 051deb23899e95211a6bbdc9aed2c31cc9e32dcf Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 4 14:49:32 2013 +0200 Core: Simplify region destructor, no need for ref counting fusion_object_get() commit eb58828790415dbd37d76d12decf28d7c6d9954a Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 4 14:47:00 2013 +0200 Core: Add optional timeout to Fifo::waitMost() commit 60c42dbb23ebcd2e891c85a8240e6b94b76e5c14 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 4 14:45:41 2013 +0200 Core: Add ToString<CoreSurfaceAccessFlags> and ToString<DirectFB::TaskFlags> commit 82a4d14624619c1571edb23ed33deffd857261e3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 4 14:44:52 2013 +0200 libvoodoo: Fix child processes not properly cleaned up commit 82d966cf9655949e0efbef953dafa5e175342ce7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 4 14:43:52 2013 +0200 libfusion: Fix fusion_object_get() which did not always set the return value, add some debug commit 324f8abf5170c112a584ab7717549b9de0c1d803 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 4 14:38:07 2013 +0200 libdirect: Add direct_config_get_int_value_with_default() commit 6e365105e363c3b93c453d8e8d1576db3ea55ce4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 4 14:34:37 2013 +0200 libdirect: Add D_FLAG_PRINTFn() for easy ToString for flags. commit e7cf0e115383da489d9df83d4de7513a51a389ff Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 3 14:47:42 2013 +0200 Options: Add 'gfxcard-stats=[ms]' to print GPU usage statistics. Drivers should call dfb_gfxcard_switch_busy() when emitting commands implicitly. Example output with gfxcard-stats=500 (*) busy 508348 / 508348 => 100.0% (*) busy 524225 / 524225 => 100.0% (*) busy 521928 / 521928 => 100.0% (*) busy 515693 / 515693 => 100.0% Anti-aliased Text 3.041 secs (* 114.830 KChars/sec) [ 98.3%] (*) busy 480382 / 517720 => 92.7% (*) busy 533396 / 533396 => 100.0% (*) busy 516168 / 516168 => 100.0% (*) busy 532670 / 532670 => 100.0% (*) busy 504957 / 504957 => 100.0% Anti-aliased Text (blend) 3.059 secs (* 114.154 KChars/sec) [ 98.0%] (*) busy 470045 / 615574 => 76.3% (*) busy 628891 / 628891 => 100.0% (*) busy 768692 / 768692 => 100.0% (*) busy 556269 / 556269 => 100.0% (*) busy 608801 / 608801 => 100.0% (*) busy 8047457 / 8047457 => 100.0% Fill Rectangle 10.751 secs (* 224.325 MPixel/sec) [ 17.9%] (*) busy 461287 / 603739 => 76.4% (*) busy 538395 / 538395 => 100.0% (*) busy 793167 / 793167 => 100.0% (*) busy 716207 / 716207 => 100.0% (*) busy 9856162 / 9856162 => 100.0% commit 0644f2e4a4c8b9eba014b2b9c19e7009800b416a Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 3 14:17:36 2013 +0200 Core: Fix READ flag missing lately for destination buffer in case of blending. commit b8832b915c030cf128bc0687b6ead7972d5a610b Author: Marek Pikarski <mass@directfb.org> Date: Thu May 30 13:36:09 2013 +0200 sawman: remove doubled debug message commit 6af32aefcc6e9b2050b91cf65bc8c0597fcb02e7 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed May 29 15:55:00 2013 +0200 gfx: prevent reading past the last pixel in scale_line() There could be a better fix, I guess that x_step is too inaccurate with some scaling factors. commit 0ef406fbff2106d65e27abfe3e26bdaf23bf02a0 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue May 28 13:08:20 2013 +0200 shutdown: remove bogus assumption in call_tls_destroy() commit a3f5d64a2fe27f21752b3c30b694f5f9e9b78bb4 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue May 28 13:06:20 2013 +0200 shutdown: use direct_list_foreach_safe() in containers_remove_input_eventbuffer() commit f952f25a9619748175570c8b739a945b519ce9b7 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue May 28 12:09:42 2013 +0200 shutdown: use direct_list_foreach_safe() where appropriate commit 11c73b0029f112d371a64408598dbd8c402d160f Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 28 12:03:59 2013 +0200 Core: Fix warning. commit 113005622d96ff8b6fac80021a2bf6850286dd1f Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 28 12:01:11 2013 +0200 Core: Fix argument warning. commit 5e30da87751ec644caa5cab6fc6dda27a95cf8a2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 27 14:11:33 2013 +0200 SaWMan: Fix crash with cursor updates. commit 0065334a1ba43b73c8d26fdaaa753da641196c67 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 27 13:49:14 2013 +0200 Core: Fix shutdown deadlock caused by surface lock held by blocked thread. commit 278c778c70d06ff893125423dfb9da325ee4b622 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 27 13:48:32 2013 +0200 Core: Fix another shutdown issue. commit 3ace9840773b188033e32845ac65e43360e0f30b Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 27 13:49:14 2013 +0200 Core: Fix shutdown deadlock caused by surface lock held by blocked thread. commit 178776a4cc531be55404724c0b7ecb60ec986330 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 27 13:48:32 2013 +0200 Core: Fix another shutdown issue. commit 574f48db3e0f6fff9950236e94351ef9a814b1d3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 22 15:10:35 2013 +0100 API: Add preliminary API for engine control. commit 020b36d5926f93e0f77fc67ccbb22e1cfe4a55ae Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 23 12:30:06 2013 +0100 IDirectFBSurface: Check for shutdown in DrawString() and DrawGlyph(). commit f93e6d08658bce1e068a065bf6b4e009912bd184 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 22 17:51:11 2013 +0100 libfusion: In fusion_object_get() check for refs > 0 before returning the object. commit 9d1b1581ab082b93457032a0f047fa927acbef4c Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 22 13:35:58 2013 +0100 WM: Replace linked list in deactivate_all by enumerating over all objects in pool. Signed-off-by: dok <dok@directfb.org> commit 3e3f474eb84aa66ca200408d881a509ae1f8e0fb Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 22 13:25:52 2013 +0100 Core: Add ToString<DFBSurfaceFlipFlags> and ToString<DFBDisplayLayerBufferMode> Signed-off-by: dok <dok@directfb.org> commit afb4e48c30517e9ce768cbbbab351b7c1307bf9a Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 22 13:24:49 2013 +0100 include: Add DFBSurfaceFlipFlags to directfb_strings.h Signed-off-by: dok <dok@directfb.org> commit af416732c3b0185cf654a19c5db6f4335110c42c Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 22 13:19:34 2013 +0100 libfusion: Add single app ref tracing code for 'trace-ref' option. commit 312dc67093e5d19ad5f072fdbb06ab4765b21ea0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 22 11:44:53 2013 +0100 configure: Fix fusion kernel module default. commit 17e288d67672a0ea3c4813d4b12dfb7f2bc1e91a Author: Andreas Shimokawa <andi@directfb.org> Date: Tue May 21 17:05:23 2013 +0200 drmkms: replace DLCONF_ with CLRCF_ where appropriate. commit 05a51e5393b47e0c3675232e6a02b2019b7046b0 Author: Kazunori Kobayashi <kkobayas@igel.co.jp> Date: Tue May 14 15:36:13 2013 +0900 drmkms: fix framebuffer allocation size config.size.h has the real height of an image, so framebuffer size calculation for packed color formats is done successfully. However the framebuffer size in planar or semi-planar formats is set incorrectly because the chroma plane size isn't added to the size. This patch multiplies the pitch by drm_fake_height, which is takes into account the size of the chroma plane. Signed-off-by: Kazunori Kobayashi <kkobayas@igel.co.jp> commit 3997bc889a3f11318b8453a71f3bc1cd51b7b288 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue May 21 16:13:25 2013 +0200 drmkms: in drmkmsPlaneTestRegion() and drmkmsPlayeSetRegion() check if colorkey and opacity are supported. commit a1fd2e4dde9f4585da4b00dc1848879d9ee1a68a Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 21 02:39:57 2013 +0200 Core: Add option 'dfb-error-shutdown-timeout' to propagate shutdown timeout via IDirectFB::Release(). Fix recent shutdown logic bug missing dfb_gfx_cleanup(). Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 4fff47e5f0b04f70ef7086441cc94b913832917e Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 21 02:35:40 2013 +0200 IComaComponent: Allocate listeners array only if num_notifications is != 0. Fix leak of listeners array. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit b398436fc392c358ed17b665c38a61bb8b4c7c0b Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 21 01:54:17 2013 +0200 GP2D: Enable blending when destination has no alpha. Fix font rendering. commit 9d699262730733912f685d320f95adc5aad775be Author: André Draszik <andre.draszik@st.com> Date: Thu May 16 13:50:17 2013 +0100 configure: use automatic variable names in AC_ARG_ENABLE()/AC_ARG_WITH() Signed-off-by: André Draszik <andre.draszik@st.com> commit 787bef8ff4dd1fb75ba198c03e811e80b70dbf6a Author: André Draszik <andre.draszik@st.com> Date: Thu May 16 13:48:22 2013 +0100 configure: remove superfluous code This aligns AC_ARG_ENABLE() and AC_ARG_WITH() calls with the rest of this file Signed-off-by: André Draszik <andre.draszik@st.com> commit e5c71e760813844c8c2b7b7ac3827407d29f616a Author: André Draszik <andre.draszik@st.com> Date: Thu May 16 13:21:40 2013 +0100 configure: fix various configure options related to fusion sound The name of the variables is different than what the code checked when those options are specified on the command line. The variable name is the option, prefixed with enable_ and dash replaced by underscore At the same time, fix some related typos. Signed-off-by: André Draszik <andre.draszik@st.com> commit bd0b2b97a2a0592b15bc4f240d80db9447a5e5a6 Author: André Draszik <andre.draszik@st.com> Date: Thu May 16 13:09:54 2013 +0100 configure: fix use of undeclared variable have_fusionsound In addition, HAVE_FUSIONSOUND is set in a different place already, based on $enable_fusionsound Signed-off-by: André Draszik <andre.draszik@st.com> commit 1db17055c6a1c2fc9c9dbd5d13a22841bff78340 Author: André Draszik <andre.draszik@st.com> Date: Thu May 16 13:04:38 2013 +0100 configure: fix wave music provider and sound driver configuration The wave music provider is now forced to be built if the sound driver was enabled, and otherwise based on the --with-wave configure option In addition, the wave sound driver was not built previously, even if enabled during configure Signed-off-by: André Draszik <andre.draszik@st.com> commit 573630d754cada180f9d4f0d7a8305ff435eb2c8 Author: André Draszik <andre.draszik@st.com> Date: Thu May 16 13:15:55 2013 +0100 configure: fix --enable-multi-kernel configure option Previously, adding --enable-multi-kernel to the configure options disabled use of the fusion kernel device Signed-off-by: André Draszik <andre.draszik@st.com> commit b0f203c50a0dd6b1ae74d82c7dfb940687c1767a Author: André Draszik <andre.draszik@st.com> Date: Thu May 16 13:00:08 2013 +0100 configure.in: use AC_HELP_STRING() and properly quote all strings Signed-off-by: André Draszik <andre.draszik@st.com> commit 7d4a6c7750d3061770835974032bf36a17fbb7cc Author: André Draszik <andre.draszik@st.com> Date: Thu May 16 13:51:20 2013 +0100 configure: --with-gfxdrivers=all does not build all drivers Signed-off-by: André Draszik <andre.draszik@st.com> commit 35a976ff9fc40669b85781853b52f2ea75c5613a Author: André Draszik <andre.draszik@st.com> Date: Thu May 16 13:50:55 2013 +0100 configure: fix --enable-gstreamer option parsing Previously, it was impossible to enable gstreamer using --enable-gstreamer Signed-off-by: André Draszik <andre.draszik@st.com> commit 25424135e769d73d1b59667210a9e7d24c58c2e7 Author: André Draszik <andre.draszik@st.com> Date: Thu May 16 13:50:33 2013 +0100 configure: fix MNG configure option typo Signed-off-by: André Draszik <andre.draszik@st.com> commit cd3b81eae2d735bb1223f73a790509007578cdd8 Author: André Draszik <andre.draszik@st.com> Date: Thu May 16 10:55:11 2013 +0100 whitespace Signed-off-by: André Draszik <andre.draszik@st.com> commit 326484c0ac93f815bcccb801502770d8ed96fa85 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 15 17:24:05 2013 +0200 Core: Fix software fallbacks in gfxcard code. Signed-off-by: dok <dok@directfb.org> commit 87514a7129cd13142be10db5701ff33a47cedd88 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 15 17:15:51 2013 +0200 Core: Stop dispatcher again in core shutdown Signed-off-by: dok <dok@directfb.org> commit c48ab9f85a460ba45997a3363d9a24d7831385c5 Merge: 5223490 8c8f25a Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 27 13:08:45 2013 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 9209d9849dccde9aa373770683e0492e11ea07b8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 23 12:30:06 2013 +0100 IDirectFBSurface: Check for shutdown in DrawString() and DrawGlyph(). commit 846cc60e2309b35688673366405063c9d89fb1dc Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 22 17:51:11 2013 +0100 libfusion: In fusion_object_get() check for refs > 0 before returning the object. commit a0ee2b0d13086a69b12797b1bec69e136b377304 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 22 15:10:35 2013 +0100 API: Add preliminary API for engine control. commit 50fcfce8477d4095fe897d46001bf896bc1c119f Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 22 14:59:31 2013 +0100 include: remove accidentally added include which is not there yet commit 77fa33c1cdd8dd99cbf56513ccc225e5c9383fb9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 22 13:48:20 2013 +0100 Task: Comment out debug dump of all tasks every 1000 pulls. Signed-off-by: dok <dok@directfb.org> commit 886c514be5571d3a33a13d6d61ba2802f5a2a987 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 22 13:47:28 2013 +0100 Core: Task manager and Renderer fixes, updates. Replace follower code by simply checking for different flags (RUNNING, DONE) in the 'notifies' list. Add name to each Renderer for later classification and assigning engine configs from directfbrc. Add TaskManager_DumpTasks(). Use local flip count for WaitForBackBuffer() to fix the newly asynchronous Flip call. Signed-off-by: dok <dok@directfb.org> commit 4ea05a36bce34d34506c590401842147d1c050c4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 22 13:35:58 2013 +0100 WM: Replace linked list in deactivate_all by enumerating over all objects in pool. Signed-off-by: dok <dok@directfb.org> commit c0df442b0c7b3247d266c059a2651925e867a6ea Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 22 13:28:56 2013 +0100 Core: When no surface client is attached, send frame notification immediately. Signed-off-by: dok <dok@directfb.org> commit 9006dc9f3fda57168f1195622349390d357ee14f Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 22 13:25:52 2013 +0100 Core: Add ToString<DFBSurfaceFlipFlags> and ToString<DFBDisplayLayerBufferMode> Signed-off-by: dok <dok@directfb.org> commit 0ee28d57f3ce63e2f038011f1caf65beae3db357 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 22 13:24:49 2013 +0100 include: Add DFBSurfaceFlipFlags to directfb_strings.h Signed-off-by: dok <dok@directfb.org> commit 1048cdd804d7858c2a10fc314d292126307b487e Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 22 13:19:34 2013 +0100 libfusion: Add single app ref tracing code for 'trace-ref' option. commit f448b6310b8b477edafabb74a8bdb0ae9fb0bcce Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 22 11:44:53 2013 +0100 configure: Fix fusion kernel module default. commit ab97a887d97b8b7abe45dbe81e0e24683a3c6cdc Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 22 01:09:50 2013 +0100 Core: Add ToString<Task> and ToString<TaskState> Signed-off-by: dok <dok@directfb.org> commit 4c13d95d07f5eace4830876f21c9407600be11fd Author: Andreas Shimokawa <andi@directfb.org> Date: Tue May 21 17:05:23 2013 +0200 drmkms: replace DLCONF_ with CLRCF_ where appropriate. commit 2dbc1d0af598270af511fe53acfd6d76b9bdc3fb Author: Kazunori Kobayashi <kkobayas@igel.co.jp> Date: Tue May 14 15:36:13 2013 +0900 drmkms: fix framebuffer allocation size config.size.h has the real height of an image, so framebuffer size calculation for packed color formats is done successfully. However the framebuffer size in planar or semi-planar formats is set incorrectly because the chroma plane size isn't added to the size. This patch multiplies the pitch by drm_fake_height, which is takes into account the size of the chroma plane. Signed-off-by: Kazunori Kobayashi <kkobayas@igel.co.jp> commit 712503a307160b686dfcdbe5844f5d5258f0c469 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue May 21 16:13:25 2013 +0200 drmkms: in drmkmsPlaneTestRegion() and drmkmsPlayeSetRegion() check if colorkey and opacity are supported. commit ed89359e25564438ab2448bce4c81100b3b8149a Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 21 02:39:57 2013 +0200 Core: Add option 'dfb-error-shutdown-timeout' to propagate shutdown timeout via IDirectFB::Release(). Fix recent shutdown logic bug missing dfb_gfx_cleanup(). Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit d6e6071a1231afe8af152b779e794eb6359cd4e8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 21 02:38:18 2013 +0200 Core: Add some debug to Throttle. Fix warning in CoreSurface_real. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 0c4718fc12cc56a9b8a32b158b620d1c70906cf2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 21 02:35:40 2013 +0200 IComaComponent: Allocate listeners array only if num_notifications is != 0. Fix leak of listeners array. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit e0c1c7aecf6bfa162a7b50a446586be8bf2d1ac1 Merge: a3c5e29 93f01e7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 21 01:54:56 2013 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit a3c5e29d1885b64e36b7325782b633107ed04e53 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 21 01:54:17 2013 +0200 GP2D: Enable blending when destination has no alpha. Fix font rendering. commit 93f01e7dd5a757011cb8ebc3fe54fbf1969636e1 Author: André Draszik <andre.draszik@st.com> Date: Thu May 16 13:50:17 2013 +0100 configure: use automatic variable names in AC_ARG_ENABLE()/AC_ARG_WITH() Signed-off-by: André Draszik <andre.draszik@st.com> commit f11f13d2c3c585720d9a0d63f52e07f53160366e Author: André Draszik <andre.draszik@st.com> Date: Thu May 16 13:48:22 2013 +0100 configure: remove superfluous code This aligns AC_ARG_ENABLE() and AC_ARG_WITH() calls with the rest of this file Signed-off-by: André Draszik <andre.draszik@st.com> commit 2715680f8102534f363138eba3dea10b5d614ffe Author: André Draszik <andre.draszik@st.com> Date: Thu May 16 13:21:40 2013 +0100 configure: fix various configure options related to fusion sound The name of the variables is different than what the code checked when those options are specified on the command line. The variable name is the option, prefixed with enable_ and dash replaced by underscore At the same time, fix some related typos. Signed-off-by: André Draszik <andre.draszik@st.com> commit ff07c1a1dff6f3f8de2737ebc5ba83f286067472 Author: André Draszik <andre.draszik@st.com> Date: Thu May 16 13:09:54 2013 +0100 configure: fix use of undeclared variable have_fusionsound In addition, HAVE_FUSIONSOUND is set in a different place already, based on $enable_fusionsound Signed-off-by: André Draszik <andre.draszik@st.com> commit cd6393a82ef9b186e19d006496ef195e33845b05 Author: André Draszik <andre.draszik@st.com> Date: Thu May 16 13:04:38 2013 +0100 configure: fix wave music provider and sound driver configuration The wave music provider is now forced to be built if the sound driver was enabled, and otherwise based on the --with-wave configure option In addition, the wave sound driver was not built previously, even if enabled during configure Signed-off-by: André Draszik <andre.draszik@st.com> commit 0c3eea9ed770020815c57d7d351bdfc7d25b8089 Author: André Draszik <andre.draszik@st.com> Date: Thu May 16 13:15:55 2013 +0100 configure: fix --enable-multi-kernel configure option Previously, adding --enable-multi-kernel to the configure options disabled use of the fusion kernel device Signed-off-by: André Draszik <andre.draszik@st.com> commit 1985e3031abd51e2ee5845d89910edee180a7e11 Author: André Draszik <andre.draszik@st.com> Date: Thu May 16 13:00:08 2013 +0100 configure.in: use AC_HELP_STRING() and properly quote all strings Signed-off-by: André Draszik <andre.draszik@st.com> commit c4ccce41dc527ef5506af7f1a9c75d0da2a30517 Author: André Draszik <andre.draszik@st.com> Date: Thu May 16 13:51:20 2013 +0100 configure: --with-gfxdrivers=all does not build all drivers Signed-off-by: André Draszik <andre.draszik@st.com> commit 4c9a40546e4cbac47b21d3221d0eb0a6c3fdce9b Author: André Draszik <andre.draszik@st.com> Date: Thu May 16 13:50:55 2013 +0100 configure: fix --enable-gstreamer option parsing Previously, it was impossible to enable gstreamer using --enable-gstreamer Signed-off-by: André Draszik <andre.draszik@st.com> commit 6891f7fc29e591d2e21e3f641a652515b3e75764 Author: André Draszik <andre.draszik@st.com> Date: Thu May 16 13:50:33 2013 +0100 configure: fix MNG configure option typo Signed-off-by: André Draszik <andre.draszik@st.com> commit 0bbbcb9cdb808abdf2de0bf0b9fffb951f225b45 Author: André Draszik <andre.draszik@st.com> Date: Thu May 16 10:55:11 2013 +0100 whitespace Signed-off-by: André Draszik <andre.draszik@st.com> commit 3eec25dae29de2a0ab45cdef39288cbafe821e73 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 15 17:24:05 2013 +0200 Core: Fix software fallbacks in gfxcard code. Signed-off-by: dok <dok@directfb.org> commit b203b67a94f7adc4f33da05b7f97615bcfa150f2 Merge: 5a45664 5223490 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 15 17:18:41 2013 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB Conflicts: src/core/Renderer.h commit 5a4566422224b74d56020248ab5abafbc1775601 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 15 17:16:19 2013 +0200 Renderer: fix throttle ref counting Signed-off-by: dok <dok@directfb.org> commit b9a9ada56461728a41fcc97265349f796e18b15e Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 15 17:15:51 2013 +0200 Core: Stop dispatcher again in core shutdown Signed-off-by: dok <dok@directfb.org> commit 923e37381d63f448118d4e57600fe973c8166175 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 15 17:12:48 2013 +0200 Core: Enhance flipping / timestamp code Move flipping cruft into CoreSurface::Flip2(), add timestamp to CoreWindow::Repaint(), keep last frame time in surface for clients attaching... Signed-off-by: dok <dok@directfb.org> commit 522349046b437a7d03665cbc8cb42c97dca6c69d Author: André Draszik <andre.draszik@st.com> Date: Wed May 15 14:43:01 2013 +0100 Renderer/Throttle: don't delete this if it is still alive Throttle::unref() should only delete 'this', if the ref_count went down to 0, not when ref_count is != 0. This fixes various segfaults. Signed-off-by: André Draszik <andre.draszik@st.com> commit 8c8f25a06648437bbb262849ab93ff267776c315 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 15 15:26:50 2013 +0200 sawman: Fix crah with latest ref counting for graphics state client. Signed-off-by: dok <dok@directfb.org> commit 542980534f5b89671035e6614e9552983a1ca152 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 15 15:25:28 2013 +0200 libfusion: Always count down dead counter even if one. Signed-off-by: dok <dok@directfb.org> commit 5fc309380d86a9c1ab0c2322c6edf65a879d3b99 Merge: 9a3744b f4aab13 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 15 15:22:21 2013 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 9a3744b161d5701003bea6f014dd79155ae689f9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 15 15:21:51 2013 +0200 libfusion: Add debug and magic to skirmish. commit 8f780ecfca3a7a94eb30eff4cf224bdbee4748fe Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 15 15:03:29 2013 +0200 Task: Fix copy'n'paste bug in TransferTask destructor. commit f4aab13d4c5bf56605a3377833e8a3b7bcc0c5c2 Merge: ae691bd 94399df Author: Andreas Shimokawa <andi@directfb.org> Date: Tue May 14 18:16:03 2013 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit ae691bd4fda5300fba83bdd7ca1daef681b6dba6 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue May 14 18:09:45 2013 +0200 fontprovider/ft2: fix blending problems with font-format=ARGB/AiRGB when mono mitmaps glyphs are rendered by honouring DSCAPS_PREMULTIPLIED TODO: review this for all pixelformats commit 94399df8934e62b16bfdad2f49e1583fda462ab4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun May 12 01:07:02 2013 +0200 libfusion: Nicen the output of ToString<FusionObject> Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 3a4afe2bbf5135448da94fa6cbc675c4067b6b85 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat May 11 20:24:16 2013 +0200 libdirect: Added FIXME to Direct::Magic about magic value generation. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 9e768ce57ecdc111908a7bfc37d7511e3edfd844 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat May 11 13:37:56 2013 +0200 Core: Print creation stack of remaining objects. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit e956d929568aeb3d08bdd56ecc83f8d714228feb Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat May 11 13:36:56 2013 +0200 IDirectFBEventBuffer: Fix missing detach of surfaces on Destruct(). Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 55c60329082fe16dd60ac6e1cc74f01ff99a1340 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat May 11 03:11:42 2013 +0200 WM/SaWMan: Fix CoreGraphicsState lifecycle. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit fd336def88a2f9bd65958d8b6f2e6cf246fa0b63 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat May 11 03:10:44 2013 +0200 WM/Default: Fix CoreGraphicsState lifecycle. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 4605afae67c313a84bb0bb6a35bd3fa1ebc240dc Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat May 11 03:10:03 2013 +0200 Util: Allow dfb_gfx_copy_regions_client() with NULL client to use TLS one. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 4bb29cc1c70d44ce328c82e425a0e432175b01c6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat May 11 03:08:32 2013 +0200 Renderer: More Flush() with cookie support, adding Throttle::waitDone() called in synchronous case. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 1f09eebf146b25d3bc17e37f0dc788171d37ca77 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat May 11 01:50:17 2013 +0200 Task: Add FIXME about singleton initialisation of TaskThreads for base Task's Push() implementation. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 581892322c42874528dffaf759dcc95d68eb8bb4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat May 11 01:49:18 2013 +0200 Core: Add debug to few dfb_state functions. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 68f29896e981f20b75e2b4e79f7e4ab97df1f762 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat May 11 01:48:30 2013 +0200 Core: Print pbject pointer in list of zombies. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit a3681e6f9c3a68b948fca2fd1e18a9c3f171026f Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat May 11 01:47:02 2013 +0200 IDirectFBSurface: Add SetFrameTimeConfig() to specify frame interval/max advance on renderer or client side. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 66b332dda4ed52d0d87d43be2a5874b1aeaa7aaf Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat May 11 01:30:06 2013 +0200 Core: Add dfb_core_wait_all() to block til objects are gone or timeout is reached. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 392ef36f3b4d78597f6b11a72ddec4f93c902dd3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat May 11 01:27:47 2013 +0200 WM: Add dfb_wm_deactivate_all_stacks() to call wm_set_active( false ). Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 0ee0c7c00ce396bc77581126972c64266643d175 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat May 11 01:23:08 2013 +0200 CoreScreen: Add dfb_screen_get_frame_interval() to retrieve an interval setting depending on encoder frequency. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 4096c2afb30b44246e1e64f5cdc63bea6bdd161e Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat May 11 01:08:56 2013 +0200 dummy: Add dummyRemoveRegion() to finish any pending display requests/tasks. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 3a84f57dd13cb95654638505b53c120b725575ea Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat May 11 01:07:57 2013 +0200 Config: Add option 'screen-frame-interval' to specify default. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 1e189f3b9ac8143314ed549ab7348d3acf3b0bc6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat May 11 01:05:22 2013 +0200 CoreGraphicsStateClient: Keep throttle and delete in Deinit. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit b98521d44afef7fb31b9590bf7c8c8312c5f33fb Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat May 11 01:03:58 2013 +0200 CoreGraphicsState: Use fusion_object_pool_set_describe() to provide object to string method. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit ba6a3bfcf735c530db4a06e4739298096a7796f2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat May 11 01:00:51 2013 +0200 Renderer: Move Throttle out of Renderer (no more sub class), add DFB_Throttle in coretypes.h Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 70b37e2d50ad4fc5fac5f7b18e383e2eac9e5f44 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat May 11 00:59:47 2013 +0200 Core: Add ToString<CoreSurface> and C wrapper. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 43eb01f136ab37efa1c6a42cad80e07205b0effd Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat May 11 00:59:00 2013 +0200 libfusion: Add describe function pointer to object pool for describing an object as a string. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit b91827955222afabedb81671b787d64f2d22ec7e Merge: b22161d 3fe8225 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat May 11 00:14:40 2013 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit b22161d51fc104dfc6067d8c0b1d36ed6a739c15 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat May 11 00:14:26 2013 +0200 libdirect: When unloading module, check for valid handle, add debug. This is actually a workaround for a module being loaded as a dependency of another, which is quite unusual and should be avoided. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 3fe82255e99fe5a9bd9c64a86fd2e78407959c71 Author: André Draszik <andre.draszik@st.com> Date: Thu May 2 15:28:05 2013 +0100 convert: minor optimisation to conversion from VYU Signed-off-by: André Draszik <andre.draszik@st.com> commit dede1b13cc32b0a7c56dd37f69f1b7df5e6946fd Author: André Draszik <andre.draszik@st.com> Date: Thu May 2 14:47:04 2013 +0100 convert: fix (A)VYU conversion to RGB24 and RGB16 Signed-off-by: André Draszik <andre.draszik@st.com> commit fd1b56f7f8fd1260c029449bcab8e725b5da4b08 Author: André Draszik <andre.draszik@st.com> Date: Thu May 2 14:41:03 2013 +0100 convert: fix YUV444P conversion to RGB24 Signed-off-by: André Draszik <andre.draszik@st.com> commit 2b8e2085c96fef2f64ace367427a07dc936c0e11 Author: André Draszik <andre.draszik@st.com> Date: Thu May 2 13:19:02 2013 +0100 generic: fix erroneous use of BIG_ENDIAN instead of WORDS_BIGENDIAN Some of the DSPF_VYU code used BIG_ENDIAN instead of WORDS_BIGENDIAN. Signed-off-by: André Draszik <andre.draszik@st.com> commit 2c644751b2e6180d1d87bbb5dc3b9904904c2ff3 Author: André Draszik <andre.draszik@st.com> Date: Fri May 3 09:45:51 2013 +0100 generic: fix YCbCr color calculation from RGB for NV21 Cb and Cr were swapped. Signed-off-by: André Draszik <andre.draszik@st.com> commit a4bcac646738d6cae01e2aee09711188edd0efef Merge: f07f29d 1c9d16f Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat May 4 21:55:52 2013 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit f07f29ddf8889d166e748c6a7bf48e788ea46eca Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat May 4 21:54:57 2013 +0200 Core: Fix destination/source updates by moving up check before flag propagation. commit 1c9d16f285ed85c6bb888e1034143ebcfa0d9d73 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Apr 30 18:05:39 2013 +0200 X11: Add option x11-sync for XSync() after each X11 call. commit 08b19961346d525cfbc1194077d5e841e0204d41 Merge: 433a6de 8deaf36 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Apr 30 18:04:47 2013 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 8deaf36412cee5e54b3b432ed5d18ec5ea445c70 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Apr 30 05:01:34 2013 +0200 libfusion: Fix very rare case of world->dispatch_loop not set when dispatch thread calls direct_thread_lock() This has happened in one of over 4000 test runs on an embedded device. commit c9655fe7b963d200aada64ee2ea4a7978927c79a Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Apr 30 02:05:09 2013 +0200 Core: Fix preallocated surfaces with DSCAPS_STATIC and GPU lock with prealloc pool not supporting it. commit 3f2a0cc7b6007ebaac96cb637b2a84571142ca00 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Apr 30 01:51:40 2013 +0200 make: Add GL_DFB_BASE_LIBS and GLES2_DFB_BASE_LIBS to libs_deps.make fixing gl test app linkage. commit 433a6de592722a7fd76f0f5199dea324376eaff6 Merge: 95ec1dd 5e6c195 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Apr 30 01:32:30 2013 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 5e6c19565ce56fd966115d4d85b2ec52c28cc3b3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Apr 29 18:05:06 2013 +0200 proxy: Send Release message in IDirectFBWindows_Requestor_Destruct. commit 95ec1dddb1dddfb7c1b9aff95a08bf2ebe103cbc Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Apr 29 18:05:06 2013 +0200 proxy: Send Release message in IDirectFBWindows_Requestor_Destruct. commit aee11a09ad7cbc137e72353d2d9026b4a8edede1 Author: Marek Pikarski <mass@directfb.org> Date: Mon Apr 29 13:58:51 2013 +0200 sawman: remove misleading SWMSM_SMOOTH_SW scaling option, introduce SWMSM_SMOOTH instead which provides smooth scaling in hardware commit e22096f3dd5751e789e2aedb89d4a65d74a3a091 Merge: 7fd0c2d 4b0fc17 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 28 14:58:28 2013 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 7fd0c2d5b03a251b7ed7f2a1450d1ad26de12f5c Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 28 14:57:50 2013 +0200 config: Default to X11 if DISPLAY is set, or drm/fbdev if permitted commit 4b0fc1724722ae917968bd73500afee1cafa1031 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Apr 24 16:46:26 2013 +0200 x11: during shutdown, make sure not to dereference layer_data when NULL commit 2df2ac4c88341e8191dc88e1d6ae5aaf3fcda021 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Apr 23 18:48:44 2013 +0200 libdirect: remove wrong assertion in direct_signals_shutdown() commit 212f7d023251828340eca2f72a47f97fee3300af Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Apr 23 10:14:07 2013 +0200 ignore commit a47fa84d69d386331c857f9f241861e647e0fc2d Merge: b373a8c 184ef7d Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Apr 23 09:21:41 2013 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit b373a8c134b0a7add70b6a4506467fcfc9638572 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Apr 23 09:21:01 2013 +0200 configure: Add --disable-multi-kernel to configure to disable fusion kernel module for multi app. commit 184ef7d99db2a30d39f2228b2aeba88dc364230e Author: Marek Pikarski <mass@directfb.org> Date: Fri Apr 19 10:29:28 2013 +0200 direct: getaddrinfo() with AI_CANONNAME hint fails on some platforms, thus give it a second chance without it commit aa6a4009030ff029d880e44e43374ddb6aac75ce Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 19 06:15:47 2013 +0200 libfusion: Shutdown fix for user fusion, destroy call hash before shm pool. commit 6a789779be4c2d4d6e75f2de0563dcd036e1113b Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 19 06:10:23 2013 +0200 libfusion: Add simple implementation for user fusion skirmish (init2 with true). commit d77ee3e809b6084fa11ea4567808c46ed7d389df Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 19 05:13:53 2013 +0200 libfusion: Implement new ref counting for user space fusion. commit 520d050d7294e6b209e15303ea3ae4136fe19947 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 19 04:30:06 2013 +0200 Generic: Fix compiler warning. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit a04950bd32f3008eb354b35e95cdfd2934c55f8e Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 19 04:28:23 2013 +0200 X11: Cleanups. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 76ccd31a04f7633147431c6585de7cb6b0af0f25 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 19 04:27:32 2013 +0200 Generic: Fix crash due to recent direct_log_lock() changes, get default log first, then pass to other functions. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit d0b2ae6304c1745e6da08e60e918fb08531ac8dd Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 19 04:26:23 2013 +0200 Task: Asynchronous WaitIdle() rework, get rid of TaskManager::Sync() Implement asynchronous WaitIdle(), i.e. no blocking in dispatcher. Add cookie to CoreGraphicsStateClient_Flush(), CoreGraphicsState::Flush(), Renderer::Flush() etc. When operations are finished dfb_graphics_state_dispatch_done() is called which unblocks waiters via local reaction. Remove CoreDFB::WaitIdle(). Remove TaskManager::Sync(). Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 785630d6e5cf8c26a09064689bb8dd3c077b3594 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 19 04:11:09 2013 +0200 Core: Cleanup dfb_surface_buffer_dump_type(). Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 2cf245d3f7be4e70f0e1de6c7217df8941bd6486 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 19 04:09:37 2013 +0200 Core: Add dfb_graphics_state_dispatch_done( cookie ), add CGSNF_DONE and cookie to CoreGraphicsStateNotification. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit c9ac4acef33ad83b4d97d5a1daa187dbf71aba94 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Apr 16 15:35:44 2013 +0200 libdirect: Print error if write() to log failed. commit 0c407d4f4fb394c153efdf315f1249a886fc1971 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Apr 16 15:03:34 2013 +0200 generic: implement clipping for strechblit in all rotation/flipping cases commit b15970a16c65d7d30d495e6d209947c60e5846e5 Author: Marek Pikarski <mass@directfb.org> Date: Tue Apr 16 11:09:56 2013 +0200 direct: fix segfault when second DirectFB app is started from the same process after releasing the DirectFB instance from the first app commit 25132e718c00bb4b65d0f4f59520692d203b83b2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 14 20:29:51 2013 +0200 Task: Implement real throttling of the source when too many graphics operations are pending, gets rid of ugly usleep in Renderer::updateLock() :) Add Throttle interface that can be passed to Renderer constructor to get callbacks about throttling, with one implementation using fusion_call_set_quota() and the other simply blocking on wait queue, the former is used for indirect rendering via CoreGraphicsState object with FusionCall, the latter is used when the master renders from its main thread, or none throttling is used when running within the Fusion Dispatch thread. Add SurfaceTask::AddHook() to register a callback interface for setup() and finalise() calls within the Task Manager thread, used by the Throttle to count the running tasks and adjust the value... Also remove other blocking call in GenefxEngine. Task based rendering is completely free of blocking calls except for the source being throttled when needed (avoiding sleeps in dispatch threads etc...) Debug, cleanups... == Throttle in action: Benchmarking 256x256 on 640x464 ARGB (32bit)... (-) [Main Thread 113680.005,970] ( 1196) DirectFB/Renderer/Throttle: Renderer::Throttle::Throttle( 0x1595d50 ) (-) [Main Thread 113680.151,528] ( 1196) DirectFB/Renderer/Throttle: Renderer::Throttle::AddTask( 0x154caf0, task 0x1596f90 ) (-) [Task Manager 113680.151,583] ( 1200) DirectFB/Renderer/Throttle: Renderer::Throttle::setup( 0x154caf0, task 0x1596f90 ) (-) [Task Manager 113680.151,595] ( 1200) DirectFB/Renderer/Throttle: -> count 1 (-) [Task Manager 113680.151,749] ( 1200) DirectFB/Renderer/Throttle: Renderer::Throttle::finalise( 0x154caf0, task 0x1596f90 ) (-) [Task Manager 113680.151,755] ( 1200) DirectFB/Renderer/Throttle: -> count 0 (-) [Main Thread 113680.152,784] ( 1196) DirectFB/Renderer/Throttle: Renderer::Throttle::AddTask( 0x154caf0, task 0x1596f90 ) (-) [Task Manager 113680.152,801] ( 1200) DirectFB/Renderer/Throttle: Renderer::Throttle::setup( 0x154caf0, task 0x1596f90 ) (-) [Task Manager 113680.152,805] ( 1200) DirectFB/Renderer/Throttle: -> count 1 (-) [Task Manager 113680.152,881] ( 1200) DirectFB/Renderer/Throttle: Renderer::Throttle::finalise( 0x154caf0, task 0x1596f90 ) (-) [Task Manager 113680.152,885] ( 1200) DirectFB/Renderer/Throttle: -> count 0 (-) [Main Thread 113680.153,475] ( 1196) DirectFB/Renderer/Throttle: Renderer::Throttle::AddTask( 0x1595d50, task 0x159f6d0 ) (-) [Task Manager 113680.153,489] ( 1200) DirectFB/Renderer/Throttle: Renderer::Throttle::setup( 0x1595d50, task 0x159f6d0 ) (-) [Task Manager 113680.153,493] ( 1200) DirectFB/Renderer/Throttle: -> count 1 (-) [Main Thread 113680.154,166] ( 1196) DirectFB/Renderer/Throttle: Renderer::Throttle::AddTask( 0x1595d50, task 0x159bb30 ) (-) [Task Manager 113680.154,181] ( 1200) DirectFB/Renderer/Throttle: Renderer::Throttle::setup( 0x1595d50, task 0x159bb30 ) (-) [Task Manager 113680.154,185] ( 1200) DirectFB/Renderer/Throttle: -> count 2 (-) [Main Thread 113680.154,926] ( 1196) DirectFB/Renderer/Throttle: Renderer::Throttle::AddTask( 0x1595d50, task 0x159fc10 ) (-) [Task Manager 113680.154,941] ( 1200) DirectFB/Renderer/Throttle: Renderer::Throttle::setup( 0x1595d50, task 0x159fc10 ) (-) [Task Manager 113680.154,945] ( 1200) DirectFB/Renderer/Throttle: -> count 3 (-) [Task Manager 113680.155,553] ( 1200) DirectFB/Renderer/Throttle: Renderer::Throttle::finalise( 0x1595d50, task 0x159f6d0 ) (-) [Task Manager 113680.155,557] ( 1200) DirectFB/Renderer/Throttle: -> count 2 (-) [Main Thread 113680.155,795] ( 1196) DirectFB/Renderer/Throttle: Renderer::Throttle::AddTask( 0x1595d50, task 0x15a0150 ) (-) [Task Manager 113680.155,811] ( 1200) DirectFB/Renderer/Throttle: Renderer::Throttle::setup( 0x1595d50, task 0x15a0150 ) (-) [Task Manager 113680.155,815] ( 1200) DirectFB/Renderer/Throttle: -> count 3 (-) [Main Thread 113680.157,024] ( 1196) DirectFB/Renderer/Throttle: Renderer::Throttle::AddTask( 0x1595d50, task 0x159f6d0 ) (-) [Task Manager 113680.157,042] ( 1200) DirectFB/Renderer/Throttle: Renderer::Throttle::setup( 0x1595d50, task 0x159f6d0 ) (-) [Task Manager 113680.157,047] ( 1200) DirectFB/Renderer/Throttle: -> count 4 (-) [Main Thread 113680.157,856] ( 1196) DirectFB/Renderer/Throttle: Renderer::Throttle::AddTask( 0x1595d50, task 0x15a06b0 ) (-) [Task Manager 113680.158,057] ( 1200) DirectFB/Renderer/Throttle: Renderer::Throttle::finalise( 0x1595d50, task 0x159bb30 ) (-) [Task Manager 113680.158,064] ( 1200) DirectFB/Renderer/Throttle: -> count 3 (-) [Task Manager 113680.158,071] ( 1200) DirectFB/Renderer/Throttle: Renderer::Throttle::setup( 0x1595d50, task 0x15a06b0 ) (-) [Task Manager 113680.158,073] ( 1200) DirectFB/Renderer/Throttle: -> count 4 (-) [Main Thread 113680.158,629] ( 1196) DirectFB/Renderer/Throttle: Renderer::Throttle::AddTask( 0x1595d50, task 0x15a0c10 ) (-) [Task Manager 113680.158,643] ( 1200) DirectFB/Renderer/Throttle: Renderer::Throttle::setup( 0x1595d50, task 0x15a0c10 ) (-) [Task Manager 113680.158,648] ( 1200) DirectFB/Renderer/Throttle: -> count 5 (-) [Task Manager 113680.158,650] ( 1200) DirectFB/Renderer/Throttle: -> throttling at 100% (blocked) from now (-) [Main Thread 113680.159,311] ( 1196) DirectFB/Renderer/Throttle: Renderer::Throttle::AddTask( 0x1595d50, task 0x1596f90 ) (-) [Task Manager 113680.160,589] ( 1200) DirectFB/Renderer/Throttle: Renderer::Throttle::finalise( 0x1595d50, task 0x159fc10 ) (-) [Task Manager 113680.160,600] ( 1200) DirectFB/Renderer/Throttle: -> throttling at 0% (full speed) from now (-) [Task Manager 113680.160,606] ( 1200) DirectFB/Renderer/Throttle: -> count 4 (-) [Task Manager 113680.160,614] ( 1200) DirectFB/Renderer/Throttle: Renderer::Throttle::setup( 0x1595d50, task 0x1596f90 ) (-) [Task Manager 113680.160,618] ( 1200) DirectFB/Renderer/Throttle: -> count 5 (-) [Task Manager 113680.160,620] ( 1200) DirectFB/Renderer/Throttle: -> throttling at 100% (blocked) from now (-) [Main Thread 113680.161,286] ( 1196) DirectFB/Renderer/Throttle: Renderer::Throttle::AddTask( 0x1595d50, task 0x15a1170 ) (-) [Task Manager 113680.162,706] ( 1200) DirectFB/Renderer/Throttle: Renderer::Throttle::finalise( 0x1595d50, task 0x15a0150 ) (-) [Task Manager 113680.162,718] ( 1200) DirectFB/Renderer/Throttle: -> throttling at 0% (full speed) from now (-) [Task Manager 113680.162,724] ( 1200) DirectFB/Renderer/Throttle: -> count 4 (-) [Task Manager 113680.162,775] ( 1200) DirectFB/Renderer/Throttle: Renderer::Throttle::setup( 0x1595d50, task 0x15a1170 ) (-) [Task Manager 113680.162,789] ( 1200) DirectFB/Renderer/Throttle: -> count 5 (-) [Task Manager 113680.162,798] ( 1200) DirectFB/Renderer/Throttle: -> throttling at 100% (blocked) from now (-) [Main Thread 113680.163,508] ( 1196) DirectFB/Renderer/Throttle: Renderer::Throttle::AddTask( 0x1595d50, task 0x159fc10 ) (-) [Task Manager 113680.164,598] ( 1200) DirectFB/Renderer/Throttle: Renderer::Throttle::finalise( 0x1595d50, task 0x159f6d0 ) (-) [Task Manager 113680.164,607] ( 1200) DirectFB/Renderer/Throttle: -> throttling at 0% (full speed) from now (-) [Task Manager 113680.164,614] ( 1200) DirectFB/Renderer/Throttle: -> count 4 (-) [Task Manager 113680.164,633] ( 1200) DirectFB/Renderer/Throttle: Renderer::Throttle::setup( 0x1595d50, task 0x159fc10 ) (-) [Task Manager 113680.164,642] ( 1200) DirectFB/Renderer/Throttle: -> count 5 (-) [Task Manager 113680.164,661] ( 1200) DirectFB/Renderer/Throttle: -> throttling at 100% (blocked) from now (-) [Main Thread 113680.165,305] ( 1196) DirectFB/Renderer/Throttle: Renderer::Throttle::AddTask( 0x1595d50, task 0x15a0410 ) (-) [Task Manager 113680.166,679] ( 1200) DirectFB/Renderer/Throttle: Renderer::Throttle::finalise( 0x1595d50, task 0x15a06b0 ) (-) [Task Manager 113680.166,693] ( 1200) DirectFB/Renderer/Throttle: -> throttling at 0% (full speed) from now (-) [Task Manager 113680.166,701] ( 1200) DirectFB/Renderer/Throttle: -> count 4 (-) [Task Manager 113680.166,725] ( 1200) DirectFB/Renderer/Throttle: Renderer::Throttle::setup( 0x1595d50, task 0x15a0410 ) (-) [Task Manager 113680.166,734] ( 1200) DirectFB/Renderer/Throttle: -> count 5 (-) [Task Manager 113680.166,753] ( 1200) DirectFB/Renderer/Throttle: -> throttling at 100% (blocked) from now (-) [Main Thread 113680.167,468] ( 1196) DirectFB/Renderer/Throttle: Renderer::Throttle::AddTask( 0x1595d50, task 0x159f8e0 ) (-) [Task Manager 113680.168,667] ( 1200) DirectFB/Renderer/Throttle: Renderer::Throttle::finalise( 0x1595d50, task 0x15a0c10 ) (-) [Task Manager 113680.168,683] ( 1200) DirectFB/Renderer/Throttle: -> throttling at 0% (full speed) from now (-) [Task Manager 113680.168,694] ( 1200) DirectFB/Renderer/Throttle: -> count 4 == df_dok without tests running much longer due to too many buffers: cyto [~/DFB/DirectFB/src] df_dok --dfb:task-manager,software-cores=4 --fullscreen (*) Direct/Thread: Started 'SigHandler' (1451) [CRITICAL - OTHER/0] <8392704>... ~~~~~~~~~~~~~~~~~~~~~~~~~~| DirectFB 1.7.0 |~~~~~~~~~~~~~~~~~~~~~~~~~~ (c) 2012-2013 DirectFB integrated media GmbH (c) 2001-2013 The world wide DirectFB Open Source Community (c) 2000-2004 Convergence (integrated media) GmbH ---------------------------------------------------------------- (*) DirectFB/Core: Multi Application Core. (2013-04-14 18:13) (*) Direct/Memcpy: Forced to use libc memcpy() (*) Fusion/SHM: Using MADV_REMOVE (3.5.0.0 >= 2.6.19.2) (*) Fusion/SHM: Shared root (0) is 2232 bytes [0x1000 @ 0x523000000000] (*) Direct/Thread: Started 'Fusion Dispatch' (1452) [MESSAGING - OTHER/0] <8392704>... (*) Direct/Thread: Started 'Fusion Deferred' (1453) [MESSAGING - OTHER/0] <8392704>... (*) Direct/Thread: Started 'Task Manager' (1454) [CRITICAL - OTHER/0] <8392704>... (*) Direct/Thread: Started 'Genefx/0' (1455) [DEFAULT - OTHER/0] <8392704>... (*) Direct/Thread: Started 'Genefx/1' (1456) [DEFAULT - OTHER/0] <8392704>... (*) Direct/Thread: Started 'Genefx/2' (1457) [DEFAULT - OTHER/0] <8392704>... (*) Direct/Thread: Started 'Genefx/3' (1458) [DEFAULT - OTHER/0] <8392704>... (!!!) *** WARNING [/dev/shm/dfb.0 exists, cleaning up] *** [shared_secure_surface_pool.c:126 in sharedSecureInitPool()] (*) DirectFB/Input: Hot-plug detection enabled with Input Hub Driver (*) Direct/Thread: Started 'Virtual Input' (1459) [INPUT - OTHER/0] <8392704>... (*) DirectFB/Input: Virtual Input 1.7 (Convergence GmbH) (*) Direct/Thread: Started 'X11 Input' (1460) [INPUT - OTHER/0] <8392704>... (*) DirectFB/Input: X11 Input 0.1 (directfb.org) (*) DirectFB/Genefx: MMX detected and enabled (*) DirectFB/Graphics: MMX Software Rasterizer 0.7 (directfb.org) (*) DirectFB/Core/WM: SaWMan 0.2 (directfb.org) (*) SaWMan/Config: Parsing config file '/opt/dfb/etc/sawmanrc'. (*) SaWMan/Config: Parsing config file '/home/dok/.sawmanrc'. (*) SaWMan: Initializing stack 0x5230010ad400 for tier 0x5230024d4000, 0x0, layer 0, context 0x5230000a0000 [655416]... (*) SaWMan/Init: Layer 0: 640x480, ARGB, options: 0 (*) SaWMan/Init: Border 0: 640x480, ARGB, options: 8 (*) Direct/Thread: Started 'Task/0' (1461) [DEFAULT - OTHER/0] <8392704>... (*) Direct/Thread: Started 'Task/1' (1462) [DEFAULT - OTHER/0] <8392704>... (*) Direct/Thread: Started 'Task/2' (1463) [DEFAULT - OTHER/0] <8392704>... (*) Direct/Thread: Started 'Task/3' (1464) [DEFAULT - OTHER/0] <8392704>... (*) X11/Display: Not using XShm. (*) Direct/Interface: Loaded 'PNG' implementation of 'IDirectFBImageProvider'. (*) Direct/Interface: Loaded 'FT2' implementation of 'IDirectFBFont'. (*) X11/Display: Not using XShm. (*) Direct/Interface: Using 'GIF' implementation of 'IDirectFBImageProvider'. Benchmarking 256x256 on 640x480 ARGB (32bit)... Anti-aliased Text 3.006 secs ( 7211.976 KChars/sec) [360.0%] Anti-aliased Text (blend) 3.034 secs ( 1877.125 KChars/sec) [386.4%] Fill Rectangle 3.053 secs ( 17587.174 MPixel/sec) [304.5%] Fill Rectangle (blend) 3.068 secs ( 461.400 MPixel/sec) [269.9%] Fill Rectangles [10] 3.045 secs ( 18143.464 MPixel/sec) [278.9%] Fill Rectangles [10] (blend) 3.120 secs ( 462.112 MPixel/sec) [268.9%] Fill Triangles 3.009 secs ( 4205.716 MPixel/sec) [354.3%] Fill Triangles (blend) 3.077 secs ( 385.505 MPixel/sec) [252.1%] Draw Rectangle 3.019 secs ( 456.409 KRects/sec) [328.9%] Draw Rectangle (blend) 3.221 secs ( 105.526 KRects/sec) [305.2%] Draw Lines [10] 3.149 secs ( 5607.176 KLines/sec) [342.6%] Draw Lines [10] (blend) 3.229 secs ( 1738.618 KLines/sec) [265.5%] Fill Spans 3.002 secs ( 8520.553 MPixel/sec) [373.6%] Fill Spans (blend) 3.058 secs ( 450.051 MPixel/sec) [274.0%] Fill Trapezoids [10] 3.016 secs ( 7605.305 MPixel/sec) [328.9%] Blit 3.074 secs ( 10201.358 MPixel/sec) [282.4%] Blit 180 3.093 secs ( 4027.931 MPixel/sec) [277.0%] Blit colorkeyed 3.103 secs ( 4112.104 MPixel/sec) [274.1%] Blit destination colorkeyed 3.076 secs ( 5128.255 MPixel/sec) [282.7%] Blit with format conversion 3.106 secs ( 508.505 MPixel/sec) [270.6%] Blit with colorizing 3.029 secs ( 424.069 MPixel/sec) [271.5%] Blit from 32bit (blend) 3.047 secs ( 281.759 MPixel/sec) [273.0%] Blit from 32bit (blend) with colorizing 3.051 secs ( 244.873 MPixel/sec) [274.4%] Blit SrcOver (premultiplied source) 3.005 secs ( 1387.051 MPixel/sec) [268.3%] Blit SrcOver (premultiply source) 3.008 secs ( 1383.489 MPixel/sec) [269.3%] Stretch Blit 3.693 secs ( 569.891 MPixel/sec) [288.3%] Stretch Blit colorkeyed 3.395 secs ( 542.997 MPixel/sec) [288.7%] Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 13760d25ade381593941e8a5322973f853aa8111 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 14 20:12:01 2013 +0200 libdirect: Change lists to maps internally for faster removal and elimination of duplicates, improve performance. commit 2dc765f2b0c2da7802d7be6e6a59b964a4dccb44 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 14 13:32:18 2013 +0200 dfbtest_flip: Added option '-n' to exit after number of frames, draw string to each frame with time stamp etc... commit 216a5c11cd5f5288c4cf1dbee5263e471e6230af Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 14 13:29:07 2013 +0200 dummy: Add layer frame dumping with pts is set and option "dummy-layer-dump" is set to non-zero. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit d05651d70cdca681abe5994463f50433fc824dfb Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 14 13:24:39 2013 +0200 DisplayTask: Only use TASK_FLAG_EMITNOTIFIES for frontonly and backsystem again, after Task follow/emit issues were fixed. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit ba8373ebb20a65a282d10b2a120b22c05885b091 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 14 13:23:22 2013 +0200 Core: Add dfb_surface_buffer_dump_type_locked() to allow passing an already locked buffer to avoid overhead or nesting issues. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 63b81869e56c3a3ffde8a6a437e9290a2da555be Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 14 13:21:51 2013 +0200 Task: Timing info, fixes for display tasks Fix blocking display task due to follower not being notified in certain cases. Add time stamps for flushed, ready, running, done states. Print diffs when following thresholds are reached (run time options): task-dump-on-flushed-to-ready task-dump-on-ready-to-running task-dump-on-running-to-done Print at least non-log info in dumpLog when log is disabled. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit ab47fb6c107ddcb22850ae6e3ee00d2f0bc890fe Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 14 13:14:29 2013 +0200 libdirect: Add ToString<int>. commit 15b93ae03de51e305197a6092e44c4b91386f2c2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 14 09:34:47 2013 +0200 dfbtest_window_update: Add simple window test with big delays between steps for easier debugging. commit 2d4bc33f41acb134c901e12b9150c087cf585865 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 14 09:24:50 2013 +0200 libfusion: Make builtin multi app support work again (no kernel module required), use --disable-multi-kernel for configure. It is working quite well with one slave (df_dok and df_andi work). Performance is acceptable, sometimes even better than with kernel device, but still there is some potential for optimisations, e.g. implementing user space ref counting. One big downside I fixed is when the master crashed and a new one is started, you no longer have to cleanup the socket directory. It is done automatically now. Many other fixes and additions have been necessary to make this working: - Implement FusionCall2 and FusionCall3, owner lookup, init from (call id)... - Add dispatch cleanup implementation from kernel module based code - Add many other functions, most of them could be left empty - Take over some fixes from kernel module based code, e.g. dispatch channel != 1 without globals TODO - At the moment shared memory pools are writable, because this implementation stores some fusionee info during fuion_enter() of each slave. - There is no security on entry/function level yet (like on ioctl) Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 809f486f7063da5d53518b908b773048dcf0e4c8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 14 09:09:52 2013 +0200 libfusion: Fix fusion_skirmish_prevail/dismiss_multi() with zero count, fixing missing initialisation of ret. commit cfd031e97b80e290ba7d785fdf65b88159d74d7c Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 14 09:06:02 2013 +0200 IDirectFBDataBuffer/Client: Print error when passed in callback is not owned by caller. commit 0cf3b9fe85f44c9eca979b03d30a37a546a85769 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 14 01:48:31 2013 +0200 mesa: Fix GLES2 includes in idirectfbgl2 implementation commit f75ebea8f75285b78610093352158a3558b98ad3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 14 01:46:45 2013 +0200 SaWMan: Enable manager / compositor to be a slave by generally adding manager's ID to owners of windows. This way GetWindow() from that slave succeeds. commit 8902d52264eb37c1d75075ca9a5711d430340df7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 14 01:45:32 2013 +0200 rules: Fix SaWMan fluxcomp rules, adding call-mode, identity, ... commit 5b90f55841d8add810973377482bcbfb08c6d4f8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 14 01:44:10 2013 +0200 IDirectFBWindow: Fix SendEvent() with secure fusion via flux. commit d398e62611ee886fb9bf9334f7ed01c13412a753 Merge: 74899a8 34fa6b6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Apr 13 22:54:26 2013 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 74899a844e9de281d06a9c4deb9cba75a75f6d1f Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Apr 13 22:52:22 2013 +0200 vnc: allow layers to lie partially outside of the screen commit 34fa6b6048f3ef985664b6242940a5d283ca0cd0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Apr 13 21:55:05 2013 +0200 libdirect: Remove implicit locking in direct_log_printf/write and don't allow NULL (default log) for explicit locking functions. commit 62344e4b4514f5662aeca86801bc3704e48e6c60 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Apr 13 21:36:30 2013 +0200 x11: Call dfb_x11_update_screen directly when handling expose events. commit 5185caf415fd0391cd763a379b77bb527cbdd631 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Apr 13 20:54:42 2013 +0200 IDirectFB: Only flush current state client, not all, in WaitIdle(). commit 58cb2f65ad132602ab7b38b0691da2c555194186 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Apr 13 15:03:11 2013 +0200 API: Add debug messages to IDirectFBDisplayLayer. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 312078035cca67de42d078eb92c22df91238a7e2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Apr 13 15:02:06 2013 +0200 Core: Fix permission issues with IDirectFBDisplayLayer::GetWindow() for master. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit 8836fe4878fea52f8d1a13f93bdcbda9f3bb2e00 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Apr 13 14:59:15 2013 +0200 libfusion: Add object owner debug messages. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit dba85e5207b01a031c948bcbe4e0a48b4ce7011d Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Apr 13 14:54:02 2013 +0200 Core: Print error message when driver's SetRegion() call fails. Signed-off-by: Denis Oliver Kropp <dok@directfb.org> commit a34067eeccb5b29ecb542b73ea63dbe38ef5a8dd Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 12 17:30:47 2013 +0200 Core: Fixes for single window optimisation, use new DSFLIP_UPDATE flag to show the region, fix config corruption due to partial updates. commit a457a312347de968f5a755517314c8d4222f0bd0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 12 17:29:35 2013 +0200 API: Add DSFLIP_UPDATE that does not swap/copy buffers and just calls UpdateRegion from layer driver for the front buffer. commit 21897db5801bb74a8c8e837a9dccca05ae31ba86 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 12 17:06:27 2013 +0200 Core: Add debug messages to dfb_window_repaint() including single window optimisation. commit 09bb19f027762f0c78642f6c0e7bb88aed2b470c Merge: b595221 aaf2472 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 12 17:05:13 2013 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit b595221f17072a8949559127dd154d58e1493906 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 12 17:04:00 2013 +0200 vnc: Add support for multiple layers with scaling/blending support into single rfb. commit aaf24722c54b4a5458a705862c68a6301dc14f99 Merge: 663cc71 1919b7a Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Apr 12 16:39:22 2013 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 663cc7107ee520764dbc4b351022a3d3f578e343 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Apr 12 16:37:43 2013 +0200 generic: implement any combination of rotation and flipping in gStrechBlit() TODO: proper clipping for all cases commit 1919b7afde14924f7bb2837a2f5eb52b5125c9d0 Author: Marek Pikarski <mass@directfb.org> Date: Fri Apr 12 14:39:10 2013 +0200 core: single-window: only trigger window repaint when necessary, only flip region if region is enabled commit 3059a7886c79def2c2fc44b55a8a246e3a49d5d2 Author: Marek Pikarski <mass@directfb.org> Date: Fri Apr 12 11:26:41 2013 +0200 fusion: fix prevail/dismiss multi commit 5b8ffead150da1b66629c243216df8fd71f74ad2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 12 11:15:49 2013 +0200 flux: Add --dispatch-error-abort to fluxcomp parameters. commit 9651fa739cd4af869b364858ce1df8a83ab6874b Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 12 11:12:48 2013 +0200 libfusion/Core: Fix security bugs. Add fusion_object_add_owner() and fusion_object_check_owner() to support multiple owners. commit 9a201258fd953a1599667f83ea6d42eb440860b8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 11 10:35:34 2013 +0200 libdirect: Fix debug message in load_symbols(). commit b01433f8d44249d790f9795d289c0933046d7234 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Apr 10 22:58:18 2013 +0200 Core: Fix dfb_gfxcard_state_check_acquire() by updating the state earlier, requires new multi lock function. commit ece646a9d844cd081c716a18edce0579df73ad42 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Apr 10 22:52:44 2013 +0200 Core: Add dfb_state_update_destination/sources() to update selected only. commit 0523b461e37e21bb008e276db081ef5a40f93dba Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Apr 10 22:50:38 2013 +0200 libfusion: Add fusion_skirmish_prevail/dismiss_multi() to avoid dead-locks by sorting by pointer first, so locks are always taken in same order :) commit 24292db904d1fa5d02eb50559cde877f216ff9f6 Merge: f7567d6 56ac6c3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Apr 10 21:53:27 2013 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit f7567d60bda146ab2a1a159b514652e2820442ce Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Apr 10 21:51:24 2013 +0200 Genefx: Implement DSBLIT_SRC_MASK_ALPHA/COLOR for A8 and ARGB masks. commit 56ac6c38203ab592f5cd56629822f03a939ed74c Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Apr 9 13:09:24 2013 +0200 image provider: Add webp image provider (thanks to Haithem Rahmani!!!) WebP is a new image format that provides lossless and lossy compression for images on the web. WebP lossless images are 26% smaller in size compared to PNGs. WebP lossy images are 25-34% smaller in size compared to JPEG images at equivalent SSIM index. WebP supports lossless transparency (also known as alpha channel) with just 22% additional bytes. Transparency is also supported with lossy compression and typically provides 3x smaller file sizes compared to PNG when lossy compression is acceptable for the red/green/blue color channels. more details:https://developers.google.com/speed/webp/ Signed-off-by: rahmanih <haithem.rahmani@gmail.com> commit 3490bc7db2dd6b65d020c92530e9afc8cd1d3d48 Author: Marek Pikarski <mass@directfb.org> Date: Fri Apr 5 17:52:36 2013 +0200 wm: single-window optimisation: set configuration on region when window changes its attributes commit ab75f75f69bbf66847512b57538ac32a3d477b6f Author: Marek Pikarski <mass@directfb.org> Date: Fri Apr 5 15:50:56 2013 +0200 core: add single-window option which optimises rendering of single windows in wm (WIP) commit 8cbe5f4ab8798c9db013ee23af97bdbe332e9e94 Author: Marek Pikarski <mass@directfb.org> Date: Fri Apr 5 15:48:36 2013 +0200 system: x11: use shared surface pool when ximage is not comptible commit 4a81f8cbc30458e7d8dd985f58602e50809f3c5b Author: Marek Pikarski <mass@directfb.org> Date: Fri Apr 5 15:47:48 2013 +0200 wm: default: correctly check for DLBM_WINDOWS mode when operating on window's region commit b723c3f873d27967d43f5ecdff6e03962376f877 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 5 14:08:06 2013 +0200 divine: Add libdivine linkage to dispatcher interface to fix missing DiVineCreate symbol. commit 5eaa9471096d08497f59dc13daaef844be6ad418 Merge: 3ad016a c6e508b Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 5 14:07:38 2013 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 3ad016a1c2f6e575310db217a5a1488dbe604f63 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 5 14:06:25 2013 +0200 X11: Add ref counting for allocation in recent expose event changes. commit c6e508b8e6eb4d25f9a96032e85f7dec0783d912 Merge: f9f4d44 c2112bc Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 5 11:49:22 2013 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit f9f4d44d18d8eef11c5599b249a0976530c02360 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 5 11:47:34 2013 +0200 GP2D: Add kernel patch for GP2D module. The code still needs some cleanups, mostly indenting, before being mainlined. commit c2112bc5e055871e537be66bfd40506c17c36a53 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 5 11:34:20 2013 +0200 proxy: Fix LIBADDD (-> LIBADD) for requestor interfaces. commit 728b3ce07e0ddbda537959bac688ec0a3ac1bc6f Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 5 11:33:07 2013 +0200 proxy: Fix LIBADDD (-> LIBADD) for dispatcher interfaces. commit 3414c47494309f9efcf1ab7ffe1ea53dc5580852 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 5 03:49:21 2013 +0200 Core: Fix layer context/region cyclic ref via window stack. Replace the context pointer in CoreLayerRegion by the context object's ID. Add layer_id to CoreLayerRegion for convenience, avoid several indirections via context. commit 514089c121a64f19aca3d4994cabdae02485acd0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 5 03:39:51 2013 +0200 libdirect: Change new info messages in symbol loading code to debug messages. commit cf423160c26b2386e6ef70c90c30912aec654e1f Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Apr 3 18:12:54 2013 +0200 sawman: make static-layer option the default commit efe103aeb938310a87fdea357df0d372125163e3 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Apr 3 15:32:25 2013 +0200 drmkms: add support for alpha plane property and RGB555 surfaces commit bac173c3ea78ae8e6b301ad774453a91abb61a3c Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 30 18:45:26 2013 +0100 Renderer: When engine is bound, keep thread and compare in later calls. commit 1e9d94cb35375010f2f8ee1091066cd9e34306f8 Merge: de2b774 7af29e9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 30 12:20:24 2013 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 7af29e9d660bf462fd942b32be1b0e13a505cc75 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 30 12:17:01 2013 +0100 Core: Deinit CoreDFB dispatch (call) later during shutdown. commit 7c32282a4740a8be4f1e55b4572252218a617c8e Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 30 12:12:15 2013 +0100 dfbtest_windows_watcher: Print window state on add. commit 24ea3e9bf61713a2c255dc6cfc92eaff7c7a4b42 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 30 12:11:56 2013 +0100 Task: Add task lists for keeping track of tasks even after flushing them. Add TaskList for collecting a number of threads to run or running. While the task is not flushed it can be added to such tasklists (increasing the ref count on the task structure). The task structure will stay alive til the last one released the task. Keep allocations ref'ed in DisplayTask. Add Flush() implementation in DisplayTask to add the task to the region's display tasks list, removed from list in task Run() once the layer region got locked. This is the point til which the layer shutdown code should be post poned. Handle FPS as per task Finalise, not Run... In dfb_layer_context_set_configuration() and other functions first wait for display task list to be empty. commit de2b7746e5ab4514398e93deb4db7d88ab7d7412 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 30 12:12:15 2013 +0100 dfbtest_windows_watcher: Print window state on add. commit a173ae955b3854d71fbc4e897cc382e31dcac2bc Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 30 12:11:56 2013 +0100 Task: Lots of updates to task manager code. Add TaskLists for collecting a number of threads to run or running. While the task is not flushed it can be added to such tasklists (increasing the ref count on the task structure). The task structure will stay alive til the last one released the task. Keep allocations ref'ed in DisplayTask. Add Flush() implementation in DisplayTask to add the task to the region's display tasks list, removed from list in task Run() once the layer region got locked. This is the point til which the layer shutdown code should be post poned. Handle FPS as per task Finalise, not Run... In dfb_layer_context_set_configuration() and other functions first wait for display task list to be empty. commit b3359cd4f464ff1c7d537025511043e0ae0cd159 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 30 11:55:37 2013 +0100 build: add libs_deps.make to centralize stuff about base libs being built. commit 261fd78c705252b7c58631c663327bc09a609eb1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 30 11:50:06 2013 +0100 X11: Fix expose event issue with no task-manager, keeping the surface and locks. commit 5f2931833f74719d228fbf7f973da49927ab5862 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 30 11:14:03 2013 +0100 Core: Remove signal and cleanup handler earlier during shutdown. commit d5970b0d6ad827e28272c9ee2389f99052e7d0ab Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 30 10:46:40 2013 +0100 libfusion: Use FCEF_RESUMABLE and set serial to 0 for buffered calls. commit 9d64d243c7b3671b4611206acb6b1f610fcb593a Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 30 10:43:23 2013 +0100 libdirect: Add fallback definition for SIGUNUSED. commit 4c4a42015669c8e4cded3968a9eb4a87effaf5e3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 30 10:41:13 2013 +0100 gp2d: Disable blending, will readd for destinations without alpha channel, cleanups. commit 8ddd885f66e4337414301ea13a55e3bb5ee71394 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 30 03:39:57 2013 +0100 wm: Call CoreGraphicsStateClient_Flush() at the end of flush_updating(). commit 3881725a01d347231196a72b6f671bdd9a432ca0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 28 08:55:51 2013 +0100 dummy: Comment out surface dump in dummy system :/ commit d198f9e515e434009e6b46a15c6a8b118dd81d72 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 28 08:52:43 2013 +0100 libdirect: Use DirectThread for signal handling. commit 4924f3fc9f674f9784e9bf799afcd2f8876fcebf Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 28 08:50:56 2013 +0100 libfusion: Avoid failing ioctl() in fusion_ref_set_sync() when ref is a user space one. commit a381bcc9d124de55b75645087faf33c6bdfafeb8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 28 08:48:32 2013 +0100 Config: Allow DIRECTFB_SESSION to be changed between DirectFBCreate()/Release() cycles. commit ca031e6169bbe8813907e049f2eab5f89398b49f Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 28 08:45:40 2013 +0100 IDirectFBSurface: In IDirectFBSurface_listener() when CSNF_DESTROY is received, don't unref, print warning. commit c39eececff1f030ef212e3ad67a40f002187f0a1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 28 08:43:26 2013 +0100 IDirectFBSurface: Allow GetFrameTime() to be called with NULL to just limit frame rate without retrieving the time stamp. commit b2f96dce55d4b14fa5fcc3bfbf02ad709a814a85 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 28 08:42:16 2013 +0100 IDirectFBSurface: Add missing CoreGraphicsStateClient_FlushCurrent() to IDirectFBSurface_Dump(). commit 9aa4895010c9af852e82e176364c82f67a818ae7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 28 08:39:42 2013 +0100 Core: Allow prefix to be NULL in dfb_surface_dump_buffer2(). commit e51840ecf18a305b3a3344034c0631506787bc88 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 28 08:37:48 2013 +0100 Core: Call dfb_layer_region_set() for realiized regions in dfb_layer_region_set_configuration() only if CLRSF_FROZEN is not set. commit 621d1b7869cb76b681a5b2d7b54684cba31f4ac1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 28 08:36:08 2013 +0100 Core: Shutdown fixes, order of deinitialisation and others. commit 18d603f49a4c8cf5338d92a77814e80f07e86746 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 28 08:31:26 2013 +0100 Core: Dump remaining objects during shutdown. commit 4bac48a92a1d0aa7599f2dcb1f1d310527edba7f Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 28 08:29:55 2013 +0100 Core: Some debug and cleanup. commit 0e1d9038cc94ca63b2c36d3cade5a1ddb6452e30 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 28 08:21:43 2013 +0100 Debug: Add ToString<DFBSurfacePorterDuffRule>. commit 0573cf4cd322a607f5a71aba99bee55918d0432d Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 28 08:18:56 2013 +0100 Core: Don't clear the window stack when surface for background vanishes, this is an exceptional case! commit 5217275c334cfc40b80990f444d0c4ea06f90d68 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 28 08:17:37 2013 +0100 Core: Add debug messages to error branches of dfb_window_create(). commit 7b6cd2140ba63ce0b67f703e6a1d14ee8206e2e5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 28 08:09:24 2013 +0100 Core: Fix locking of global core mutex, add comments in header about init/shutdown. commit d888607eb9aa52054d14f8ee9285acdb08dda5d6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 28 07:01:45 2013 +0100 libdirect: Use SIGUNUSED instead of 123 (e.g. _NSIG is 64 here only), also block close signal in handler thread, use direct_sigprocmask(). commit 9a1ccdb47d82fce356013c5e7d83f5d3e15bcbb6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 28 06:58:12 2013 +0100 libdirect: Add direct_thread_kill() to send a signal to a thread by specifying a DirectThread pointer. commit 962993d51c598fa681cf6aadfa4cbb59e703a07e Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 28 06:56:56 2013 +0100 libdirect: Use pthread_sigmask() in direct_sigprocmask() instead of sigprocmask(). commit ea64018305406f8067757b6d73aa523fc93ec757 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 28 06:56:16 2013 +0100 libdirect: Add direct_tkill() to send a signal to a thread. commit 2c11fc87215d635251008172089be52b28645500 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 28 05:09:35 2013 +0100 libdirect: Handle default log when calling direct_log_flush() with NULL. commit d0f219ca573f4073da4c4aed1b2e936435493f20 Merge: c9adff1 02f8b8b Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 28 04:54:35 2013 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB Conflicts: lib/direct/interface.c commit c9adff1b1088fbce177aa56e4a4507a0f80bf607 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 27 04:41:50 2013 +0100 libdirect: Add empty implementation for direct_print_interface_leaks() to avoid unresolved symbol in any case. commit 02f8b8b52a1bd37382332dba3727691cce209002 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 27 04:41:50 2013 +0100 libdirect: Add empty implementation for direct_print_interface_leaks() to avoid unresolved symbol in any case. commit 7e96fbb8030d9c94984dc74a79b2a2f77cd97f02 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 27 04:35:22 2013 +0100 libdirect: Flush log after printing in direct_log_domain_log/vprintf. commit 47e535a6b645335bd0afc38a5e868c1966fbcd2e Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 27 04:32:40 2013 +0100 libdirect: Add special stderr_log_write for stderr logging using fprintf to stderr really, not write() to fileno... commit ec8aa39385b88c2d7c8f23cd3d6187257deee1f9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 27 04:30:32 2013 +0100 API: Add DFBSurfacePorterDuffRule names to directfb_strings.h commit 9e9ace4ffb45a4c81c29433eaefeb875cc8d8df4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 27 04:24:02 2013 +0100 libdirect: Add StringBase with character type specification, add Strings definition to types.h. commit f9f0611bae17fb9870f102852b044a8edc4d0d79 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 27 04:13:14 2013 +0100 libdirect: Add magic value to trace buffers. commit 591dbdce0e401fdfae67603055e05f9680493314 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 27 04:11:32 2013 +0100 Options: Refuse task-manager without secure-fusion commit 1c93ef1f68900603d638c56716075b727f83fc52 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 27 04:08:10 2013 +0100 libfusion: Always signal and join deferred thread, prevent shutdown of dispatch thread if it does the shutdown. commit 6958e64c96ce7b26c4861a30641b7573e300e393 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 27 03:44:45 2013 +0100 Core: Comment out assertion about index in dfb_surface_notify_display2() commit 8279951ba0f6f22405263afb7cb4c8fc62bcb9af Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Mar 25 15:04:29 2013 +0100 libfusion: Add empty fusion_world_flush_calls() for single-app. commit 7b7b9dc2ed94c0f1c006c0b70b2beaf7ef27187b Merge: be89770 7879d20 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Mar 25 12:46:21 2013 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit be897707fd53b0c4bf7564cb89beefdf75738cf4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Mar 25 12:45:44 2013 +0100 libfusion: Fix crash in non-secure mode when trace is enabled. commit 7879d20f17b778f57eb52d9da655ead483c44139 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 22 10:34:53 2013 +0100 Graphics: Fix CoreGraphicsStateClient_FlushCurrent() for master without task-manager. commit f82fedddf17b224a5f41d650cf1edb6a34d3180e Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Mar 20 18:57:57 2013 +0100 sawman: remove bogus assumption commit 40198f5360f0d3dfaba2ee56aeeb7f6682064a57 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Mar 20 15:10:58 2013 +0100 drmkms: when cloning is requested just try to clone the first two connectors for now commit d825d482653597e26f234d3ec74875733adb35d3 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Mar 20 12:48:46 2013 +0100 libdirect: add dummy implementation direct_trace_get_caller(), fixes compilation without trace support commit 288ab0395639ebddb11c827142f3b8d449f6d28a Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Mar 20 12:13:36 2013 +0100 fusiondale: do not call uninitialized function pointers commit 5da881c1927ce284723ecdc2727bd8490f403328 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Mar 19 18:02:22 2013 +0100 drmkms: implement SetLevel() and GetLevel() for drm/kms planes using zpos layer property commit 665123bc9822bfefe3026615e34d2cae33e9ae9c Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Mar 19 16:01:21 2013 +0100 drmkms: support colorkey plane property, add option drmkms-plane-limit=n to limit the number of overlay planes available to DirectFB commit abd81b2c29a11f7ddcb06f7277ee965ab09b470c Merge: 661ce1f d6dea80 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 15 17:00:51 2013 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 661ce1fa73d5046f164ededb9badc24e0a28269b Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 15 17:00:14 2013 +0100 SaWMan: Fixes for extern "C usage. commit d6dea80a537359cc7e1c5618698bbb87baf5bdbb Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 15 11:03:32 2013 +0100 Task: Add Task_DoneFail() C wrapper. commit ea2ab89c7f83f9373705ecda7e78ed80b98e5c9c Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 14 04:07:19 2013 +0100 libfusion: In fusion_ref_down() call direct_mutex_unlock() before fusion_call_execute() to prevent dead locks. commit 9d8e72c5736fda8c440a843df99d4f2e988868e6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 14 04:06:31 2013 +0100 libfusion: Print name of function to call as reaction in _fusion_reactor_process_message(). commit 466e25a89458842640c5ab2becaad0b4385650d3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 14 04:05:56 2013 +0100 libfusion: Add yet commented out FusionCall3 version of object_reference_watcher() header. commit 4332954010e804ff74c02811a11d8d8b2bc6a8f8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 14 01:27:58 2013 +0100 libfusion: Don't flush calls when not required. commit 9541634031e438d7409e6507d32c353e9cf2d8f3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 14 01:26:45 2013 +0100 libfusion: Allow 'all' for 'trace-ref' option to trace ALL refs. commit 1b83a8fbd9dfee313836b9da486e308de71adb0a Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 14 01:25:06 2013 +0100 libfusion: Enhanced debug in call code, include assumption about tls being destroyed in its thread (which fails). commit 7a8a1334c19c73f1fb4dd140953cc90c828ab7e3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 14 01:22:16 2013 +0100 libfusion: Flush calls in object pool destroy function. commit b65f3ddef20af1b18df7df87a3c381e40a97f4ec Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 14 01:21:24 2013 +0100 libfusion: More debug in object pool. commit 3db9c6170d9c9082c316984057d140d0424588c2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 14 01:18:44 2013 +0100 libfusion: Enhanced debug in fusion dispatcher. commit e346ee89873f1a97fe337f4e4369844f4f270687 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 14 01:16:14 2013 +0100 libfusion: Increase max number of worlds from 8 to 32. commit 7852c558f7c6ab9613f887b883b112a409a08e86 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 14 01:15:25 2013 +0100 libfusion: Map shared roots with with smaller distance to allow for more worlds. commit ddc24c8db61d0b39bee93fb92661ee457e745450 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 14 00:50:47 2013 +0100 libdirect: Remove locking in signal handler which is obsolete and led to dead locks. commit 11433080c2a46f91370fa55315d1f6e5f5d9ff78 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 13 23:47:42 2013 +0100 libdirect: Add log-delay-min-loops and log-delay-min-us options, but make them effective on actual prints only. commit a0e3461f48b32fec55f0a00605557d9110152ff2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 13 23:44:17 2013 +0100 libdirect: Free trace buffer during thread deinit (linux/glibc). commit 0669b642f2f90dee3f627c9515ded3e46c077f92 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 13 23:43:29 2013 +0100 libdirect: Add more debug during init/shutdown including calling function's name. commit e0b7c9b2bd08796d714ecb8598db7fee7b676841 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 13 23:42:40 2013 +0100 libdirect: Replcae static trace buffers (200) by per thread allocation (no more limit). commit 20abd91019003b19b2bf71bf3384e6d1f4809c29 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 13 23:40:10 2013 +0100 libdirect: Add direct_trace_get_caller() to retrieve a function's caller. commit d87ef536c690ad0b65b8ce35e4a995f553ea3fc3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 13 23:14:00 2013 +0100 log: Use fdatasync() for direct_log_flush(). commit 15a3e4d9b730739ef8d2067ffb60077eb19cfa5c Merge: 5142161 3139a01 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 13 22:37:22 2013 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 5142161a4c33b4d2b1bfafe6dd7410eab8d4e5eb Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 13 22:36:55 2013 +0100 API: Remove totally unused and unneeded DSBLIT_SOURCE2. commit 3139a01a439beccaceb8271f8f2a105292749663 Merge: a9e5781 b0f9a51 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Mar 13 17:23:50 2013 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit a9e5781678c5a0d33ff2e5639466b31698217816 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Mar 13 17:22:28 2013 +0100 drmkms: add experimental and untested drmkms-clone-outputs option commit b0f9a514bc95661f09dcdc24240b64246ccc9fff Merge: 9fe5011 d497b25 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 13 16:52:03 2013 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 9fe5011168d811688b817fec61a5c34fbc785a65 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 13 16:47:36 2013 +0100 GP2D: Improved state handling, some fixes and cleanups. commit d497b25a3bae20059beeec678ee0c5b454e044a6 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Mar 13 15:41:34 2013 +0100 drmkms: add support for new resolutions (Screen API) commit bde12234ac146b4fedf45c850a4e5a970a529ae3 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Mar 13 15:37:06 2013 +0100 add a few new common wide screen resolutions to the DFBScreenOutputResolution enum commit 0739962b8108e3fb3590fc28e8277f18b4882002 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 13 13:12:46 2013 +0100 tests: Fix for includes. commit 8d50ca8843ffbfb808292c38485cb8e3ed9b20e7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 13 13:11:57 2013 +0100 build: Include fixes for C/C++ mixing commit d9cdfa35c1fc4625599d4619b6dcb387e9f2e674 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 13 13:04:48 2013 +0100 Renderer: Use simplified ToString API. commit 476c85b40ed5a0d64dc00b8636cc717db1dbb5bf Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 13 12:53:24 2013 +0100 Make: Fix examples build for FusionDale and FusionSound. commit f142e4bb2aaf9179ae0ea5483170eaa0fa11aa7e Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 13 12:51:20 2013 +0100 configure: Avoid C++ compiler option warning about -Werror-implicit-function-declaration, print more variables... commit 40314670a0aeb5afb75f417491e719e6eeae9d47 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 13 12:50:28 2013 +0100 SaWMan: Fix shutdown issue, add debug, ToString, cleanups. commit d3bb55f5e4c6800c477807c4e565ca51505ac8d8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 13 12:46:45 2013 +0100 Core: Add some List declarations. commit f5a6028c15cee49f356260f7d09ca53d9f6f02e5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 13 12:44:30 2013 +0100 SaWMan: Fix warnings. commit 528805bf3d866828470baaaf47f5f2f4dd8c3281 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 13 12:43:43 2013 +0100 Core: Add more Debug stuff. commit d4fc9aa0a8e6915e40ba80cf0dfbbd44157217a5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 13 12:42:07 2013 +0100 libfusion: Add Tostring functions to Debug.cpp commit d21588744cf64b3b364f42bbbdab527dad616bff Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 13 12:41:21 2013 +0100 libdirect: Introduce Lists. commit b3e707f39aaf75272a76a7bcae26198406c51f9a Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 13 12:35:56 2013 +0100 divine: Allow multiple sessions to run in parallel. commit f0b8d0cc8bc1df4074dc6901b9ed867eb8802181 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 13 12:34:26 2013 +0100 libdirect: Include String.h in ToString.h commit b05b23f47fbe82f8ed7f858fb4017c0087c6e3c2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 13 12:33:27 2013 +0100 libdirect: Add operator * to String as a shortcut for .buffer(), add no_instrument for C wrappers commit cd7d8df94d5faf09f6e1954e255084faf341b39b Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 13 11:33:13 2013 +0100 drmkms: Better error handling, debug, cleanups. commit f71b7aca1640022ddd80e86356c9a34dd5552916 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 9 13:42:23 2013 +0100 libdirect: More String, e.g. streams for DirectLog[Domain] and ostream, + operators. commit 33bd7a02675f54b3b0de0b49aa0bca5b35aac8da Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 9 09:07:01 2013 +0100 Core: Add ToString for CoreSurfaceTypeFlags including C wrapper. commit f2a6077bd1ed207d7ae3fdf144ee4325905533cb Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 9 09:03:13 2013 +0100 Core: Add dfb_core_dump_all() that prints all pools' objects. commit 5287f403f95db4fcdc75d9728f390e8f120d3f8a Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 9 09:02:24 2013 +0100 Util: In dfb_pixelformat_name() use D_String_PrintTLS() for invalid formats (to print actual hex value). commit 5d6bbe1d6920ba6e42458355e9f17a2ada6031bc Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 9 09:01:18 2013 +0100 Core: Add ToString for DFBSurfaceDrawingFlags and DFBSurfaceBlittingFlags including C wrappers. commit 59dba84294629bdfcb23c7fe5a8ff2abe1f0b712 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 9 09:00:20 2013 +0100 libfusion: Move FusionObjectPool definition to header file. commit 129a9bb84a8be1778581538bd3c3d3b706b494a8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 9 08:59:26 2013 +0100 libdirect: Add direct_log_domain_check_level() to check for a certain level. direct_log_domain_check() did only check for DEBUG level. commit d60b758f5248560adbce754dea9ee21951d84473 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Mar 6 15:25:01 2013 +0100 dfbtest_layers: remove opacity flag for now commit dcf14128150d56d4330b4f3ac77b10447cef683e Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Mar 6 15:11:17 2013 +0100 tests: add dfbtest_layers commit 36760bb312be413867b996587c06d7bdbbb5b547 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Mar 6 15:08:16 2013 +0100 drmkms: fix drmkms overlay plane crash commit 2e97ed8da23ed0b78a7ab27ba094529930e9269b Merge: 573bf87 859604c Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Mar 6 14:20:32 2013 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 573bf87340bcc0c2186e646781b1332741b84cb8 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Mar 6 14:19:04 2013 +0100 drmkms: implement multi-head support via drmkms-multihead option, this registeres an extra layer for each additional output commit 859604cc88ec4526757c13e8fb0d0e63634fa384 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 5 21:05:44 2013 +0100 libdirect: Add String::CopyTLS(), D_String_CopyTLS() and D_String_PrintTLS(). CopyTLS allocates a slot in a thread local ring buffer of strings (char*), copies the data and returns the pointer. This allows destruction of the String object with subsequent code using the data only. This is mainly meant for debugging purpose, so a ring buffer of up to 32 strings was chosen that allows up to 32 such formatting prints as arguments to a debug function like D_DEBUG_AT. commit 21ae456bd27db9d225fa2def2503ec9ed1cc494f Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 5 21:02:16 2013 +0100 libdirect: Add options 'log-delay-rand-loops' and 'log-delay-rand-us' for testing. commit c225ea84bab24b4be861dde30775a8950dc8689c Merge: b40da11 39f3d91 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 5 20:59:26 2013 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit b40da11efcc10bc2f75dbafc29d7d25a597ac7c1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 5 20:58:59 2013 +0100 libdirect: Move LockWQ::Lock::wait() implementation to LockWQ and call it from Lock. commit 953a7b18da24213b75ed28b4833ce63268f8e35b Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 5 20:44:07 2013 +0100 API: avoid nested extern "C" in header commit 39f3d918195e4dcd968dc2cd24907fb2228ae302 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Mar 5 15:57:46 2013 +0100 drmkms: also implement InitOutput, SetOutputConfig, TestOutputConfig commit 7b41a6995deb6f7a4e1c5975b7978aa8999d40f7 Merge: da0a096 56c6b45 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Mar 5 15:03:31 2013 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit da0a096bf744223be03894d5580c2ded0449c93a Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Mar 5 15:00:17 2013 +0100 drmkms: support for mirroring on all connected connectors with drmkms-mirror-outputs option, better initialization of drm resources. commit 56c6b456718e6697862e0aa3e36def5921884cf9 Merge: 38117fc 10d413c Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Mar 4 21:36:16 2013 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 38117fcde38e1c05e0d36382caf25a71cadffe50 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Mar 4 21:35:49 2013 +0100 GP2D: Set Alpha8 register to 0xff. commit 10d413c66e504631097260ff368412c14e749449 Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Mar 4 12:55:14 2013 +0100 drmkms: remove reinit-planes workaround, better debug output commit b9d02395a878888e5e2966bdcbf99dd9efea6193 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Mar 4 03:07:08 2013 +0100 Graphics: Remove more obsolete stuff from accel1. commit a204584cd74dd52651fcd5496f10f9e5ddae7f56 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 2 21:12:39 2013 +0100 Core: Fix surface.h include in core_strings.h using core/ commit 3602ba603914bea9ff9217e5099bbd710e845a8b Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 1 23:12:47 2013 +0100 Core: Use TaskManager_SyncAll() rather than TaskManager_Sync() during shutdown. commit 9e7d30ddbcee9f1f7dd08323f4d45bbd90cbfe30 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 1 23:12:12 2013 +0100 Task: Add TaskManager_SyncAll() that also syncs for display tasks etc. commit 9786b751ed601475aea755a0a730be3420b5bb0f Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 1 23:11:30 2013 +0100 Renderer: Fix state setting for non-master tasks. commit 32d9e7b03af027386ce0f9e17143b32970c03f2a Merge: 8e6d678 8ad187f Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 1 22:56:27 2013 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 8e6d6785e1e98289a89292bb522aed4504943ac5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 1 22:56:11 2013 +0100 One: Print qid in OneThread_AddQueue(). commit 8ad187ff809ddf5e702d984768432711903ca41d Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 1 02:24:56 2013 +0100 drmkms: Keep bo mapped all the time in master, always set addr in Lock(), required by gp2d driver for reading alpha map data. commit f6062b67626b4f8d569997773953c37ac994363e Merge: 76c90fc ddd007d Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 1 02:16:06 2013 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 76c90fc47738c940ffe6a1893c35be6d36e33060 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 1 02:14:53 2013 +0100 gp2d: Implement A8 font rendering via AAFC command using alpha map within command buffer, allow bigger gp2d buffers, cleanup buffer size code. commit ddd007df406451d2d6f9afbd8591d18b1dd0869c Author: André Draszik <andre.draszik@st.com> Date: Thu Feb 28 11:46:57 2013 +0000 configure.in: update message-size help message Commit 10aa960 (configure: Set default Fusion messages size from 1024 to 16384.) changed the default but didn't update the help message commit 53e64a012e07a34bba50265d4017ca72b7f342a7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 28 06:07:01 2013 +0100 gp2d: Implement SetMatrix() support. Fix 32bit issues. Reduce buffers to 5. Add register names. Other fixes. commit 2b3b36d41214b825c33bee22ecb4bfd7404e44e8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 28 06:05:56 2013 +0100 Graphics: Fix flush of current client when calling CoreGraphicsStateClient_Flush() on another. commit f07d9833eb0811111b484069dde359f6a1a75eb5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 28 06:03:46 2013 +0100 drmkms: Fix early deallocation without task manager by syncing in drmkmsDeallocate(), other minor fixes to prevent assumption failures. commit 1750e5f44cb434388d4271a50c0a93895cec5720 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 28 06:02:57 2013 +0100 libdirect: Print actual thread name in stack dumps, not the one from creation time of trace buffer. commit a0160044bbb0b0af335a632a742e6f6e2e5f7efb Merge: 9564407 478b522 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Feb 27 17:28:55 2013 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 9564407b3ba2ed30770eb09553822c1b4fdb653c Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Feb 27 13:49:42 2013 +0100 drmkms: support frequency changes commit 478b5223fd35c7203a0d0307e4559bca72a140fc Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 27 00:15:10 2013 +0100 Task: Fix return value in DisplayTask::Run(). commit 7e86b49c9843ec15c2da0d2504b645b999c2a48c Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 27 00:00:19 2013 +0100 Core: Reduce workaround safety delay in shutdown from 500 to 100 ms and add FIXME comment. commit 925fec2008055eac680bdfd6bea765632d75310b Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 26 23:57:29 2013 +0100 Core: Add Renderer::DeleteEngines() and fix shutdown issues with task-manager. commit 3dbaacbd55da8d41dbfe618ef8c65f73a911edcf Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 26 23:56:10 2013 +0100 libdirect: Fix endless recursion and crashes when maximum number of threads is reached. commit 677f4633db5dd3e275dcdcd66b76c27aa7d52cca Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 26 23:55:07 2013 +0100 libdirect: Add __dfb_no_instrument_function__ to direct_vsnprintf() to prevent endless recursion. commit 0b1d02fbf6cc680667c75d8645049c150e18ba1a Merge: cd8010d b08f9f6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 26 22:25:34 2013 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit cd8010d490e67433f408d6b02db72113fc2cd437 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 26 22:25:09 2013 +0100 Task: Follow API change in Direct::String. commit b08f9f65f14fac4b99b404a4a43a8dc3ce3322ec Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 26 22:10:01 2013 +0100 dfbdumpinput: fix warnings commit e570a472e1f140c2d9a81dbad4c5fc0363b2a69b Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 26 22:09:01 2013 +0100 dvc: fix warnings commit 6ab034e1f9a1d049e76bbe3332b196a40299e450 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 26 22:07:53 2013 +0100 sawman: fix warnings commit e1a6723186929f49c1e5705a41c09763ce9e2f5e Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 26 22:01:09 2013 +0100 dfbtest_flip: Add option '-T' to use new IDirectFBSurface::GetFrameTime() for accurate animations. commit b70ed23cd998e0cf89d006171f5ffcf4a6de8550 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 26 21:58:43 2013 +0100 IDirectFBSurface: Add GetFrameTime() for smoother animations while buffering frames in advance. This prevents jumpy animations by retrieving a timestamp from DirectFB to use for calculation of animations. This timestamp is used by DirectFB during Flip to show the frame at the given pts. Implement pts handling in dummy system module via display thread. commit d488b4cef3ad77c15d248ad8b5a44c5e6c3301a0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 26 21:51:14 2013 +0100 Core: Remove bogus assertion from dfb_surface_dump_buffer() to allow specification of just path (no numbering done). commit 9c2db6557aff06d1e11b26bba79780992b0077a5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 26 21:49:45 2013 +0100 Core: Delete FPS object if created (using layers-fps option). commit 6fd0624fc2425b9e8e74987b8c3a66dcded21d74 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 26 21:37:55 2013 +0100 Options: Add 'layers-fps' options with optional interval to print FPS in layer update (flip) code. commit 6e99d4fb09a36d669a94b72a43d07b0a716578e9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 26 21:37:26 2013 +0100 flux: fix unknown integer types commit 9e4dfb57162500b5a279e12c6fc18835cf6fce7b Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 26 21:35:57 2013 +0100 Core: fix missing core_strings.h dependency commit d1f353c2983f9ff9e641fa0d6a8860d072d87c19 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 26 21:23:59 2013 +0100 fusiondale: fix warnings in messenger core commit cafbd6deb821387bf03dbb742b873dafb712515c Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 26 21:11:19 2013 +0100 String: Make constructor take only unformatted for convenient, add ::F() for formatting construct, add GetTokens() for splitting. commit c97380502b9b6b7f95abdf932eb00766ca3ef2f5 Merge: 6d9f6e4 0459ab1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 26 17:39:58 2013 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 6d9f6e47985467cc8ea27474630fd2be10d81306 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 26 17:39:08 2013 +0100 gp2d: add r-car gp2d driver commit 0459ab1f6616f64e4161c34ee2ea499d5789a5cc Merge: b086b6c 84dd678 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Feb 26 17:38:05 2013 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit b086b6c98d46e105a458131232873846d07f0b24 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Feb 26 17:37:10 2013 +0100 drmkms: support seting the resolution via screen api commit 84dd678d226f168d2592bbdadb41e4e4eaa9cc64 Merge: 77bb93e 8ef823f Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 26 17:17:44 2013 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 77bb93ec48017cfe42570c065d1f873845848892 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 26 17:17:21 2013 +0100 Graphics: Fix missing return value in new GetAccelerationMask() code. commit 8ef823f2e7550f8cde0afd312a611379acdd8a25 Author: André Draszik <andre.draszik@st.com> Date: Tue Feb 26 15:17:00 2013 +0000 direct: Replace __no_instrument_function__ with __dfb_no_instrument_function__ __no_instrument_function__ doesn't have a proper name space but gets exported to API users who could (and some do!) have conflicting (internal) definitions. commit 83c15008325801a99f3b63bc742789601689cc24 Author: André Draszik <andre.draszik@st.com> Date: Mon Feb 25 15:30:00 2013 +0000 linux_input: fix compiler warnings ../../../inputdrivers/linux_input/linux_input.c: In function 'get_device_info': ../../../inputdrivers/linux_input/linux_input.c:1055:6: warning: too many arguments for format [-Wformat-extra-args] ../../../inputdrivers/linux_input/linux_input.c:1192:6: warning: format '%d' expects argument of type 'int', but argument 3 has type 'const char *' [-Wformat] ../../../inputdrivers/linux_input/linux_input.c:1192:6: warning: too many arguments for format [-Wformat-extra-args] commit bb9c2490d25535300e4077bbf974cd17315aa68f Author: André Draszik <andre.draszik@st.com> Date: Mon Feb 25 16:21:57 2013 +0000 build: fix out of tree builds ---snip--- CXX util.lo ../../../src/gfx/util.cpp:46:30: fatal error: core/CoreSurface.h: No such file or directory compilation terminated. ---snap--- The file in question is autogenerated and ends up below $(top_builddir), so this has to be part of the included directories. commit 4ae56558497e2d21d1e31d91561a8caebea04b9e Author: Marek Pikarski <mass@directfb.org> Date: Tue Feb 26 12:52:47 2013 +0100 core: emit gfx buffers early (as was done in dfb-1.4) to prevent being IDLE on some platforms (only if "gfx-emit-early" option is set) commit 02a355566f1354b9aed8848cf4bc1c6b8b1d33d7 Author: Marek Pikarski <mass@directfb.org> Date: Tue Feb 26 12:51:59 2013 +0100 misc: add new "gfx-emit-early" option to be used by gfx commit 9ea9ebc048532994a585e9bb29593193f7512f70 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Feb 25 16:12:07 2013 +0100 Add IDirectFBSurface::GetID/AllowAccess() commit 7ba13cced5fcf252880abc679ef6e238f00b2f30 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Feb 25 16:11:40 2013 +0100 Add IDirectFBB:GetSurface() commit 63b848edf69ee082aa17834b938c34353cdafe92 Author: Andreas Shimokawa <andi@directfb.org> Date: Sun Feb 24 17:25:22 2013 +0100 drmkms: initial task-manager support, default to /dev/dri/card0 if no device was specified commit e3faecc6a0cb4c02e16ccd3a271b25c38289d013 Author: Andreas Shimokawa <andi@directfb.org> Date: Sun Feb 24 14:21:37 2013 +0100 drmkms: honour gfxdriver limitations in bo creation commit 4d4269e3fb5c528a00e4fed018297a4f5ee63a32 Author: Andreas Shimokawa <andi@directfb.org> Date: Sun Feb 24 13:50:59 2013 +0100 drmkms: only call drmModeAddFB2() when surface is being used for a layer commit 8ff6129b7148c2ceaeed13d23b3f6e13b189efcf Author: Andreas Shimokawa <andi@directfb.org> Date: Sun Feb 24 12:23:59 2013 +0100 drmkms: use offset field instead of handle to pass prime fd when drmkms-use-prime-fd is set commit 6948d695e6b4c7db23a782e88ebdd4abe770ee1f Merge: 2035235 3f21f2e Author: Andreas Shimokawa <andi@directfb.org> Date: Sun Feb 24 12:00:45 2013 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 20352353500f7e81907c64a6794a7403fe037c4b Author: Andreas Shimokawa <andi@directfb.org> Date: Sun Feb 24 11:59:59 2013 +0100 drmkms: add option drmkms-device=<device>, multi-app fixes commit 3f21f2e92a59b939ebffd214cccf02346019e193 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 24 03:41:03 2013 +0100 Util: Add FPS calculator class. commit e6901f38c8161a01926955da75f179c13c911414 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 23 22:38:41 2013 +0100 Task: Add missing <map> include. commit 6749c8e63fa2f27af63e16198e4b54af04aed725 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 23 21:59:56 2013 +0100 Core: Add dfb_core_lookup_surface() using fusion_object_lookup(). commit 870e16b7faa87e98d171b648c96c678c1a7fe262 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 23 21:59:09 2013 +0100 libfusion: Add fusion_object_lookup() that acts like fusion_object_get() but without ref up. commit da885699e071bc9774ad3aa213504c19b12efd19 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 23 21:58:14 2013 +0100 libfusion: Count down in case of multiple object_reference_watcher messages for the same object (via new ref->single.dead counter). commit eb43d9b5f903879764f08ef366dcd86df5878a79 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 23 21:52:32 2013 +0100 libfusion: Count number of deaths of single ref. It can happen that refs reach 0, fire a message, reach 1 or higher again, and when reaching 0 again firing another message. With the death counter the object_reference_watcher can count (down) and only really process the last message. commit 548fb79684d17a6c50b842b76eaab350dd7615da Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 23 21:01:20 2013 +0100 GenefxTask: Move Done() call in Run() to the end, otherwise ~Task() might be called before, fix pre-clipping of blits. commit a668ba39215c456acd43e357002f526245ee694c Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 23 20:59:50 2013 +0100 Task: Move Done() call in DisplayTask::Run() to the end, otherwise ~Task() might be called before returning from Run(). commit 73d2ff15f26bf16c74d116d286f5ca52e954b9a3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 23 20:59:15 2013 +0100 Renderer: Remove obsolete test engine implementation (MyEngine). commit 59ff490540a8ffd92114318ba55e67eb29a4e6e3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 23 20:44:49 2013 +0100 libfusion: Print object's ref id with zombie message for easy 'trace-ref=<hexid>' usage :-) commit 6844057a3317d2cba00a45f93b178ae1968dead7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 23 20:44:09 2013 +0100 IDirectFBSurface: Flush current state before locking a surface via app. commit 476ba2ef210edcc9e1e8177701209d025e5ccb5e Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 23 20:43:42 2013 +0100 libdirect: Dump counters with non-zero value only. commit 0e3dad99c1ee49d6b22fa9c163b839dce56d0364 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 23 20:42:51 2013 +0100 libfusion: Fix zombies due to catch with always-indirect mode in multi-app not counting down. commit 560c3fa0bec4fb934757c0fab66b13b949379849 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 23 17:44:58 2013 +0100 API: Add DFBSurfaceCapabilities names to directfb_strings.h. commit 05a0dfa2ad00d30dca622e339e24b8ca11381d43 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 23 17:44:12 2013 +0100 Core: Remove DFBAccelerationMask_Name() from Util as it is in Debug now. commit a5bacd679f5e8eab1617178bd0ebbf008402e52b Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 23 17:43:38 2013 +0100 Renderer: Use Debug::ToString() for some messages. commit 83090f0b88b5a91991f8260bdd3e20cd954de3aa Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 23 17:41:35 2013 +0100 Core: Add ToString<> implementations for different types, objects... commit 0d066c8d3042b9bec4b01ded5c901c497a2a1369 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 23 17:40:20 2013 +0100 libdirect: Add ToString template for debug messages etc... commit e87436d39152638aec6ad7831761eb7424e403b1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 23 17:36:12 2013 +0100 libdirect: Move Magic value into unconditional case (debug/non-debug) to avoid object size glitches with mixed debug settings. commit 96e888bfe905ab3a5d941c67778423905efb7ed7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 23 17:27:17 2013 +0100 libfusion: Remove obsolete FIXME comment about using free() in dispatcher thread. commit 6083187329a7639a38052de421c40dc595c607fd Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 23 16:07:40 2013 +0100 Task: Switch back to normal FIFO implementation. commit 38fa91316760165a95458f145a08ab5ef7076ba0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 23 16:05:42 2013 +0100 Core: Generate header file 'core_strings.h' including CoreSurfaceTypeFlags. commit e4399fd42763a6a8d22ce2168835700faf767b1d Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 23 15:46:18 2013 +0100 Core: In shared secure surface pool check for CSCAPS_PREFER_SHM as in non-secure surface pool. commit 94f6039ae01f4ca60f6ccb10100c646b94a69a6f Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 23 15:45:27 2013 +0100 Dummy: Set CSCAPS_SYSMEM_EXTERNAL. commit dee1849c93cfbcf6c84c7d3532e364e2d504b1d9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 23 15:44:43 2013 +0100 System: Add CSCAPS_SYSMEM_EXTERNAL to make system memory surface pools support CSTF_EXTERNAL. commit d978ef749d00d20a437bd07a5bddc10ddebeab30 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 23 12:42:07 2013 +0100 WM: Cleanups in default WM. commit 39c4dccd737cec028047c39394c3cee44b1b2f79 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 23 12:37:40 2013 +0100 Task: Improve debug. commit d2a32daf3722203447102fbaad118ab46c6f3d64 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 23 10:51:50 2013 +0100 Graphics: In CoreGraphicsStateClient_Update() no longer move around flags (not needed since GetAccelerationMask is fluxed). commit cc45fc24a0cb5302d0a407785ec750438a4b992c Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 23 10:51:18 2013 +0100 Graphics: Remove left over code in IGraphicsState_Real::GetAccelerationMask(). commit bdb0db843c3f2918276a3de56076fc8336f7a180 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 23 10:42:43 2013 +0100 Graphics: Remove obsolete 'accel1' option and related code. commit 354eb704afcc93510b3a02abd87a548f00873bf5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 23 09:41:39 2013 +0100 libdirect: Add D_MAGIC_PRINT() to log spell and result via D_INFO(). commit ba3ce0e012449454bcfbb2c155805012282b8e05 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 23 09:40:59 2013 +0100 GenefxEngine: More debug. commit 3e454792ca0c0e6821e3ef22e6072e2497eb7b4e Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 23 09:38:20 2013 +0100 Renderer: Use Direct::Magic and improve many debug prints/asserts. commit 1079c533b63bb58ede8cb6441620b4e7aaf2d29c Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 23 09:36:44 2013 +0100 Task: Use Direct::Magic and avoid Description() call when state is wrong. commit 302a1a9ae9d2ee0c4721de9ce455fb38749008e6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 23 09:36:13 2013 +0100 Task: More info from DumpLog(). commit 47dbd4a0acb2ce909b470f254e23de16063242c6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 23 09:31:17 2013 +0100 libdirect: Add convenience class Magic for magic value. commit 1c2c322d3faffdbd1b55a6c5265c58b9da7062be Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 23 09:28:20 2013 +0100 libdirect: Remove ambiguous String constructors. commit 5e64862f5b16d0b3b553758ea53b0e504cbf44a3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 23 09:06:50 2013 +0100 WM: In default add SimpleTask for triple buffer (used instead of reaction) and fix state client (make local instance). commit 4030d1317d499735c5b8ff96ced9cc8d20fdf774 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 23 08:50:56 2013 +0100 Task: Set TASK_INVALID only after DumpLog() call in destructor. commit 09aca501056260c0bce67e0a622c698fcc1a8c48 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 23 06:28:37 2013 +0100 Task: Add some more safety (clearing/reset) to Renderer::rebindEngine(). commit 5e06169c78359823b84aed50b6272795b2d14b82 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 23 05:29:58 2013 +0100 Task: Set default debug to times&state which is almost no impact. commit ff48f0b6a351e910ce9d9d003e425b37f22ffc16 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 23 05:29:23 2013 +0100 Core: Fifo back to use std::queue. commit f7151e9f9ff7a9badef6d62bf5b81a762e8e7d90 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 22 21:39:51 2013 +0100 libdirect: In direct_trap() use abort() if sigqueue() does return. commit 0b195398849c8f76f8a7cc1da64e434a15209de7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 22 21:35:20 2013 +0100 libfusion: Print object ref id as hex. commit 6f5cb47b2c8c78fb651bcef13cd140dec76b6e4f Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 22 16:50:15 2013 +0100 Graphics: Add dfb_gfxcard_drawstring_check_state(), was missing from f574182fa56bd2b7c54809e0732cd9eed231f96a commit. commit 155c522e61c443a7a20c48a8c84565095b2ce714 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 22 16:49:26 2013 +0100 Task: More debug checks. commit f574182fa56bd2b7c54809e0732cd9eed231f96a Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 22 16:22:27 2013 +0100 Graphics: Implement GetAccelerationMask() via flux. commit 6c992c74de76e52675e0439710882dc95ae503c5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 22 16:20:37 2013 +0100 Graphics: Use ref counting on slave side for state members (surfaces) again. commit b0191c033be18920178a002b9a2f340749c999ac Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 22 13:40:33 2013 +0100 android: add df_matrix commit f88f93fceab1859127a34b67a7ce0a2f209496fc Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 22 13:36:50 2013 +0100 android: add missing files to makefile commit b54d3ac4a36546171806cca685d739dfe34d5ba7 Merge: c42ee55 0d6f413 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 21 18:59:43 2013 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit c42ee553d63caf366a64f6f69a38708f5ccef7b5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 21 18:59:13 2013 +0100 libdirect: Don't log in direct_thread_self() to fix endless loop. commit 0d6f4137fc0a16d19ca88435965495e8da4257d2 Merge: b90bb11 2f3beab Author: Marek Pikarski <mass@directfb.org> Date: Thu Feb 21 15:11:13 2013 +0100 dfb: add LUT1 support Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit b90bb11e552de2904823d48f1961b421f7e9f7e5 Author: Marek Pikarski <mass@directfb.org> Date: Thu Feb 21 15:10:12 2013 +0100 dfb: add LUT1 support commit 2f3beabef84099976946ea4c3936ae6c8ac9b0c7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 20 16:07:38 2013 +0100 Task: Use FastFIFO for task manager loop. commit 1c2516d20e9225199898d848a78388393066b90e Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 20 15:02:49 2013 +0100 libfusion: Fix single app build. commit e6674fbca83b481c14928da4c5c5b2553380c730 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 20 13:00:17 2013 +0100 Graphics: Cleanup/debug fix in new Renderer::rebindEngine() code. commit 847d8fa9f605211505f3cb6f6a3da409af0325ee Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 20 12:42:05 2013 +0100 Graphics: Add rebindEngine() to Renderer and avoid some of the unbind/bind calls. commit ef8037cab6f2cd0f1e168357efb0cb1aa4312445 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 20 12:15:57 2013 +0100 Core: Fix PreLockBuffer(), PreReadBuffer(), PreWriteBuffer() and PreLockBuffer3() for CPU locks with task-manager. commit 01d284d6ae52728f8ca69c70e4065876dd033b5b Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 17 14:25:03 2013 +0100 IDirectFBSurface: Avoid CoreDFB_WaitIdle() at destruction when no memory permission was set. commit 21782e5d0af862a0e625cd185249394d0cf6f0ec Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 17 00:15:06 2013 +0100 Graphics: Add missing Flush to dfb_gfx_() functions using client now. commit b0c13dbeb405102f0025dfe024c2b7ecf9b6f3d5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 16 16:49:18 2013 +0100 Graphics: Implement Blit2 in Renderer. commit e25728eb4be46571d5a982ae8b911cc105dd2f5e Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 16 16:46:26 2013 +0100 Graphics: Implement TileBlit() in Renderer including tesselation to Blit. commit 3ef2e0512569c726b56f686e66b70b8d2432ddde Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 16 15:40:23 2013 +0100 Util: remove obsolete assertions from back_to_front_copy functions commit edcfa6f0142eb701307f305231ff31d8286b1f3d Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 16 14:31:20 2013 +0100 Task: Print first allocation and buffer index in SurfaceTask description. commit e463965dff73fef39a0c57dd30a69697a87a9c4f Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 16 14:30:12 2013 +0100 Task: Add SurfaceTask::GetCacheFlags() to collect flags from all accesses. commit 85c2db87a46f9053aa602ef8ba0947398ae99351 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 16 14:28:03 2013 +0100 Graphics: In Render::StretchBlit() call Blit() when called with one unscaled blit. commit e9479757ef985a64122907c80cfd7fffdb4de699 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 16 14:26:48 2013 +0100 Task: If DisplayTask is for FRONTONLY or BACKSYSTEM mode set TASK_FLAG_EMITNOTIFIES. commit 9076261ea77a509cdcd3eb815a091acd19c5e44c Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 16 14:25:47 2013 +0100 Graphics: Add Renderer::FlushCurrent() to fix CoreGraphicsStateClient_FlushCurrent() for master with task-manager. commit 998e492250679c6ce38302f2c013e87a751911f3 Merge: f7b8d9a a0ad493 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 15 18:14:27 2013 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit f7b8d9ab01eab08aff0a18fffbf8d141fda95961 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 15 18:13:52 2013 +0100 IFusionDale_One: Initialise fusion in non-secure mode for FusionDale world. commit a0ad493de5b63f6d6e205d00c8c40dcb9d37701f Author: Marek Pikarski <mass@directfb.org> Date: Fri Feb 15 16:02:03 2013 +0100 core: remove split parameter from method (split is only supported for arrays) commit 4b441d3a98a81ab79e91a6dcf22daed051c80fbd Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 15 04:12:39 2013 +0100 x11: Fix missing surface notify after last commit. commit 7577471e0a7f0d23a782e3adf7f6257f28e004e0 Merge: 628e871 56e595d Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 15 03:56:13 2013 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 628e8711e556346ce5187b8097bb80fc305e64ae Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 15 03:55:54 2013 +0100 libdirect: fix timeout calculation for waitqueue commit e2ba0e03af89ed9d7e9b4eb542e0065458e076c2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 15 03:15:03 2013 +0100 x11: more stereo fixes, cleanup commit 56e595d5ca99ef59f36b0d485041eebc3802dc16 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Feb 14 18:36:31 2013 +0100 drmkms: correct drmModeSetCrtc() usage (x,y are not destination, they are source). remove unused stuff commit 3071582cab074287c5ae36c0ac676f0c0cf86faa Merge: 74741f9 2064f21 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 14 16:32:48 2013 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 74741f9a7359b424d36d75d16044eb82142ff0ad Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 14 16:32:16 2013 +0100 libdirect: Implicitly create DirectThread object, so we always have direct_thread_self() return non-NULL. commit 2064f21c7dbdfa84b5db3e24daabb9fe9b9ff35f Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Feb 14 15:37:40 2013 +0100 drmkms: add support for various YUV formats commit 2dba22b332e7bfc01c90e8b0685d1860f14f3da2 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Feb 14 13:27:44 2013 +0100 drmkms: fix drmkmsPlaneRemoveRegion() commit fb5ca19a7a248b5c346a4941b21df4fe3b4647f0 Merge: deb9902 c67c1b8 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Feb 14 13:09:46 2013 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit deb990242496a6a01407d3ae0ad64d5eca92ba88 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Feb 14 13:08:35 2013 +0100 drmkms: do not set the mode according to the primary layer, allow offset for the primary layer, add option drmkms-reinit-planes as a workaround for broken drivers commit c67c1b8f350cb833b2058bd1ada566cc31424285 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 14 12:22:48 2013 +0100 FusionDale: Fix inconvenience with QID setting for master/slaves. Use Fusion to store NS QID in master, attach in slaves. Default to using One for Coma/Messenger, unless "session=" option is used. To enable One explicitly it is just enough to use "remote=%" now. commit 09fb430976472210d3a61f1593c1849502ec708a Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 13 20:17:13 2013 +0100 x11: Fixes for stereo with task manager. commit c81d5cb689245cfe1a3847fd5ea536313b4143fc Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 13 20:15:07 2013 +0100 Task: Add stereo support to DisplayTask. commit ccd04652d07c641efc083ae26f26e47bc169dd92 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 13 20:12:20 2013 +0100 Graphics: Implement dfb_gfx_*() functions via implicit thread local GraphicsStateClient object, add dfb_gfx_cleanup() to delete all of them. commit aef25109de4197e855e9b9ff09f8cb73afa03d46 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 13 20:11:11 2013 +0100 libdirect: Add TLSObject2::DeleteAll() for cleanup. commit 2acf93c943724f3945492b2f1449895766e7d8b8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 13 19:42:02 2013 +0100 libfusion: save stack during object creation and dump when zombie commit 9df7f8e68671527e025c3661666847ebe6096673 Merge: fd61a3e 71fdc24 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 13 19:06:35 2013 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 71fdc24bde6e22943d556e0db62d3e23f8177f47 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 13 19:05:27 2013 +0100 API: Add DSSE_NONE to DFBSurfaceStereoEye to initialise flags more easily in C++ commit 186d15346dca118919b310ecb168eb36d9cf7b3c Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Feb 13 18:41:07 2013 +0100 drmkms: if drmModeSetPlane() fails, try to disable and enable the plane (for broken drivers) commit e977886b56839470d9af3503e52f8bbd8efb1656 Merge: 389aac6 004dbc8 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Feb 13 17:55:41 2013 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 389aac6dc2cc5eccc52fc99bc029b0be8a356cbc Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Feb 13 17:55:10 2013 +0100 drmkms: implement layer support (mostly untested) commit 004dbc810096a2b419ee31d2e668d2538b876ff7 Merge: 4a329d2 c54920d Author: Marek Pikarski <mass@directfb.org> Date: Wed Feb 13 15:27:25 2013 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 4a329d2a705a7525da947a8dcd6d4080433c52ec Author: Marek Pikarski <mass@directfb.org> Date: Wed Feb 13 15:24:24 2013 +0100 core: Split arrays for all Fill/DrawXXXs() functions to support sending multiple fusion call buffers within a function call. Support "split" of arrays i.e. support a hint parameter gives to method arguments in .flux files. Enables i.e. to call FillRectangles(..., num=100000) without errors, and all 100000 rects are split into n FusionMessages each fitting into a FusionCallMessage buffer without causing an overflow. commit c54920db0a26252fb21dac27d818f7b643f6306b Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Feb 13 12:39:31 2013 +0100 drmkms: allow surface locking from a gpu, add option drmkms-use-prime-fd which passed the prime fd instead of the bo handle in the gpu lock. commit fd61a3e2a75540c0bae5b5a6293f874e624002ce Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 13 01:43:02 2013 +0100 IDirectFBSurface: Update FlipStereo or Flip with recent changes in other versions, remove CoreSurface::BackToFrontCopy() finally. commit 05ab5e3264813d273275c2de1e183c6e82fb9fd8 Author: Marek Pikarski <mass@directfb.org> Date: Mon Feb 11 10:16:30 2013 +0100 sawman: fix update_region_4 when there is no intersection with opaque region (e.g. when opaque region moves out of the screen) commit b8cd5da08c56550ca639be27d446ceeaf7c1a083 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Feb 11 03:56:09 2013 +0100 libdirect: Add default parameter to Get() method. commit aebb4a7658cca3db1135ff6806ced3738a77da7e Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Feb 11 02:53:45 2013 +0100 Graphics: Fix flushing issues with multiple state clients, e.g. sub surfaces. Keep current renderer in TLS Object. Flush previous renderer implicitly. Replace CoreGraphicsStateClient_FlushAllDst() by CoreGraphicsStateClient_FlushCurrent(). Flush state clients of source interfaces, e.g. in Blit(). commit 7d2c3bba98853ba30dc5f7c12316502bbc1e37b1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Feb 11 02:52:08 2013 +0100 libdirect: comment out perf dump at deinit commit ff37595d72b6bc3f5443eec66fe1edd083be3b4e Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Feb 11 00:27:55 2013 +0100 libfusion: Add debug messages to single app ref functions. commit 4f271668cb71d5cac9f34d0a5d83ed5ad6ceee17 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Feb 11 00:25:38 2013 +0100 libfusion: Print message info in single app event dispatcher. commit f3c89940378089eccbac6f00f62c8f33020801f4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 10 23:40:30 2013 +0100 Core: In CoreGraphicsState_real::Flush() don't call dfb_gfxcard_flush() when task-manager is used. commit d51b230d21c90aa13d5b65b0fd4a8d720cf7a0e7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 10 23:40:05 2013 +0100 Core: Cleanup CoreDFB_includes. commit c5032b2a3190b63c447c10a141dc181992a63d97 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 10 23:30:34 2013 +0100 libfusion: Implement fusion_ref_catch/throw for single app, used with always-indirect. commit 3bde2479a88fe33773f9d6ed22ac6a64af98bd91 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 10 23:17:59 2013 +0100 Graphics: Check for task manager in old functions that should not be called. commit 7dc801d910a5cd7ed6bd4758b2048f8401f4dffd Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 10 23:16:45 2013 +0100 Fonts: Don't call dfb_gfxcard_flush_texture_cache() when task-manager is used. commit e52d96dc9b9806431a8283e62fd855102766a9a8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 10 23:14:12 2013 +0100 Task: Implement CoreSurface_real::PreLockBuffer2() for CPU access using sync task. commit 8fca233114cc65632f7a449d1212eff18a0cfdb7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 10 23:13:01 2013 +0100 GenefxEngine: Two fixes for recent changes. Only set 'accel' in 'set' functions. Remove debug '0&&'. commit 04978022aa1ae658bc91d123141212dadab54900 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 10 22:54:27 2013 +0100 Core: Fix CoreDFB_CallMode for single app with always indirect to keep calls direct if already within dispatcher. commit e1fd806727e4cecdecdd5d4db258e6fc8b3a7486 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 10 22:53:50 2013 +0100 libfusion: Return tid of event_dispatcher_thread in single app fusion_dispatcher_tid(). commit a7c66497465ad2c9b22fa24f4563288cc6e2d906 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 10 22:35:41 2013 +0100 libdirect: Fixes for TLSObject. commit fd9ac558a26007b45c74e4f6a825a9acc54b3a09 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 10 11:41:38 2013 +0100 Task: Add missing Performer include. commit 4b9758213b4a7efacdd05ceeab796c79d04b3656 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 10 11:40:28 2013 +0100 libdirect: Add LockWQ (mutex+waitqueue), TLSObject and Performer. commit 866e2a4fad07378a0c997a545543456dede07aeb Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 10 11:37:50 2013 +0100 dummy: Add FlipRegion() and UpdateRegion() commit 52d506190c52d91432f932d098f9bf33c9e8b9a3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 10 11:37:10 2013 +0100 x11: Change SurfaceTask_Done() to Task_Done() commit c5d7e0c5d0b7651f80e88aaca390f9fec91d43a0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 10 11:36:28 2013 +0100 Task: Major step forward, cache, tiles, queues, optimisations, debug tools... API: Replace C wrappers SurfaceTask_Flush/etc... by Task_Flush/etc... Add qid to Task. This is set during Setup of a Task being handled by a multi core implementation that does not statically assign the cores to the tiles, but allows any core to execute any pending Task. This is not handled by the Task Manager, but the Task's Push() implementation. Add hwid to Task. This is set by or after Push() when it's decided which core runs the Task. Add next pointer to Task, used by Task implementations to queue up tasks when passing the Push() implementation. Add Task::append() to set the next pointer and assert that it is not set already. Implement automatic set of cache flush/invalidate flags. A set of accessors is stored that did not yet invalidate after last writer. Flush is set by default for write access, but will be cleared when another write task for same accessor is following. Giving the Task implementation the chance to skip the flush at Done(). Add SurfaceTask::CacheInvalidate() and CacheFlush(). In the Task's Run() function concerning tasks running on the CPU, CacheInvalidate() is called first. Add Task::enableDump() to turn on log dump of the task during destruction. This can be used for misbehaving tasks to see what happened when and in which thread (including stack trace). Add TASK_FLAG_NEED_SLAVE_PUSH. Task implementation indicates that only the master Task needs the Push() call and takes care about the slaves. Add TASK_FLAG_LAST_IN_QUEUE. The task runner sets this flag when it encounters the next pointer is NULL. This way the Finalise() later in Task Manager thread (but implemented in TaskThreadsQ::Finalise) can resume queue operation by pushing the updated next (if set). Call Finalise() also on all slave Tasks. Add TaskThreads and TaskThreadsQ. Convenience classes to run threads that receive Tasks to call Run() on. The first one is a simple just processing any pending Task in any thread. The second one takes care that Tasks with the same qid are not run at the same time. This way tasks from the same accessor can also use the follow flag when in tile mode, by defining one qid per tile. Add tiles_render to Engine Setup. This way an engine can choose to receive the rendering calls only for the master task. It will have to setup some tile_clip to handle in the Run() for each tile. This is implemented by GenefxEngine now. Make GenefxEngine require just one Task's rendering calls/buffer and apply tile clip on the fly in each of the tile's task's Run(). In GenefxEngine::SetState() keep modified flags and emit only those state entities that are required. Add SimpleTask convenience class to register any Run function pointer (optionally Push) wrapped into a Task. Avoid fusion shm allocation by replacing the FusionVector of read tasks in surface allocation by an std::list. Four different debugging options (compile time) in src/core/Task.h. Set fusion_config->skirmish_warn_on_thread to print a warning when anyone calls fusion_skirmish_prevail() within ultra-high response Task Manager thread. More C wrappers for Tasks. commit 839c1354e2f3f8ea8b39f7139a6b4839019af075 Merge: c683eb8 ea4fc4e Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 10 08:53:03 2013 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit c683eb8d95ccafe563129f2db6cf3d46d623e160 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 10 08:49:58 2013 +0100 Graphics: When in always-indirect mode and CoreGraphicsStateClient is created within dispatcher then create a renderer and use it directly. This avoids buffering all calls via requestor interface and flushing the them via a synchronous fusion_call_execute(). commit ea4fc4ec0ede4c84a8b44ca746c711a56d3a6c60 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 10 04:12:03 2013 +0100 Core: Add CSAF_CACHE_INVALIDATE and CSAF_CACHE_FLUSH. commit e0521f361c572b69f53bd7a90de349840b2c9f71 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 10 04:10:26 2013 +0100 defaultwm: Use FREEZE for config of hw region. commit fd52aa2d8cc064b18c13b623aec56d2bd9df1bf7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 10 04:08:11 2013 +0100 sawman: Use FREEZE flag for cursor updates. commit ccaa78880d90259cbd48d25a81e69e16350d45f7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 10 04:07:25 2013 +0100 Core: Add parameter to dfb_layer_region_realize() to avoid SetRegion call. Use FREEZE flag for all config changes. commit 39f43d39fc408ac35cf9da60efd5d9c26e9fafd3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 10 03:55:27 2013 +0100 libdirect: Use __typeof__ in D_UTIL_SWAP(). commit b059d99db962d01225e70a8510718ed64d5e2e85 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 10 03:54:57 2013 +0100 Core: Remove Util::String forward declaration, String has been moved to libdirect. commit 4c18a2c3ecd81216e6598cfab8e2994c81d133b9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 10 03:51:03 2013 +0100 Util: Use Direct::String in DFBAccelerationMask_Name(). commit 9d0947a7e02f188400e8523f73ccf154b87b0eaf Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 10 03:50:43 2013 +0100 Core: Add assertions for buffer in dfb_surface_allocation_update(). commit 394f3dfe53b7d6492dd68d0e438e2c896109cda3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 10 03:47:32 2013 +0100 Core: Add proper dfb_surface_lock() calls to dfb_gfxcard_state_check(), being used only for GetAccelerationMask() now. commit 76e9ab4ba5676854dc18200831655a52b826fee8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 10 03:43:18 2013 +0100 Core: Add assertions to dfb_surface_get_buffer*(). commit a2b0a9e3ef53d2b92f5168801036500b9a75d88f Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 10 03:37:10 2013 +0100 Core: Fix return value check for dfb_gfxcard_state_check_acquire() in dfb_gfxcard_batchstretchblit(). commit 2f001ed7a257f097692f6bb1a3904af7bad41606 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 11 12:44:07 2013 +0100 Core: Fixes in dfb_gfxcard_state_check_acquire() for source flip count and other selection, and adding EmitCommands when destination allocation changes. commit 4a2b70a387afc7960d809b10f0ad7a8dd6ea771f Author: Marek Pikarski <mass@directfb.org> Date: Thu Jan 10 16:18:04 2013 +0100 core: fix wrong parameters order Thanks to Ilyes GOUTA <ilyes.gouta@st.com> commit d55020c78c335f5c9652e512122fba9e322eaff6 Author: Marek Pikarski <mass@directfb.org> Date: Tue Nov 6 14:21:07 2012 +0100 core: gfxcard: fix locking also for draw_mono_glyphs() and fillquadrangles() commit 720ce8baedc40a16da68875c3f87ebffef8c9ca4 Author: Marek Pikarski <mass@directfb.org> Date: Tue Nov 6 14:17:03 2012 +0100 core: gfxcard: add pop/push identity, locking adjustments for stereo buffers commit 35dc235df282885c65af5c9e0704a022bc39fd3d Author: Marek Pikarski <mass@directfb.org> Date: Tue Nov 6 12:09:35 2012 +0100 core: remorked locking in gfxcard which led to segfaults in certain situations commit b8ce15fc4dd6d27e6716fb78dc6155900154d96b Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 10 03:22:59 2013 +0100 Core: Catch calls in dfb_gfxcard_sync() with an assumption when task manager is used. commit b8a6bfa7c75fd647ffecab92b761df540a1f29ef Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 10 03:21:51 2013 +0100 Core: Fix check for task manager in ICore_Real::WaitIdle. commit 6c1525007aa2246033c79fcb6586f0921e626999 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 10 03:15:59 2013 +0100 sawman: Use DLOP_OPACITY only if required to allow less capable layers. commit 1a3a943b9b0916cf56d3df851d7e7711753ed6eb Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 10 03:07:09 2013 +0100 libdirect: Add perf-dump-interval for dumping performance counters, add reset_on_dump field, add value for counting. commit aa7017a0b9f08a2efaf8a24adcda213b0e4d8267 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 10 02:52:15 2013 +0100 Core: Don't call dfb_gfxcard_sync() in CoreDFB::WaitIdle() when task-manager is active. commit 2485f72a70ee300810d0cd34b292ccf4a617430d Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 10 02:48:53 2013 +0100 Core: Enhance debug logs in CoreLayerRegion code. commit 876889d3b604e7dc7872432315dda2d7432ebe34 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 10 02:45:25 2013 +0100 IDirectFBSurface_Window: Fix warnings. commit 46ddea277bb00d6382a5302b53ad3da0dce56185 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 10 02:40:00 2013 +0100 Task: Fix debug build by including directfb_util.h Cleanup debug code in DisplayTask. commit abcdc5dfec53e855e3ef3fea99be064be4ecb7ad Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 10 02:33:10 2013 +0100 Core: When buffering motion for wm input, flush after at most 10ms, not just in dispatch cleanup. The dispatch cleanup could in theory be called after a longer time. commit 8b58c1a24f7e66ad129e82480f515bc75d65cbd6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 10 02:32:00 2013 +0100 Core: Avoid cursor surface and wm_update_cursor calls when no-cursor or no-cursor-updates is used. commit 577f39c8ab465d5dfd9be9c64827c48237c74de2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 10 02:31:07 2013 +0100 Util: Remove Mutex class (now in libdirect). commit b3e48b8c4c2aad8b3e181f1363f7d83f3d78ca28 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 10 02:30:47 2013 +0100 Task: Use Direct::Mutex commit 7b56bb4a837d7eb95944bf77e42c9a80a24a1c49 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 10 02:28:47 2013 +0100 libdirect: Add Mutex util class. commit 2c37cddba70ed6823cd6bdee9a6781f9f3897d67 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 10 02:20:44 2013 +0100 String: Use va_copy, use direct_vsnprintf, add Clear(), add assignment operator for const char *, make std::string cast operator const. commit 470374079cca3a5b42437adb31e1e6a491ac56e8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 10 02:09:21 2013 +0100 X11: Different changes improving the responsiveness, performance and expose for task-manager mode. - Replace usleep event polling loop by using select() which does not require the X lock. - Fix expose events with task manager by issuing a DisplayTask. - Handle expose events in thread again (no Core_AsyncCall) with compression (flush before waiting for events). commit 6d9145ca1c398ac78b71ce27b87d0ab76d92024f Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 10 02:07:38 2013 +0100 DisplayTask: Add ret_task to Generate() call, when non-NULL it returns the DisplayTask instead of flushing it. Add C wrapper. Cleanup. commit be890e06e6c066ccaf1a4b3066a859fc74c3830d Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 10 01:39:46 2013 +0100 x11: Add CSTF_INTERNAL to surface pool as buffers are in normal system memory. commit 544244d990ac742460ae35e927095a09557e739a Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 10 01:35:27 2013 +0100 libdirect: Show info messages when loading symbols or running nm -n. commit c0d8dbd0cd2358891f4b41ed9d23b8a001e16a07 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 10 01:33:52 2013 +0100 libdirect: Fix direct_waitqueue_wait_timeout() for timeouts greater than a second (or few) commit 6ba2c3b5d13de788c0fbc99212e3b1ab47cfb2c6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 10 01:32:47 2013 +0100 libdirect: Use prctl to set name per thread, e.g. for gdb. (gdb) i th Id Target Id Frame 21 Thread 0x7fffc3fff700 (LWP 397) "Coma" 0x00007ffff7465527 in ioctl () at ../sysdeps/unix/syscall-template.S:82 20 Thread 0x7fffdc941700 (LWP 396) "FD/One/NS" 0x00007ffff7465527 in ioctl () at ../sysdeps/unix/syscall-template.S:82 19 Thread 0x7fffde7fc700 (LWP 395) "Task/3" __lll_lock_wait () at ../nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.S:132 18 Thread 0x7fffdeffd700 (LWP 394) "Task/2" pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:162 17 Thread 0x7fffdf7fe700 (LWP 393) "Task/1" pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:162 16 Thread 0x7fffdffff700 (LWP 392) "Task/0" pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:162 15 Thread 0x7fffe4ff9700 (LWP 391) "Genefx/7" pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:162 14 Thread 0x7fffe57fa700 (LWP 390) "Genefx/6" pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:162 13 Thread 0x7fffe5ffb700 (LWP 389) "Genefx/5" pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:162 12 Thread 0x7fffe67fc700 (LWP 388) "Genefx/4" pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:162 11 Thread 0x7fffe6ffd700 (LWP 387) "Genefx/3" pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:162 10 Thread 0x7fffe77fe700 (LWP 386) "Genefx/2" pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:162 9 Thread 0x7fffe7fff700 (LWP 385) "Genefx/1" pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:162 8 Thread 0x7fffecd59700 (LWP 384) "Genefx/0" pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:162 7 Thread 0x7fffed55a700 (LWP 383) "Task Manager" pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:162 6 Thread 0x7fffee1d4700 (LWP 382) "X11 Input" 0x00007ffff7466023 in select () at ../sysdeps/unix/syscall-template.S:82 5 Thread 0x7fffee9d5700 (LWP 381) "Virtual Input" 0x00007ffff7461303 in __GI___poll (fds=<optimized out>, nfds=<optimized out>, timeout=<optimized out>) at ../sysdeps/unix/sysv/linux/poll.c:87 4 Thread 0x7fffef1d6700 (LWP 380) "Fusion Deferred" pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:162 * 3 Thread 0x7fffef9d7700 (LWP 379) "Fusion Dispatch" __lll_lock_wait () at ../nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.S:132 2 Thread 0x7ffff571d700 (LWP 378) "Perf Fump" 0x00007ffff743883d in nanosleep () at ../sysdeps/unix/syscall-template.S:82 1 Thread 0x7ffff7ff1740 (LWP 374) "lite_listtest" 0x00007ffff743883d in nanosleep () at ../sysdeps/unix/syscall-template.S:82 commit e3b2a6aef4b43c803c607273772571cafe32cf25 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Feb 7 17:47:08 2013 +0100 drmkms: also force the encoder when none was matched commit 741bdeef4e3cc193bc8e68e9fae3eab14e467895 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Feb 7 17:40:36 2013 +0100 drmkms: force connector and crtc if they could not be detected commit d7f583456c0e086fc041f5f8f5cfeb2bf183ea60 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Feb 7 13:00:15 2013 +0100 build: remove file references to dok's ultra-secret branch in Makefile.am commit 045438f7a4fb385d9ae3e0f06e612b6ddc761eef Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 6 05:15:44 2013 +0100 make: add dependency for CoreSlave.h commit 19de5acf38200cbcb049f4bfaf918819f7440d88 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 6 03:59:52 2013 +0100 Util: Move PacketBuffer to its own header file. commit 884028fcf3013a87e669a89605c006de94875228 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 6 03:44:08 2013 +0100 Core: Remove Util::PrintF, can use Direct::String( format, ... ) now. commit c1ff70c1ad47f39f2f1a5be003aae2a9303e5965 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 6 03:40:18 2013 +0100 Core: Use Direct::String commit 94c89bcd569c9aadf39fd7398c7857013b8e218b Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 6 03:11:04 2013 +0100 libdirect: Use String class to buffer whole stack trace print and once direct_log_write() to avoid intermix with other threads commit 0e26cf102cb1c6a06f4c3a59d5431bb6ae4fbb7c Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 6 03:09:43 2013 +0100 libdirect: Add String util class including C wrapper. commit 931f6939283e075a2764a43773fd79e7c48eea60 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 6 02:26:26 2013 +0100 libfusion: add field skirmish_warn_on_thread to FusionConfig allowing a thread id to be put there When the thread id matches in fusion_skirmsih_prevail() a warning is printed. This is useful for optimising certain threads that should not be blocked. commit ffd6fc7e46f372511a22b87cac419079e3f33a77 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 6 02:23:21 2013 +0100 Core: fix warning in surface.c commit 7d05444f8c4a55ee34389912edf1c32bf7ddb67e Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 6 02:22:19 2013 +0100 Core: fix missing argument to debug message in Interface.cpp commit a78df7d2b5786060e1eb5cf549e31ce1f3f9eb3e Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 6 02:21:38 2013 +0100 Core: fix warnings in wm.c commit 8d632746feb4dd7bee4ee544af9c2d8554b02107 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 6 01:19:33 2013 +0100 Core: In dfb_surface_buffer_find_allocation() make sure buffer surface is valid and locked. commit 80aedabd9f30c90d58aaa848900b13701badb110 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 6 01:18:39 2013 +0100 Genefx: add assert in function not to be called with task-manager enabled commit a59a99fbd09c9a54e3e8ea5c1294d13c53d9f27e Merge: bb6b2e2 6500cce Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 6 01:17:00 2013 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit bb6b2e27fbf534eb2f3f0d0fa4ecb35292d7eb25 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 6 01:16:08 2013 +0100 Core: Add some asserts to locking functions that should not be used (by DirectFB internally) with task-manager enabled commit 6500cce2d1e44f41e84526f13b28d9e9065e971b Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Feb 5 18:57:11 2013 +0100 drmkms: also call drmModeSetCrtc() when the layer buffer mode changes commit 77366e52fa304f65a1317e036f02f37165e56640 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Feb 4 05:17:33 2013 +0100 libdirect: add direct_log_write() to avoid formatting copy, var args etc... commit 1b402d48d78fdb6934ae5cdbb21d714cd511b5d0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 3 10:37:17 2013 +0100 dfbdump: don't use dfb_surface_get_buffer() in alloc_callback() commit 4c6645e9fab05665625cb2a4940f0ecb73e928a3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 2 19:08:38 2013 +0100 IDirectFBSurface: Add DSEVT_DISPLAY and buffer index to DFBSurfaceEvent, cleanup structure. commit 2b21e6f30c2be7330426e34caf66e44ea24f77fb Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 2 15:52:38 2013 +0100 libdirect: Show new thread's tid, scheduler and priority properly, finally :) commit 09ad2d9403b0484ba374c5ddbc51e13d3cb53002 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 2 08:01:41 2013 +0100 Task: Add assertions about current thread to task functions commit 32ab77acead3f14aef2dfdaf17e7de86cac176a4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 2 07:41:14 2013 +0100 Task: Allow Task::addNotify() to be called outside of TaskManager thread when Tasks aren't flushed yet commit 8c61ad5dc607b4423d9b2971983d767b8fbc811d Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 2 07:40:26 2013 +0100 Renderer: Fix DrawRectangles() and fix clipping cap check for FillTrapezoids() commit 70a78fc9153b655cb3601313124abf707de4e7a4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 1 20:24:52 2013 +0100 Task: allow Task to call AddSlave when running, only safe before flushing the first slave Also add an ASSERT in finish() for TASK_DONE state. commit f5afafa105dc622e7685c316f64e4331f409d679 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 1 20:16:50 2013 +0100 make: use dfb_types.h for generation of directfb_result.c commit 70debd63436a0dbc0444ceeb0c477eb16b9da874 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 1 20:16:03 2013 +0100 API: move DFBResult from directfb.h to dfb_types.h commit 39fdcc7397453ecd2e1095c822eba354d6baf622 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Feb 1 15:17:02 2013 +0100 drmkms: fake the width for 8/16-bit formatsbefore passing it to kms_bo_create() to prevent wasting memory commit 7b632def0fdb4475f1cdcdba5ec13bee3dd898aa Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Feb 1 14:24:46 2013 +0100 linux-input: also use the driver for the drmkms system commit a7b77903743b79c2a72eca881202f34284cbc673 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Feb 1 14:20:13 2013 +0100 drmkms: use drmModeAddFB2(), support pixelformats other than ARGB8888. Note: using 8/16/24 bit pixelformats still allocates an amount of pixeldata as for a 32bit surface. The problem is that kms_bo_create() only supports 32bit surfaces. commit 139401406c7e6402f2317b06e5173e4f37fdde4e Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Jan 31 15:39:57 2013 +0100 add drm/kms system (first experimental version) Note: - uses only the last connected connector id as output - sets mode according to --dfb:mode= parameter - 32 bit support only - no layer support yet commit 5a87a8735a5b3956628dcbfb92ba768649bf4125 Merge: 3479928 0b6248d Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 31 20:15:35 2013 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 347992899b412964801756bdecbbad87aa341032 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 31 20:14:47 2013 +0100 sawman: let collector window implicitly grab keys as well commit 0b6248d2b2929d1dc0695fdea70e8f6246755bcc Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 31 19:23:22 2013 +0100 TransferTask: Add ref to surface buffer to fix assertion in dfb_surface_pool_bridges_transfer(). commit d13a005d34e5d581cbf4c9b8ebb788b153fa2217 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 31 19:22:36 2013 +0100 Task: Make TaskLog entry a class and use vector to store log. commit 52edc2eb9e4213fcda4b99c3fe923794b4cd5f10 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 31 19:21:21 2013 +0100 GenefxEngine: Use new PacketBuffer template. commit 5112516da1b712352ace9cf7cbbea222740b2711 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 31 19:20:32 2013 +0100 Util: Make PacketBuffer a template to specify Buffer class, add Mutex/Lock util classes. commit 7cec160da64bee282635408cdd5f365fa7d5a15d Merge: 1944c54 bf33292 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 30 18:38:58 2013 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 1944c5451a651839597956fa134ec1e42f540940 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 30 18:38:25 2013 +0100 wm: memset struct to zero first before calling callback in window listener attach code commit bf33292dffcda6087c51f64966663a6c779420d8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 28 00:44:09 2013 +0100 Core: Avoid using surface in dfb_surface_pool_bridges_transfer() commit 246eb2de5eeff999f5ee47336b271cfe3e4b7f5b Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jan 19 23:08:40 2013 +0100 core: comment out enabling of debug in core.c commit 87ecb36ce3d67d1c92052678c3a40ab5c7a86346 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jan 19 23:06:53 2013 +0100 clock: use DIRECT_CLOCK_MONOTONIC also for relative time function (legacy) commit 2b956e2ae8063c7657a6431f35581feebca0da35 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 18 19:29:29 2013 +0100 Android: fix build by adding missing files and -DFLUXED_ARGS_BYTES=1000 commit b935b0f9a957f534bcf006c1ccc0aeeb55f605b1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 18 19:28:58 2013 +0100 Android: fix freetype source location commit ca94500e6770879139c5ff61c792b65875176e6a Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 18 15:50:17 2013 +0100 IDirectFBSurface: When attaching to an event buffer, generate an update event if appropriate. commit 1a411dcc517a342704b9bbf02ee4ae84a888ab16 Merge: 4d64ace 74d56e0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 18 15:22:52 2013 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 4d64ace5d9bf9beb9a320b7e8f1a6ed4b81bf90e Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 17 21:54:52 2013 +0100 spooky: add comment handler to allow comments in spooky files starting with '#' commit 354bf07d1b0dd97317233cadea3948d06461c189 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 17 21:54:10 2013 +0100 Graphics: More debug in CoreGraphicsStateClient_Init/Deinit() commit 491e0eb969c7630a144342dbab1af39adf180b1f Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 17 21:36:09 2013 +0100 fusion: more info when trace-ref is used commit 74d56e0c866a113e641005adace193cef7925091 Author: Marek Pikarski <mass@directfb.org> Date: Wed Jan 16 10:03:23 2013 +0100 wm: sawman: blit-flip mouse cursor instead of copying update regions commit 9a9f8afbab73507569a9ba92f2514c73819955fd Author: Marek Pikarski <mass@directfb.org> Date: Wed Jan 16 10:02:13 2013 +0100 wm: default: blit-flip mouse cursor instead of copying update regions commit 39cb57147fa7b4c5e6626f2230d74293bb0cd616 Merge: 36458e6 d7c8dab Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 16 08:50:41 2013 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 36458e6178d067345131e12dc53ceab61061e0d0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 16 08:50:07 2013 +0100 direct: fix direct_log_domain_check() commit 2cb067235aec604f56981d0a565b731e474bacb4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 16 06:45:28 2013 +0100 fusion: require linux-fusion 9.0, fixes leakage when building with latest linux/fusion.h. commit 8b8039f7e19470a55c12570ab2090e24bc9cfe04 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 16 04:56:02 2013 +0100 Core: Fix layer region flip update with NULL argument when using task manager. commit d7c8dab89833ce7e7ea9713dbe8653db505b0a18 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 16 06:45:28 2013 +0100 fusion: require linux-fusion 9.0, fixes leakage when building with latest linux/fusion.h. commit 22dddb143334798da131a07cd19c22aa2689a97c Merge: b0d4cc3 9d8a924 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 16 05:09:18 2013 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit b0d4cc364e6aeaf6f69148c59ea88d5a4fd96e2c Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 16 04:56:02 2013 +0100 Core: Fix layer region flip update with NULL argument when using task manager. commit 9d8a924e048c0aa5ca0be2f7e7d992eba49d89ef Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Jan 15 15:57:07 2013 +0100 build: fix warnings commit e9c89f4f0aaf414ccf8f6cb1d265f9b92f442df4 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Jan 15 14:58:12 2013 +0100 build: fix divine related warnings commit a04020cd2e24c81a8b2d76925fc98c7c866d3191 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Jan 15 14:47:14 2013 +0100 build: fix fusionsound alsa driver warnings commit 2aaddcbe48f702d84454a30e464d46dad1834e0d Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Jan 15 14:31:56 2013 +0100 build: fix fusionsound related warnings commit dcfd2b25e9e9b438bd346beb5528e388ba3834e9 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Jan 15 14:28:29 2013 +0100 fusionsound: remove examples with a lite dependecy (they will be readded to lite) commit b20d65635b9640dc10f0d4b4f0273f29efa53dfc Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Jan 15 14:26:37 2013 +0100 build: fix warning commit 39e1d777f550c974e7cca2e104ee7d9fcdb2c6b9 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Jan 15 14:17:23 2013 +0100 build: fix more fusiondale related warnings commit 6b9abc9b5d97c1199bb82c14e92fcb214f806eb1 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Jan 15 13:43:03 2013 +0100 build: build fusionsound and fusiondale examples, rename some of them to avoid confusion commit b78424f70bff883ef3c5e496618b80faf35a67f4 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Jan 15 12:56:43 2013 +0100 build: fix more warnings in fusiondale commit 4e5b14ad8e00e8f460a9b7bd1292dadcc712e190 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Jan 15 12:26:46 2013 +0100 build: fix all warnings in fusiondale that happen on a 32-bit system commit c02c7d053e959fffce25920128f138e0dc30cde7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jan 12 06:32:32 2013 +0100 IDirectFBDisplayLayer: In SetBackgroundImage() flush graphics state client of surface. Fixes text on df_window background. commit 9ab3aa2af0d76b1dbb655b8882869fdac63fa59a Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jan 12 05:55:15 2013 +0100 Options: Add 'always-flush-callbuffer' to flush the call buffer upon commit, effectively disabling it. commit ec7e9700a56692cd8e9de17749c66d2b90620cbd Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jan 12 05:53:23 2013 +0100 fusion: minor optimisations in fusion_call_execute3() via TLS, allow call-bin-max-num = 0 to disable it. commit 452e9a7f7da58da996ad348f95de66835278fc34 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jan 12 04:38:59 2013 +0100 Graphics: Make all CoreGraphicsState methods except Flush() buffered. Use only one requestor instance. Flush on Deinit. commit ac383dcc943979376af2ba39b4d83bd4a06aff2a Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jan 12 04:36:52 2013 +0100 Core: Move CoreTLS definition and Core_GetTLS() to core header. commit 2909924b75bf9355c95822f025b7519b3585043d Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jan 12 04:34:51 2013 +0100 Core: Add CallBuffer helper class to be used by requestor interface with buffered methods. commit 8d8ac5aa0a65a6f9c59e0dc7e3ecf64ddb49258b Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jan 12 03:29:31 2013 +0100 CoreGraphicsStateClient: Add _ReleaseSource() and _SetColorAndIndex() to avoid calling generated C wrappers. commit 5d5e33f697dcf6c3483d1b1b962011283435ff8d Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 9 18:11:15 2013 +0100 graphics: Fix crash due to missing initialisation of renderer pointer. commit 2acb727cf7d72f781f4f869c142db6c28e20ed01 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 9 16:45:27 2013 +0100 IDirectFBWindow: Use CoreWindow_GetInsets(), remove CoreWindowStack_GetInsets(). commit fc7ddc39b5afda80d31ff48f8774c82335c4a0f4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 9 15:06:28 2013 +0100 mkdfiff: add dithering to RGB16 conversion code commit 53535664dacc5496cf713ae950370c4a8276bb07 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 9 14:05:01 2013 +0100 gfx: remove workaround from dfb_gfx_copy_regions_client() commit b18ae544c7a0c6b8b3858cbd25800418a7cf5cca Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 9 14:03:25 2013 +0100 API: Fix DFXL_ALL* for DFXL_TILEBLIT and DFXL_FILLSPAN commit b1ac23a8d5c65e5d1f204ca0980fb9fee9fd6eff Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 9 14:01:54 2013 +0100 fusion: flush buffered calls in fusion_reactor_dispatch_channel() commit 4ca738689ebd225472d40c8e2be6567709556579 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Jan 8 16:13:15 2013 +0100 gfx: in dfb_gfx_copy_regions_client() fall back to CoreSurface_BackToFrontCopy() if task-manager is not used This is a stupid workaround and has to be reverted as soon as problems have been fixed. commit 2f4dea4011a042eba132ebcf06c1318acd284523 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 7 13:30:40 2013 +0100 divine: replace direct_thread_cancel usage by sending STOP message via file descriptor commit 63c7e0b335025f2173638e92eaa2a6c6372ac708 Merge: 38d76cc f3613e3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 7 13:28:36 2013 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 38d76cce81c6a7134381bb7c0df79c5af698e8ee Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 7 13:27:45 2013 +0100 core: set call name of Core_AsyncCall commit f3613e3505bb74af1cd0b58ceaf6834641fbba47 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 7 13:10:21 2013 +0100 IDirectFBSurface: log rects/points in BatchBlit commit 6d2cba0f570b41016b3fe209a8267bcf10aa4a79 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 7 13:08:01 2013 +0100 fusion: extend some error messages commit dec062202335609e831ac304971a15fac61c96d6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 7 13:06:28 2013 +0100 media: just some comments commit 10f174a996c36755297164f4e6da5e201bbbb6e3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 7 13:04:10 2013 +0100 GenefxEngine: change DFB_GENEFX_TASK_WEIGHT_MAX from 10000000 to 1000000 and move wait from task Push to engine setup commit 1fb5cb269460c3c659f0c1a7e8a53ece33226d2b Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 7 12:46:50 2013 +0100 CoreGraphicsStateClient: send blits in batches of up to 200 each commit f020d7cb42b22a2dda7cc348c7e396fdd59afcf9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 4 16:42:48 2013 +0100 fusion: set call names for world_refs call and object destructor commit 1e1495a964ea7d17c7f7ebdce65f9c3d307cf5ac Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 4 16:39:36 2013 +0100 fbdev: In fbdevLock() use allocation->index instead of dfb_surface_buffer_index(allocation->buffer). The buffer might already have been destroyed. commit 7336a6a88865345db2b4ae41a4ac4560eeb83cd1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 4 16:36:19 2013 +0100 log: Use monotonic clock for domain prints. commit 6c3abe2b93d0ca2ab3d450472b1c7fb65395f6db Merge: 9423549 3ee897c Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 4 15:43:56 2013 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 94235495a8776ae5986b7ea014890c38e002204c Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 4 14:30:04 2013 +0100 fusion: Add fusion_call_set_name(). commit 3ee897c2029a5d10b52f18a4b9c72742634577bd Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Jan 4 13:58:23 2013 +0100 libfusion: add empty implementations of __Fusion_call_init() __Fusion_call_deinit() and fusion_call_set_quota() This fixes single-app builds commit f5a5eb5ea7ea332573f1a757e3634c082664c03a Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 4 13:01:47 2013 +0100 IDirectFBEventBuffer: Add dump_event() function for debug log. commit df1889ef182ea4fac7ee188333dfe342b48b873b Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 4 13:00:12 2013 +0100 SaWMan: Set name of manager call. commit 1ec344c772364ac27fc4daf8d27ead69aea41de5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 4 12:58:45 2013 +0100 DFIFF: Load image provider directly in slave in case of DFIFF header. commit d7ab2dc2455ad8416139ad786261e193f65211e3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 3 12:55:26 2013 +0100 DFIFF: Check for DFIFF_FLAG_PREMULTIPLIED and premultiply/demultiply when needed. commit ce4211f77a12b7b46aa58fe76d9b1dfca7534153 Merge: 507eed3 2b9258e Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 3 12:52:56 2013 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 507eed3da70d0552cbc48063cd2d0ec0659653a7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 3 12:52:21 2013 +0100 mkdfiff: Add option -p, --premultiplied to generate premultiplied pixel data. commit fc0d689be39c505cea7e680b9d3d6688be337271 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 3 12:50:52 2013 +0100 DFIFF: Add DFIFF_FLAG_PREMULTIPLIED to indicate premultiplied pixels. commit 2b9258e22ae3a5cae5f35e26b53f26eb6278c77a Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 2 23:39:07 2013 +0100 Task: Remove TASK_FLAG_EMITNOTIFIES from DisplayTask. commit c0fd336611b201efa61af7fd732cdb90b5670327 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 2 21:43:36 2013 +0100 dfbtest_font: Append some characters to test string to check kerning. commit 8fc109f6fdf653f676bcd0ac4702590e3e366679 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 2 21:41:19 2013 +0100 FT2: Make kerning cache entries lazy, speeds up CreateFont() on average by factor 6 on an embedded device. commit 58ba41c20c0f6bdc261269685200b77384be7c74 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 2 21:38:49 2013 +0100 dfbtest_font: Restore test string after accidental commit. commit daa1da9cb6704fa47f1b3daba7bc7da5a63d64e5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 2 21:14:08 2013 +0100 DFIFF: Fix loading DFIFF to premultiplied (using DSBLIT_SRC_PREMULTIPLY). TODO: Add premultiplied flag to DFIFF. commit 8443c76bcc4540deb86c4c9ac75b9bbce2f062f6 Merge: 0594668 7361007 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 1 21:43:53 2013 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 05946684ab03411e9b244032aaa138b262ca253b Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 1 21:43:21 2013 +0100 spooky: Add command 'l' to loop from end of file to that position, if stream is seekable. commit 73610073e00a08edd70ab4684f77ea560ba103a5 Merge: 144eb16 b47e8e7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 1 15:13:03 2013 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 144eb160900a364522d9124a7edbccdd7ec53eb5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 1 15:12:38 2013 +0100 DFB: Update banner! commit be47522b443b4cae96bc5a414815be8a03175d71 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Dec 29 11:29:37 2012 +0100 Options: Add 'call-bin-max-num=<n>' and 'call-bin-max-data=<n>' to configure the maximum call number/data for async call buffer. commit 1c8518549f8dde3620f8182e251ff94bcaa86023 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Dec 29 11:28:44 2012 +0100 Options: Add 'graphics-state-call-limit=<n>' to set FusionCall quota for graphics state objects. commit b47e8e777043aab22ea8c01de22650b047ce0dc3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Dec 29 04:32:34 2012 +0100 Task: Enable warnings when DFB_TASK_DEBUG is true. commit 4db919c819cc6fdbd4b44937e0079b6d0e28898d Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Dec 29 04:16:48 2012 +0100 fusion: Move call bins to TLS to avoid blocking other threads, and prevent dead locks. commit fc88fa9dc3aa100ebffcc5f4363fecf060de5709 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Dec 29 03:44:11 2012 +0100 fusion: Add fusion_call_set_quota() using new ioctl in linux-fusion 8.11.0. commit f4d588dde7049282388162447b5b4dcd9088e707 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 27 17:09:34 2012 +0100 core: Call direct_perf_dump_all() when core shuts down. commit 88efbd945e664c2c24df3adc73cef6484baecd23 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 27 17:08:41 2012 +0100 direct: Print header for performance counter list only when items are available. commit 97c2328f1e908d738b98421910d78929d078b546 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 27 16:24:18 2012 +0100 graphics: Add some comments to CoreGraphicsStateClient structure. commit edf6c933b0f2837425316f2bd8d30c76bf523db6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 27 16:23:19 2012 +0100 GHenefx: Add some debug. commit 493ba98d954d83ba2a8494c6d3a9d92e8a08c691 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 27 16:22:23 2012 +0100 sawman: Move graphics state and client to wm data to fix non-secure fusion case. commit 6c7980d014002c84c108b8ea14f36dbc00cb4275 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 27 16:20:25 2012 +0100 wm: Add dfb_wm_get_data(). commit c5d4b5745eb3d980c7d87efaf6fe90cbc7f173a2 Merge: 3389ce2 c91de6f Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 27 16:11:55 2012 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 3389ce244c8185ce3cbbf41162d556f86dc0b9e0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 27 16:09:19 2012 +0100 direct: Add D_INFO_LINE_MSG() and make D_INFO_LINE*() macros a no-op when debug is not enabled. commit c91de6f4ac772c014327dee561e84c957bff5306 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 27 04:24:19 2012 +0100 direct: Add missing perf files to makefile. commit c00ac973f0d6c8212f4f326cc7e43e2ec9ec9628 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 27 04:23:14 2012 +0100 Task: Improve Describe() of display task. commit 58425360bcfa0549c2e3d41ae17d2a39c66604ca Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 27 04:22:41 2012 +0100 IDirectFBSurface: Add CoreGraphicsStateClient_Flush() calls in flipping functions. commit 35192dda108464e3500f739d5ecd05634f541a36 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 27 04:20:21 2012 +0100 Graphics: In IGraphicsState_Real::Flush() call dfb_gfxcard_flush(). commit 4a179e485fdb07d3a1edd9e93d4fddcdfaaf0593 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 27 04:16:41 2012 +0100 direct: Include <direct/thread.h> in debug.h. commit 97f6a1e13609414e2816be5d5f14fe4e93c81347 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 27 04:15:17 2012 +0100 sawman: Disable debug. commit b8e34e2174c3216753b38a543a1c126cdf9e1ee7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 27 04:14:21 2012 +0100 IDirectFBEventBuffer: Add some debug messages for surface updates. commit 917476b20251ca8486b028faa163651cbd15316d Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 27 04:13:38 2012 +0100 Core: In dfb_layer_region_flip_update() call dfb_gfxcard_flush(). commit ad90d098b9cc7a8a21622c15f97c239c8d8384f0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 27 04:13:16 2012 +0100 Core: Add dfb_gfxcard_flush() to emit any pending operations. commit d3711ea41ce5647d071f94412566168fd7657c01 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 27 04:11:39 2012 +0100 Renderer: Don't use .field style init. commit 8b93697969b2d34196740b790a9926ffe1c18a9d Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 27 04:07:05 2012 +0100 direct: Document DirectHashIteratorFunc. commit f531f3e46b4e6b941474a99baa5ad89324f3794a Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 27 04:06:23 2012 +0100 sawman: Return from wm_update_window() if not active. commit 6593a754545769b75ae452ab04c332345f91cb0e Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 27 04:04:49 2012 +0100 x11: Put dfb_surface_flip() call back. commit deec368e4401bbfdf545a0b282dd51551de9a2aa Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 27 04:01:49 2012 +0100 direct: Add performance counters. commit da83d977e06db817a65aec387d3993bd3f08c0da Merge: b19b27d 60005a4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 26 22:01:38 2012 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit b19b27dfa042ebd2ea18e23e188595e239deaa65 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 26 22:00:58 2012 +0100 Core: Add CoreSurface surface event debug. commit 040520005d745e7bfd81298c777e952a3825962a Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 26 22:00:25 2012 +0100 Core: Add CoreSurfaceClient_real debug. commit 60005a4ba7a677a2b501393ba0c8d10bd0af3ccb Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 26 21:58:51 2012 +0100 IDirectFBSurface: Add time_stamp to DFBSurfaceEvent. commit c797e549bb1cbbb9f61585515ef97f072465cd9f Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Dec 24 08:02:06 2012 +0100 Graphics: Call CoreGraphicsStateClient_Flush() in ClientList.FlushAll*() rather than checking for local renderer. This can be called from slaves, so we need to use the client. commit 285dd5322c44ce713cc896bb14b616c518cce93f Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Dec 23 13:55:12 2012 +0100 Genefx: Use Util::PacketBuffer instead of std::vector and add accounting for pixel operations to keep tasks short in execution time. Calculates task 'weight' based on pixel count and flags, e.g. blending. Adds three defines: // FIXME: find better auto detection, runtime options or dynamic adjustment for the following values if defined(ARCH_X86) || defined(ARCH_X86_64) define DFB_GENEFX_COMMAND_BUFFER_BLOCK_SIZE 0x40000 // 256k define DFB_GENEFX_COMMAND_BUFFER_MAX_SIZE 0x130000 // 1216k define DFB_GENEFX_TASK_WEIGHT_MAX 300000000 else define DFB_GENEFX_COMMAND_BUFFER_BLOCK_SIZE 0x8000 // 32k define DFB_GENEFX_COMMAND_BUFFER_MAX_SIZE 0x17800 // 94k define DFB_GENEFX_TASK_WEIGHT_MAX 10000000 endif commit cdee3cd67ab459fc4aed9b3fc1796d118aa8553f Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Dec 23 13:53:54 2012 +0100 Util: Use dfb_gfxcard_batchstretchblit() in dfb_gfx_stretch_stereo(). commit 13f36a13b44536744dd5db0639009bc486d9da0e Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Dec 23 12:24:10 2012 +0100 Util: Add PacketBuffer utility class for chunk wise allocation. commit 5afa9bcdec8405997e1d014b9d1350f15ffafc4e Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Dec 23 09:39:47 2012 +0100 Core: Rename dfb_surface_flip() to dfb_surface_flip_buffers() called internally, make dfb_surface_flip() a wrapper checking for task manager option. System modules used to call dfb_surface_flip() which must not be done anymore when task manager is used. commit ba94376e6e48447054d2150913bce814e98c29c6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Dec 23 09:32:17 2012 +0100 Task: Hotfix BACKSYSTEM flipping with task manager, creating a temporary graphics state client. Should think about having a static client to avoid the create/destruct overhead. commit 5c3589cc13b2f4920b412659f3e3d862ab7c6709 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Dec 23 08:33:28 2012 +0100 sawman: Use graphics state client to use task manager based renderering if enabled. commit 49f0c4cf6375754fa3afd4317fc5bb958aedb026 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Dec 23 06:52:49 2012 +0100 Renderer: Fix for Blit transform. commit c70ce81200ee681d612d5dab71b0b70dad12941c Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Dec 23 05:37:28 2012 +0100 fusion: Fix ref catch/throw for always-indirect mode. commit 10bef2dd8d4aab0430fdb11b3d76d12e46ba7d20 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Dec 23 04:46:26 2012 +0100 Renderer: Add tesselation/transformation framework to new Renderer code. Implement texture triangles in Genefx Engine for free transforms of blitting. commit 988d1522533b275c92a072cc3cb4bfd4d38ad48d Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Dec 23 04:45:56 2012 +0100 gfx: add some FIXME comments where I suspect an off by one error commit 858a03f1fe1028cba87c081e583e73170c133be0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Dec 23 04:39:44 2012 +0100 API: Add DFBVertex1616 like DFBVertex but using 16.16 fixed point instead of float. commit 4afbf6706c5b9f40f9a865cc34446a7929543964 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 21 06:04:06 2012 +0100 Util: Include <direct/memcpy.h> for TempArray. commit dab72ad2a95383a3c97ab728cc0557ec5c799ebb Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 21 03:29:05 2012 +0100 fusionsound: Fix crash in dummy driver when no driver is set. commit a6bd80b18124910b90db14cf6a760ab63fef1d71 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 21 03:28:25 2012 +0100 fusionsound: Fix warnings about set but unused variable caps. commit 96ea173ddcc84fb2ea5828ed7a92ebc13b7cbcc8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 21 03:27:53 2012 +0100 dfbdump: Show KEEP_SIZE option for windows. commit 8e16f64f0032f819fc6341102389619130d63d83 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 21 03:26:17 2012 +0100 Water: Change WTT_NONE (0) to WTT_UNKNOWN (1), make WTT_IDENTITY = 0. commit 3246ee0874d1b833d80f3409df601fe968b67c24 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 21 01:14:58 2012 +0100 Util: Add DFBAccelerationMask_Name( DFBAccelerationMask ) returning an std::string. commit b21db47937863a9c0730e5044fe3bf677e4dfd58 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 20 19:18:53 2012 +0100 fusionsound: add dummy driver commit eb3ac4b6d2635bad0e7dfbdee7da55bf37e1904f Merge: 754ac36 b395894 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 20 17:41:30 2012 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 754ac362c011661ec61227ba582c6f9bd281fb85 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 20 17:40:49 2012 +0100 IDirectFB: Use DWOP_KEEP_SIZE when width/height are specified in surface description (force-windowed). commit b39589436903b303f8a83952fcaa2201f75b3c2a Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Dec 19 13:26:30 2012 +0100 fusionsound/core: fix deadlock during shutdown commit 901e2efae1d1206c5af36d9ed3ce8501bda68672 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 19 04:13:38 2012 +0100 Task: add debug mode with logging of actions in Task, locking and other cleanups commit 97be037ec4512df52c6aa81134c825b9ff397095 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 19 03:52:35 2012 +0100 direct: Add D_INFO_LINE() for easy on-demand tracing. Example output (with three of those added to idirectfb.c): (*) [Main Thread 0.011,101] (24423) IDirectFB_Construct idirectfb.c:2026 (*) [Main Thread 0.011,129] (24423) IDirectFB_Construct idirectfb.c:2033 (*) [Main Thread 0.011,147] (24423) InitIDirectFB_Async idirectfb.c:1983 commit a6a451a6295ea242bbb7b09c01c7d5787109213f Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 18 19:07:01 2012 +0100 OneBench: Use malloc'ed buffer rather than a huge array on stack. commit ea4cd8f190704e3e5022491d4050c056ef40d8c1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 18 19:04:21 2012 +0100 sawman: Send device_id along with DFBWindowEvents. commit c2b1ce698361c76b828eb65f242a4acf1ffa391b Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 18 19:03:07 2012 +0100 IDirectFBWindow: Add DWEF_DEVICE_ID and device_id field to DFBWindowEvent. commit a91beb840105895c4fa7b2c7e887a8589f323c36 Merge: ef6933b 5ac9149 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 18 18:56:43 2012 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit ef6933b875fc07837f5d755361b94e77d051ff4e Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 18 18:55:46 2012 +0100 IDirectFB: When force-windowed applications use SetVideoMode, create window with DWOP_KEEP_SIZE. commit 3f2904da0345edb34e550cbae18e71463bfc2cbe Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 18 18:54:40 2012 +0100 sawman: Add option hide-cursor-without-window that hides the cursor when no window has control over it. This has been a new behaviour which rather requires the option to be set now. commit 5ac91494268b7b8e61be871afc51acd36eb8fb5a Merge: d5b960e 622acba Author: Tarik Sekmen <tarik@directfb.org> Date: Mon Dec 17 18:06:13 2012 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit d5b960ee480c3c2f425f6ba4dfd9cd9df2f9f525 Author: Tarik Sekmen <tarik@directfb.org> Date: Mon Dec 17 18:03:15 2012 +0100 SetClipboardData: Fix for no timestamp. commit 622acba6c932ebdcc3bc9d8211fdb07d528e43d3 Author: Marek Pikarski <mass@directfb.org> Date: Mon Dec 17 17:54:07 2012 +0100 videoprovider: ffmpeg: initial speed should be 0 commit e3e5c61dded7af40a3e8c8ee1511f2b2e31772cf Author: Marek Pikarski <mass@directfb.org> Date: Mon Dec 17 14:03:54 2012 +0100 sawman: fix handling of opaque window regions commit 7b11cbca3776238db30ff194a1ce3ce8c57368f0 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Dec 13 18:54:09 2012 +0100 tools: add simple spooky output to dfbdumpinput (via -s option) commit 25dd70a17dd9ae755a51b770496d236d607391d7 Merge: b4180ea b32ef46 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 13 15:53:54 2012 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit b4180ea40e9fab1850dd5188fdcf5e1d090b0ec0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 13 15:52:23 2012 +0100 linux_input: Make linux-input-force work again with no-vt. Add some debug. commit b32ef46f9292727e24f29b05452416593ab6680a Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 13 14:14:46 2012 +0100 dfbdumpinput: Add tool for forwarding input events to a file or another machine. Usage example: dfbdumpinput | nc 10.1.1.56 1234 Note: if you use a 64bit system and want to forward to a 32bit system use '-32' option. commit 8276da424c308893135026a12d636f353ca5466b Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 11 02:53:11 2012 +0100 configure: Default to -O3 instead of -O2. For embedded people set CFLAGS anyways, and for desktop -O3 would be better. commit c11108c79a990833320fdf52f507171196a21838 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 11 02:51:42 2012 +0100 configure: Allow setting DIRECTFB_VERSION_VENDOR via environment variable. commit 9db855c305c02692bfd35b243c92a91ff323125d Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 11 02:43:36 2012 +0100 API: Add separate directfb_water_strings.h, silence generation calls. commit c717b61e59f782551474beff650eded3dc6a6c28 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 11 02:40:11 2012 +0100 IDirectFBSurface: Check for surface data being non-NULL of passed in interfaces. commit 70419747c4d448daca8c85bb79296f2402e2ff0e Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 11 02:38:44 2012 +0100 core: Add missing config.h include to surface_pool.c commit 6389fa53752ba12235b63433dd3b26df4131ff60 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 11 02:38:18 2012 +0100 core: Fix dfb_surface_reconfig() for colorspace. commit d46dbc34870ef59c9763c9d8ae0b5dc84cdb7031 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 11 02:37:35 2012 +0100 sawman: Add includes to fix compiler warnings. commit e3f6c37e75196b5e76102b08c87cf290f6726a03 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 11 02:35:17 2012 +0100 direct: Use __typeof__ instead of typeof (for ISO C). commit 874dd4c7e6afd60b549a69d6b3a49fcac58cacbb Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 11 02:34:06 2012 +0100 IDirectFBSurface: Add DumpRaw() like Dump() but raw :) commit 45e63057df3a2290bee629feb62c15fb25fdf1c2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 11 02:17:21 2012 +0100 IDirectFB: Configure primary layer surface with DSCAPS_GL when passed in via surface description. commit c4603eaeb5d21168db9c76b77e4f6191ceeaabeb Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 11 02:11:05 2012 +0100 tools: fix warnings commit 888bc4c38bd35e56bfb9bf8dc48a121113aac19d Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 11 02:10:49 2012 +0100 dfbtest_water: cleanups commit 1477e410b2ffa70bf51e9da41e0793f1bba5bd73 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 11 02:09:34 2012 +0100 core: cleanups, fix warnings commit baffe28b35a2799daf6c6165c2882e76865aa618 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 11 02:09:11 2012 +0100 sawman: cleanups, fix warnings commit 2c83633b8092d331c29b64db46dd5ebf60aa8057 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 11 02:09:01 2012 +0100 fusion: cleanups, fix warnings commit a44513a70fe57ef4d6752e63cb18a0d72a587af1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 11 02:08:53 2012 +0100 direct: cleanups, fix warnings commit d934b5655762ac2d911af024403e4ae4f7d36865 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 11 02:08:12 2012 +0100 API: cleanup trailing comma in enums commit ed3c29075d15323086277c1de9f1c322fd25850c Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 6 13:36:43 2012 +0100 spooky: Add $(libvoodoo) $(libone). commit e98836e721475915fb62c43e7518a206a7f4cb41 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 5 21:51:04 2012 +0100 fusion: Reset refs_catch for local ref entries to 0 after sending unref calls. commit eba93a4376e8886d4286f6e9c4607e1d92d67645 Merge: a2fad3d e5ab3e9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 5 00:57:05 2012 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit e5ab3e92fed9f7d1dac4e68b2ada8f039e97b397 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 4 00:22:52 2012 +0100 fusion: Include sys/types.h before linux/fusion.h. commit 84aac808171844a2370a5a3bd85ca2c9cabfd7de Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 4 00:07:47 2012 +0100 system: Add debug to system module loading. commit d5299f7dd6f74420ab73c1e3074475b51edcd314 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 4 00:06:08 2012 +0100 sawman: Add sawman_set_driver_config() API to overrule layer configuration, e.g. from system module based on signalling. commit a2fad3d16fa33cbd2aa7db1242ac594dee287c81 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 29 22:08:11 2012 +0100 API: Add six keys, e.g. for phones. commit a3c1999d53ab7a1f4819efcdeca8896b0d92e031 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 28 15:41:57 2012 +0100 sawman: Add passive3d-mode option to be read by drivers. commit 2385bbae5652a8328d7d5bd665057407995109c9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Nov 25 22:43:50 2012 +0100 Core: Do not consider resource manager for object without identity. Will add resource tracking for master soon. commit 755ed33bd8b08d00eb18694324843d67a8a30c85 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Nov 25 22:42:28 2012 +0100 dfbdump: Fixes according to changes in object life cycle for buffers/surfaces. commit 41752760f9063b60e62fe931e2357f95b85f64e0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 23 19:49:17 2012 +0100 FusionDale: Implement hybrid mode. When One is used for Coma (via 'remote=%...') and non-secure fusion is active, use it for Messenger. commit 0e4f64346c0cafeffa69c7a76857144cef42e924 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 23 19:48:11 2012 +0100 IFusionDaleMessenger: Add debug messages. commit 79782db82ee9f0f9d08616731744e0134ad4311f Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 23 19:46:05 2012 +0100 FusionDale: Add missing fusion_world_activate() in fd_core_arena_initialize(). commit b8940b206dd775fe6cf9b69d850206c775e97524 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 23 19:42:10 2012 +0100 Graphics: Fix CSF_SOURCE_LOCKED not being set properly in all relevant cases, leading to missing unlock. commit 29f5ff06371d226938211a5e82f2237449478a03 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 23 19:17:39 2012 +0100 ISaWManManager: Don't memset SaWManProcess structure argument in GetProcessInfo(). commit 038cc05868d7fd522638768fd3b3d3fd7ea177de Merge: 0d4db49 3f13f48 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 23 19:17:18 2012 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 0d4db49049f108340296dadc6e15af788dd5b150 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 23 19:16:53 2012 +0100 ISaWManManager: Add debug messages. commit 3f13f48b7a5690c590ffcd61c9380ed076ae4190 Author: Tarik Sekmen <tarik@directfb.org> Date: Fri Nov 23 17:36:29 2012 +0100 FFmpeg video provider: Fix segFault if dest_rect is NULL. commit 1aad8a0f659813bf164ff19c6ead657b419e8949 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 23 13:27:45 2012 +0100 Core: Reduce size of (unused?) data shm pool to 16 MB. commit 7ee9e3fe40739181cfde6a53273912c054797ec8 Merge: 6eafabc 516e22a Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 23 13:20:37 2012 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 6eafabcfeb90c56ac7a791e41293637ee197806b Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 23 13:19:39 2012 +0100 Fusion: Add fusion_ref_set_sync(). commit 516e22af30bffca0c8a75b76892d9edd2b73c0ca Author: Marek Pikarski <mass@directfb.org> Date: Thu Nov 22 10:48:22 2012 +0100 videoprovider: do not ref/release dest surface, reset PTS if stopped commit 47a28377a51baba77825d9374777ffba900140d9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 17 16:52:58 2012 +0100 fusion: Add missing fusion_ref_init2() for single app builds. commit 48a25811abb5aebae2a2a9a56a78f1506a7b0326 Author: Ilyes Gouta <ilyes.gouta@st.com> Date: Wed Nov 7 09:10:12 2012 -0500 idirectfbdisplaylayer: check if data->stack isn't NULL before calling any cursor routines For example, calling IDirectFBDisplayLayer_EnableCursor() leads to a SIGSEGV within dfb_windowstack_lock() because of a deference of the uninitialized CoreWindowStack *stack variable. The patch introduces few more additional checks, just like what has been implemented in IDirectFBDisplayLayer_SetBackgroundMode() and IDirectFBDisplayLayer_SetBackgroundImage(). Signed-off-by: Ilyes Gouta <ilyes.gouta@st.com> commit 67d6e9950bdaad7c53924d3a54c8c2a364279daf Author: Ilyes Gouta <ilyes.gouta@st.com> Date: Mon Nov 12 13:39:55 2012 -0500 directfb: fix DSPF_NV16 per-pixel color bits count to 16 (4Y + 2CbCr + 2CbCr (next line) * 8) / 4 == 16. Signed-off-by: Ilyes Gouta <ilyes.gouta@st.com> commit 9bea95235139511f2971ebbc42e0335293e39307 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 16 11:13:53 2012 +0100 Core: Add some debug to failing acceleration cases. commit 53dfa85e6e3d8ea7f8b24b86baa28412df9c0071 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 15 23:20:58 2012 +0100 Task: make accesses public for now commit 09278cd0ed6f57f73e290c70e212604897b5478c Merge: fee62d5 dabc119 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 12 18:18:57 2012 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit fee62d5ff7e352a78b2ad8db9b0c70305afa8d2a Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 12 18:18:41 2012 +0100 fusion: add missing call permission for unref commit dabc119328d0a69e0cd9620e3acf02d2a844dd19 Author: Marek Pikarski <mass@directfb.org> Date: Mon Nov 12 17:28:53 2012 +0100 videoprovider: ffmpeg: preparation for clipping to make scrolling work in browser commit 023e663b78c354e1fa8d361705697fef7dbc3df1 Merge: 3d6006c c445a08 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Nov 11 23:07:15 2012 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 3d6006c02dbeb1f857ce040e5e4b9ee7ef94aa05 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Nov 11 23:06:18 2012 +0100 Core: Remove CoreGraphicsStateClient_Update() call from StretchBlit fast path to fix source setting issue. commit c445a08f56204e5575b6f74bc0c5b190df9e80dd Author: Marek Pikarski <mass@directfb.org> Date: Fri Nov 9 13:16:48 2012 +0100 VideoProvider: ffmpeg: implicitely stop in Release() commit bcba03c5cf4bf6443c2ff8787c0b95c445375c53 Author: Marek Pikarski <mass@directfb.org> Date: Tue Nov 6 14:28:35 2012 +0100 core: gfxcard: correctly recover from error conditions, fix one source locking bug commit 763ad187bf965f87e59f3ce0108759daa679bdad Author: Marek Pikarski <mass@directfb.org> Date: Thu Oct 25 13:42:24 2012 +0200 fusion: also allow https streams commit ee59ca536d4cfb28a9aabd55238f4473de190f68 Merge: 087d9d4 54beba0 Author: Marek Pikarski <mass@directfb.org> Date: Thu Oct 25 13:34:52 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 087d9d4f47b93ef1edf90b5dd00d0536505fd3c6 Author: Marek Pikarski <mass@directfb.org> Date: Thu Oct 25 13:34:09 2012 +0200 musicprovider: ffmpeg: add some debug commit 54beba0715a4fead2a0aa5477977347f81fc2bc0 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Oct 24 18:01:15 2012 +0200 mesa: fix compatibility with mesa 9.0 commit 21901fd08cd76c325a44d3e14976c2333a84a3f7 Merge: ee81bcd 9713bce Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Oct 24 18:00:06 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit ee81bcdeb2e870662bdd940a2002907b600e37a3 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Oct 24 17:59:36 2012 +0200 build: fix strict prototypes warnings commit 9713bcebf58ccaeadced1c8f06991eb8757694ec Author: Marek Pikarski <mass@directfb.org> Date: Wed Oct 24 15:26:04 2012 +0200 videoprovider: ffmpeg: add some debug, add SetDestination() dummy commit 3305d8387b420d992b02beb525721e2d75b23fa4 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Oct 24 12:55:56 2012 +0200 build: fix missing linkage against ffmpeg libs commit 618d9efc555bba1ffe6169153e5d6e26ceb15e4d Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Oct 24 12:41:53 2012 +0200 fusionsound: link drivers explicitly against libdirect and libfusionsound commit 065f82d51b13785ca3fb0da934e26ceb51a5a6a7 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Oct 24 12:30:05 2012 +0200 build: disable the following by default: imlib2 and svg imageproviders ---- swfdec, xine, xine_vdpau, mng video providers commit 6dbb04acc36c75f174f84dcf5a11efe1e5decca9 Author: Marek Pikarski <mass@directfb.org> Date: Thu Sep 27 12:09:33 2012 +0200 videoprovider: implicitely set speed=1 when playback gets triggered commit 8dd5f01dadf540362a15dbd1d6f2e622691eff94 Author: Marek Pikarski <mass@directfb.org> Date: Wed Sep 26 18:11:59 2012 +0200 videoprovider: ffmpeg compile fixes commit 4ffc200ea320e488a70c8b1eced8595379a94ad7 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Oct 23 18:44:23 2012 +0200 Revert "videoprovider: remove all videoprovider previously merged from DirectFB-extra due to licensing issues and/or circular dependencies" This reverts commit 234f84b7ea39b4ff39467220bf7fcf8b14034399. Conflicts: configure.in debian/control interfaces/IDirectFBVideoProvider/Makefile.am commit 2d651a52e50f2d2682010c6a82c2f977c5233a5e Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Oct 23 12:26:08 2012 +0200 fix build for removed linux-one commit 7f1813eeee1724511ff8782ae942f6839f17c1c6 Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Oct 22 14:52:16 2012 +0200 build: remove --enable-one-module option commit 591c276dc1124585c1c10d369bd5e030a0bf4da7 Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Oct 22 14:48:23 2012 +0200 remove linux-one, it has been merged in linux-fusion commit 44d8e965206ac86002e422e00d990fe06f3277ea Merge: 872515b 446d81a Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Oct 21 15:38:55 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 872515bd5c51a10da27abdd6174a28de38a759e4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Oct 21 15:38:26 2012 +0200 genefx: fix inner loop variable redeclaring 'i' commit 446d81aeb8e6e19b9d66aa0d6c42799665e7eb8b Author: Marek Pikarski <mass@directfb.org> Date: Fri Oct 19 15:45:02 2012 +0200 fusion: always flush fusion calls when shutting down commit e0cb79e60848ebeb3d4b61cf8288bdf008fda5ff Merge: 5f19b7f fa49f2f Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Oct 11 14:35:51 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 5f19b7f8721a18032c133ec8b85e64b30c479754 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Oct 11 14:34:51 2012 +0200 debian: increase package version commit fa49f2fd46aa82d7cac127608665a54c16258359 Merge: 7ffba26 69fd6d2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 11 14:10:09 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 7ffba26d39872446ff3ca5f9aab9d1e05afc5f6e Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 11 14:09:43 2012 +0200 Renderer: one more fix for multi tile setups commit 69fd6d2d4587f8b458443cf720f40128d3482f1c Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Oct 11 13:47:22 2012 +0200 debian: fix check for armhf (raspberry pi detection hack) commit 903925169978dea8b41e3ee8ffe4fd9480fb6c7b Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Oct 11 13:01:38 2012 +0200 debian: add missing file commit 107431fefe1f9cb9d04a208ee58ba203e19af662 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Oct 11 12:59:56 2012 +0200 debian: provide libfusionsound-dev commit 980af89bb8691b028d3236015e19d075a77fe3a1 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Oct 11 12:00:25 2012 +0200 debian: package divine, misc fixes commit ea3f447d4e50fc595f0893a371c79759b289ff6f Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Oct 11 11:32:00 2012 +0200 debian: package merged fusiondale commit 8a947b3351b75764a68d5881b6838102a0dd65c9 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Oct 10 19:02:09 2012 +0200 debian: build fusionsound and its modules commit ecebfbc263a55e38ea4df5018a19e6a23809342b Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Oct 10 16:50:03 2012 +0200 build: misc fixes commit 01081a667bd477268ffa74031b6e002d43a7abcd Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Oct 10 16:23:23 2012 +0200 build: fix static build commit de662027c7c11b129b3c57da6a30b61094605fee Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Oct 10 16:00:53 2012 +0200 fusiondale: add README commit adf06dc261d92abda79320e1e90499a617df3a31 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Oct 10 15:59:22 2012 +0200 merge FusionDale commit 1cd26832caa0c077db8febc6f894240808abeb14 Merge: c10c6ac c488b69 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Oct 10 14:37:02 2012 +0200 Merge branch 'master' of fusiondale.bundle commit c10c6ace16d5d4e077d740a0300b8fad35e17d2e Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Oct 10 14:29:59 2012 +0200 examples: move fusionsound examples to a subdirectory (wont be build anyway) commit 2a478c1c53b82045939827412b383bddd8013947 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Oct 10 14:20:08 2012 +0200 merge divine, build lib/divine and lib/sawman after libdirectfb and link explicitly against it commit 328e7ecbfc55becbed55258af96e5e0b408963b2 Merge: 93dee0d 0ff3636 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Oct 10 12:34:23 2012 +0200 Merge branch 'master' of divine.bundle commit 93dee0d5f31d0db58ad89bc2af6b8678df2496a9 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Oct 10 11:51:51 2012 +0200 one: revert changes to makefile commit df12fe8c11e7949df6eca77f11a7b5d58409e520 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 10 04:03:29 2012 +0200 Task: proper manager thread shutdown, another fix for slave tasks commit b42d830aad399b0559c710b3096054a8c333d908 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 10 04:02:55 2012 +0200 Renderer: Fix clipping issue with multiple cores. commit b922df5a544d38dafa9378112cd593aee227453a Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 10 04:02:09 2012 +0200 Core: Fix wrong buffer used for display task with backsystem. commit 89be87dcf005a679d027c5916e03bb37ce726ac4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 10 04:01:30 2012 +0200 GenefxEngine: Implement DrawRectangles() commit 48f965d1b880f2b66bb0513d6b2bc3bc16abc0e1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 10 04:00:59 2012 +0200 util: move build_clipped_rectangle_outlines() to clip.h commit 3a69ae4c4c846cbc963e4e025556a28570f584b8 Merge: c5a5d42 83cad41 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 10 01:02:19 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit c5a5d421e8ff5be06f53901316406dc2bbc9ab5b Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 10 01:01:00 2012 +0200 fusion: Implement user space based ref counting for secure fusion. This avoids ioctls, boosts performance. Only three refs are left, then we are using calls/reactors only. commit 877e57913f819ca4f40c89511a2078068356748c Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 10 00:40:55 2012 +0200 fusion: minimal optimisation in fusion_call_execute*() using call->fusion_id instead of lookup commit a6c9e80d40e8a974c82cf5f374a466a0c79e6373 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 10 00:39:41 2012 +0200 direct: Handle DENUM_REMOVE in direct_map_iterate(). commit eaa49583aef58576e685aca8234596ee0ff6dfef Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 10 00:39:20 2012 +0200 direct: Add DENUM_REMOVE to remove an item during enumeration. commit caa8a42621bb42cad85afe62aad95aa88341636c Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 9 21:49:23 2012 +0200 defaultwm: Fix update_lock placements. commit d66c477b6c73e6320b59a9e3a94e0ab8cec63832 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 9 21:48:53 2012 +0200 dfbtest_surface_compositor_threads: Add FPS prints. commit 31ac7e81a082761d8decd23cca721d588a4553ae Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 9 21:47:56 2012 +0200 X11: Handle display task done calls. Other fixes. commit 4360a47c265179a100c255c60f5ad572b1284fae Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 9 21:47:33 2012 +0200 Core: Set notify on emit flag for display task for now. commit 1783be38fa250b3ac9c03593fffe6373952162b7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 9 21:47:03 2012 +0200 Core: Disable task done call in dfb_surface_notify_display2() commit 0ff36362306a324e2edd8005d7940e2fa5b99664 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Oct 9 18:55:33 2012 +0200 Revert "version: 1.7.0" This reverts commit 027d39114c3edba38f822ae90bb03ad7ddefb553. commit c488b690f585c7cf52118edac0ea61f302e81468 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Oct 9 18:55:07 2012 +0200 Revert "version: 1.7.0" This reverts commit 2b004d73fd3bf5ca8b9548d33b26f35ef17d70f6. commit 83cad415a640c1ae1a3534dc0e4584d6bd1ad5d6 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Oct 9 18:44:44 2012 +0200 add fusionsound readme commit ceed7becca9e96adcaf7493f7ec9290a90b79d9f Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Oct 9 18:41:41 2012 +0200 android: fix build for DirectFB 1.7 and switch to internal sawman commit 7f1ff68500f9e823aa9351ee83c6139bda9c0d4c Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Oct 9 18:30:07 2012 +0200 build: do not check for external fusionsound for the gstreamer video provider commit f6817920b16300dd18065f1756ced6bada81983d Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Oct 9 18:11:31 2012 +0200 debian: update package, prepare for raspbian commit cf46035e601ec7e26ea87c0fc5721d0bb8b97a32 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Oct 9 17:53:21 2012 +0200 One: fix header install location commit 789d334debf5a3e284c0ba99f3836d5350b80217 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Oct 9 17:38:29 2012 +0200 configure: add option --enable-one-module (enabled by default) commit 50d6153d6db5cb182f8afab7ab250569650db664 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Oct 9 17:33:48 2012 +0200 tests: fix out of tree builds commit d55204c3fecd98d93272c99f3592521d4c50a3e4 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Oct 9 17:31:25 2012 +0200 proxy: fix build when fusionsound is disabled commit b8a9e10e85633d753cf2febe04ad44a5eb5a8f9f Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Oct 9 17:00:15 2012 +0200 One: build fixes, one.pc fixes commit b32b6075f7ec40ac4c12549aed06cf8e021f25f7 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Oct 9 16:55:55 2012 +0200 sawman: build fixes, .pc fixes, header install location fix commit d4297235971e2de3e6edd616c92dbf68acdbcb4d Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Oct 9 16:44:33 2012 +0200 merge fusionsound :) commit 4a507256bc85d9874cab7cd11a5dae1aa231fc96 Merge: 1934330 36c47c7 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Oct 9 12:04:26 2012 +0200 Merge branch 'master' of fusionsound.bundle commit 1934330ee4e6df46463b892040de4b0b2307a7b2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 8 22:10:58 2012 +0200 Task: Fix for multi core SW rendering, add flags for cache (unused) commit 6ad590915f4894039f9814e97faa939d39e177fe Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 8 22:10:31 2012 +0200 Core: Add buffer index to surface allocation. commit 3f2c190b2285a799ecb8fdbf1b183b0fefd397ee Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 8 22:09:47 2012 +0200 Core: Add CacheOp function to surface pool API. commit bbfd2c97ac2f3e93f4d6718220e681435299abba Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 8 22:05:04 2012 +0200 Renderer: Flush() clears last renderer in TLS. commit f543142ba5642c7503c46be10fece1d1e5c9fd5b Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 8 22:04:35 2012 +0200 GenefxEngine: Fix source assignment bug. commit d5cd850c25fd2f5b8006aae52670bfed00e2ad67 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 8 21:05:46 2012 +0200 options: add 'surface-clear' to clear any surface's buffers after creation commit b9a1a5d8cc38b1bd76907120ba24f170bf4acd1c Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 8 20:40:35 2012 +0200 configure: Add --with-args-size= for static args allocation in fluxed code. commit 36c47c731cfd837afe35610620e19c892174b971 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 8 13:56:25 2012 +0200 version: 1.7.0 commit f6e6f72560109086df567de1d095b659382314f6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 8 13:47:32 2012 +0200 version: 1.7.0 commit b9d36ae8c9b6487b61a6699bcdecb6cdd6cb22c9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 8 13:46:09 2012 +0200 version: 1.7.0 commit 24bf9ca813fe140a74a4f87bef6a0924a66cd200 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 6 18:19:40 2012 +0200 dfbtest_windows_watcher: print cursor_flags commit e49dcd97fe6fc2ed0d1beadf6c1e82c0911fcc4d Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 6 18:18:39 2012 +0200 tests: add dfbtest_blit_threads and dfbtest_surface_compositor_threads commit 3fde1c69bd72a0e232597833dc40e2b81f4fb7b6 Merge: 4fb9ce0 4d62976 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 6 18:16:47 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 4fb9ce0744f1c4826644bc7101dc4402538c9f21 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 6 18:16:23 2012 +0200 voodoo: update player info, address etc. commit 4d6297618bc4ddd8145556d8acf6bf3069407dd4 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Oct 5 12:04:05 2012 +0200 build: fix stupid copy&paste error, which caused One build to fail when sawman is not enabled commit d5987fa294db172fe2361e85d68bcbabd3246596 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Oct 5 11:57:25 2012 +0200 wm/sawman: fix out of tree builds commit 47fe11f8267ce1c539ca00350329ad35224aae99 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Oct 5 11:29:04 2012 +0200 debian: add sawman package commit 46d3a5273403a85433ff13f5e89b569d4c64a587 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Oct 4 15:50:52 2012 +0200 merge sawman :) commit f1b9914bcc6981600351f431c8faa2dc93613249 Merge: 1d9ae0b ddef575 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Oct 4 13:56:18 2012 +0200 Merge sawman.bundle commit 1d9ae0b848bd0e051a9904ee1a6114a47be21b8e Merge: 0de6785 cfa1cd6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 2 12:01:03 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 0de678568af2b2d828db4a1f1b4df071a804abf3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 2 11:52:02 2012 +0200 Task: Progress with task manager, renderer, fixed bugs, optimisations... Implement more rendering functions in Renderer and GenefxEngine. Make '[no-]hardware' work with 'task-manager'. Add FillSpans() to graphics driver API. Add Util::PrintF() to generate an std::string in printf manner. Add Util::TempArray template to provide on-stack/heap allocation. Add dfb_gfx_copy_regions_client() working like dfb_gfx_copy_regions(), but with a given CoreGraphicsStateClient instead of a global static state. Use dfb_gfx_copy_regions_client() instead of CoreSurface_BackToFrontCopy(). Update default WM to use CoreGraphicsStateClient instead of calling core functions directly. commit 96f19b464df7482784bbf013696f5dee1662b188 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 1 21:10:07 2012 +0200 Core: Implement DSFLIP_SWAP support in dfb_layer_flip_update*() commit 5bf870686ed78dec1dea0574787f071a6e9c5554 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 1 21:03:32 2012 +0200 X11: Hotfix expose handler for task manager. commit ddef57510841300d2dc0d6cf1eb4bc13fd17c784 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 1 20:58:08 2012 +0200 updates: add missing free() to update_region4_r(). commit 463de776d1d865202213f2b39aac518aab4c567d Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 1 20:06:06 2012 +0200 dfbtest_surface_compositor: allow access to offscreen surfaces for compositing to other processes commit 9cee9dc074bf2a4d07bf954f011b3ffaeca7d917 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 20 17:01:54 2012 +0200 DGIFF: Fix advance by adding subpixel accuracy. commit 167c3e1040e1345090082ffcaeba4fd2c642eeee Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 1 19:21:54 2012 +0200 Revert "DGIFF: Fix advance by adding subpixel accuracy." accidentally added a new file with this This reverts commit cd431afdb6a2e36b4896e359a02f22da1b71f50d. commit 65bd4af9306cde9da81495a64b07419b907a7bdb Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 1 18:21:24 2012 +0200 Core: avoid call to direct_trace_lookup_symbol_at() by calling direct_log_domain_check() commit b219d3fbd1b3218138d63dfa39b55bf136f0c594 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 1 17:29:33 2012 +0200 Fusion: Avoid direct_trace_lookup_symbol_at() when debug domain is not enabled by calling direct_log_domain_check() first commit 28d9ab4ba992e7a80e036879fbaa5220ee10c667 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 1 17:24:37 2012 +0200 data: Add png version cursor shape. commit ab489581ab750243105251ebac6a8b077dc6b957 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 1 17:23:00 2012 +0200 direct: Fix double locking of domains mutex in direct_log_domain_check() commit cfa1cd6f2cf142290227c84d5c8c7e6df70e231c Merge: 70fa826 29a6870 Author: Marek Pikarski <mass@directfb.org> Date: Tue Sep 25 11:12:40 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 70fa82691ba2a8bff69a86c97f1e26a23eccdc96 Author: Marek Pikarski <mass@directfb.org> Date: Tue Sep 25 11:12:06 2012 +0200 videoprovider: remove sleep(1) commit 4470f2a464916f838fc4fb040951f2e8b202732f Author: Marek Pikarski <mass@directfb.org> Date: Mon Sep 24 19:00:33 2012 +0200 videoprovider: also support audio for gst-1.0 api commit 29a6870aebfad8f0b4c0e0cf666b9e4ef3f80961 Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Sep 24 18:34:33 2012 +0200 debian: typo commit 267e599587bf6f0ad5b439517629cd89bb9fa53b Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Sep 24 16:16:06 2012 +0200 debian: split dev package commit c99b5c32cc3025add09b176a4885c3de962523b8 Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Sep 24 15:55:55 2012 +0200 remove fluxcomp commit 52a4c5ae8f9786cb563de53c04be19f96d67e4a6 Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Sep 24 15:54:20 2012 +0200 debian: only build vdpau stuff on i386 and amd64 commit 172b6bf1c75d44e4c064c03ee6d0cf65e64e3e23 Merge: 8154bd2 8b8b0a6 Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Sep 24 15:42:12 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 8154bd2621448cbb3f9a8489edae02f51e73622e Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Sep 24 15:41:40 2012 +0200 debian: remove uwmdump commit 8b8b0a6bb1db0db5d9959ba13b680c1eacf548eb Author: Marek Pikarski <mass@directfb.org> Date: Mon Sep 24 15:30:59 2012 +0200 videoprovider: check for fusionsound support, various fixes for gstreamer-1.0 commit 24b0b2182e0cb4df6f63d6628fe1173eca2be33c Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Sep 24 14:53:47 2012 +0200 remove unique, does not build commit f2a77fee1517983c1363c47438faecfd90bad0c6 Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Sep 24 14:07:04 2012 +0200 debian: remove -wl,as-needed form ldflags commit 4ae1686626e73d26fe51ca2c3b54bf3feccf57b9 Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Sep 24 13:54:19 2012 +0200 debian: do not depend on libjpeg62-dev but on libjpeg-dev commit 61b25ad3e211ac8b8135ddc9c17fd15ee996bb6f Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Sep 24 13:38:57 2012 +0200 debian: pacakge 1.7 commit fc243f8659e4658b444a311d2d5da59883671c59 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 20 23:42:53 2012 +0200 egl: fix build commit 10ab81e8e710d676108b04560980d6530b08f3e2 Merge: 03f4ea6 f6c0696 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 20 23:27:55 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 03f4ea627f895917d74c60a3bf0a5a62118c7e6b Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 20 23:25:03 2012 +0200 fusion: Use malloc()ed FUSION_MESSAGE_SIZE*4 buffer for reading. commit 2350d28eb19be836336511e29b8cef034eee8452 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 20 23:23:36 2012 +0200 Core: Implement SetSrcConvolution() via flux. commit 07373351406215914e0c147dfb7fab1a7f29f4a9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 20 23:22:31 2012 +0200 dfbtest_fillrect: Clear first. commit e54a9cd50eff1fb8482ee2b54aa28baf014e6f0a Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 20 23:21:57 2012 +0200 dfbtest_old_gl2: Set shader float precision. commit 3985eb60112d41754516812c0e453bd1d7fb6f6d Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 20 23:21:21 2012 +0200 Core: Debug log window events, only buttons for now. commit 76bcc50e8525ccd8245b475632e45dc1d241aa1c Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 20 23:20:29 2012 +0200 IDirectFBSurface: Split up rectangles into groups of 200. commit d4f99a9cbc80ee2c0bafef65db8193ad8fa387fe Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 20 23:17:13 2012 +0200 egl: better error handling, dealloc textures/fbos commit a1c6636f061ef62e69df4c2b2d40ccc396fdcf12 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 20 18:25:24 2012 +0200 update changelog commit f953aac5b04426297530e74ed2d77593c4b2ca3b Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 20 18:22:37 2012 +0200 version: 1.6.2 commit c97fa545fa9737ea53c5d2c2951f8219ec4058f0 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Sep 20 18:00:00 2012 +0200 update changelog commit ddc70a31847943c03fefd2f8ad9cbeeea8de37f0 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Sep 20 17:59:42 2012 +0200 update news, version 1.6.2 commit f6c0696c526112d83d17fca790df4d4186377ae1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 20 17:06:42 2012 +0200 dfbg: Add option '-p' to create a surface with DSCAPS_PREMULTIPLIED. commit cd431afdb6a2e36b4896e359a02f22da1b71f50d Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 20 17:01:54 2012 +0200 DGIFF: Fix advance by adding subpixel accuracy. commit 1a0699a719a6697121e62eb8efca1e8146f1c1ad Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 20 17:01:26 2012 +0200 FT2: Set CFF_SUBPIXEL_ADVANCE. commit 13671ceb367e76e8cdc9f3f52b9dde4b767fdf69 Merge: 0ea2204 755516d Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 20 17:01:06 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 0ea2204bb567c6aee784974c3165ed9fa43716b7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 20 17:00:12 2012 +0200 Core: Fix compatibility with older font modules. Adjust advance when new flag CFF_SUBPIXEL_ADVANCE is not set. commit 755516dcb968915447f3a409be9b01116ebce806 Author: Marek Pikarski <mass@directfb.org> Date: Thu Sep 20 16:16:52 2012 +0200 videoprovider: also support gstreamer-1.0 commit a3c7709a4181cedc9040bffa34c115cb60bd5998 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Sep 20 14:44:36 2012 +0200 sawman: print error if surface could not be resized commit c2506d03098d86a84b039a11bb4ae5c30bf70849 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Sep 20 12:59:51 2012 +0200 swmdump: do not cast SawManWindow* to CoreWindow* commit fb5d5104f41642531404c2fcac9e604159b074c9 Merge: 4077916 c241d9f Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Sep 18 21:10:53 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 40779160de4d57bad973af9674df51ad281fdb8f Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Sep 18 21:10:25 2012 +0200 Core: Include zlib.h where it was missing. commit c241d9f5aac147ad386701a9419a0ec69d0a95e9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Sep 18 12:07:09 2012 +0200 EGL: Support ARGB directly in fboWrite(), add fboRead(). commit 082833506797f3bb3187e4088d5c877318dd8545 Merge: e790ce5 4f9eae5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Sep 15 20:15:28 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit e790ce5272cd91d4eb00d4bc946615f021332e64 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Sep 15 20:14:50 2012 +0200 gfx_util: Avoid double premultiplication when loading an image scaled. commit 1f5322be7276da4cddcdf0c865eeb7d1dd7352ed Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Sep 13 14:16:59 2012 +0200 force non-secure fusion until after entering the arena commit 5239322b13e8ce4dce32deae734819df504eb392 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 12 17:49:41 2012 +0100 Options: Add 'keep-implicit-key-grabs' to keep keys grabbed even after withdrawal of window until the key is released. This prevents events going to another window when the window that had focus and grabbed the key implicitly is hidden or destroyed. commit e21c24a4f883a48fde78296ce6455da7cfe1130d Merge: f665e52 90d3322 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 12 16:27:30 2012 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/extras/SaWMan commit f665e52f4bb498c63f96e26b2dc7dbf3983d2d88 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 12 16:27:04 2012 +0100 swmdump: Print collector window. commit 4f9eae5a70b5a5ea14281bb9d2f81707a25ee6f6 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Sep 11 18:53:22 2012 +0200 idirectfbsurfacewindow: fix for the case DSFLIP_BLIT and not DSFLIP_SWAP specified commit 90d3322192191ec85b2cce7e0083f04f9dee6eca Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Sep 11 12:19:22 2012 +0200 fix out-ouf-tree builds commit f83241df223befd51857337915316a74518f5855 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Sep 4 14:10:03 2012 +0200 x11/input: set max value for absolute motion events commit 2e60210a99fc40677b546f053de590279fce100b Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Sep 3 22:35:07 2012 +0200 FFMpeg: use avcodec_decode_audio3 from version 52 onwards commit d09d8def27920909647dddca34230f03c5f7e437 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Sep 3 22:15:39 2012 +0200 linux-input: Add option 'linux-input-touch-abs' to send absolute events in FSM mode. This makes Wacom Cintiq usable as a touch screen for DirectFB :-D commit 52916d1c8a2c083bd994d390bd5b809417ee2f4a Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Sep 3 21:55:24 2012 +0200 IDirectFBSurface: Honor DSFLIP_SWAP when flipping the surface of the window. commit f571276f854ca6ccd4e11207e80ca57b7ae67d3d Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Sep 3 21:53:40 2012 +0200 IDirectFB: When creating a windowed primary, translate window-surface-policy option to DSCAPS_SYSTEMONLY/VIDEOONLY. commit d6300b26feffdc90e60e7785d7de05800e6d57dc Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Sep 3 14:43:22 2012 +0200 ffmpeg: support newer versions of libav/ffmpeg, fix proble to accept m4a and mp3 commit 192a10efbffe85b81a6675e8517baeb0f5f1fa73 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Aug 31 15:12:26 2012 +0200 core: force non-secure fusion commit 91e5de7e38f094bbdca7b49d9106be625434efdc Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Aug 31 00:49:37 2012 +0200 One: In OneAppTarget_Destroy() remove from receiving list if needed. commit 46921d34b922539494eef31d84548eed63b4e55a Author: Marek Pikarski <mass@directfb.org> Date: Wed Aug 29 16:17:19 2012 +0200 videoprovider: extend API a little to support video scrolling commit a040dc04fd1f16e04237ad392f740d1885643f97 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 28 12:16:37 2012 +0200 configure: Check for armv7-a in CFLAGS. commit 5eb2248e8627a5b68994ad79a1e4f641ce402c00 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 28 11:46:59 2012 +0200 PNG: When 'image-format' option is used, return that in the surface description. commit d21d51e5922a8a1828c24a2c16ab07914bce6815 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 28 11:45:18 2012 +0200 Option: Add 'image-format' option, e.g. used by image providers to provide a default format. commit 9d757a43fd2aefe1f66cfefc73539f7184008b60 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 28 11:44:13 2012 +0200 One: Use direct_list_foreach_safe() when iterating through receiving list. commit 0e684bebde5ea08aa654b863f7dbbee0ef1423a2 Merge: 4b52ca4 d645d18 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 28 11:43:42 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 4b52ca456efbbd444c8c9b3255858685dadb71ea Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 28 11:42:57 2012 +0200 Core: When creating a window pass through DSCAPS_GL. commit d645d18f2754562b3fd54779f9401cee626c2fe1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 28 00:27:00 2012 +0200 Core: Temporary solution for permissions not being granted to a surface from GetSurface(). commit f1d8769458f766ca463da3bcc233917fa9b9a21b Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 23 12:14:32 2012 +0200 meter: Add simple volume meter for console. commit 58f220f19b82204d0fd6a4cbe9ff9e1465af8a31 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 23 12:13:03 2012 +0200 IFusionSound: Add GetMasterFeedback() for live output volume measurement. commit 206619f40c3d7365b3b2c00869a8bfc6d1c4df66 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Aug 22 15:06:33 2012 +0200 EGL: Add IDirectFBGL implementation using EGL, needs to be enabled via --enable-idirectfbgl-egl. commit 85062eb700a1afbcb5cdb4792adb11c3fb625f8e Merge: 33fbf25 42b02f8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Aug 22 15:03:34 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 33fbf251e2d87ea2653260a010737b77e28b1518 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Aug 22 14:31:41 2012 +0200 Core: Reset flip counter to zero when changing buffer mode. commit 5330277f0c4d21d6297567cc6f853c3ec0395f6b Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Aug 22 12:04:07 2012 +0200 fdtest_init: Added simple (re)init test. commit 6dba8decb261367757fa4c9666593def053478fa Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Aug 22 11:59:47 2012 +0200 IFusionDale_One: Add AddRef implementation as IFusionDale_Construct is no longer called. commit 42b02f851283915f5f699bbcbf924e2d6cae30cc Merge: 237576e d2dc165 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 21 20:30:59 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 237576e06b2a697726210e7a3566a1dc60c87af2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 21 20:29:52 2012 +0200 Genefx: Avoid division by zero with rotation and formats < 1 byte per pixel commit 66f7af8f6d7d8dce53fcdd5be29eef6b2faeaa3a Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 21 20:21:42 2012 +0200 Core: Set window_data to NULL after freeing in dfb_wm_remove_window(). commit d2dc1654d53407d0f598babf483b4299fcae98bd Author: Marek Pikarski <mass@directfb.org> Date: Fri Aug 17 18:02:08 2012 +0200 fusion: prevent segfault when calls are originated from non-dfb threads commit 434734a98b1185b20cfe89333db2a9afaa91267b Merge: 639c537 97b152c Author: Marek Pikarski <mass@directfb.org> Date: Fri Aug 17 18:01:50 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 639c5372243897e19e9ff1873d02c7a2d3115ce8 Author: Marek Pikarski <mass@directfb.org> Date: Fri Aug 17 18:00:26 2012 +0200 core: prevent segfault when calls are launched from non-dfb threads commit 97b152c4842cac4b2f84d487e40e121dffa0041f Author: Marek Pikarski <mass@directfb.org> Date: Tue Aug 14 11:46:18 2012 +0200 android: adopt newest changes, make compile work again for android commit 76dc783bda2ef267ce25b8ef64e430e880de1ef2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Aug 12 17:06:04 2012 +0200 ISaWManManager_Real::SetWindowConfig: Resize surface when resizing window without DWOP_SCALE. commit 0598501d2e9be5aaf8e0564cf02911f96f5d3ed0 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Aug 7 18:47:15 2012 +0200 link against libfusiondale commit 661914c4e97ecf5e48cba4d34e0040e4d566d6d4 Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Aug 6 20:44:47 2012 +0200 fonts: make x and y advances 24.8 fixed point to fix font rotation commit e24c4e95bef833cd011e0f672c9d5955cc5b4c82 Author: Marek Pikarski <mass@directfb.org> Date: Thu Aug 2 09:24:02 2012 +0200 VideoProvider: use FusionSound for audio playback commit e20e0e18e6e14df5d449f5ecaeece0b20195a31f Author: Marek Pikarski <mass@directfb.org> Date: Wed Aug 1 14:02:33 2012 +0200 videoprovider: make bus local, fix setting speed commit 3f5d2afc46656e37fc155b51bffb718793bb029e Author: Marek Pikarski <mass@directfb.org> Date: Wed Aug 1 10:52:19 2012 +0200 videoprovider: set finished when no more data is available commit 3e455b6531b7a58ee475deaa1f3b6412efdb7724 Author: Marek Pikarski <mass@directfb.org> Date: Wed Aug 1 10:22:24 2012 +0200 videoprovider: update curr timepos and duration during playback commit 6b6ede0611ce8d9e2900a7924c711c174e0e577c Author: Marek Pikarski <mass@directfb.org> Date: Wed Aug 1 10:20:35 2012 +0200 Revert "videoprovider: update curr timepos and duration during playback" This reverts commit 6a36b24d72755da895df4aca2241759d2f07b4c2. commit 6a36b24d72755da895df4aca2241759d2f07b4c2 Author: Marek Pikarski <mass@directfb.org> Date: Wed Aug 1 10:18:45 2012 +0200 videoprovider: update curr timepos and duration during playback commit 73686df0fcf0ef5ede07f41d4651dd4aa0b3557b Merge: 93a8b29 620265f Author: Marek Pikarski <mass@directfb.org> Date: Tue Jul 31 16:21:38 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 93a8b29fa25f85dd498849b07164271e076515ae Author: Marek Pikarski <mass@directfb.org> Date: Tue Jul 31 16:20:10 2012 +0200 videoprovider: WIP set speed, scaling commit 40dbbbd602c3f31357cac712a8df290831d19b9b Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 30 18:37:18 2012 +0200 PPDFB: Change static class DirectFB to namespace. commit 620265f2b89aeae1ce88f5b0f502f3adbeaac39f Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Jul 30 14:54:09 2012 +0200 fbdev: fix primaryFlipRegion prototype commit f979328af446813792aa5585f1bdcbac230a85a6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 30 11:45:27 2012 +0200 version: 1.7.0 commit 40d7ed87d74fcde0993f1749055d39fc306a5608 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jul 28 11:17:22 2012 +0200 WM: Send update region along with dfb_layer_region_flip_update() and set DSFLIP_SWAP. commit 6f63e59115688f8a5c86493a173e681482932f86 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jul 28 01:44:13 2012 +0200 gfxdrivers: Follow layer API change. commit 8154a2603619a84691749c73fe852f35664f1355 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jul 28 01:43:56 2012 +0200 Systems: Follow API change in layer API. commit fde5a3dfbc71a6a22cd3c61235dfe0cfc4005d06 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jul 28 01:43:17 2012 +0200 WM: Send update region along with dfb_layer_region_flip_update(). commit 6939d80440eee82fc403a46177d07e31ffa9ce93 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jul 28 01:42:32 2012 +0200 Core: Add DFBRegion to FlipRegion layer function, allowing optimized updates with new WM swapping behaviour. commit eeaad188baf8e3c703ab2d7272bfc2beb7f7e792 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 27 23:20:26 2012 +0200 Util: Add dfb_regions_unite() to calculate bounds of one or more regions. commit 54a2264def1ce3f1afe1bd7e46232771c2b172cc Merge: e5fa4ec 3029baa Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 27 23:19:54 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit e5fa4ec3d906a341194fc0f8599cb13f51869187 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 27 23:19:28 2012 +0200 API: Add DSFLIP_SWAP to force real buffer swap even when update region is specified. commit 3029baae5fbd52d988724078a98a441bb0603993 Author: Marek Pikarski <mass@directfb.org> Date: Fri Jul 27 15:06:04 2012 +0200 VideoProvider: use pkg-config commit ff9151f888bbd1e69bb1eb3d694b309c18f53b23 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jul 26 12:13:01 2012 +0200 FIFO: Add locking in empty() and add waitEmpty() method. commit 2d03df7dad872d2e66220e723317a938c64cd306 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jul 26 12:11:43 2012 +0200 CoreGraphicsStateClient: fix warning commit bc5b5f65aaaf10e6a4a23b04a7ad6b898ea6f5b4 Merge: 44d0516 5cf1eca Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jul 26 11:21:51 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/extras/SaWMan commit 44d0516cc35373d1a3aa828ad762b46e3fa3b77a Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jul 26 11:21:25 2012 +0200 wm: always send DWET_SIZE event in resize_window() like in default wm commit 1617fa177364ee033bb1c42d64f113562e1e9538 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 25 14:47:57 2012 +0200 configure: Disable gstreamer by default. commit d33b22480d0ececc801fe406c1357a8b664203b2 Merge: 00261c4 7b988a0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 24 17:04:24 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 00261c40e48cf1dfaf87f8154c0aaeb198dd5be6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 24 17:04:05 2012 +0200 Task: Include <misc/conf.h>. commit c317f2a52bced2a18e65b2f37b74b60bbaeef1ec Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 24 17:02:45 2012 +0200 One: Check for notify thread in Destruct. commit 7b988a0a108c26322ffae304a64b099ac3f14123 Author: André Draszik <andre.draszik@st.com> Date: Tue Jul 24 15:59:37 2012 +0100 convert: add missing break in dfb_pixel_to_components() for DSPF_ABGR commit 0f934ef315e1aef15c125a1209a90739136dc116 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 24 16:59:54 2012 +0200 Task: Only start manager thread when task-manager option is used. commit ca3184e581de0ac5f7096080df1385b8c26244e4 Merge: 22ecb97 57656b9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 24 16:59:35 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 57656b90adf3ad25c21305e9e9a5fb52a7fbcc3a Author: André Draszik <andre.draszik@st.com> Date: Tue Jul 24 15:53:16 2012 +0100 convert: add missing break in dfb_pixel_to_color() for DSPF_ABGR commit 22ecb97487ea704df0d358918b1812976df2e1c0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 24 16:43:39 2012 +0200 API: Add DFXL_FILLSPAN and DFXL_TILEBLIT. commit 3fc7a232904100228e9385652761ebe237869988 Author: Marek Pikarski <mass@directfb.org> Date: Tue Jul 24 10:56:19 2012 +0200 VideoProvider: added basic gstreamer implementation (WIP, only when --enable-gstreamer is passed to configure) commit e2679896d638d5f8ed797feaed929e2c2874b257 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 23 18:19:00 2012 +0200 Add missing thiz. commit 5d013bf1fc354f75d8da2d75449699b135cfa630 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 22 14:40:37 2012 +0200 Core: Stub out Core_Push/Pop/GetCalling in case of single app build, thanks to Mike Nelis! commit 5ac2bf578ec9f14eb44308c5875fcd2bed59977d Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 20 22:52:09 2012 +0200 Core: Task Manager for surface access management, e.g. for multi GPU Initial checkin of new task manager code, to be enabled via "task-manager" option. Should not have an impact when option is not used, but I don't warrant that :) commit 493cfd43b24b4253a172248b473e8e494676ea79 Author: Marek Pikarski <mass@directfb.org> Date: Thu Jul 12 17:47:00 2012 +0200 Android: add switch for no-debug builds commit 9dc52ea1836b619852a4efda18abcba0d4bbb0f9 Author: Marek Pikarski <mass@directfb.org> Date: Thu Jul 12 13:12:23 2012 +0200 Android: force quit when core is shutting down commit 5cf1ecaf7b21019e8ccb00ba1f9030d6d4c34982 Author: Marek Pikarski <mass@directfb.org> Date: Mon Jul 9 09:44:19 2012 +0200 sawman: rename sawman.c to enable build on windows commit 856020b9cefe013cf8bb611c2aff19d71e678661 Author: Marek Pikarski <mass@directfb.org> Date: Mon Jul 9 09:42:41 2012 +0200 Android: follow sawman.c renaming to allow build on windows commit 57914bbf9878f542215bbc22a6a791765fc1e412 Author: Marek Pikarski <mass@directfb.org> Date: Fri Jul 6 13:19:47 2012 +0200 Android: use sawman wm commit 7d4f312b9a713ef6ac24e481e5a7857cd218617c Author: Marek Pikarski <mass@directfb.org> Date: Fri Jul 6 13:17:15 2012 +0200 sawman: respect "wm-fullscreen-updates" option commit bb132a0008510f0106e84723dd1f5a8690c84f55 Author: Marek Pikarski <mass@directfb.org> Date: Fri Jul 6 13:15:34 2012 +0200 Android: build in sawman wm commit 7a6cb44b86c7b1446efde815ceb9e9a3a5fd0f6d Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Jun 29 17:54:50 2012 +0200 android: add add required files to the distribution commit 074b0255d43ce8685a78fcfef5fd9e8b72cc7dec Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Jun 29 17:19:04 2012 +0200 build-android: update readme commit a24c158c67602f6249088c885db965cf9896da1c Author: Marek Pikarski <mass@directfb.org> Date: Fri Jun 29 16:22:36 2012 +0200 Fusion: limit dispatcher buffers to 4 for async execution3 calls commit a927bfb4fd7bb5e8a30ab54d57ebbd98d642b7ca Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Jun 29 14:57:53 2012 +0200 direct/interface: workaround for interface loading problems with gcc-4.6 on x86 and x86-64 with no debug commit 858e8e9ef62a082d458c1b61ca5ec1c924384c36 Merge: 0ab8a8b f5938d7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 29 13:36:53 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 0ab8a8b6f0737a40e7edab14693c6144741be1c2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 29 13:36:16 2012 +0200 direct: Reset config_options to NULL in __D_conf_deinit() after destroying it. commit f5938d7157b74692e8db2e3eb6b14e803b9cf414 Author: Marek Pikarski <mass@directfb.org> Date: Fri Jun 29 12:24:58 2012 +0200 Android: map BACK keycode to ESCAPE commit 7f80bd054a716f962eb6cbb53c072be067245a0f Author: Marek Pikarski <mass@directfb.org> Date: Thu Jun 28 18:26:31 2012 +0200 Android: handle all keys defined on android commit 88c324ec2a623a73f96f2375f89afd05d799b291 Author: Marek Pikarski <mass@directfb.org> Date: Thu Jun 28 17:48:37 2012 +0200 Fusion: always check buffer status after wait condition was signalled commit c490a04e4b6b3e024430c1d94f27e2dec8ec08b9 Author: Marek Pikarski <mass@directfb.org> Date: Thu Jun 28 16:40:30 2012 +0200 Fusion: cleanly stop dispatcher when exiting commit 8cea3ded867b96052572a4c18a29f171146a96a5 Merge: bb3b5e8 71adea4 Author: Marek Pikarski <mass@directfb.org> Date: Thu Jun 28 14:44:40 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit bb3b5e8890ab5eb3501e8e15a3e79e6a82b2d007 Author: Marek Pikarski <mass@directfb.org> Date: Thu Jun 28 14:44:03 2012 +0200 Fusion: chen if buffer is valid after wait condition was signalled commit 71adea480892069c689bec9e3514d23393811de1 Merge: 6efdf2a f4eed43 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Jun 28 12:13:37 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 6efdf2ab53edb114d049f483955a33be17267957 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Jun 28 12:12:24 2012 +0200 core: in dfb_gfxcard_drawstring() check for DFDESC_ROTATION) before trying to access CoreFont::description.rotation commit f4eed43d553c7297f3363d6d72cdf2ae6e835daf Author: Marek Pikarski <mass@directfb.org> Date: Thu Jun 28 12:10:13 2012 +0200 Fusion: decouple dispatcher buffers, add the ones to be removed in a separate list to not block processing of events in next buffer commit fea25333d9a3d8d8f9eedfef214a18f0865a28ff Author: Marek Pikarski <mass@directfb.org> Date: Wed Jun 27 19:56:29 2012 +0200 Fusion: added more useful outcommented debug messages commit d44769b93671c1f4a948b84365a3c4cfaa46c73d Merge: d483252 98b764c Author: Marek Pikarski <mass@directfb.org> Date: Wed Jun 27 19:14:53 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit d4832520e9e51bb956b9d13948d4f62bd8e77dc3 Author: Marek Pikarski <mass@directfb.org> Date: Wed Jun 27 19:13:59 2012 +0200 Fusion: also wait for all async calls until freeing the buffer, still debugging dispatcher... commit 98b764ca5a5bc89d5c197a9455c2d9973d1114f3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 27 18:02:42 2012 +0200 Core: Fix pointer being used instead of ID when comparing current with last allocation in acceleration code. commit abcce465b35947a3a53a37240df4218812b8b015 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 27 17:52:15 2012 +0200 Core: Check surface identity when looking up surface. commit ee552ef25f29df0efe4660689a204653764f09b0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 27 17:31:58 2012 +0200 GLES2: Few more optimisations. commit 8959b8ca95d39cdc27d17487c400a471ab7a52f8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 27 17:27:08 2012 +0200 dfbtest_flip: Add test for frame or time based animation using double/triple buffering. commit 7f5ab932bd3d9523f89512b102e0418af936aa90 Merge: 4f7ba91 bfff4ed Author: Marek Pikarski <mass@directfb.org> Date: Wed Jun 27 16:51:21 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 4f7ba91a5b8f5bdc920e96f35df5c3eb8dc403d3 Author: Marek Pikarski <mass@directfb.org> Date: Wed Jun 27 16:50:26 2012 +0200 Fusion: add reference counting for synchronous call pending in despatcher to avoid freeing call buffers too early commit bfff4ed478604e29bd12666695e8bc535e46823d Merge: b221c75 c09771a Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 27 16:46:54 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit b221c75c982ae92aa47f76a6144846748733b673 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 27 16:46:33 2012 +0200 Core: Fix preclipping for rotated text. commit c09771a79ac103903166dab3a9ec460411c0fea4 Merge: 37666f2 d0d4e23 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 27 14:28:51 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 37666f2b2d0e5d1770bea822a16ba57ef5371cf7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 27 14:28:30 2012 +0200 EGL: Make pool use FBOs for now. commit d0d4e239c4fb317f630235f61943beb82f533148 Merge: c69ed50 e70e86c Author: Marek Pikarski <mass@directfb.org> Date: Wed Jun 27 13:21:03 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit c69ed5011ed24b3a2c167041034e9e375ad2d75b Author: Marek Pikarski <mass@directfb.org> Date: Wed Jun 27 13:20:15 2012 +0200 Fusion: make reactor_free() asynchronous, added debug commit e70e86c3412a4e7305d657587dcefa5597169fb8 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Jun 27 12:56:18 2012 +0200 build-android: no longer use ANDROID_USE_FBO_FOR_PRIMARY in df_window since we use full screen updates commit d21f61b80b6a9bfb58161032bc2e6b1ed967686e Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Jun 27 12:29:50 2012 +0200 android: add workaround for SGX commit 1b9fbc69972798902837456692dd265bc27ec422 Author: Marek Pikarski <mass@directfb.org> Date: Tue Jun 26 14:39:57 2012 +0200 Android: force conversion to ARGB if no public config gets returns from Bitmap.getConfig() commit 5fe6e21d322424b6267c77e0559278ee884ecefe Author: Marek Pikarski <mass@directfb.org> Date: Tue Jun 26 11:12:45 2012 +0200 Android: add a new surface pool which uses GRALLOC with software fallbacks. Stripped the old FBO pool to use a texture without SW fallbacks commit ca5a97fa014948f79337027865d2ed81699f95fd Author: Marek Pikarski <mass@directfb.org> Date: Mon Jun 25 18:46:14 2012 +0200 Android: move glFramebufferRenderbuffer back to allocation again commit b83df0637c64b7d633eb13274e60e25547dc395b Author: Marek Pikarski <mass@directfb.org> Date: Mon Jun 25 18:33:56 2012 +0200 Misc: added [no-]wm-fullscreen-updates option commit d538d30e12c8c2c5552a887b7e8217f1af2578f2 Author: Marek Pikarski <mass@directfb.org> Date: Mon Jun 25 18:32:50 2012 +0200 GLES2: added GL debug commit 261fae6f203698dcf0e216a69083ed5af4d6e180 Author: Marek Pikarski <mass@directfb.org> Date: Mon Jun 25 18:32:15 2012 +0200 Android: added GL debug commit df38d85a9cc73238027b1c0932074836d836a8ba Author: Marek Pikarski <mass@directfb.org> Date: Mon Jun 25 16:32:28 2012 +0200 Android: refactor render buffer binding (WIP) commit 36f6e045902a405f7d374cd24df5a6a46eac01de Author: Marek Pikarski <mass@directfb.org> Date: Mon Jun 25 16:29:32 2012 +0200 Android: added update region callback to layer commit 81f1a28ee0954346d6a2c28dd539c4610c7d559d Author: Marek Pikarski <mass@directfb.org> Date: Mon Jun 25 16:26:14 2012 +0200 WM/Default: enable fullscreen updates if desired commit 2424f0d81cd55fb5c21876009aa6fe0610b4be72 Author: Marek Pikarski <mass@directfb.org> Date: Mon Jun 25 16:24:54 2012 +0200 Fusion: align single-app dispatcher calls on 4-byte boundaries commit 82c40b413d3395435fde2db11ace175da0db34bb Author: Marek Pikarski <mass@directfb.org> Date: Mon Jun 25 14:15:32 2012 +0200 Android: fix event handling (button up/down need to be prefixed by motion x/y) commit 0d6ae4cca0b1bab80b7a22d78e87b7907f344316 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 24 00:11:10 2012 +0200 GLES2: Several optimizations, fix FBO/Surface upside/down for all. - Don't glFlush or glFinish (may still be needed on other platforms!) - Implement gles2BatchBlit to avoid sending too many glDrawArray calls - Disable depth buffer reads/writes in case a depth buffer is attached - Add separate program for non-color modulated blits to avoid a multiplication in the shader for simple blitting commit c949379f819a01e02ce20fc4643d13f0200a3080 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jun 23 19:51:46 2012 +0200 EGL: Allow other buffer modes. commit a8aec369b08b0173e7b693732965bab27e8e27e4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jun 23 19:51:14 2012 +0200 EGL: Fix CFLAGS and LIBS in Makefile.am. commit 1105aa3cbf6a447f5e49bf2a8475a5dcd5c58f81 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jun 23 19:50:21 2012 +0200 Core: Call InitIDirectFB_Async() synchronously if 'always-indirect' is not used, fixes calls from non-main in master. commit 2f47d3c08a105904b6f8409478dd8bc4ceabe07e Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 22 17:19:16 2012 +0200 Fusion: Fix multi app build, changing BUILD_MULTI to FUSION_BUILD_MULTI. commit 8e14d1b8c9b8e5fff183b901c7552f1f32974425 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Jun 22 16:47:29 2012 +0200 android: crash application on purpose when we loose focus. commit d2d1ecc82f8bf0f6c7432068b813b59a43ebe78f Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Jun 22 16:35:47 2012 +0200 android-build: fix typo commit 8c03fb3af9c896ab7591607cdaeec6281082a004 Author: Marek Pikarski <mass@directfb.org> Date: Fri Jun 22 15:23:19 2012 +0200 Fusion: terminate dispatcher for single-app commit 1d1de46757c0ae66da26c6701b51f8d71246433c Merge: 5307bea 92175b6 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Jun 22 14:59:12 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 5307beac53aa56aa0f22458a06a9cededd1805f8 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Jun 22 14:58:54 2012 +0200 build-android: clanbomber2 commit 92175b62bc5b84a28886b5343a0ac133b0003601 Author: Marek Pikarski <mass@directfb.org> Date: Fri Jun 22 14:36:42 2012 +0200 Android: always need ALWAYS_INDIRECT for android commit fb2a8f2228f0cb244c4c8315ec4820e26d00902c Merge: 57552f0 67d34d1 Author: Marek Pikarski <mass@directfb.org> Date: Fri Jun 22 14:34:10 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 57552f0f37f913c6d44d7aae21eafc653a0a12c3 Author: Marek Pikarski <mass@directfb.org> Date: Fri Jun 22 14:32:27 2012 +0200 Fusion: add weird hack to workaround a memorycorruption?? problem with empty structs commit 67d34d18f9f3a3e3520188b3f52cf0f779a0649b Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Jun 22 14:29:46 2012 +0200 build-android: fix CPPFLAGS commit 821c952c5b0cacc089d5ab095c19aaf1fa36b044 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Jun 22 14:23:42 2012 +0200 build-android: fix df_window commit 7637fecf17f7295fa908fd2bd9dc67150ad2b4b5 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Jun 22 14:10:05 2012 +0200 build-android; add df_window test, symlink common files commit 4c605f1c7a51df25aa27089069617e63dc76d847 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Jun 22 13:59:45 2012 +0200 build-android: add more missing files :( commit a49b7a2141a5107ce899c82c1709a4243f50d863 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Jun 22 13:57:37 2012 +0200 build-android: add missing files commit 794d8e02023cda446e71a62547dc1617eb92049d Merge: 52dfaaf 568290f Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Jun 22 13:55:09 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 52dfaafca48253a9c53c0448810c1b542ee19e4d Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Jun 22 13:54:35 2012 +0200 build-android: create a df_andi project, move common stuff. commit 568290fe0ce1be4301b7230f7ebfd7711d008936 Author: Marek Pikarski <mass@directfb.org> Date: Fri Jun 22 12:25:43 2012 +0200 Android: remove some debug, add (EGL_ALPHA_SIZE, 8) to EGL attributes commit 379e4424d8f78f0e4e5103c340453aa6febd7ae4 Author: Marek Pikarski <mass@directfb.org> Date: Fri Jun 22 12:23:53 2012 +0200 Android: remove handcoded screen dimension and use the real one instead, remove some debug commit 6f3e6b80ea9598c928de3a2a12207767c5debf66 Author: Marek Pikarski <mass@directfb.org> Date: Fri Jun 22 11:07:15 2012 +0200 Android: free native buffer and close gralloc HW devide when deallocating resources commit 647bb46584c0144062fa50f2fabad34e7bc59bb2 Author: Marek Pikarski <mass@directfb.org> Date: Fri Jun 22 11:06:37 2012 +0200 Fusion: turn some debug into warnings commit 2471f40f5abe8d437c51788547aca03ccb721362 Author: Marek Pikarski <mass@directfb.org> Date: Fri Jun 22 10:37:54 2012 +0200 Android: remove buffersize*2 hack commit 3370d2fb9f65509d596815b4b0aed855f4dea7a9 Author: Marek Pikarski <mass@directfb.org> Date: Fri Jun 22 10:36:32 2012 +0200 Fusion: remove debug commit a64fd9b94127cf58365b95d2971184993d76ce0e Author: Marek Pikarski <mass@directfb.org> Date: Fri Jun 22 10:19:58 2012 +0200 GLES2: fix build without FBO commit 6f02d59fcfed01bc2439b2a177de95077113dbdf Author: Marek Pikarski <mass@directfb.org> Date: Fri Jun 22 10:16:53 2012 +0200 Fusion: add dispatcher thread for single-app which makes always-indirect mode work commit 3adf142d3b198de070f9b5db0af7e045dc47f85c Author: Marek Pikarski <mass@directfb.org> Date: Fri Jun 22 10:13:53 2012 +0200 Android: pitch can change after ->ARGB conversion, respect this commit 53ca90a062d01aeff7e3e973a5eb855a57264c1e Author: Marek Pikarski <mass@directfb.org> Date: Fri Jun 22 08:49:28 2012 +0200 Revert "Android: pitch can change after ->ARGB conversion, respect this" This reverts commit 434a96c8f7600408a0333ada153ada780e3c8941. commit 434a96c8f7600408a0333ada153ada780e3c8941 Author: Marek Pikarski <mass@directfb.org> Date: Fri Jun 22 08:45:32 2012 +0200 Android: pitch can change after ->ARGB conversion, respect this commit 33bca1c51acd4c5a291d979211341842c99c97c5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 20 20:40:18 2012 +0200 configure: Include GLES2_CFLAGS/LIBS also with EGL system. commit 67cd852f9b8d63a0276649c8fd02b078cdc57962 Merge: fece24b 2a08f13 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 20 18:17:24 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit fece24bfc8d2a847b59ec921185ba3665227ecff Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 20 18:16:51 2012 +0200 Fusion: Fix single app dispatch cleanup by calling it. Fixes cursor motion in single app mode. commit 2a08f1392e87e50b9464804affe3867d62b5aa29 Merge: 5727a49 a072353 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 20 18:03:18 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 5727a49caa76158cd192efb8ead48fcf2973df99 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 20 18:00:39 2012 +0200 GLES2: Invert clipping coordinates when not rendering to an FBO. commit a072353fc01d5421622239b0e804c8e520a02eab Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Jun 20 17:18:18 2012 +0200 android: only use extra fbo for primary if ANDROID_USE_FBO_FOR_PRIMARY is set commit 2134307f91376191fe94f585c854fa628fbe9603 Merge: 3bc89d1 071a303 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Jun 20 17:01:07 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 3bc89d1ea61a9a9f108cc40f1583429e3f1c3cd9 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Jun 20 17:00:33 2012 +0200 android: no not hardcode resolution, pixelformat. workaround for imageprovider (fixme!) commit 071a303d81c477b77a5ee2e37694ad421e93732d Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 20 16:46:14 2012 +0200 GLES2: Fixes, cleanups... - Fix texture filter setting, moving it below source validation, setting only accel. - No need for GLES2_INVALIDATE(ALL), please test on other platforms. - In gles2EmitCommands() check for calls > 0 instead of higher threshold. - Use dfb_simplify_blittingflags() to support certain flip/rotate combinations. commit 619a76a9f546fb07a029c4c0131f7a6f2293a364 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 20 16:16:34 2012 +0200 GLES2: Add CORE_CARE1 to supported systems. commit d491eadc0d18a2191294d16bc5538d68c8b310b3 Merge: 30a818a 4d5eac4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 20 16:02:01 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 30a818ac2fe6900eb492a539c3b7b7abddd6bc97 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 20 16:01:45 2012 +0200 GLES2: Fix weird merge... commit 4d5eac40433b3f49f61d98f4433bc38a3dc737b2 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Jun 20 15:58:22 2012 +0200 android: fix typos commit b4268cc42a15c102e34c755cacde715310850cf3 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Jun 20 15:55:13 2012 +0200 build-android: unix line breaks commit 5f4a208fc54f951f063d40f280765aa59fc82580 Merge: c2fccb5 01be8d1 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Jun 20 15:53:22 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit c2fccb577e3e6a30cdd21cfa9b3e921eebe0c77d Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Jun 20 15:52:20 2012 +0200 android: add various defines for better testing commit 01be8d161717a8f02c1da3ba4f5d7cf0cfb5871b Merge: 2778323 78d9c8e Author: Marek Pikarski <mass@directfb.org> Date: Wed Jun 20 15:49:53 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 27783235b603410203d36ea4102da86931a5915b Author: Marek Pikarski <mass@directfb.org> Date: Wed Jun 20 15:49:29 2012 +0200 Android: missing include commit 78d9c8e6f961c83f48259b8dd1a673cd0cca30a9 Merge: 806c22b b34dd08 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 20 15:49:14 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB Conflicts: gfxdrivers/gles2/gles2_shaders.h commit 806c22ba1c1cd0460c541c7b904371275983b114 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 20 15:47:12 2012 +0200 GLES2: Put color multiplication onto same line with gl_FragColor assignment, blending speed up by factor four! commit b34dd082196e2090fb4e1865deadf20dceb35cb5 Merge: 8aff3cf abe91fe Author: Marek Pikarski <mass@directfb.org> Date: Wed Jun 20 15:32:50 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 8aff3cfdd92672ff3e748b80bd297678dc41df78 Author: Marek Pikarski <mass@directfb.org> Date: Wed Jun 20 15:31:52 2012 +0200 Android: improvements (WIP) commit abe91fe608ec3e85d3412646b9c357425cf81162 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Jun 20 14:21:04 2012 +0200 build-android: rename generate.sh to prepare.sh (now fetches and untars freetype2 for android), add freetype2 sources to makefile commit 780230a32a1399751ee1b522431a68a4d2917198 Author: Marek Pikarski <mass@directfb.org> Date: Tue Jun 19 09:50:16 2012 +0200 GLES2: mirror y-coordinates for primary commit 7ab3f1c528cec45f86cc43f2457c6c05a681b34a Author: Marek Pikarski <mass@directfb.org> Date: Mon Jun 18 18:03:13 2012 +0200 Android: code cleanup and beautifications commit f9c5590bc18b67c5ed35a7adf4998171e1dd2099 Merge: 5a58a44 665c5a8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 18 13:53:56 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 5a58a44ab516b10b6677dcdaac6221efc8cc1128 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 18 13:52:36 2012 +0200 PVR2D: Add support for DSBLIT_BLEND_COLORALPHA, thanks to Takanari Hayama. commit 51ca5142abf43fad78979daae65d4e7f26a9ec89 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 18 13:52:27 2012 +0200 PVR2D: Fix error by making sure source rectangle is at least 1x1 in pvr2DStretchBlit, thanks to Takanari Hayama. commit 665c5a82dddd530712a0b9c72ee28ac7022e1190 Author: Marek Pikarski <mass@directfb.org> Date: Mon Jun 18 11:13:07 2012 +0200 Android: fix image conversion to ARGB commit f20446287f386f5a326f15e0c5cadcc8b66d57ed Merge: 2ae8f28 a0a658f Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 17 19:52:28 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 2ae8f28831ab0f48c299b578a58d384741ac0ec2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 17 19:52:19 2012 +0200 version: 1.7.0 commit a0a658f16680c2b3fc2e685397119d6419602338 Author: Marek Pikarski <mass@directfb.org> Date: Fri Jun 15 17:53:35 2012 +0200 Android: use gralloc for native graphics memory; cpu access to data working; commit c9e8a299e2add03188afb9d0d85a346bd47134e6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 15 14:18:30 2012 +0200 Core: Set async attribute for CoreSurfaceClient::FrameAck(). This helps especially in always-indirect mode. commit cfeedc87bc7643dc011e0f4332944cba97de0aef Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 14 18:28:11 2012 +0200 1.6.0 commit b79aeecd621925ac079d58e7015feece1c908288 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 14 18:27:24 2012 +0200 core: Add playback_internal.h to Makefile.am. commit b48d21306a2494af79fca40fd82660e7eb49fe33 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 14 18:27:08 2012 +0200 fsproxy: Fix Voodoo API usage. commit 2605e8db1238ddd96495825527dee53abb0e6fa4 Merge: b94dcb0 4e6220a Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 14 18:12:00 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/libs/FusionDale commit b94dcb05326dfdc96b1e1bf1d8e57f49f02aaebf Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 14 18:11:52 2012 +0200 1.6.0 commit 0b99378352bb2b7183136a06de7fb05f9326de6d Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 14 18:11:33 2012 +0200 one: add missing header to Makefile commit 7db38190ee2a5883d4fb194ebc00ecf0ff5abe58 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 14 18:07:36 2012 +0200 debian: update changelog commit 8a7794aeb36df483ebb91f41a98285cfe89380ca Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 14 18:06:12 2012 +0200 1.6.0 commit 5752a45242cef23328cd874d3b6d886fee0d48e3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 14 17:56:35 2012 +0200 android: Update EXTRA_DIST to include all sources. commit 67003f534e6275997a4d1f4373811264febe9af4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 14 17:54:40 2012 +0200 debian: Update changelog. commit 315d821d739bdd000b4810e8cf95509af16682ea Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 14 17:23:50 2012 +0200 linux-one: Reset magic values to zero after non-zeroing malloc. commit 94b82934be63a872524641f3f1c7d5261736c8ef Merge: 267b11c 821510e Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 14 16:21:46 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 267b11cf6a521fbac7c013cea9471522ece4caea Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 14 16:21:26 2012 +0200 NEWS and ChangeLog for 1.6.0 commit af28c6d4ae2ca0775f3196ff8c7202663096c103 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 14 16:19:18 2012 +0200 Core: Allow master to render to all surfaces even with always-indirect. commit 821510ec03e6b146ae7f10a3eb5bdcb8d0f80141 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Jun 14 15:14:15 2012 +0200 android: add F key mappings commit 4ba9cc7536db5029fb36c4e8b968103756043159 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Jun 14 14:57:00 2012 +0200 gles2: workarounds for some gl drivers now clanbomber2 works flawless on my galaxy tab 7" :-P commit 120bbb9d73acf8b79c2dbbabd9757c1270449969 Merge: af3170f 601c3d4 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Jun 14 13:54:38 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit af3170f99a5bf2a2cd32d15979af3f5c778eb4f1 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Jun 14 13:51:59 2012 +0200 mesa: better cleanup. commit 601c3d45346f358a29a71fd5ea1225cc33792d0e Merge: bdf0ad0 8d3b774 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 14 13:24:06 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit bdf0ad0edcad1bbb486d78367fba7d883468a52e Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 14 13:23:55 2012 +0200 1.6.0 commit 8d3b77492ca8f3b4d8697d9892821b7960621e1b Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Jun 13 22:01:54 2012 +0200 android: do not ignore "non-system" key events now clanbomber2 works with a nintendo wii controller over blutooth commit 265fcde2606ddfe21cc420daabac15b9fab2ca2c Merge: bd893b1 201569c Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 13 18:49:59 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit bd893b1aa83f36710140b8568b03a611d91c5166 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 13 18:49:41 2012 +0200 Core: Add CoreWindow::GetInsets(). commit 201569cb57dc4b91159faae4bd8f3854782ba4f1 Author: Marek Pikarski <mass@directfb.org> Date: Wed Jun 13 15:47:56 2012 +0200 Android: Clanbomber2 running on Android :-) commit 61e03e85c5fdcb2d027284b2933e4f40987cbf10 Author: Marek Pikarski <mass@directfb.org> Date: Wed Jun 13 15:47:11 2012 +0200 Android: SurfacePool: Fix unpack alignment. commit 5bda741d7aaa6ea84fe6948caa9abc1841b0c897 Author: Marek Pikarski <mass@directfb.org> Date: Wed Jun 13 14:23:31 2012 +0200 Android: SurfacePool: do not do ARGB->RGBA conversion commit e16a66f4cb49aa635687f9be7807484684ef0d30 Author: Marek Pikarski <mass@directfb.org> Date: Wed Jun 13 11:43:51 2012 +0200 Android: ImageProvider: improve error handling and avoid memleaks commit 0b0cf6716be3b1e294a43a6daecf7383218c1512 Author: Marek Pikarski <mass@directfb.org> Date: Tue Jun 12 18:56:08 2012 +0200 build_android: update makefile commit fe598650d7b4f87e94d809d32e3679156bfe14f4 Author: Marek Pikarski <mass@directfb.org> Date: Tue Jun 12 18:50:31 2012 +0200 gles2: enable validate_SOURCE for android commit be656aee06f49f3b6595a0bda9a0418f5a96d4ca Author: Marek Pikarski <mass@directfb.org> Date: Tue Jun 12 18:48:15 2012 +0200 android: fix keyboard mapping, add new fbo pool commit 2f30dbfd5c5089fe21e90ef0325982f1e13ae668 Author: Marek Pikarski <mass@directfb.org> Date: Tue Jun 12 13:37:17 2012 +0200 Android: fix image decoding commit 1a6654acf7e84ffab377b517dd694c1cbb5d8be0 Author: Marek Pikarski <mass@directfb.org> Date: Tue Jun 12 13:29:06 2012 +0200 Android: use native_activities' JVM and APP_PATH commit 3fb430ddd35a14a3a63c5b9f30269a8919ccbb8b Author: Marek Pikarski <mass@directfb.org> Date: Tue Jun 12 13:26:15 2012 +0200 Android: added r/w permission from/to external storage commit 1d9a8a8896aebb7265d1de4e7525732b8a626cea Author: Marek Pikarski <mass@directfb.org> Date: Tue Jun 12 09:34:02 2012 +0200 fusion: remove debug message which broke single-app build commit d3c47fc2aa7ea5909721186dd5e5297648c29797 Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Jun 11 20:50:53 2012 +0200 mesa: initialize mutex before fix thread creation commit a8fa6c1e6c0be4dd05a51fc650b4424fbb07b9f6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 11 18:21:36 2012 +0200 gles2: use ARGB again for fonts commit da0569ba8c9bc985f5077ebef61bd3db40073017 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 11 18:08:49 2012 +0200 Revert "create ABGR cursor if mesa" This reverts commit cf6878b79e02e711954f20e02ea134721e36b290. commit b8a59ba399c6c92fabc29e47733d8fb6810ed7ab Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 11 18:07:49 2012 +0200 mesa: rework flipping handler, switch back to ARGB commit cf6878b79e02e711954f20e02ea134721e36b290 Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Jun 11 17:00:51 2012 +0200 create ABGR cursor if mesa commit 54579cfa7959e57089fa90427d40ff63ddb341d4 Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Jun 11 16:52:15 2012 +0200 gles2: do not check pixelformat, set font format to ABGR commit 61cf2111fcaf33f38fb9044ffdb25e5ad850311d Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Jun 11 16:46:24 2012 +0200 change pixelformat to ABGR commit 3aa41d5f8445d288201b1627229a45f02aecf184 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 11 16:43:07 2012 +0200 Mesa: Use page flip handler, WIP. commit 599efc8d806a24b315f4c5b0ee0d35cba47e3226 Merge: 8460c38 5d85894 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 11 15:09:10 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 8460c3866901192cd764365bd769ee2ebf90961b Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 11 15:08:21 2012 +0200 mesa: better debug output, fix alignment problems, fix sandy bridge support commit 5d85894750e3d7dc9f0140f9d54f2a480b3cbbb0 Author: Marek Pikarski <mass@directfb.org> Date: Mon Jun 11 15:05:17 2012 +0200 Android: fix debug build and added some more debug. commit bad78dc55c6c5384c0e2891a4e9ad3105811e3d4 Author: Marek Pikarski <mass@directfb.org> Date: Mon Jun 11 13:18:05 2012 +0200 Android: also handle buffered streams in imageprovider commit b18ca843b83b06392a41600fdd24d2e29bc822f4 Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Jun 11 11:27:13 2012 +0200 fix another warning commit 89c6f88519aa8213a3a7e741f029c0f68a2c0472 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 11 10:30:30 2012 +0200 GLES2: Use GLES2 headers/calls... commit 70a8349c107776de642378e65a2559c4a4dd04f2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 11 10:29:45 2012 +0200 Mesa: Use GLES2 context, fix typos GL_FRAMEBUFFER/GL_RENDERBUFFER, other fixes, removed warnings... commit f1eb8bc71fee64b94ee25e0b59749a9c73560dfb Merge: e871d0f 521d08d Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 11 09:56:14 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit e871d0f051a8b4b21e8d63f7c1d268b72a09a137 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 11 09:56:01 2012 +0200 dfbtest_windows_watcher: Print cursor flags. commit 521d08d1ec127a937f0df9c4c5dd5ff4bf53c30b Merge: ebb06ad b4ab33c Author: Marek Pikarski <mass@directfb.org> Date: Mon Jun 11 09:52:01 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit ebb06ad9c1b30001b22a529ed8a34a2052b0fa89 Author: Marek Pikarski <mass@directfb.org> Date: Mon Jun 11 09:51:23 2012 +0200 Android: add basic exception handling to imageprovider commit b4ab33c919e60e13f0d3494ac52a093c5ccc3e2a Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 11 09:51:06 2012 +0200 direct: Use primes in DirectHash resizing. commit 217bc739d76eda5123252bf96a92630f795b835b Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 11 09:45:49 2012 +0200 DFBWindowConfig: Move 'stereo_depth' to the end to keep compatibility. commit 8e0014d06e77425da283b0ce378e8a79d07ea3e3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jun 9 05:16:18 2012 +0200 InputHub: Fix error in debug mode. commit 065b5b7e8fd60eb220015c0cb28c42b0b91a7f49 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jun 9 02:42:17 2012 +0200 util: Fix dfb_gfx_copy_to() that recently got broken. commit 0c342339c0cceb5bf5d0fdf3c275d8963f7b40d0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jun 9 01:10:46 2012 +0200 util: Add dfb_gfx_stretch_stereo(). commit 174f7c17820a523fc6e228c697eb3ee91842e500 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jun 9 00:53:36 2012 +0200 IDirectFBInputDevice: Add DIKS_PIP, DIKS_SWAP, DIKS_FREEZE and DIKS_MOVE. commit e6cf696ccfb2d4f437558b712f958fa6e18d6a08 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jun 9 00:35:39 2012 +0200 IDirectFBSurface: Add DSPF_LUT4 and DSPF_ALUT8. Only definitions for now. commit 13b2810f130216fc30973cfcf403ccb358dd0f53 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 8 23:29:11 2012 +0200 Graphics: Add CalcBufferSize() to graphics driver API and call it from dfb_gfxcard_calc_buffer_size() to override default. commit 2c50b047db36f6bec0e2c9863cce085c9ecbf9bf Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 8 23:17:14 2012 +0200 IDirectFBScreen: Add DFBDisplayAspectRatio in caps and config of encoders. Add DFB_ASPECT_RATIO_eAuto, DFB_ASPECT_RATIO_e4x3, DFB_ASPECT_RATIO_e16x9. Add DSECAPS_ASPECT_RATIO. Add all_aspect_ratio in DFBScreenEncoderDescription. Add aspect_ratio in DFBScreenEncoderConfig. commit d6baceeee7fd5f41735a7fd5d2e05e78cbd94c08 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 8 23:14:33 2012 +0200 IDirectFBSurface: Add DSCAPS_GL to indicate surface data is stored in memory that can be accessed by a GL accelerator. commit 58d0778650d23257fe21e3b3105b50d4d8e5690c Merge: 261ca52 fa801fc Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 8 18:29:18 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 261ca5261ecabbd1fdd68f8def57430c6b4b9193 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 8 18:28:44 2012 +0200 fusion: Add runtime option 'fork-handler', the new default is false, to avoid using pthread_atfork(). commit fa801fcf588c458a84493f85cc5f24d7acf87fa0 Author: Marek Pikarski <mass@directfb.org> Date: Fri Jun 8 17:31:52 2012 +0200 Android. try to automagically convert the image to ARGB before blitting to surface commit 81d21d5701f2a5779c86a15e9fda14ca78c1e194 Author: Marek Pikarski <mass@directfb.org> Date: Fri Jun 8 15:49:13 2012 +0200 Android: implement image provider for android (uses JAVA BitmapFactory to decode images) (WIP) commit b9b190307b1bda2b02be8e376726c1b039715d2d Author: Marek Pikarski <mass@directfb.org> Date: Fri Jun 8 15:44:34 2012 +0200 Android: implement image provider for android (uses JAVA BitmapFactory to decode images) (WIP) commit 60e55ba8121e903c46013dbab0a93d7a3263481f Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 8 14:36:04 2012 +0200 InputHub: Allow input hub service to start after client. commit b309f0dc023b08b3575ac57ac49a46ff3e878191 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 8 11:47:58 2012 +0200 Core: Fix wrong types in pointer/unsigned int calculations. commit 64c767ecd5bc324524d8875c32bdbc3ef5a72dbc Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 8 11:44:36 2012 +0200 x11: Avoid GLX pool being used when accelerator is 51 (for virtual2d). commit 9e8e299a81831cbc0f321519e4c50bc9a3a2b41a Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 8 11:44:07 2012 +0200 direct: Use direct_list_get_last() in direct_config_get_int_value(). commit 0549ef88fe3baaefbd2bef26b24016d133705ad9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 8 11:43:36 2012 +0200 direct: Add direct_list_get_last() that just returns the first elements 'prev' pointer. commit 2099937e40500966cfc4b9bd7b78fe145f8f9455 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Jun 7 23:14:43 2012 +0200 fix warnings in voodoo and one tests commit 7efd64bc8c78f52fa24c69314649538ae4deb94c Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Jun 7 22:51:11 2012 +0200 fix warning in single application core build commit 3e460fe4335f98f8587c8e188127e716e9acfc43 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Jun 7 22:37:40 2012 +0200 fix remaining warnings when compiling without --enable-debug on 32-bit commit 53c5c9e09ce4622d36dfe3f76623c63accfdd946 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 7 21:28:22 2012 +0200 IDirectFBSurface: Fix missing initialisation of src_eye. commit 6e2cc2a2f7a7091a401470b8e269142ae7baff83 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 7 19:04:28 2012 +0200 Core: Remove trace of trace in soon to be replaced code. commit a75c7c2dbc04d6dc64304f01d2aa0f08b72ab1b2 Merge: 70b3190 eb11b09 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Jun 7 18:46:48 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 70b31905d1ffd81d9f9a8c9f2fc3138dbc2a060f Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Jun 7 18:46:29 2012 +0200 fix a lot of warnings in non-debug mode commit eb11b099bb35fff601310a9b90b94aa97025c34a Author: Marek Pikarski <mass@directfb.org> Date: Thu Jun 7 17:53:41 2012 +0200 Android: Process input events (WIP) commit 3ff8dd15acffeed60b1850523ba25f8b60675883 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 7 17:21:44 2012 +0200 fix merge commit 904b0abf3bc108e1f6eef62983be0bc396e85b08 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 7 16:10:42 2012 +0200 sawman: Replace all dfb_surface_get/set_stereo_eye() by new APIs. commit 515938edee4e1923f4b00731fbeff8ad329bbc41 Merge: d732800 13d7ea2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 7 16:09:57 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB Conflicts: src/gfx/util.c commit d73280093ebe0858290fbb8c4bd290e8b873b52f Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 7 16:07:52 2012 +0200 Core: No longer use dfb_surface_set/get_stereo_eye() outside of surface.c (remove there soon as well). The left/right state is part of the graphics state now. Two interfaces can have different settings now. Works also via secure fusion. And should avoid some race conditions that had been there... Add dfb_gfx_copy_regions_stereo(), dfb_back_to_front_copy_stereo() and dfb_gfx_copy_stereo(), remove dfb_gfx_copy_to_stereo() again. Add CoreGraphicsState::SetFrom() and SetTo(). commit 13d7ea2a29d994a3b7b240b50aee6c1adeb7ef0a Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Jun 7 15:52:19 2012 +0200 fix warning commit c8bf2724b676ea6ff2406a454a109341cfaff2e5 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Jun 7 15:31:18 2012 +0200 fix a lot of warnings (all with --enable-multi --enable-debug --enable-trace on my 32-bit machine) commit 603bd3ed9c820e8cca71a3c9b0de1342557e8c19 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Jun 7 12:34:52 2012 +0200 wm: avoid reference counting on parent window commit 1c8ae2bd2714bd201a7febd0cb7c68dda6b4ef92 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Jun 7 12:25:52 2012 +0200 wm: fix window association commit 17fab035efd6a6f294526593317f0fb7ba14de20 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Jun 7 12:23:54 2012 +0200 manager: add ChangeFocus, if present, overrides SwitchFocus, adding the reason for the switch. commit 8a3d2d7ca681ce2bc5e9ac93c1a27c808cadd30b Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Jun 7 12:17:34 2012 +0200 wm: honour cursor-resource-id set in directfbrc commit 4e6220aa4380d217084dc21c2bbbf170b869fec4 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Jun 7 11:54:00 2012 +0200 One: add (disabled) workaround for OneQueue_Receive() commit c5aab63a2f986135843ecf7673cc61d08d556e6c Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Jun 7 11:28:26 2012 +0200 build: add $(DIRECTFB_LIBS) -lm to divine_test_LDADD commit 98f719f3bc4a572e7bc6720521e0430ec44e04e9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 7 00:15:07 2012 +0200 IDirectFBWindows: Add UnregisterWatcher(). commit 5e57455ee09af3360ea2e00d309ee73e3e866e93 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 6 23:47:06 2012 +0200 X11: Add RGB16 output format support to stereo updates. commit b240367f6bb7647f58f43293718c86b6acdcfb32 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 6 23:32:55 2012 +0200 Core: Remove last Skirmish! Add Clipboard methods to CoreDFB.flux and make clipboard core skirmish a mutex for secure fusion. commit e7e629d3af5f624c10d5bec8df99af3dafaea638 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 6 23:31:01 2012 +0200 flux: Require version 1.4.1. commit 8c4d4daf42f5ca87fc4cebf394cd1b5372acd7cd Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 6 22:53:38 2012 +0200 debug: Print each pools access/types in dfb_surface_pools_negotiate(). This helps finding out why no pool has been found. commit 07686e9bc4b9032c216e30da1b0b828f72cd147b Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 6 22:51:58 2012 +0200 fusion: Print zombie warning per object and only if refs > 0. commit aeb519b6fa3d19fd6b9d0852d68abc8ea7dd0e7c Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 6 22:22:47 2012 +0200 Core: Fixes for DLBM_BACKSYSTEM regarding stereo and recent flips++ change. commit 524b176ae69175b2a409c0b80e91dc6f8be8b40a Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 6 22:22:10 2012 +0200 debug: Print role in region_buffer_lock(). commit 2a8c92817210baa3ba170fb7a8f56cf5da39ae78 Merge: 05bb8a4 e71237a Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 6 21:55:43 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 05bb8a4b6f4e89f3750649c6e75f6e3a7b7894c1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 6 21:55:15 2012 +0200 fusion: Fix another check for remaining objects in fusion_object_pool_destroy. commit e71237a27aa0c751e8b8f23d8cb7b159f7c21982 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Jun 6 19:24:05 2012 +0200 direct: fix world session clock offset commit cc72542688678ddc928dfd5b4ee2e29d6a0184b5 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Jun 6 18:26:11 2012 +0200 core: avoid reference count for top-level-windows commit 9d20883ba0b3232703849b5743525e66106dedd5 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Jun 6 18:22:53 2012 +0200 voodoo: create window surfaces videoonly if window policy is videoonly commit 31c6683ada4087327cea915d5acd8605d5bc21bb Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Jun 6 18:20:58 2012 +0200 core: fix flip count not beeing increased in all cases (for the layer driver) commit 90a8c1d647f249897cf67dd96b308e182741191f Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Jun 6 18:18:59 2012 +0200 jpeg: use JDCT_IFAST if DIRENDER_FAST is set via SetRenderFlags() commit 27894b6ad56298ab7934e3ac033473dcd5048202 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Jun 6 17:41:10 2012 +0200 imageprovider: add IDirectFBImageProvider::SetRenderFlags() commit 7ec30f998b19f10ab9bfedb7eb56730a854b94bc Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Jun 6 17:06:23 2012 +0200 core: add missing dfb_surface_pool_prelock() calls to allocation_update_copy() commit 016f75163f7f16aca137350e2ecf830cac57e1dc Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Jun 6 17:03:10 2012 +0200 linux-one: increase max packet size to 32768 bytes (from 16384) commit 0ae9c0b31f5987784c9c3f021f6c271743536976 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Jun 6 16:49:23 2012 +0200 One: add (disabled) workaround for OneQueue_Receive() commit 76f3999c6fb846953576b22150209cd258f95ff9 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Jun 6 16:13:14 2012 +0200 Core: return in Pre*Buffer() if surfaces are already destroyed commit 3566fc558fdf9edff2c259d3e9e3799f5d7fd6a4 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Jun 6 15:53:04 2012 +0200 libdirect: add direct_thread_get_name() commit f7e1c25443097e2c0e1dee9dfd0a72a7fb6b0f59 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Jun 6 15:47:35 2012 +0200 core: in dfb_surface_dump_buffer() dont call dfb_surface_buffer_dump() in surface has no allocations commit feb97583a008ccd8a319601d081f41a1280b641d Merge: 07ff9cb c9902bc Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Jun 6 15:44:19 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 07ff9cbca50232b5192693f289129bba9f462a26 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Jun 6 15:42:40 2012 +0200 IDirectFBWindow: SetCursorShape() accepts a NULL-pointer fot the shape surface to hide the cursor commit c9902bce5b09d18fa42cd14779dd9dc7481b38cc Merge: 63a2c77 b254215 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 6 15:38:09 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 63a2c77d0c863764fbc862296a6d7eb509af7ee3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 6 15:37:55 2012 +0200 debug: Print surface size in dfb_surface_pool_bridges_transfer(). commit d45117a6ebbd70d757517c373de842804a70c15a Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 6 15:36:47 2012 +0200 configure: Add PVR2D_ to GLES2_ and allow GLES2_ to be set externally. commit b254215c1a71a453cb26598aebed460053354525 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Jun 6 15:20:35 2012 +0200 config: add cursor-resource-id and cursor-videoonly options commit c6f057207a1a364293646e096f9ed500eafb79f0 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Jun 6 14:18:27 2012 +0200 option: add input-hub-service=<qid> option, input hub service is not started if it is not set. commit d66edaecb427645f7429585bea00bb4bf279be63 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Jun 6 14:06:04 2012 +0200 egl: commit completly useless experiments, just to have them somewhere commit 64cdc89e99baecb794b1cbeed0e2a8117dcfd8eb Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 6 12:52:27 2012 +0200 Updates: Use direct_clock_get_time( DIRECT_CLOCK_MONOTONIC ) for flip-once timestamps. commit 0cf49812ff4eda2300bee4aa4479c65aa7339e61 Merge: f5e94fb b3ee4c8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 6 12:48:25 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/extras/SaWMan commit f5e94fbc56a2f479e8bfee831895386d4dc8f5a0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 6 12:47:41 2012 +0200 WM: Fix double registration of parent window. commit dc6ce6a5b5a7cce583c5b6f1e7de4bced1beb94c Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 6 12:46:39 2012 +0200 WM: Remeber new layer configuration when being set in normal mode. commit 189023be3560b5c3fbca89ca70c903f357c7c24c Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Jun 6 12:34:44 2012 +0200 mesa: add CSCAPS_SECURE_FUSION and CSCAPS_ALWAYS_INDIRECT to system flags commit 23b2bd94efb2254a351bb856a80bac136626e606 Merge: 2eddc00 e755e7c Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 6 12:32:37 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 2eddc00789effb27426814edd8c503e18b5cdc45 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 6 12:31:58 2012 +0200 Core: Add CSCAPS_SECURE_FUSION and CSCAPS_ALWAYS_INDIRECT to allow system module to force those options. commit e755e7cbe96e026fb3f047f974db5a2728a17b98 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Jun 5 17:25:40 2012 +0200 core: fix dfb_core_destroy() logic which failed if there were multiple references on the core commit b3ee4c8abdf5fd6237ff6b5977d97a97ad6c839e Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Jun 5 16:55:15 2012 +0200 sawman: move dfb_core_create() to ISaWMan_Constuct(), add dfb_core_destroy() to ISaWMan_Destruct(), store CoreDFB pointer in interface data commit 5e36a472c7675afe256bcfa4ecdd958d5d2df1cc Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 4 23:12:00 2012 +0200 Core: Use fusion_world_set/get_root() to replace shared field in arena. commit e61dcc27b3f7763dce70feeb85d6ea97fc4da1c7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 4 23:11:07 2012 +0200 Fusion: Add fusion_world_set_root() and fusion_world_get_root() to replace shared core field in obsolete arena. commit c3a0c7befd0642c785eddf8c7f8ca332d52aab72 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 4 23:01:37 2012 +0200 dfbtest_clipboard: Add test for clipboard methods. commit 85233b1964a7f3628990a5e15840cf722b36656a Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 4 21:35:30 2012 +0200 Arena: Change arena skirmishs to mutexes in secure mode. commit a6e0e40becf656e71f6964cae60be633fb7d8384 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 4 21:34:29 2012 +0200 Core: Remove FusionArena, DFB master needs to be Fusion master, eliminating two more skirmishs, only one left (clipboard). commit 725f0822f61e3d12d6125a25737a3ebb6be7b07f Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 4 21:21:27 2012 +0200 Util: Fixup last commit, somehow wrong patch got in, sorry. commit e2b7e8ee9c7d888ab3d1fd2c721f6c98e29b663d Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 4 21:02:21 2012 +0200 Util: Add dfb_gfx_copy_to_stereo() with additonal argument to select destination eye. commit 3f1f117af83466000df3676a02202a5de3bed308 Merge: da748f5 8424e72 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 4 20:33:59 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit da748f51f3e6f1a5609b3ee4df68df0b951399e2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 4 20:33:45 2012 +0200 X11: Remove skirmish, totally obsolete. commit 01b65356d84a6190dc5a657d9cf4042ce2469772 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 4 20:24:54 2012 +0200 Cursor: Fix cursor updates in stereo mode. commit 8424e723b40bf073be220061c023d6be1a8a9104 Author: Marek Pikarski <mass@directfb.org> Date: Mon Jun 4 15:05:20 2012 +0200 Android: the android input device is only available on Android, nowhere else commit daf4599935cf33d306b75124c18dd244e7474b64 Merge: dff8fb2 9a46c04 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 4 14:49:41 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit dff8fb27fee38b9dd5dcab5159ed2cf4c90b7ccd Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 4 14:49:04 2012 +0200 Fusion: Fix detection/warning of pools with objects during shutdown, thanks to Bryce Poole! commit 9a46c04868e5a6ef821fbbc3bc9d4d64cc9bcc6a Author: Marek Pikarski <mass@directfb.org> Date: Mon Jun 4 14:17:45 2012 +0200 Android: implemeneted android input device commit 588fc6da5cd2e0b684a398dd0cad11843db0e44b Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 4 03:33:24 2012 +0200 Fusion: Get rid of SHM skirmish in secure mode. List of pools only changes during world setup in master and ends before the world is activated. Removed fusion_shm_pool_attach_unattached() completely. This was a workaround no longer being required since the slaves, previously being blocked at entering the arena, are already blocked at entering world now. commit 7ed40da07dd89300c4616b712326d86e5a54300d Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 4 03:25:39 2012 +0200 Fusion: Get rid of Fusion Reactor Globals skirmish in secure mode. Globals are processed on channel 0 only. All channel 0 dispatch happen within master, e.g. surface update event is on channel 1 (dispatched by slave). Added bug message and return in case of dispatch as a slave on channel 0 of a reactor having globals. commit 18e415a87e10ab23739d7ec6984eb43b40f36bf3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 4 03:10:16 2012 +0200 Core: Call new fusion_world_activate() in dfb_core_activate(), getting rid of DirectFB/Core Skirmish! commit ed19dca11e2110b78c2abcff60dcc318a810efaa Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 4 03:08:50 2012 +0200 Fusion: Move FUSION_IOCTL_UNBLOCK into new function fusion_world_activate() to be called by the core. commit 8b44f9571040993007dc5378338cf8c0afa17e79 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 4 02:40:45 2012 +0200 Core: Change input device skirmish to mutex in secure fusion mode :) commit 2ef171449d44b8798a33f56f35703839ed5720fb Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 4 02:40:11 2012 +0200 Fusion: Change shm pool skirmish to mutex in secure fusion mode :) commit 1990572325120c7336dbbda8f36f16a5c4468e2c Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 4 02:23:26 2012 +0200 Fusion: Fix mapping of SHM pool files for slaves, adding the size of the heap info structures to the mmap. commit 222bd2e09c13a16922d555a6032f6fcd38302038 Merge: 02ffb5f 000c747 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 4 02:07:35 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 02ffb5f9977e9115b218e5935e25759e1d626c57 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 4 02:07:04 2012 +0200 X11: Fix dead lock by moving expose event handling to async call. commit 56a452e86d0e1e8c1a1bb3d212b4fe814966f2eb Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 4 01:28:43 2012 +0200 Fusion: Add support for resumable FusionCalls requiring linux-fusion 8.10. commit d6e277439a36637c689f4afc06eba4c38c13c9b3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 4 01:27:21 2012 +0200 Core: Fix assertion during reinitialisation by clearing card pointer in graphics core shutdown/leave. commit 1cd04e902c41da6c6fbbcb6129ef5dc892d12371 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 4 01:15:11 2012 +0200 One: Protect call return structure hash with a mutex. commit 000c747fd3bb2b6fbffb86280a20ceeca356645e Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 3 19:37:51 2012 +0200 X11: Fix partial updates in stereo mode. commit b294257b01f564fcce1386ee55513c46a8afcdca Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 3 19:28:05 2012 +0200 Updates: One more fix to stereo frontonly updates. commit e68eb5646935a2d880aea90fff926620c5171c3c Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 3 19:13:13 2012 +0200 Updates: Fix bug in update_region4() that did not add the stereo offset to x2, only x1. commit 7ae563d346007309667c2ddcb940b770c688b641 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 3 17:12:44 2012 +0200 Updates: Fix typo in last commit (stereo). commit b995b03abc4fad83a8a79e56da0c45367d9c4ef5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 3 15:36:28 2012 +0200 Updates: Avoid glitches when flipping stereo in frontonly mode. commit 08f5be68cfef8477438c1ca228fe189137dc781a Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 3 15:34:50 2012 +0200 Core: Change dfb_layer_region_flip_update_stereo() to allow either left or right to be not updated. commit 8df3638e366aa716b5901662070dcf58ff4a4f35 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 1 20:41:53 2012 +0200 Core: Apply patch from Bryce Poole to fix a new deallocation bug in local memory surface pool in certain cases. When the system align and pitch options are enabled, the system will allocate using posix_memalign otherwise D_MALLOC is called. If in a debug build, D_MALLOC adds a description to the beginning of the memory and requires D_FREE. The patch calls "free" for malloc'd surfaces and D_FREE for D_MALLOC's surfaces. commit 96011f3fc3d89f99ceb6688c07608ad3d28c2e98 Merge: 771f496 3884fb4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 1 19:53:50 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 771f4961940b39e83bf3f0b3240359bdf60c3a87 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 1 19:52:11 2012 +0200 Core: Fix 'always-indirect' permission management regarding window surfaces and probably more. When in always-indirect mode, don't run calls through requestor/dispatcher code when already in master dispatcher thread. Otherwise, e.g. surfaces created for windows have the identity of the master and not of the creating slave. commit 3884fb4ae408cc1587306c083ad92cba419b0860 Author: Marek Pikarski <mass@directfb.org> Date: Fri Jun 1 16:00:38 2012 +0200 Android: add missing files for DFB compilation commit cce25a674679a108f2f30fec27e80385ffd1af2d Author: Marek Pikarski <mass@directfb.org> Date: Fri Jun 1 15:58:12 2012 +0200 Direct: do not use sigwaitinfo() for android, install signal handlers on android instead commit 10575984cef157a2c7a0abe93ee9be59c5232a57 Author: Marek Pikarski <mass@directfb.org> Date: Fri Jun 1 15:56:36 2012 +0200 Core: do not use posix_memalign() on android commit 694ebb420d17fc24397d3b971ce55a2011aa7fb1 Author: Marek Pikarski <mass@directfb.org> Date: Fri Jun 1 15:55:14 2012 +0200 Voodoo: fix warnings commit a34e96f21c6e117bf6b56babf0001e2cd7af48e1 Author: Marek Pikarski <mass@directfb.org> Date: Fri Jun 1 15:54:30 2012 +0200 gles2: fix warnings commit 8777290cd5cc8a6ec056fad4611d17d64f48f74a Author: Marek Pikarski <mass@directfb.org> Date: Fri Jun 1 15:52:38 2012 +0200 Misc: fix warnings, do not use ulong only defined in kernel headers, use unsigned long instead commit 709d1dccf7488a6013849a567bc8bfed88654c88 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 31 20:35:29 2012 +0200 Core: Add CoreSurface::BackToFrontCopy() to fix dfb_back_to_front_copy() in secure mode. commit 8a10a0ad1995b52534d259781ac396d89019e7c4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 31 20:35:04 2012 +0200 gfx/util: Fix header for C++. commit 96b75664531b135cf99c5a6fbf6a520ec25ea5a8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 31 19:32:58 2012 +0200 virtual2d: Use dfb_surface_pool_gfx_driver_update() to allow read/write from/to system memory. commit d936474722c38d3f81acb727533569c80887fb5d Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 31 16:44:45 2012 +0200 IDirectFBSurface_Window: Disable code for DSFLIP_PIPELINE. commit ebe111f705ddac69cfab7f2238756e27e2c29265 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 29 19:11:50 2012 +0200 Core: Increase core shmpool size from 1 to 16 MB (virtual). commit 7d33518661cfc95c5901a8eacf067f82c294466c Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 29 18:57:36 2012 +0200 X11: Fixup last but one commit. commit fe3f1671098d9690910ed7e730d95268293ff80f Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 29 18:56:04 2012 +0200 X11: Fixup last commit. commit 1abdf305e99fa94627eea4b2635afe1baad571f3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 29 18:54:08 2012 +0200 X11: Fixup input events when layer output is stereo. commit d83395e35b1733d664a41b71b6eb93f393124e59 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 28 11:53:44 2012 +0200 Options: Add 'always-indirect', merely used by system modules, to have master running (almost) as slave. Fix some things around this new option... commit 2b6b0449d19ba201c4d0863a589195c35d052fac Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 28 10:47:48 2012 +0200 WM/Default: Add special lock for updates instead of using the layer context lock, preventing some dead locks! commit e0cc9e3a3914800d1946712d3ae67192ca914b18 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 28 10:46:14 2012 +0200 Core: Make surface object reactor always indirect. commit 6c90156832a45825948fb81590d8c0ef1d66cc14 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 28 10:37:51 2012 +0200 Core: Move initialisation to dispatcher thread as CoreDFB::Initialize(). commit 8fbbb06f6a8f2e0bd3255ac2678064b64495dbc0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 28 10:33:45 2012 +0200 libfusion: Deadlock fixes, never flush calls in dispatcher, call direct even with FCEF_NODIRECT if already in dispatcher. commit f19e315730f6432c8224df82ce9add94e9d299f4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 28 10:32:35 2012 +0200 libdirect: Change nmfile.make to add option "-C" and use $(NM) with 'nm' as default. commit f5f81a31671271aca845cfcb35a8b10ad851e4ca Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun May 27 11:49:31 2012 +0200 dfbtest_window_flip: Add test for window flipping, tearing etc. commit 083ee53da4dd16dadaa6a28e1bb1a9c8b65efcaf Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun May 27 11:48:46 2012 +0200 data: Add DGIFF of Decker! commit 78587efed3a7da657c112f3dd95ea8a8eed5891f Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun May 27 11:41:21 2012 +0200 Core: Remove lock assertion and serial increase in dfb_surface_notify_display(). This allows the function to be called from drivers without calling dfb_surface_lock(). commit 54f775dfc516115c4d654d250189f431a82d1d42 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun May 27 11:40:31 2012 +0200 libdirect: Use ARM assembler for atomic operations only if ARCH_ARMv7 is defined. commit 89a94a5ff14acb07dbf696c8e34244a3d3ee5a1c Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun May 27 11:39:35 2012 +0200 DGIFF: Use dfb_surface_write_buffer() instead of creating a preallocated surface. commit 51ae01497081aed039be64443100a122d261e1c9 Author: Marek Pikarski <mass@directfb.org> Date: Fri May 25 16:09:23 2012 +0200 [PATCH] Added a GetColorSpace API call to the IDirectFBSurface. Thanks to Bryce Poole <bryce.poole@intel.com>. commit 9c259529255f6aa0eed0e01b3cfa3d7fb01fa7c1 Author: Marek Pikarski <mass@directfb.org> Date: Fri May 25 16:02:08 2012 +0200 [PATCH] Store and inherit set ColorSpace for Layer/Surface. The first change was in layer_context.c, while adding color space support in our system driver, to allow the Region to inherit a Layer's color space setting we found we need to transfer the color space setting from Layer config to its Region config in init_region_config(). The second change was in surface.c, added color space handling while re-configuring a surface in function dfb_surface_reconfig(). The prior color space handling resulted in the new surface configuration to have an incompatible pixel format when it switched from RGB-based to YUV-based (and vice versa). This could previously occur when the IDirectFBDisplayLayer_SetConfiguration() function was called and the underlying core surface is re-configured. Thanks to Timothy Strelchun <timothy.strelchun@intel.com>. commit 51b0c80938f624b274d1ab2c1f464046646a1f3d Author: Marek Pikarski <mass@directfb.org> Date: Fri May 25 15:50:46 2012 +0200 interfaces: Fixed some warnings and updated headers BTW. commit 957418156a6d7ccc8b183c585b56078a8c2fc938 Author: Marek Pikarski <mass@directfb.org> Date: Fri May 25 15:28:08 2012 +0200 tools: Fixed some warnings and updated headers BTW. commit b44f94a01172f5f75cf65e15a82e6bc9cef378c2 Author: Marek Pikarski <mass@directfb.org> Date: Fri May 25 15:19:24 2012 +0200 gfx: Fixed some warnings and updated headers BTW. commit 05e50bbfb3bc771cf826f96f5addbb2b38e5e2bf Author: Marek Pikarski <mass@directfb.org> Date: Fri May 25 15:09:10 2012 +0200 windows: Fixed some warnings and updated headers BTW. commit 8c8c94d0e467cfa7f0e00989fc7ec0c81cb67e0c Author: Marek Pikarski <mass@directfb.org> Date: Fri May 25 15:07:31 2012 +0200 core: Fixed some warnings and updated headers BTW. commit 710bb4f29f4bb37aec1774b1fb897754249f62e1 Author: Marek Pikarski <mass@directfb.org> Date: Fri May 25 14:18:40 2012 +0200 fusion: Fixed some warnings and updated headers BTW. commit 61196fa8e9f315641632ea124084f03a3266ee93 Author: Marek Pikarski <mass@directfb.org> Date: Fri May 25 14:12:07 2012 +0200 direct: Fixed some warnings and updated headers BTW. commit 68d1c23c16179a1b61ab9065c8df6b1548b9b40b Author: Marek Pikarski <mass@directfb.org> Date: Fri May 25 13:19:01 2012 +0200 [PATCH] GPU system memory support cache flushing mods. Made changes necessary in the dfb_surface_buffer_lock function to handle GPU based reading or writing support for local and system memory based surface buffers (as well ones in user pre-allocated memory). Previously, when a GPU read/write was requested, the CPU memory cache was not flushed when the CPU had only read from the memory. Changes require validation on traditional non-UMA based graphics drivers. Updated the dfb_surface_pool_allocate function to alway mark brand new CoreSurfaceAllocations as having been both read and written to by the CPU. Updated the allocation_update_copy function to track that the CPU wrote to the destination buffer allocation and that it read from the source buffer allocation so that proper cache flushing will occur. Thanks to Timothy Strelchun <timothy.strelchun@intel.com>. commit 7de94a64d47056a828f73880aed252865ffac17b Author: Marek Pikarski <mass@directfb.org> Date: Fri May 25 12:40:31 2012 +0200 [PATCH] Added buffer alloc destroy notify message. Added a surface notification message sent for each buffer allocation that is destroyed. It is sent by the dfb_surface_pool_deallocate function using a new notify function called dfb_surface_pool_notify. A graphics driver that allocates custom shared/local resources for a buffer allocation from any surface pool (such as the pre-allocated memory one) should register to receive this new buffer allocation destruction message. This will give the graphics driver (in each registered process) an opportunity to destroy those associated custom shared/local resources. Thanks to Timothy Strelchun <timothy.strelchun@intel.com>. commit ff1fa2d36bc0818328575a3ca6bde08650a35807 Author: Marek Pikarski <mass@directfb.org> Date: Fri May 25 10:57:03 2012 +0200 [PATCH] Allow graphic drivers to get buffers from any surface pools. This was done by adding the dfb_surface_pool_gfx_driver_update function to update any surface pools that match the specified types (such as CSTF_INTERNAL/PREALLOCATED) to by adding the specified CSAF_READ/WRITE flags to the indicated accessor (such as CSAID_GPU). It is intended to be called by a graphics driver from its driver_init_driver function. On a platform with a UMA, this now allows a graphics driver to say it also supports the local surface pool, shared surface pool, and/or pre-allocated surface pool. Thanks to Timothy Strelchun <timothy.strelchun@intel.com>. commit 2c0746a5675881500ae74c3ecf948dddc38d5df9 Author: Marek Pikarski <mass@directfb.org> Date: Fri May 25 10:49:50 2012 +0200 [PATCH] GPU system memory support mods for aligned buffer directfbrc commands. Added the directfbrc commands system-surface-base-alignment and system-surface-pitch-alignment. If the graphics driver supports system memory, these commands are used to sets the byte alignment for the system memory based surface's base address and pitch, or zero for no alignment (which is the default). Aligning these allows pixel data to travel more efficiently through the CPU and across the memory bus to increase performance, and meet GPU requirements (if any). Updated the system memory surface pools to use these values for creating surface buffers when they are non-zero. The local surface pool will use the posix_memalign function and the shared surface pool will bloat the size to allow for base address to be aligned. Note: The minimum base address and pitch alignment size are set to very small values since different graphics drivers will have different requirements (some may be larger than others). Thanks to Timothy Strelchun <timothy.strelchun@intel.com>. commit 6c4954df6790d2c6d7d20d7f5df82bc84d1cf6ca Author: Marek Pikarski <mass@directfb.org> Date: Fri May 25 10:29:30 2012 +0200 [PATCH] Fixed gfx driver module loading for slave processes. Fixed dfb_gfxcard_load_driver in how graphics driver module loading for slaves processes is handled to address the scenario when there are multiple graphics drivers installed and the module entry that should be loaded is not the first entry found. It was found that a local reference to the next module link must be stored prior to a call to the direct_module_unref function because it will initialize the next field to NULL when there are no more references to the module. This is the same approach used by the dfb_gfxcard_find_driver function used by the master process. Thanks to Timothy Strelchun <timothy.strelchun@intel.com>. commit a3d07f85e0a5e13e323bcb82e47363d47d4f89b3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 24 21:46:38 2012 +0200 virtual2d: Add missing call to direct_processor_recycle(). commit 09f7fcff2225fd174ca834a9c3b0dd46cd0a96b7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 24 21:32:17 2012 +0200 tests: Add dfbtest_waitserial and dfbtest_blit_multi. dfbtest_waitserial issues a few FillRectangle on surface A then a lot on surface B. Locking surface A should take way less time than the WaitIdle that is done afterwards. Testing on virtual2d driver (implements GetSerial/WaitSerial): Lock took 125 us, WaitIdle took additional 110462 us Lock took 254 us, WaitIdle took additional 98246 us Lock took 114 us, WaitIdle took additional 113675 us Lock took 244 us, WaitIdle took additional 100064 us [...] dfbtest_blit_multi creates a large number of smaller surfaces and blits from them for benchmarking. commit b5a595bd1d0edfe15f366d416087e4df4df4373c Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 24 21:30:12 2012 +0200 virtual2d: Implement virtual accelerator with WaitSerial support (still called vmware driver, use accelerator=51 option). This uses a DirectProcessor for asynchronous execution of graphics operations. commit 6a37bbd87715434e46c3b3c1bb49ec542eae3a4c Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 24 21:29:19 2012 +0200 Core: Revive graphics serials! Keep last serial per allocation and wait for that only for interlock management. commit 9cae063ae6d76adb630ced72afec096104d434d0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 23 23:25:50 2012 +0200 Core: Fix ref counting bug in new window stack motion event compression code with dispatch cleanup. The ref was not decremented in case the dispatch cleanup was already installed and a ref was already pending. commit 0e8926e292f691975358615f074ee01c6b99d8f8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 23 23:24:52 2012 +0200 libvoodoo: Don't try to call direct_config_set(), but return an error. direct_config_set() is called from src/misc.c! Before fixing this bug introduced by generic config support, fusion_config_set() never got called. commit d34b107c3f0e78e3fef3de227cf05a81bd2a5e06 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 23 23:24:02 2012 +0200 libfusion: Don't try to call direct_config_set(), but return an error. direct_config_set() is called from src/misc.c! commit ab5c20f6c006fe468ef98b310f861e271c2b6899 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 23 23:01:10 2012 +0200 Core: Skirmish Fighting round 2 Use --object-ptrs for fluxcomp to avoid object lookups on slave side. Update all _Catch() functions for objects to use fusion_object_catch() with the object pointer. Move object lookup before calling CoreWindow::SetConfig or CoreLayerContext::CreateWindow to dispatcher side with ownership check. Turn several core skirmishs into mutexes for secure fusion. commit 7f7f79f2aeeb7c962b024398e99e433dc47e3b1d Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 23 22:59:25 2012 +0200 Fusion: Turn object pool skirmish into mutex for secure fusion, add fusion_object_catch() convenience function. commit c08c16a883278a68ecab0af50a247fbe2e245269 Author: Marek Pikarski <mass@directfb.org> Date: Wed May 23 18:56:18 2012 +0200 sawman: flip with WAITFORSYNC in double buffered mode to avoid flickering commit 2cc44cc69e7e6ad308aad557628b6c4ede20f704 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed May 23 16:55:28 2012 +0200 wm/default: use DSFLIP_WAITFORSYNC in DLBM_BACKVIDEO case commit 9a0a7a4f9e043849894e1be025721a4f830399a1 Author: Marek Pikarski <mass@directfb.org> Date: Wed May 23 16:02:10 2012 +0200 sawman: make update_region4 the default commit 987bb92e3818a8de2d8b63aefa37578e2f6ecc10 Author: Marek Pikarski <mass@directfb.org> Date: Wed May 23 15:28:51 2012 +0200 wm: fixed build, added missing variable "DFBResult ret" commit 8afc099c2b67f4d2396e5dbead9adaf769b6ad02 Merge: ddaaeb4 a67b39b Author: Marek Pikarski <mass@directfb.org> Date: Wed May 23 13:45:48 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit ddaaeb423bf3dcc53397db19663e508411038c28 Author: Marek Pikarski <mass@directfb.org> Date: Wed May 23 13:45:23 2012 +0200 wm: add missing locking to surface reaction (fix race-condition) commit a67b39be1dc1bc9ceffa0f7f5a3316f4104b3203 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed May 23 12:50:04 2012 +0200 configure: change flux requirement to 1.3.0 commit 4545c22a0aed39c0fbfce0898a80163da242d68f Author: Marek Pikarski <mass@directfb.org> Date: Wed May 23 11:45:47 2012 +0200 wm: remove redundant checks (copy'n'paste bugs) commit 3aa02050054dc1d291ec87ee320b8a6026c0465d Merge: e7ccfa9 1af3219 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 23 00:29:09 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit e7ccfa9e24572f52abbd0228c8ea4dcf66419d0e Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 23 00:28:27 2012 +0200 Core: Don't ref source surfaces on slave side graphics context in secure fusion mode. Boost! commit 1af3219cff898c9d3b4f7709c56be0049b73e055 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue May 22 18:02:32 2012 +0200 Core: remove bogus asserts, mark optional output parameters in .flux files to have flux generate proper code commit aed2d368eedb4c9c09df2ade476b5bf20720382f Author: Andreas Shimokawa <andi@directfb.org> Date: Tue May 22 16:24:42 2012 +0200 rules: use $FLUXCOMP not fluxcomp commit 7e9b7886e83b7bcb5ace392e7e0a74394b9e1f52 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue May 22 15:59:15 2012 +0200 configure: add check for fluxcomp, which also checks for the required fluxcomp version Many thanks to Sven Neumann for the original patch commit 14ef5a7b738d14c7533b7c91e194f5473a956978 Author: Marek Pikarski <mass@directfb.org> Date: Mon May 21 14:59:30 2012 +0200 Fixed DFBInputDeviceCapabilities naming, there was a naming clash with DFBImageCapabilities enum. DICAPS_KEYS, DICAPS_AXES, DICAPS_BUTTONS, DICAPS_ALL are deprecated. DIDCAPS_NONE, DIDCAPS_KEYS, DIDCAPS_AXES, DIDCAPS_BUTTONS, DIDCAPS_ALL follow the right naming convention instead. Anyway, the new enum items are only used when DIRECTFB_DISABLE_DEPRECATED is defined during compilation. The old enum namings are still there for backwards compat. commit 4a75a74d1becc4a7548d065b610e6ef1e2defc44 Author: Marek Pikarski <mass@directfb.org> Date: Fri May 18 17:32:36 2012 +0200 Direct: no need to include #include <linux/unistd.h> commit dc7f0a216ce3fb5631b308450983b5b58ad2f349 Author: Marek Pikarski <mass@directfb.org> Date: Fri May 18 17:21:58 2012 +0200 Direct: only allow killing the sighandler thread from inside the DFB process commit 278b4feadd7da9928b5d8708a8404316b977ac65 Author: Marek Pikarski <mass@directfb.org> Date: Fri May 18 12:39:42 2012 +0200 Direct: remove empty line at EOF commit 84a1dd451a706b73a0dc9dd8ae1d437138c117b6 Author: Marek Pikarski <mass@directfb.org> Date: Fri May 18 12:37:47 2012 +0200 Direct: add custom signal 123 to sighandler mask commit 7dbafdee8464e58b1793429d23543655a7987df1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 17 23:57:30 2012 +0200 direct: Fix missing zero char in size calculation for option entry allocation. commit b5665c8fdd52f0834f22e729435f1e32ea3b3bf3 Merge: b9f0ce2 e6cb74a Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 17 23:56:52 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit e6cb74a47a1e966157496c840609d1514194b37a Author: Marek Pikarski <mass@directfb.org> Date: Wed May 16 13:49:57 2012 +0200 ImageProvider: handle invalid images (thanks to bc). commit f3914cfc6f94d9dbbec81a6bdcd6d70d4b655833 Author: Marek Pikarski <mass@directfb.org> Date: Tue May 15 15:44:13 2012 +0200 Direct: added missing path to loading interfaces when a implementation was not specified when loading a static interface commit b9f0ce2675b86d58c7d6a33accd2f3254137f6fa Merge: 30d033d 8587c11 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 11 22:11:32 2012 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 30d033d1d0ab586839b0222f853bb9dcf05c953c Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 11 20:40:49 2012 +0100 dfbtest_windows_watcher: Print process and instance id. commit 8b3e604f8f41aeea34d7e64e9a03ae1379e8db11 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 11 20:39:23 2012 +0100 One: Use capacity based ids array instead of reallocating each time. commit 8587c11b55aebb12920c734b7b81a1a9f0359ff5 Author: Marek Pikarski <mass@directfb.org> Date: Thu May 10 13:03:49 2012 +0200 Fusion: fix build for single app mode commit aa71ead9025f8d297aa4c278dad8de536b81bcf5 Merge: 36052a3 7553f77 Author: Marek Pikarski <mass@directfb.org> Date: Thu May 10 13:03:13 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 36052a31e92b0486051b7ada96b29a0b8efbcccc Author: Marek Pikarski <mass@directfb.org> Date: Thu May 10 13:02:36 2012 +0200 Core: can also queue SetColorAndIndex commit 7553f77e7c8bc8ecbc784078fd27ef387d76f478 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed May 9 18:38:49 2012 +0200 gfxdrivers/gles2: add the egl system as a valid system for this driver commit b779d4db9a5de7bfbb2f05acdfacc2e147b76a1a Merge: 0b975c3 56e1985 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed May 9 18:38:19 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 0b975c31f5fb6ecf09260cf579665c63f3f54836 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed May 9 18:37:43 2012 +0200 system/egl: another batch of useless broken stuff commit 56e198539f8ed710f1da692ffab521d3eceda999 Merge: cd28f2d 1f24940 Author: Marek Pikarski <mass@directfb.org> Date: Wed May 9 11:57:24 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit cd28f2d6f6a56b3b2fda303f98c0325dec0aba74 Author: Marek Pikarski <mass@directfb.org> Date: Wed May 9 11:56:29 2012 +0200 Direct: fix off by one bug in detecting value of default-interface-implementation commit 1f2494041804fb2f63f95dce2f1fbbd7340e55e7 Merge: 5e8476d e89c01c Author: Andreas Shimokawa <andi@directfb.org> Date: Tue May 8 18:20:48 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 5e8476de982d63772e4dbdf39c1905894276a7b2 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue May 8 18:19:42 2012 +0200 egl: added non-working useless egl system, basically a renamed pvr2d system to git commit e89c01c3091f3e796b6a55ef82bfa54f10ed6d2a Merge: d8ff6cd 2273113 Author: Marek Pikarski <mass@directfb.org> Date: Tue May 8 15:15:08 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit d8ff6cd2fcf9b1eea9fd68450e1c942b0bb28b3a Author: Marek Pikarski <mass@directfb.org> Date: Tue May 8 15:12:19 2012 +0200 Fusion: buffer async fusion calls in user space using one ioctl up to 512 calls or 20ms timeout Improves slave GFX performance by ~1% and produces ~10% less CPU load commit 22731133f49ae71e55f37eef3cfa0f05bfec116b Merge: 808e91b 5a5fa41 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 8 14:30:40 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 808e91b971e7d9fcfda7c95c8224f6e68750a278 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 8 14:29:53 2012 +0200 X11: Copy lock structure before making call to master as it moved from shared to local memory. commit 5a5fa413d48411fead31fe1a47a4ce6c3ddf3337 Author: Marek Pikarski <mass@directfb.org> Date: Tue May 8 13:23:47 2012 +0200 Core: fix segfault in palette (off-by-one) commit 8cf829c410a40cd365cd454a89936d6401492eb6 Author: Marek Pikarski <mass@directfb.org> Date: Fri May 4 14:09:14 2012 +0200 Direct: remove debug message commit 4b347b38c7a3c469e79f3482c7699631cb0052bb Author: Marek Pikarski <mass@directfb.org> Date: Fri May 4 13:26:23 2012 +0200 Conf: generic config extensions fixes and improvements commit 08334e3fe03cad55dfe12834e521f20fb70cf3ee Merge: 04909ca 9c6aeea Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 3 22:23:54 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 04909ca1c36fc97aefb029f5ea92fbb9bbe04bad Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 3 22:23:16 2012 +0200 FBDev: Remove libsysfs dependency, thanks to Daniel Schaal! Directly open the files in sysfs to remove the last usage of the deprecated libsysfs library in fbdev.c and remove libsysfs from the build system. commit 9c6aeea31bd7d9a89cbe781f94a49658f23737c3 Author: Marek Pikarski <mass@directfb.org> Date: Thu May 3 12:26:00 2012 +0200 Core: close input devices before shutdown is processed commit b4b4fded2b30db855a41134757f9f388c32ced37 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 3 10:58:14 2012 +0200 Core: Fix debug messages, thanks to Daniel Schaal! commit c322b7626d2de81ed6de8d519ad9e2953ebace07 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 2 21:09:59 2012 +0200 Core: For layer regions use local buffer lock structures, remove from shared region data. commit e45a9aa2d8f7b21d5f360540c84aca9f1b7d533a Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 2 21:07:27 2012 +0200 X11: Use local buffer lock structure for expose events. commit aaeec781124b38db6ad362a18d1287de87d32f43 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 2 21:02:45 2012 +0200 X11: hot fix the hot fix when nested updates occur commit fe05d3ce0d5051fdf21629bcc674ae421661df7f Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 2 17:26:39 2012 +0200 Core: Set process_id to pid of Fusionee when sending WindowAdd information. commit 51e48f483188493ef58cd4a4a2b18185f7eb176f Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 2 17:26:21 2012 +0200 Fusion: Include <direct/types.h> commit b5691eb31f75c9c5763c92fe8b84a4eaf353f16a Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 2 17:18:53 2012 +0200 Fusion: Add fusion_get_fusionee_pid(). commit c641ad01de98cf52c69208026c4365f078a853b7 Author: Marek Pikarski <mass@directfb.org> Date: Wed May 2 17:14:36 2012 +0200 - implemented One-based messenger commit 75408de14b9d11143b489b549bb3a84fae0ac437 Author: Marek Pikarski <mass@directfb.org> Date: Wed May 2 17:12:38 2012 +0200 - implemented One-based messenger commit 3ee3b3028c8c6d05900a2e8fceddde96d0b4442c Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 2 13:58:47 2012 +0200 Core: Use object identity rather than owner to set values for WindowAdd listener callback. commit 522b0253b4642a19920fbd726e441f8df28d27c8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 1 15:05:05 2012 +0200 GLX: Remove obsolete assertion from glxDeallocateBuffer(). commit 8772b1c4431aea2d9c268cacf14df70c6635028b Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Apr 30 15:40:05 2012 +0200 IDirectFBWindows: Add instance_id and process_id in window info and fix missing cleanup in Release(). commit 4068163f067e12075102f398804048b68b2909ce Author: Marek Pikarski <mass@directfb.org> Date: Mon Apr 30 14:57:49 2012 +0200 core: make rest of palette APIs secure-fusion safe commit d62f35b4278e0b25eb924b90e51467427c7fec9f Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 27 10:48:41 2012 +0200 Core: Add some debug to layer region surface locks. commit e78d5190e7869ca030316bdc2e7cfd04dade2f1a Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 27 10:47:25 2012 +0200 Core: Set WM reactor to always indirect. commit 26cd6df8320e7adb13a6f8eac2fd47a2b79d4382 Merge: 5187935 7a6846c Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 27 10:46:50 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 51879359dca6e360b427eb952ff52c2a7061118f Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 27 10:46:11 2012 +0200 Core: Add missing calls to dfb_surface_pool_prelock() in allocation_update_copy() for handling cache flushes etc. commit d15cdbb153c5fb1f66779e6efee01057e1792d89 Author: Marek Pikarski <mass@directfb.org> Date: Tue Apr 24 17:14:05 2012 +0200 sawman: fix InsertWindow() which forgot to trigger wm update commit 7a6846cabf58c62cda67467da43e8ec2a1258729 Author: Marek Pikarski <mass@directfb.org> Date: Tue Apr 24 13:10:29 2012 +0200 dfb: fix CreatePalette() which was not ready for secure-fusion display: fix SetColorIndex() which was not ready for secure-fusion core: add SetColorAndIndex(..) which sets color and color index in client card state Fix: Slave apps were not able to set and use palette. Removed segfaults and added proper handling in master. commit fd64983222ffb27f6569d0aef849f71bb76ee877 Author: Marek Pikarski <mass@directfb.org> Date: Mon Apr 23 16:27:13 2012 +0200 direct: fix default interface selection from cached interfaces commit b494f537de23defb7c2c695f1680252cfbb8848d Author: Marek Pikarski <mass@directfb.org> Date: Mon Apr 23 14:13:03 2012 +0200 direct: handle multiple settings of default-interface-implementation=type/impl in directfbrc commit 2e956245f7e33d5849890d05e812256057b83fe5 Author: Marek Pikarski <mass@directfb.org> Date: Fri Apr 20 10:01:06 2012 +0200 direct: support default-interface-implementation=interface_name/implementation_name in config Refactored DirectGetInterface(...) to respect default settings in directfbrc. Now it is possible to select e.g. a default ImageProvider by adding default-interface-implementation=IDirectFBImageProvider/IMLIB2 to directfbrc. The IMLIB2 Provider will then be used prior to selecting PNG or JPEG provider. commit fec06d46b03aab04329791fd88c47ec54c2b621c Author: Marek Pikarski <mass@directfb.org> Date: Wed Apr 18 18:15:40 2012 +0200 sawman: do not forget to draw background in case there are no windows commit 5dc381efe26da4235153c154ab35225224cefca1 Author: Marek Pikarski <mass@directfb.org> Date: Wed Apr 18 12:45:34 2012 +0200 sawman: implemented region_update_4() commit 7ac37d1f956f47e7eb24996a6ce60a6d122ff38d Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Apr 17 14:00:46 2012 +0200 jpeg_uyvy_decode.patch commit 1d47df182b3ce7714e44efd477a1bfe3077afb2e Author: Holger Hans Peter Freyther <zecke@selfish.org> Date: Sat Apr 14 10:43:40 2012 +0200 build: Fix make distcheck. Add CoreDFB_CallMode.h to the list of header files. commit 7340ec44c3ba88f11cac7e05f99b2174bb284e44 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 13 13:37:13 2012 +0200 Core: Add input event compression for relative/absolute motion events to window stack input device listener. This is needed to cope with queued up events in Fusion Dispatch since input device reactor is forced to be indirect. commit 31b493e98eaaa4c298b4e9a98eaee4815c36fced Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 13 13:36:16 2012 +0200 Core: Set input device reactor to indirect mode (no shortcut in master, always dispatch). commit 03d7ff5db4aaceee39a5bbfaf911a71a01b52200 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 13 13:35:31 2012 +0200 X11: Increase max number of events to poll before forcing a flush (from 23 to 2000). commit 62c0b93061f1e0d08e73f63729e39cb518a1b08c Author: Marek Pikarski <mass@directfb.org> Date: Thu Apr 12 15:43:37 2012 +0200 core: make surface dumping work again with secure fusion Added DFBResult dfb_surface_dump_buffer2( CoreSurface *surface, CoreSurfaceBufferRole role, DFBSurfaceStereoEye eye, const char *path, const char *prefix ) commit 8ed404e55cffffcc2949c7c0eba867114dcac82c Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 12 13:17:56 2012 +0200 IDirectFBSurface: Add asynchronous frame synchronisation for apps/compositors attaching dynamically. Add IDirectFBSurface::MakeClient() and FrameAck(). Add flip_count to DFBSurfaceEvent. Add CoreSurfaceClient featuring FrameAck() for each compositor registering at a CoreSurface. Add CoreSurface::PreLockBuffer3() adding flip_count for explicit buffer specification. Add dfb_state_set_source_2() with flip_count for explicit blitting from one buffer. Add dfb_surface_lock_buffer2() for explicitly locking a certain buffer. Add dfb_surface_notify_frame() issued when surface clients acknowledge flip_count from update event. Block applications in Flip() while surface clients are attached and haven't acknowledged the frame that would be written to next. Extend dfbtest_surface_compositor calling MakeClient() and upon DFBSurfaceEvent receival FrameAck(). commit 7139279d04905b931690df21165c771b8a7f35ac Author: Marek Pikarski <mass@directfb.org> Date: Thu Apr 12 12:16:34 2012 +0200 direct: also evaluate no-sighandler option in destructor commit 2e1e741bc9a2215948abad121e16fc66f07fab9a Author: Marek Pikarski <mass@directfb.org> Date: Thu Apr 12 11:13:19 2012 +0200 - core: optimization: force COREDFB_CALL_DIRECT mode for single-app builds commit ea497a6c50d22cbc906335b7cde5c77d9e3f3153 Author: Marek Pikarski <mass@directfb.org> Date: Thu Apr 12 10:13:22 2012 +0200 direct: respect no-sighandler option commit c47c952c44ceb08602c03b6edcef8ddd8c52598f Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Apr 11 17:39:43 2012 +0200 configure: fix --without-voodo switch (was a copy and paste bug) commit 9a7ddaa6cafa6ad3d67784861f669b394b28c16c Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Apr 11 16:09:33 2012 +0200 compile fixes commit 33ec36ce6dd9c8400c2397aa5e16fb09a7769518 Merge: ba18197 6ec16f6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Apr 11 15:56:13 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit ba1819793ffa95eaa76f8e6c8c34415ab1ffb1ba Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Apr 11 15:55:47 2012 +0200 dfbtest_video: Add very simple video playback test for use with compositor demo :) commit 6ec16f674295e4b02f236207fd1cee7b3980b709 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Apr 11 15:39:16 2012 +0200 gfx/generic: fix off-by one issues in 16-bit code introduced by 520907c32769e08272d9b776f5524b37e114343c commit 863e9eebdfa52fc4b03dca292d22984cd69898cf Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Apr 11 11:22:42 2012 +0200 Docs: Add Window Updates document. commit c8cdbf2ebbddede480b6411acb0a8c74222df976 Merge: 857fac2 8c95d8d Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Apr 11 01:48:54 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 8c95d8d6c0b872d5dae2f6bffd1155f70898b2c5 Author: Marek Pikarski <mass@directfb.org> Date: Tue Apr 10 18:18:46 2012 +0200 - fix reference counting bug commit 857fac21af231a73df992881e7632847ded6acae Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Apr 10 17:10:39 2012 +0200 Fusion: Fix fusion_vector_foreach for C++ (add type cast). commit 7d3529c974dd0c8103650eadde6242a88374d3db Author: Marek Pikarski <mass@directfb.org> Date: Tue Apr 10 13:58:55 2012 +0200 Fix shutdown deadlock. Threads should not sleep in single app mode in CoreDFB_CallMode() The disptacher thread should never sleep in CoreDFB_CallMode() core: dispatcher thread should not sleep in CoreDFB_CallMode() fusion: fake return value of fusion_dispatcher_tid() for single app mode to zero commit 5cfae064c9805fcb68a397b7f35e3876ba46a105 Author: Marek Pikarski <mass@directfb.org> Date: Tue Apr 10 12:59:55 2012 +0200 direct: do not block all signals by default, just subscribe to the observed ones as before Makes ctrl-Z on console work again. commit 7d9879e2485f55614cdb209aa9ac8377b6a39853 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 8 18:59:38 2012 +0200 Fusion: Remove message size assertion from fusion_object_pool_create(). commit 9873e2da7b2380adc4c0f693e2f08e6135166202 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 8 17:56:20 2012 +0200 build: Fix warnings. commit 75437003e38e1a12715b662cd8c425e2b3c18f3c Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 6 18:56:01 2012 +0200 Core: In surface destructor properly handle stereo buffers. commit ee6b957a05c79562f57013989e846b31ad183f54 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 6 18:53:02 2012 +0200 Fusion: Handle global reactions only for channel 0 in single app (as in multi app already). commit b4e69c949be4adab2b30356d93132b365a54d3c4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 6 18:39:58 2012 +0200 Fusion: Fix build by adding fusion_dispatcher_tid() for single app. commit 6236a218aee4336450f36b49abadc51eef9e898f Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 5 19:02:33 2012 +0200 Core: Add CoreGraphicsState::ReleaseSource() to fix IDirectFBSurface::ReleaseSource() in secure fusion mode. commit ac3fddaff16572fbb08813820e0d8bbf5339754c Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 5 18:48:12 2012 +0200 IDirectFB: Fix missing input events in windowed fullscreen applications. commit ba487fa9ebb9f7b77af6d199317bb592be50c102 Merge: 189ec93 670e2e1 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Apr 4 16:48:48 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 189ec93af093bea5948f9de2366acaa4bb15a656 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Apr 4 16:48:34 2012 +0200 devmem: remove bogus ASSERTS commit 670e2e1a23f6bc15557afad4811cd2ad1e3d43bf Author: Marek Pikarski <mass@directfb.org> Date: Wed Apr 4 15:55:17 2012 +0200 core: let ongoing flux calls complete in any case before deinitialization is performed commit 461056b5632fbb37f17920ad864ed3e6702a87d0 Author: André Draszik <andre.draszik@st.com> Date: Wed Apr 4 12:52:29 2012 +0100 layers: print color space in DFB_CORE_LAYER_REGION_CONFIG_DEBUG_AT() commit 7bef1b6caadfaf55de0b4fe09396598418813f70 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Apr 4 12:27:18 2012 +0200 remove printf() commit 93cc4a55b46ce0756dad65922f4d1716a7944a76 Author: Marek Pikarski <mass@directfb.org> Date: Wed Apr 4 11:42:02 2012 +0200 core: implemented clean shutdown The registered signal handler is the first one which destroys the core. All pending flux calls wait until core is destroyed before returning DFB_DEAD. commit 0a430500f0c9bb52c3c3fc36a7bd574eb79ef73e Author: Marek Pikarski <mass@directfb.org> Date: Wed Apr 4 11:35:29 2012 +0200 direct: reworked signal handling Created threads block all signals by default. Added an extra thread dedicated for asynchronous signal processing. This is the only thread which catches and processes signals. The changes were needed for a synchronous and clean application shutdown. commit 902811c0be8d5d60c30b4f2bb6202e23a7aff9aa Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Apr 3 15:24:38 2012 +0200 config: fix usage string, secure fusion is default! commit df324e7e580d7588bc6f204a1dfbfd943c907212 Merge: 8293af6 13e90d0 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Apr 3 14:08:28 2012 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 8293af6c3ffb516dd5902453775f3ddfc3975d2a Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Apr 3 14:06:22 2012 +0200 core: add function CoreDFB_CallMode() which determines whether calls should be direct, indirect or denied. NOTE: Requieres latest flux from git commit 13e90d0e2691a9c4df8c92bf533d8317a1174d31 Author: Marek Pikarski <mass@directfb.org> Date: Mon Apr 2 18:15:55 2012 +0200 core: fix race condition between dfb_wm_close_all_stacks() and layer_context destructor commit cfd84814949761e5f3ee01d27b53e3c6e2a6f62a Author: André Draszik <andre.draszik@st.com> Date: Mon Apr 2 14:21:02 2012 +0100 dfbscreen: add picture framing support commit 06a89d7aa621f940ac92c10ed88794df59c75011 Author: André Draszik <andre.draszik@st.com> Date: Mon Apr 2 14:12:16 2012 +0100 dfbinfo: fix up a comment commit 06a78aa7d720879d472efb32e1d523473c5aa386 Author: André Draszik <andre.draszik@st.com> Date: Mon Apr 2 14:08:45 2012 +0100 dfbinfo: print picture framing in encoder output commit 6e2843e350330faea6064fffc7ace673c4b22fe7 Author: André Draszik <andre.draszik@st.com> Date: Mon Apr 2 14:08:00 2012 +0100 build: add picture framing strings to autogenerated directfb_strings.h commit 610be7a15d873193c0a5b0209bd7567d8e1ea028 Author: André Draszik <andre.draszik@st.com> Date: Fri Mar 30 15:26:50 2012 +0100 build: make imageprovider makefile portable again Since commit a8bcddccd00e58 (build: refactor imageprovider makefile a bit) we get a new automake warning, sorry... Signed-off-by: André Draszik <andre.draszik@st.com> commit 2db2f37e1c9ce1c17837d0018f6f40f6021859d1 Author: André Draszik <andre.draszik@st.com> Date: Mon Feb 20 18:02:36 2012 +0000 directfb: make use of dfb_gfxcard_batchstretchblit() where reasonable commit 5771d4ad406e4397044e6b7dbcd4b3580bcda19d Author: André Draszik <andre.draszik@st.com> Date: Mon Feb 20 18:01:23 2012 +0000 (surface) implement IDirectFBSurface::BatchStretchBlit() Signed-off-by: André Draszik <andre.draszik@st.com> commit 7e85d2ed40e6d2cb6127a93589c374012175e116 Author: André Draszik <andre.draszik@st.com> Date: Mon Feb 20 17:39:10 2012 +0000 gfxcard: refactor dfb_gfxcard_blit() This is useful for the upcoming dfb_gfxcard_stretchblit() update, which will accept more than one rectangle commit 5f1114b77a9dd4dd36566a12551aed2cfcec75fa Author: André Draszik <andre.draszik@st.com> Date: Thu Sep 29 11:53:27 2011 +0100 gfxcard / state: allow a graphics driver to hold extra state information Two new callbacks are added to GraphicsDeviceFuncs, that if set, will be called whenever a state is created or destroyed. This allows a graphics driver to store custom state specific data in CardState, which is useful if e.g. extra data needs to be preserved between calls to CheckState() and SetState(). commit 87529e3339dc6005b694c69d5646b03c23800797 Author: André Draszik <andre.draszik@st.com> Date: Tue Apr 13 03:11:13 2010 +0100 directfb.h: whitespace commit a8bcddccd00e58a4db3c736fe65e244482a95463 Author: André Draszik <andre.draszik@st.com> Date: Thu Mar 29 14:53:28 2012 +0100 build: refactor imageprovider makefile a bit Similar to commit 5a941ac479883bef11bd9ada65b07fafafff2ad1 ([build] add missing include path for builddir != srcdir) commit 64d603a2edbf36ecc8f0419d0d441e09b57f179b Author: Haithem Rahmani <haithem.rahmani@st.com> Date: Mon Apr 11 11:05:10 2011 +0100 inputdrivers: support lirc>=0.8.6 STLinux bugzilla #11689 commit 706473d1bf21ef9b20226632224f59ce3cbf8864 Author: André Draszik <andre.draszik@st.com> Date: Tue Mar 27 15:44:44 2012 +0100 directfb-csource: fix incorrect libpng API usage This was added incorrectly in commit 65efa6affbdc1a90246e89f045c3d6774f55e767 (merge various patches from Broadcom (thanks!)) commit 6914899a69c80b46afebd5cb2104d8a7ddbe3ebe Author: André Draszik <andre.draszik@st.com> Date: Tue Mar 27 16:17:37 2012 +0100 x11: fix a few compiler warnings CC surfacemanager.lo .../DirectFB/systems/x11/surfacemanager.c: In function 'dfb_surfacemanager_displace': .../DirectFB/systems/x11/surfacemanager.c:240:26: warning: variable 'device' set but not used [-Wunused-but-set-variable] .../DirectFB/systems/x11/surfacemanager.c: In function 'dfb_surfacemanager_deallocate': .../DirectFB/systems/x11/surfacemanager.c:424:25: warning: variable 'buffer' set but not used [-Wunused-but-set-variable] CC vpsmem_surface_pool.lo .../DirectFB/systems/x11/vpsmem_surface_pool.c: In function 'vpsmemTestConfig': .../DirectFB/systems/x11/vpsmem_surface_pool.c:229:19: warning: variable 'surface' set but not used [-Wunused-but-set-variable] .../DirectFB/systems/x11/vpsmem_surface_pool.c: In function 'vpsmemMuckOut': .../DirectFB/systems/x11/vpsmem_surface_pool.c:333:19: warning: variable 'surface' set but not used [-Wunused-but-set-variable] commit fbe352664601f89c6f9ddbd77a28a9eb39fafbca Author: André Draszik <andre.draszik@st.com> Date: Tue Mar 27 16:15:29 2012 +0100 fbdev: fix a few compiler warnings .../DirectFB/systems/fbdev/surfacemanager.c: In function 'dfb_surfacemanager_displace': .../DirectFB/systems/fbdev/surfacemanager.c:296:26: warning: variable 'device' set but not used [-Wunused-but-set-variable] .../DirectFB/systems/fbdev/surfacemanager.c: In function 'dfb_surfacemanager_deallocate': .../DirectFB/systems/fbdev/surfacemanager.c:480:25: warning: variable 'buffer' set but not used [-Wunused-but-set-variable] commit e0ebcbffec1ecb447a3700e64b8acd563b858622 Author: André Draszik <andre.draszik@st.com> Date: Tue Mar 27 16:05:56 2012 +0100 png: fix compiler warning CC idirectfbimageprovider_png.lo .../DirectFB/interfaces/IDirectFBImageProvider/idirectfbimageprovider_png.c: In function 'IDirectFBImageProvider_PNG_RenderTo': .../DirectFB/interfaces/IDirectFBImageProvider/idirectfbimageprovider_png.c:273:29: warning: variable 'info' set but not used [-Wunused-but-set-variable] commit 1cffb599dc38de517cf7532daf096093c46d5e1c Author: André Draszik <andre.draszik@st.com> Date: Tue Mar 27 15:40:06 2012 +0100 tools: fix some compiler warnings CC directfb-csource.o .../DirectFB/tools/directfb-csource.c: In function ‘load_image’: .../DirectFB/tools/directfb-csource.c:458:11: warning: format ‘%ld’ expects argument of type ‘long int’, but argument 3 has type ‘png_uint_32’ [-Wformat] .../DirectFB/tools/directfb-csource.c:504:25: warning: format ‘%ld’ expects argument of type ‘long int’, but argument 3 has type ‘png_uint_32’ [-Wformat] .../DirectFB/tools/directfb-csource.c:413:28: warning: ‘info_palette’ may be used uninitialized in this function [-Wuninitialized] CXX mkdgifft.o .../DirectFB/tools/mkdgifft.cpp: In function ‘DFBResult load_image(const char*, DFBSurfaceDescription*)’: .../DirectFB/tools/mkdgifft.cpp:683:77: warning: format ‘%ld’ expects argument of type ‘long int’, but argument 3 has type ‘png_uint_32 {aka unsigned int}’ [-Wformat] .../DirectFB/tools/mkdgifft.cpp:711:41: warning: format ‘%ld’ expects argument of type ‘long int’, but argument 3 has type ‘png_uint_32 {aka unsigned int}’ [-Wformat] CC dfbdump.o .../DirectFB/tools/dfbdump.c: In function ‘alloc_callback’: .../DirectFB/tools/dfbdump.c:270:28: warning: variable ‘index’ set but not used [-Wunused-but-set-variable] commit 86af758a0b8bf31afa3b18d2a9ab8d88f9ebf7bc Author: André Draszik <andre.draszik@st.com> Date: Tue Mar 27 13:53:19 2012 +0100 convert: fixup for dfb_pixel_from_color() trace prints Some error messages were added in commit 520907c32769e08272d9b776f5524b37e114343c (merged generic driver changes from Broadcom (thanks!)) but this is a more generic approach. commit 427f7c3c872e2eaec6c2b706feab472b3e30c3a5 Author: André Draszik <andre.draszik@st.com> Date: Tue Mar 27 16:05:35 2012 +0100 X11: Add DSOR_1440x540 support. commit dc2bc1b8f00e1043d2d70c79bd47e06b7bd44ded Author: André Draszik <andre.draszik@st.com> Date: Tue Mar 27 15:59:37 2012 +0100 IDirectFBScreen: Add DSOR_1440_540 to DFBScreenOutputResolution. This is from the same standard that defines the 960x540 modes commit 9da7510cb44aad89a930bc0548d3569a36192150 Author: André Draszik <andre.draszik@st.com> Date: Mon Jan 23 21:53:54 2012 +0000 png: whitespace fixes commit 055aa6b821f23b1b0faced5b6bc6d6e14db19ed8 Author: André Draszik <andre.draszik@st.com> Date: Mon Jan 23 21:53:34 2012 +0000 jpeg: whitespace fixes commit 7e2b73738687738f5113334d0577891b6d793572 Author: André Draszik <andre.draszik@st.com> Date: Mon Jan 23 21:53:12 2012 +0000 more whitespace fixes commit 98d683437c959c69cc287a848d506ed75ae53531 Author: André Draszik <andre.draszik@st.com> Date: Mon Jan 23 21:52:49 2012 +0000 configure.in: whitespace fixes commit 461da046ad0973db7b96dcef66e8519779326259 Author: André Draszik <andre.draszik@st.com> Date: Mon Mar 19 17:27:47 2012 +0000 whitespace commit f6cbd8f2fba0b675b8da7b95f4eaf04e76e90e8b Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 24 15:55:59 2012 +0100 Compositing Application Manager: Initial revision, work in progress! commit cfe707678f5bdb1905c94d65a13b261bbe0e38a5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 23 14:58:21 2012 +0100 X11: Some enhancements for stereo display. commit abc3db477c5a84f31e6f74b5801bfe4b13ae3e40 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Mar 20 15:20:10 2012 +0100 core: do not set CSTF_EXTERNAL for the system memory pool commit d2165a3e1f082d8c720f9454eac94d16d52e5256 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Mar 19 02:47:18 2012 +0100 dfbtest_surface_compositor: Add test compositor program. The application creates a primary surface and a configurable number of shared offscreen surfaces, printing their IDs. The user may start applications passing the surface IDs for 'primary-id' option, e.g. "df_andi --dfb:primary-id=3". The compositor simply blits all sources when it receives update events. The compositors can be cascaded as well :) commit d595ae29017f800d02ea445141d194d3eadd61d7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Mar 19 02:37:09 2012 +0100 Core: When surface has DSCAPS_SHARED don"t set ownership. commit 4371c715f42bb89dee6e8bda6434ad64c8dc999d Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Mar 19 02:35:32 2012 +0100 Fusion: Allow wild card at end of executable name when giving access to an object. commit 5108fae8ee1d8bb0d783960d66b082cd3e164075 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Mar 19 00:58:49 2012 +0100 dfbtest_surface_updates: Create surface with event buffer and call Flip() to receive update events. commit 260cf7870ebf205b96a00763267eb26142d84aa1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Mar 19 00:57:46 2012 +0100 IDirectFBSurface: Introduce surface events, adding CreateEventBuffer, AttachEventBuffer, DetachEventBuffer. Add DFBSurfaceEventType with DSEVT_DESTROYED and DSEVT_UPDATE. Add DFBSurfaceEvent with type, surface_id and update region for left and right buffer. Add CoreSurfaceChannel with CSCH_NOTIFICATION (old default) and CSCH_EVENT. Dispatch surface events via new reactor channel. Add dfb_surface_dispatch_event() and dfb_surface_dispatch_update(). Send update events when application calls Flip() or FlipStereo(). commit 62e57998f4a3bcd62ee2554fa9a52db89d40353e Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Mar 19 00:29:15 2012 +0100 Fusion: Limit global reactions to channel 0. commit 000d6d3dc44f3569d2856a08a6a037a8224505c3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 18 13:44:53 2012 +0100 IDirectFB: Add GetSurface(ID) :-) commit 7aebd9d985ea80f31274812eca6fcb2d32613cd8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 18 12:54:40 2012 +0100 Proxy: Final fix for IDirectFBSurface::MakeSubSurface(). commit 7aa4f769ad2968ec527c053e8f473ca44dfc327d Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 16 15:22:39 2012 +0100 One: Add more debug info about apps and queues to /proc. commit 29644ef639dc7ae250c1bf78011e9548cfc632eb Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 15 18:18:03 2012 +0100 Proxy: Fix IDirectFBSurface::MakeSubSurface(). commit a5235980d251702a9fdc21c303a15f2c2de87615 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 15 14:37:04 2012 +0100 Proxy: Implement IDirectFBSurface::MakeSubSurface(). commit 6956e62b669b6eab5b65d0911f5b28f63f3125bd Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 13 14:43:12 2012 +0100 Coma/One: Use OneQueue_SetName(). commit 39b7acfa68565114f7378e5b5f3ca6c0014a3436 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 13 14:42:01 2012 +0100 Core/InputHub: Use OneQueue_SetName(). commit d6d5479b8653feb0713f1b39f919d5af020f6430 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 13 14:41:28 2012 +0100 One: Add OneQueue_SetName() using ONE_ENTRY_SET_INFO ioctl. commit fd30943ac6ce60bfd34369ffc7917e942d4ff2b3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 9 15:42:42 2012 +0100 Updates: Fix scaling of update region that was broken for source geometry not starting at 0,0. commit 9299709e45c8611717c27d36067b28ecd3d8b66e Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 9 13:53:31 2012 +0100 make: Add missing nmfile.make for --enable-trace. commit 65aee994ba7c3e04f3ed382bff2ee5ecdad1f370 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 8 22:25:20 2012 +0100 configure: Add --enable-trace option like for DirectFB. commit d2729a7b57e627a1d258133cfe4ec3194baa09da Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 8 22:21:44 2012 +0100 SaWMan: Follow API change of dfb_layer_create_context(). commit 2c43a98d9d782be8e8442af86c2a4c49494c6148 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 8 20:57:52 2012 +0100 Misc: Fix compiler warnings. commit 5183af7d569de9c8f19cd5cf0a8e89fa367d65ce Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 8 20:54:16 2012 +0100 Core: Clear new layer buffers, unless new run-time option "no-layers-clear" is used. commit d7694fc2df43ed527ef265e2085c7a71d096e2c8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 8 20:53:06 2012 +0100 Core: Remove superfluous apostrophe from FUSION_OBJECT_METHODS macro invocation. commit 7c999d559438e92fbb02824b560fde182f918ad3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 8 20:11:12 2012 +0100 Misc: Break up config usage into parts smaller than 4096 bytes. commit b89e0c38c798e4e8ed0e781c98c183c1bd05d52b Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 8 20:03:21 2012 +0100 Core: Add dfb_surface_clear_buffers() to allocate/fill all surface buffers. commit 39c92858abfd54b79193c67a589c17d89630e99a Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 8 20:01:27 2012 +0100 Graphics: Add dfb_gfx_clear() to fill buffer with fully transparent black. commit 79b7ab97d98454af2c12744673db58cb4405e04b Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 8 19:30:38 2012 +0100 Core: Enhance error passing of surface locking functions. commit 398acbce6067156ea4ce5884ec00b5561fe690de Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 8 19:29:42 2012 +0100 Core: Remove superfluous apostrophe at end of DEFINE_INTERFACE statement. commit 1371f12e038b8e50fde5e233fee1eac12d355a46 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 8 19:28:39 2012 +0100 Core: Make use of D_UNUSED_P(param). commit b79f9593d676ea392b689572c5780502f5f42c06 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 8 19:24:43 2012 +0100 PNG: Fix compiler warnings. commit aaebf60b86acc666e4c680e39d0f72676b8298d5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 8 19:22:41 2012 +0100 JPEG: Fix compiler warnings. commit 0323889dc4c2165c018d0d3959343f61909a0a62 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 8 19:17:49 2012 +0100 direct: Choose D_UNUSED_P for unused parameters. commit 79ca8b3dad33126e84872a4eb9a1913539d48f2c Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 8 19:13:15 2012 +0100 direct: Add D_UNUSED(param) macro for cancelling compiler warnings. commit 08abb1a32dc705564d32911b69ca590689dc5176 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 8 19:10:18 2012 +0100 DFIFF: Fix compiler warnings. commit 845e65562d0c62ffddf75db58e9974eb6dfccc8c Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 8 00:38:03 2012 +0100 IDirectFBDisplayLayer: Fix crashes since window stack is not present in exclusive mode. commit 86a3e20ebcaeade385d0be583ff9e15bc441a8e2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 7 16:02:39 2012 +0100 IDirectFB: Do not mask out DSCAPS_FLIPPING when creating a windowed primary surface. commit 26b31a6aaec8cbdc6440b9ede14ace851ffe0306 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 7 09:47:29 2012 +0100 IDirectFB: Allow DSCAPS_TRIPLE for windowed primary surface, thanks to Rob McConnell! commit 520907c32769e08272d9b776f5524b37e114343c Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Mar 6 13:44:57 2012 +0100 merged generic driver changes from Broadcom (thanks!) - optimize Cop_to_Aop_32 (loop unrolling) - use preincrement/predecrement instead of postdecrement (might improve performance on some compilers/architectures) - dont issue a "unknown format" warning when calling dfb_pixel_from_color with indexed formats commit 65efa6affbdc1a90246e89f045c3d6774f55e767 Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Mar 5 14:45:11 2012 +0100 merge various patches from Broadcom (thanks!) idirectfbgl: add IDirectFBGL::TextureSurface() to the interface definition input: implement quitpipe also for the hotplug thread jpeg provider: improve probe to recognize more valid jpeg formats png provider: more debugging, support libpng 1.5 libdirect: never return an uninitialized value in direct_recursive_mutex_init() surface pool: improve debugging idirectfbsurface: in IDirectfFBSurface_Flip() pass return value of CoreSurface_Flip() tools: make libpng 1.5 compatible various files: use __VA_ARGS__ for macros commit 668b2ff6f114f78fa975483a1125b954e78ec1b8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 7 14:39:17 2012 +0100 android: add gitignore file commit 52da8cbb52096046d4484e43b562dc709de7bca7 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Mar 6 16:54:53 2012 +0100 handle empty strings in direct_dbg_strdup(), fixes crashes when loading fonts from memory/stream based data provider commit 4c96ebb312af82dedb68180ccc583ef25b0c9a46 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 3 16:24:55 2012 +0100 Core: Fix munmap issue with modified lock.addr by keeping a copy in .handle (shared secure pool). commit c05ab99567a15ca9b18eb32c0ddcd6f1c90bf1a2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 3 14:50:13 2012 +0100 Core: Don't create a window stack with private layer contexts, no CreateWindow support. commit 721e7491b74a78c482d78d9e524a890c8bdabbf6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 3 14:43:06 2012 +0100 Fusion: When using "trace-ref" option print throw/catch as well. commit eb7bc187907d228f869adad1b058366dcf6775d1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 29 18:01:07 2012 +0100 IDirectFBWindow: Destroy the window explicitly on Release when interface is from CreateWindow. commit db666478bd9523e0b39ebb6edd664004ff782318 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 29 17:59:32 2012 +0100 Core: Don't set owner of layer surfaces until privileges are sorted out better. commit 02c4595f264c299831a3b38f4048bb4dea505328 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 10 10:05:14 2012 +0100 Core: Deallocate buffers right away when deallocating a layer surface. commit ee63f99c5fa90d6df15af73eae7c36c1fa749581 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 10 00:18:24 2012 +0100 GeneFX: More fixes for AYUV rendering, FillRect etc commit 76d14d3730bbe82c5b63aed92983621dc60a91c5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 10 00:01:33 2012 +0100 GeneFX: Disable MMX RGB<->YCbCr conversion routines as they seem broken. commit cca135c4351aa8ce11269259471b27dccf922b1b Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 9 22:32:58 2012 +0100 Core: Fix surface allocation decouple issue, thanks to Rob McConnell! "This patch fixes the surface allocation decoupling when 'dfbtest_prealloc' is run as a slave and exits. The wrong surface allocation object was being referenced in the call to 'dfb_surface_allocation_unlink()' in function 'dfb_surface_allocation_decouple()'. In effect, it was trying to unlink the same surface allocation object twice and the assertion occurred in the call to 'dfb_surface_allocation_locks()'." commit df2b622780ad3e141ab2a26944d14369a803cb5c Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 9 22:15:15 2012 +0100 Core: Fix assertion that could happen when slave has no access to destination surface. If CoreGraphicsState::SetDestination() or others have failed, the rendering functions called afterwards were running into an assertion. commit 395814d81dcf7e7b69b79f911846393c3d888198 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 9 22:14:36 2012 +0100 X11: Fix OOM case in x11Lock() that left the mutex locked. commit 3a66a85d4bf9cabed19868b76378663e5b9b61d0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 9 22:13:25 2012 +0100 GeneFX: Use RGB accumulators only, adding YUV values does not work. commit 88d706ae5969a9747b57cd1191ba6882f88a7ad0 Merge: bb78295 a0b3f9b Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 8 21:39:21 2012 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit bb78295986ec1234fb898735974baae8b704d730 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 8 21:37:29 2012 +0100 Core: Fix error path of surface allocation creation further, thanks to Rob McConnell! "Please find attached a patch against the 1.6-pre code you have that fixes an assertion failing when the surface allocation object is successfully created, but the actual AllocateBuffer() function fails. In this case, the surface allocation object destructor is called, but because the allocation size is not set the "CORE_SURFACE_ALLOCATION_ASSERT()" macro bails out. I've added a new state flag to indicate that the allocation is being initialised. This ties the actual allocation and AllocateBuffer() functions together." commit a0b3f9b122901c37afff4ecac0fbe2df2009fd0c Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 5 17:40:53 2012 +0100 pvr2d: don't advertise CCF_CLIPPING commit df55c2dfc27c796612f2cfa5d97641ff367816e6 Merge: 10b1e0d 098a041 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 5 14:45:47 2012 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 10b1e0dfae19c140ab3d6117f378b1c71b70f28b Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 5 14:44:32 2012 +0100 pvr2d: Improvements including FillRectangle, StretchBlit, more destination formats, blend functions The driver creates its own context and is system module independent now. Enable driver with CarE1 system module as well. commit 098a041b267dfda34b7938a66cd2afa07560d118 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 2 16:05:56 2012 +0100 IDirectFBDisplayLayer: Convert two more dfb_layer_activate_context to CoreLayer_ActivateContext, thanks to Rob McConnell for spotting! commit 16b5cf6efebc0e6ade109460b646f31e3dcda7a6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 2 12:07:59 2012 +0100 Core: Fix error path of surface allocation. When the pool returns an error during AllocateBuffer, set the CSALF_DEALLOCATED flag so the (newly added) destructor knows it should not call the pool's DeallocateBuffer function. commit 5ae4bd9d99d24119aec7a628d764a0c78b830d5e Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jan 28 01:17:16 2012 +0100 IDirectFBSurface: Fix FlipStereo() in secure fusion mode. commit 7dd4544c266d9ae09955bf1d6845ecdf4595f73d Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jan 28 00:45:54 2012 +0100 IDirectFBSurface: Allow other process access to a surface and add "primary-id" option for CreateSurface(PRIMARY).. When an application is started with "primary-id" option the primary surface returned via CreateSurface() with DSCAPS_PRIMARY is looked up by the ID instead of created. This way an application can launch other applications running in a surface created by the launcher, e.g. to be composited. Compositor and launcher could also be separate processes. Add IDirectFBSurface::AllowAccess() to allow other process identified by an executable name access to the surface in secure fusion mode. Add CoreDFB::AllowSurface() using fusion_object_add_access(). Add CoreDFB::GetSurface() to lookup a surface and check for access using fusion_get_fusionee_path() and fusion_object_has_access(). commit eeb18d78bccc542cf80e1baa07b30604ff85e9dd Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jan 28 00:29:55 2012 +0100 Fusion: Add access list to FusionObject with fusion_object_add/has_access() functions. commit 9fd6bd952b8e1349d4cc8ff8b476a863dcad34e1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 27 11:56:01 2012 +0100 Core: Deallocate window surface buffers right away when a window is destroyed. commit 38f0acb1f345896f2922f702d38baafa7f49feb6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 27 11:57:24 2012 +0100 Fusion: Add run time option "trace-ref" to print messages including stack dump when a certain ref is up/downed. commit 63300b92899da07a4140b59ddbb17c6324a48f5c Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 26 23:19:48 2012 +0100 SaWMan: Fix dual source blit arguments for intersections of windows. commit d4be0eba03fdfdf8817ae219c88c5c2669346399 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 26 23:15:52 2012 +0100 SaWMan: Revert to old behaviour for SaWManProcess ref counting. To fix a life cycle issue with SaWManWindow pointing to SaWManProcess we increased the ref count of SaWManProcess per SaWManWindow. So the SaWManProcess was only cleaned up when all the windows from that process were destroyed. The patch avoids this new behaviour and fixes the life cycle issue by not having a pointer to SaWManProcess, but keeping a copy of relevant values. commit bb333012dc8db26e42648e21b03480e1652cee57 Merge: 0c12614 bb85288 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 24 20:07:08 2012 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit bb85288cbdb42b6bf65a2fb6a3355a4f27279db1 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Jan 19 16:13:37 2012 +0100 mesa: small fixes - set DLBM_FRONTONLY as default - set row length for texture upload - remove wrong assertion commit c225ca1b1f4998b840415e94f8fca740ba618159 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Jan 19 13:14:36 2012 +0100 android: change requirement to android-10 (2.3.3), fix shader compilation on non-mesa commit 1256b2e30e24231fc7d04b3395f8c05d6e17fefa Author: Jon Pomrenke <jon.pomrenke@cobbtuning.com> Date: Tue Jan 17 20:36:54 2012 +0200 vt_flush_thread flushing first key press The first key press after DirectFB initialization is always discarded. The behavior is new in 1.4-0 and I believe comes from the following changeset: commit e0be70ec8aedde56f23d216530746a93e7746ff6 Author: Ville Syrjala <syrjala@sci.fi> Date: Tue May 12 04:16:57 2009 +0300 vt/keyboard: Flush console input when not used To keep the kernel happy the console buffer must be kept from filling up. If the buffer is sufficiently full the kernel stop sleeping and instead wakes up every tick to do something. This problem occurs when the keyboard driver is not used and the linuxinput driver does not grab the devices. Add a new thread whose job is to keep flushing the buffer when the keyboard driver is not there to consume the data. I have traced the issue to vt.c::vt_flush_thread() calling select(). keyboard.c::driver_open_device() sets dfb_vt->flush to false but vt_flush_thread() will not exit until the first key press. As vt_flush_thread() exits, it makes one final call to tcflush() and discards the unread input. Here is a brief excerpt of my console output, demonstrating that the first input is a key release, rather than a key press. (*) Direct/Thread: Started 'VT Flusher' (831) [DEFAULT OTHER/OTHER 0/0] <2093056>... (*) Direct/Thread: Started 'Keyboard Input' (832) [INPUT OTHER/OTHER 0/0] <2093056>... (*) DirectFB/Input: Keyboard 0.9 (directfb.org) waiting for event got key_id= 63043key released waiting for event got key_id= 63043key pressed waiting for event got key_id= 63043key released commit 0c12614215821215226a2a88b072d28f2dc4842b Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 17 16:49:23 2012 +0100 android: add tag for logging commit 814fe290a47269d550a75264800115bda5d04800 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Jan 17 12:07:29 2012 +0100 android: added default wm, added gles2 gfxdriver, fixed egl context creation We have something on screen now! Not very usable though since important code is commented out... commit f1a02975f311ee18e2ad7df46e2534b783881517 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Jan 17 10:24:09 2012 +0100 android: update README, add internet permission (for voodoo), updated icon, enable debug commit 666ef7eb03e5e161c6d07cfa9c3e929457ad3e29 Merge: 6d7bf7a 77d177e Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 16 17:38:50 2012 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 6d7bf7a1fb5152a8ce08e5df5fd53ce3433546b0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 16 17:38:08 2012 +0100 Android: Add very preliminary README [...] This is at the very first stage, the apk will include dfbtest_fillrect, nothing on screen so far, to be continued coming days... commit 77d177e2e512d97c9ecd746db3a32c998666301d Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Jan 16 17:36:22 2012 +0100 android: enable logging commit a5662ad0dc463a1da662a4dc6c9e4ab88adb6fb3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 16 17:33:25 2012 +0100 Android: Add system module for running DirectFB as a native activity, first running version, nothing on screen yet. commit 14a542f4f18ae5c3893e5fda2703fb74653f28f4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 16 17:32:12 2012 +0100 Core: Add CORE_ANDROID :) commit 16293b377fc15aa70d984c201184e2e3a6dd0b07 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 16 17:30:31 2012 +0100 android: minSdk = 9 commit c1c0377ff9c5e10ae2d4ec46e1d81badd8e17057 Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Jan 16 17:08:37 2012 +0100 android: build fixes commit bb8696899cefe78711f05a4aba0b8025070ec5c0 Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Jan 16 16:34:16 2012 +0100 android: add generate.sh commit 6634833ad7f5e97a9602b10804ff47880bfd9112 Merge: 70213d5 2d1e529 Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Jan 16 16:30:46 2012 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 70213d562b399eb3348e53824d72ff11ee8550b3 Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Jan 16 16:30:16 2012 +0100 added some necessary files for testing commit 2d1e529e61276c5121353b34ea99c00f888b38c5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 16 16:02:21 2012 +0100 android: add directfb_build.h commit 74356d18d8841900da788ed0a67c8b8242e3f304 Merge: 0b39900 28c8c28 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 16 15:52:57 2012 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 28c8c28e52eb03987eaeb43526d3ed094431d70b Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Jan 16 15:49:18 2012 +0100 initial build system for android ( just experimenting for now ) commit 6ec4b27e901ab64e1a5686d6a2fff13e0d59dd0e Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Jan 16 15:47:04 2012 +0100 check for aleady defined __func__ commit 0b39900e8d0d7208ff19436038b3693cc8a5e48d Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 16 13:53:31 2012 +0100 Graphics: Add some debug to dfb_gfxcard_batchblit2() software path, still unimplemented. commit b304cef6e8591b2490dafd17b71773b8ec7addb3 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Jan 12 17:23:28 2012 +0100 fix compilation issues from the last revert, make update-region-mode an option in sawmanrc, default is 2 which enables update_region_2() commit 226590875d2a79dfb7ff69a1c54f0ef46d1b4c7b Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Jan 12 16:34:07 2012 +0100 Revert "cleanup: remove update_region() and update_region2()" This reverts commit 87b5650b7c0ab35a62468232213d8f033744d96e. commit 04dd5cdc874ed65760b95c9d69a540d10b164f71 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 11 12:12:33 2012 +0100 queue: init link magic with 0 to avoid assumption failure due to non-clearing malloc commit 9c756f037d409b90cea932a1637e82d56f4853bb Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Jan 11 12:04:58 2012 +0100 restrict windows to optimize in update_region3() There is a conceptual mistake in this function, which does not allow more than two windows to be optimized. Take this into account. commit 04fe5b6113df3d014cf0331eba24c820b097f153 Merge: 5d32f17 2401e15 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 10 16:41:56 2012 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 5d32f17cc182903c1ce5d46971d59ea358bbbfd1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 10 16:38:50 2012 +0100 linux-one: fix kernel version detection for makefile commit 2401e15590f6bde5f42fb79be705e16dbf36164b Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Jan 10 10:17:42 2012 +0100 fixes for preallocated surfaces in secure-fusion mode - Only call register_prealloc() for preallocated surfaces - Before call ing unregister_prealloc() call CoreDFB_WaitIdle() to avoid problems when a surface is still used by a pending asynchronous operation commit 639520aa878bfb0d0a0e611a9fa0513dd8dcf2fb Merge: 1e4b5a1 c176f1a Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 5 21:48:19 2012 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 1e4b5a165f58c389fdcd9c6346675070df1f6e88 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 5 21:47:45 2012 +0100 dfbdump: Add loop mode "-l" to be used as secure master for example. commit c176f1aa4d7485009839bc1594b156d7143f40a8 Merge: b15bf1c 5a4d9c8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 4 14:20:00 2012 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit b15bf1c93093f1c06be40466bed55ddb9335d1bb Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 4 14:19:13 2012 +0100 DirectFB: Thanks to Haithem Rahmani for updating our copyright banner! Happy New Year! commit 5a4d9c89246c7f999d60532f388800421a5792e5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 23 16:41:06 2011 +0100 CoreSurfaceAllocation: Fix decoupling of allocations, lead to crashes with more than one in a buffer. The allocation was not removed from the buffer's allocs list in all cases. commit c98b557373eab6449b889fa10b7ad9dcbd4f839c Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 23 16:40:41 2011 +0100 IDirectFBSurface: Check ret_id parameter in GetID(). commit 9d0a6a0ad26a40553d10bc943cf73db9ae895fde Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 23 16:40:05 2011 +0100 CoreSurface_real: Add some more debug to PreLockBuffer2(). commit 541fa8c53bb2a742d5003ed8eea070159e064ee1 Merge: 267e8f7 628b1d6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 23 08:29:55 2011 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 267e8f741f1314564648de55451a895ae0d7b089 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 23 08:29:34 2011 +0100 IDirectFBSurface: Add GetID() to retrieve the object id of the CoreSurface. commit 628b1d6ec190562a5f63c2cd83b73531d7e03802 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 23 02:48:20 2011 +0100 Core: Destroy font manager only if already created, fixes crash in signal handler during initialization. commit 0863304a9a79c811266e1f2a7c6f611bbef68e29 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 23 01:29:56 2011 +0100 Graphics: Merge accel1 changes with run time option to enable it. CoreGraphicsState surface setters also have the "queue" flag now. Add CoreGraphicsState::Flush() being called from IDirectFBSurface implementations before flipping. Export global CoreGraphicsDevice instance "card" (FIXME: namespace). commit 369068a7541dab2fab109d9cb887db949e3fe168 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 23 01:13:15 2011 +0100 Graphics: Add CSF_DESTINATION_LOCKED and SMF_NONE. commit b73708e5f7965a02ee9b0616959955ba1baf18a8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 23 01:05:45 2011 +0100 Graphics: Fix for C++ in inline clipping function. commit 4195dc8b7eeac3b4845be474854220a7f140f579 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 23 01:02:27 2011 +0100 Fusion: Add fusion_dispatch_cleanup_add/remove() for registering callbacks run when dispatch loop enters next read() or destructor calls. commit d90936b1286ea0256fab3be6b6002c6d3e1fbea9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 23 01:01:24 2011 +0100 Fusion: Remove debug statement in object pool code left over from migration to hash table. commit 53b3244e96d5d54b0a2827483cb66694a0601fa9 Merge: 2550b85 ed04a19 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Dec 18 00:59:15 2011 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 2550b8584951ea620c7227c1b089978dc5885726 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Dec 18 00:58:13 2011 +0100 API: Fix comment of Porter/Duff rules (move into header), thanks to Ezequiel Garcia! commit ed04a19cdd6cea77f17a43c4cb6069b9ea4312f1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Dec 11 20:19:03 2011 +0100 FreeType2: Implement outline fonts with variable width and opacity. commit 63b996a855688827d31c6d7badb7d2c2ecac3143 Merge: 9a964ca 3e87d1e Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Dec 11 20:18:39 2011 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 9a964ca1284f985c36c71b175ac872627f75ca3a Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Dec 11 20:18:09 2011 +0100 dfbtest_font: Add options for outline font rendering, being able to choose outline width and opacity. commit 3e87d1e06f4d69847f7a653f46aafd709fe7a8bf Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Dec 11 05:15:29 2011 +0100 Core: Add CORE_CARE1 to CoreSystemType enum. commit 022d18b045b71e6120374dca232a596d759c1f33 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Dec 11 04:37:08 2011 +0100 Fusion: secure-fusion is default now! commit 0f6bd4373112bd7424d242ca1a51627b1e4e4b86 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Dec 11 03:21:14 2011 +0100 Fusion: Fix crash in fusion_object_pool_destroy() replacing direct_list_foreach by fusion_hash_foreach. commit 412159b8ef2871c19bc65a562f8f21b3d0c0e5bb Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Dec 11 03:19:40 2011 +0100 Fusion: Add fusion_hash_foreach() working like direct_list_foreach() via FusionHashIterator and inlined fusion_hash_iterator_init() and fusion_hash_iterator_next(). commit 8884f404b99d8e06f32af6baa369d8824c6b6024 Merge: 4d70c9d 32d7cd8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Dec 11 00:20:20 2011 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 4d70c9d1408c9849a153faefbd867331b7976bbe Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Dec 11 00:19:46 2011 +0100 FBDev: Fix surface pool for new surface/buffer less allocation code. commit 64700b074030b9d81679e7a053c2cc66735bd396 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Dec 11 00:19:10 2011 +0100 Core: Fix local surface pool (single app) for new surface/buffer less allocation code. commit 7deb2e5d68fe8a648c61e06419d0cd402d1f1c9f Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 9 15:49:24 2011 +0100 configure: Allow overriding pkg-config by setting DIRECTFB_CFLAGS, DIRECTFB_LIBS and MODULEDIR. commit 336488189dce6154007cc70236518037bb7ae6df Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 9 15:33:28 2011 +0100 configure: Allow overriding pkg-config by setting DIRECTFB_CFLAGS, DIRECTFB_LIBS and MODULEDIR. commit 4fa1eca72f6aadeca098f52eca114210ff049e66 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 9 15:19:12 2011 +0100 Makefile: Change DFB_ to DIRECTFB_ (needed for previous patch). commit baa0fee288e21f3e07a060410949d75961c1ddfe Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 9 14:47:11 2011 +0100 configure: Allow overriding pkg-config by setting DIRECTFB_CFLAGS, DIRECTFB_LIBS and MODULEDIR. commit 32d7cd8ba981055dcea63e3fef9437b7c386f6f8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 9 12:51:02 2011 +0100 ignore commit f55451d1b68544d2cd133b23391cbf45937ca846 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 8 15:50:15 2011 +0100 IDirectFBWindow: Create windows with DWCAPS_NOFOCUS until an event buffer is attached. commit eac409dc1cf5eb1dc9d679680aa79122fb18a9bb Author: André Draszik <andre.draszik@st.com> Date: Mon Dec 5 17:04:08 2011 +0000 libdirect: Fix type cast in ARM's atomic code. This is similar to commit b0db6ef94e506a74817ad34e61abf398127f111b (libdirect: Fix type cast in MIPS' atomic code.) commit ea89653e3a57b61ecfc39e9319bbe81b9ecadab5 Author: André Draszik <andre.draszik@st.com> Date: Mon Dec 5 17:03:17 2011 +0000 atomic: Fix usage of keyword 'new' in ARM specific code. This is similar to commit 13089ccf8bd4ec9465859653e386435fe8dbe9f5 (atomic: Fix usage of keyword 'new' in MIPS specific code.) commit e6550e22e65e64e76ec377580525d18a0284ebbf Author: André Draszik <andre.draszik@st.com> Date: Mon Dec 5 17:02:34 2011 +0000 build: fix out of tree builds (again) commit 4971e817fa05f6b0ec42f7485bf8a443d77e4669 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 2 05:38:08 2011 +0100 Fusion: Replace linked list by hash table for objects, finally, *sigh* Improves fusion_object_get() performance a lot, that was having a big impact for secure fusion because of all the object lookups, e.g. when the source for a blitting operation is set! commit 7ad9697cb28bfcace029c167f1375572b6d151bd Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 22 18:29:37 2011 +0100 1.6.0-pre1 commit 43312e5ff55f17a292e0a52e0d442aa82a8a818a Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 22 18:28:38 2011 +0100 1.6.0-pre1 commit 274ff406f6eb7e7d603e35e3d11d6f5e620c3565 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 22 18:27:57 2011 +0100 1.6.0-pre1 commit 5759090f3fba9dafefc721befcb50e6db77057dd Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 19 20:21:04 2011 +0100 Core: Surface allocation object, avoid system calls when rendering! Make CoreSurfaceAllocation a FusionObject. Change ISurface::PreLockBuffer() to return a CoreSurfaceAllocation instead of index. Add ISurface::PreLockBuffer2() which does not take a buffer object handle, but a buffer role. This avoids overhead and makes locking the surface skirmish in slaves obsolete. The output of the method is a CoreSurfaceAllocation object. This new method is used by dfb_surface_lock_buffer(), dfb_surface_read_buffer() and dfb_surface_write_buffer() that no longer lock the surface skirmish, just an IPC call and the call into the surface pool for the resulting allocation. Replace dfb_surface_buffer_locks() by dfb_surface_allocation_locks(). Add dfb_surface_allocation_decouple() for deallocating and setting surface and buffer pointers to NULL. Use fusion_skirmish_init2() to make surface skirmish a plain mutex in case of secure fusion, resulting in greater performance. Begin with some stereo cleanups, adding dfb_surface_get_buffer2() that also takes a DFBSurfaceStereoEye. In the end the eye selection via dfb_surface_set_stereo_eye() will be gone. That state should be local to IDirectFBSurface, CoreGraphicsState etc. Sacrifice CSALF_ONEFORALL for clean and robust implementation. Non-secure (using real skirmish with system calls): Benchmarking 10x10 on 852x464 RGB32 (32bit)... Anti-aliased Text 1.000 secs ( 2811.600 KChars/sec) [ 99.0%] Anti-aliased Text (blend) 1.005 secs ( 437.014 KChars/sec) [100.0%] Fill Rectangle 1.000 secs ( 69.560 MPixel/sec) [ 99.0%] Fill Rectangle (blend) 1.000 secs ( 45.230 MPixel/sec) [100.0%] Fill Rectangles [10] 1.000 secs ( 319.100 MPixel/sec) [ 99.0%] Fill Rectangles [10] (blend) 1.000 secs ( 97.300 MPixel/sec) [ 99.0%] Fill Triangles 1.000 secs ( 33.565 MPixel/sec) [100.0%] Fill Triangles (blend) 1.000 secs ( 25.770 MPixel/sec) [ 99.0%] Draw Rectangle 1.000 secs ( 648.600 KRects/sec) [ 99.0%] Draw Rectangle (blend) 1.000 secs ( 455.300 KRects/sec) [ 99.0%] Draw Lines [10] 1.000 secs ( 5541.000 KLines/sec) [100.0%] Draw Lines [10] (blend) 1.000 secs ( 4359.000 KLines/sec) [ 99.0%] Fill Spans 1.000 secs ( 60.900 MPixel/sec) [100.0%] Fill Spans (blend) 1.000 secs ( 41.000 MPixel/sec) [100.0%] Fill Trapezoids [10] 1.000 secs ( 229.500 MPixel/sec) [ 99.0%] Blit 1.000 secs ( 38.400 MPixel/sec) [ 99.0%] Blit 180 1.000 secs ( 38.810 MPixel/sec) [ 99.0%] Blit colorkeyed 1.000 secs ( 38.050 MPixel/sec) [ 99.0%] Blit destination colorkeyed 1.000 secs ( 38.740 MPixel/sec) [ 99.0%] Blit with format conversion 1.000 secs ( 32.650 MPixel/sec) [ 99.0%] Blit with colorizing 1.000 secs ( 30.980 MPixel/sec) [ 99.0%] Blit from 32bit (blend) 1.000 secs ( 35.720 MPixel/sec) [ 99.0%] Blit from 32bit (blend) with colorizing 1.000 secs ( 22.490 MPixel/sec) [ 99.0%] Blit SrcOver (premultiplied source) 1.000 secs ( 35.940 MPixel/sec) [ 99.0%] Blit SrcOver (premultiply source) 1.000 secs ( 35.140 MPixel/sec) [100.0%] Stretch Blit 1.000 secs ( 1470.786 MPixel/sec) [ 98.0%] Stretch Blit colorkeyed 1.000 secs ( 823.420 MPixel/sec) [ 99.0%] Secure (using fake skirmish being a simple mutex): Benchmarking 10x10 on 852x464 RGB32 (32bit)... Anti-aliased Text 1.000 secs ( 3056.400 KChars/sec) [ 99.0%] Anti-aliased Text (blend) 1.000 secs ( 453.600 KChars/sec) [100.0%] Fill Rectangle 1.000 secs ( 102.280 MPixel/sec) [ 99.0%] Fill Rectangle (blend) 1.000 secs ( 57.830 MPixel/sec) [ 99.0%] Fill Rectangles [10] 1.000 secs ( 391.600 MPixel/sec) [ 99.0%] Fill Rectangles [10] (blend) 1.000 secs ( 102.600 MPixel/sec) [100.0%] Fill Triangles 1.000 secs ( 46.500 MPixel/sec) [ 99.0%] Fill Triangles (blend) 1.000 secs ( 32.620 MPixel/sec) [ 99.0%] Draw Rectangle 1.000 secs ( 924.700 KRects/sec) [100.0%] Draw Rectangle (blend) 1.000 secs ( 586.000 KRects/sec) [ 99.0%] Draw Lines [10] 1.000 secs ( 7528.000 KLines/sec) [ 99.0%] Draw Lines [10] (blend) 1.000 secs ( 5342.000 KLines/sec) [ 99.0%] Fill Spans 1.000 secs ( 84.630 MPixel/sec) [100.0%] Fill Spans (blend) 1.000 secs ( 50.380 MPixel/sec) [ 99.0%] Fill Trapezoids [10] 1.000 secs ( 254.700 MPixel/sec) [ 99.0%] Blit 1.000 secs ( 57.480 MPixel/sec) [ 99.0%] Blit 180 1.000 secs ( 58.010 MPixel/sec) [ 98.0%] Blit colorkeyed 1.000 secs ( 56.730 MPixel/sec) [ 99.0%] Blit destination colorkeyed 1.000 secs ( 57.300 MPixel/sec) [ 99.0%] Blit with format conversion 1.000 secs ( 45.810 MPixel/sec) [100.0%] Blit with colorizing 1.000 secs ( 43.410 MPixel/sec) [ 99.0%] Blit from 32bit (blend) 1.000 secs ( 50.970 MPixel/sec) [ 99.0%] Blit from 32bit (blend) with colorizing 1.000 secs ( 27.220 MPixel/sec) [ 99.0%] Blit SrcOver (premultiplied source) 1.000 secs ( 52.560 MPixel/sec) [ 99.0%] Blit SrcOver (premultiply source) 1.000 secs ( 49.300 MPixel/sec) [ 98.0%] Stretch Blit 1.000 secs ( 1482.339 MPixel/sec) [ 99.0%] Stretch Blit colorkeyed 1.000 secs ( 832.783 MPixel/sec) [ 99.0%] Secure slave with accel1 branch: Benchmarking 10x10 on 852x464 RGB32 (32bit)... Anti-aliased Text 1.002 secs ( 3560.479 KChars/sec) [ 22.0%] Anti-aliased Text (blend) 1.014 secs ( 457.988 KChars/sec) [ 3.9%] Fill Rectangle 1.000 secs ( 132.680 MPixel/sec) [ 96.0%] Fill Rectangle (blend) 1.001 secs ( 93.496 MPixel/sec) [ 67.0%] Fill Rectangles [10] 1.001 secs ( 521.178 MPixel/sec) [ 43.0%] Fill Rectangles [10] (blend) 1.005 secs ( 111.044 MPixel/sec) [ 14.0%] Draw Lines [10] 1.000 secs ( 9755.000 KLines/sec) [ 95.0%] Draw Lines [10] (blend) 1.000 secs ( 10185.000 KLines/sec) [ 95.0%] Blit 1.000 secs ( 189.480 MPixel/sec) [ 96.0%] Blit 180 1.000 secs ( 206.160 MPixel/sec) [ 96.0%] Blit colorkeyed 1.000 secs ( 167.730 MPixel/sec) [ 96.0%] Blit destination colorkeyed 1.000 secs ( 185.440 MPixel/sec) [ 97.0%] Blit with format conversion 1.001 secs ( 96.123 MPixel/sec) [ 69.0%] Blit with colorizing 1.000 secs ( 91.340 MPixel/sec) [ 85.0%] Blit from 32bit (blend) 1.000 secs ( 160.560 MPixel/sec) [ 83.0%] Blit from 32bit (blend) with colorizing 1.002 secs ( 43.003 MPixel/sec) [ 39.0%] Blit SrcOver (premultiplied source) 1.000 secs ( 219.320 MPixel/sec) [ 94.0%] Blit SrcOver (premultiply source) 1.000 secs ( 185.800 MPixel/sec) [ 75.0%] commit e4f72312b47787087b8293e3135d1a6f64f95e93 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 19 20:08:45 2011 +0100 dfbtest_resize: Remove alloca() usage. commit f318503c08df4c77d1a769dedd453ceae2ba254b Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 19 20:06:05 2011 +0100 OneTest: Add test program for WakeUp, more tests planned... Link programs against libone if enabled. commit 7e6ca0a6ef632b8f7785fd578f27585ff0b76517 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 19 17:12:56 2011 +0100 Graphics: Add dfb_pixel_to_components() for RGB+YUV decoding. commit 13772389864b41d3064d2dff61c161752f4de060 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 19 17:10:37 2011 +0100 IDirectFBDataBuffer: Fix crash in non-pure Voodoo clients due to new DataBuffer dispatch. commit 28229db7912e7c05ec763dc6865f6cba4b7b0d2d Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 19 13:49:38 2011 +0100 Package: Add flux_comp.make to EXTRA_DIST. commit 667f185801a3431822f4ca7e541b249e71a80567 Merge: 53c944f 3b17530 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 19 13:17:21 2011 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 53c944f626d707d85aa17bde4f7b780066a13481 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 19 13:17:02 2011 +0100 dummy: Include config.h to include in rebuild after configure run. commit 5b972aa450165129b9ac3626120c2d5d710e54b1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 19 13:16:01 2011 +0100 Voodoo: Remove aio.h include not being needed at the moment. commit 5e9189de4c16544ca927260ec322b4e80f76e9e1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 19 13:15:16 2011 +0100 Fusion: Provide dummy definition for FCEF_QUEUE if Fusion kernel version is 8.8.0 and not 8.8.1. commit b020e76d56f1c4ce0eece46b60bf64e3dfaee146 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 19 13:14:51 2011 +0100 flz: Include config.h to include in rebuild after configure run. commit c99cf376c220ba0efec6ccb23da8a627a8969f50 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 19 12:46:45 2011 +0100 Fusion: Increase main shm pool (e.g. for objects) max size from 1 to 16 MB. commit 3b175300219928a821a87dcd5136d82d7cfe9428 Author: Holger Hans Peter Freyther <zecke@selfish.org> Date: Fri Nov 18 22:39:20 2011 +0100 build: Use AM_SILENT_RULES to provide kernel like compilation output This generates output like the one at the end. This mode can be disabled by compiling with make V=1. Output: CC pxa3xx_dump.o CCLD pxa3xx_dump commit 3dc8d2de5c57f010f40a9305d0c9b169a424c13b Author: Holger Hans Peter Freyther <zecke@selfish.org> Date: Fri Nov 18 22:38:17 2011 +0100 fusion: Rework the comment of fusion_skirmish_init2 in single app commit 8075519562974894f37f193601803231746a9543 Author: Holger Hans Peter Freyther <zecke@selfish.org> Date: Fri Nov 18 22:11:05 2011 +0100 fusion: Provide fusion_skirmish_init2 on single app builds Change 08ba2335fd9e6ce9895af02a906f57f7ffbc0d65 introduced calling fusion_skirmish_init2 in src/core/gfxcard.c. Introduce a version for single app that just calls fusion_skirmish_init as everything should be local on a single app system. commit e38a6a1bb26df8d24853f734a5f5d91013ab7cf2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 18 15:11:46 2011 +0100 Core: Add magic value to Core TLS struct. commit 6c354b79192642ee03082d3ccdd748f3dbd608b6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 18 15:05:28 2011 +0100 IDirectFBDisplayLayer: Fix direct core call in SetCooperativeLevel(), instead use CoreLayerContext_SetCooperativeLevel(). commit f247f6880a20452b57758e8a4a32539a9c674671 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 18 15:04:11 2011 +0100 API: Add DFB_NOALLOCATION result used internally. commit 4356699f617d24a5766e7059c03505db11b8714b Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 18 15:02:39 2011 +0100 One: Print pending packet count for each queue, print attached QIDs, more error logging. commit b9642902aa3ea9eecd36403f34e456e4e8bbf486 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 18 14:06:10 2011 +0100 Core: Remove CSTF_EXTERNAL from shared memory pools again. commit f12033a473093fdd7e35f20d6094357891581674 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 17 22:26:02 2011 +0100 X11: Add DSOR_960x540 support. commit 5a25250b3e72d4d5457fceec106a801d4a52f47b Merge: 08ba233 c543519 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 17 22:23:42 2011 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 08ba2335fd9e6ce9895af02a906f57f7ffbc0d65 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 17 22:23:08 2011 +0100 Core: Replace FusionProperty in gfxcard by hybrid skirmish (simple mutex in secure fusion mode). commit a950dbc5e99fe733d3b70937a461a912a934395e Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 17 22:21:42 2011 +0100 Fusion: Add fusion_skirmish_init2() with 'local' argument to create a fake skirmish (simple mutex). This can be used by secure fusion mode when skirmishs are no longer locked by slaves at all, improving performance a lot. commit 295399f99032dc666f62ee5dc8b51381330efa53 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 17 22:19:46 2011 +0100 SecureFusion: Avoid mmap/munmap on each Lock/Unlock in shared surface pool when being the master. This restores rendering speed a lot for software fallbacks. commit c5435192fdd7448eb6c83f7291523c5605545359 Author: André Draszik <andre.draszik@st.com> Date: Mon Nov 7 17:48:22 2011 +0000 gfxcard: force recheck of DFXL_BLIT2 if source2 has been changed commit c4e79c3f876a09814997b9b2d25ad42e35ea835e Author: André Draszik <andre.draszik@st.com> Date: Mon Nov 7 17:45:26 2011 +0000 state: fix state->modified for dfb_state_set_colorkey() commit 3d23ee3e8b1d149b5d03c84faf535052d3752e06 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 16 22:24:10 2011 +0100 IDirectFBScreen: Add DSOR_960_540 to DFBScreenOutputResolution. commit 3cfbf45d14cdf978b97f5e5edb45897da78275b3 Merge: b0309bf 4d50157 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 16 22:13:16 2011 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit b0309bf758f91022d662cc8553a0bde50734e418 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 16 22:11:53 2011 +0100 Ehem, finally, changing 2010 to 2011 in the banner, 1.5 months before 2012 :) commit 4d50157a750e168fa7610fa1a5d296c368fc54d0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 16 20:26:23 2011 +0100 Fusion: Fix single app build by adding FCEF_QUEUE definition. commit cc95a679eb2e02ef014f3bdfe293df3b694e4ebc Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 16 02:25:52 2011 +0100 Core: Applied patch from Timothy Strelchun adding CCF_WRITESYSMEM, thanks! Updated dfb_gfxcard_check_state to check for full system memory support. Added CCF_WRITESYSMEM so that a graphics driver can fully report that it supports reading and writing to system memory based surfaces, and updated the dfb_gfxcard_check_state function to use that data to determine if acceleration is possible when the back buffer policy is system only. commit 7a7a1d1966322a4d464114ad8396f1cd01188ca1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 16 01:20:06 2011 +0100 X11: Fix broken expose event handling, many thanks to Loïc Yhuel! commit 79e5097a6c3348634bfb4408a5f9891c85d3a5bc Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 14 20:01:23 2011 +0100 One: Add TODO item about packet size limit commit b75cc3191f561f116a04f69ffb46825081af57fb Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Nov 13 13:49:45 2011 +0100 Core: Use new "queue" property for rendering and state setting methods. Except surface setters because of out of order execution with references being dropped right after blitting from but before flushing. commit f803ce88c2a1e1c1384020b442c6fcb7c616d15e Merge: 02c3c0d ef05891 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Nov 13 12:33:54 2011 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 02c3c0dd647e870e24cbba01f472a74e66f39adf Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Nov 13 12:32:23 2011 +0100 WM/Default: Implement same flipping scheme as in SaWMan. commit 52b063e27221fa453c86d322dce69e0d8e52e4da Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Nov 13 12:31:46 2011 +0100 Core: Add CSF_SOURCE2_LOCKED to mask for calling dfb_state_update(). commit ef05891c95f82adf40589c338979758a14aed195 Author: Holger Hans Peter Freyther <holger@moiji-mobile.com> Date: Sat Nov 12 10:52:24 2011 +0100 build: Fix make distcheck of master * Put Makefile.static into the EXTRA_DIST, invoke the Makefile via the srcdir as distcheck invokes VPATH build. * Put surface_core.h into the internal include headers, this file got introduced by the recent PREALLOC surface patches. commit cf69d85b303ddab138aa64601d9a938343d83499 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 10 15:28:46 2011 +0100 SaWMan: Fix copy'n'paste error in region array sizes. commit 862aa35fd86e0cd18561eff5d8b2e0004ff8fab7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 10 15:28:00 2011 +0100 SaWMan: Fix wrong process still being associated with a window, fix surface creation arguments. commit f9d77a62b47f0283ef7cf2524f2bc528e4eed40f Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 9 19:28:08 2011 +0100 One: Add notes about extending the QID for global messaging. commit 196c67290d82e28341204bc7b892e9e3f792270f Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 9 19:26:47 2011 +0100 header: Move DFBScreenEncoderPictureFraming above DFBScreenEncoderDescription. commit 7fad458ba0aef6cb0e904a800035496e8c17363b Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 9 19:24:40 2011 +0100 IDirectFBScreen: Add supported HDMI signaling modes (all_framing) to DFBScreenEncoderDescription. commit eb20f53df5765962801fdef8d4b5421c7890b13e Merge: 3ff4e30 fb607b0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 9 19:10:36 2011 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 3ff4e30b388ec1300489ecc415a09b3f4e8efe8d Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 9 19:10:08 2011 +0100 IDirectFBWindow: Fix LowerToBottom()! commit fb607b074b98e4899789ba1b8929a25fc49d3100 Author: Holger Hans Peter Freyther <holger@moiji-mobile.com> Date: Thu Nov 3 00:27:17 2011 +0100 [misc] Use the BUILT_SOURCES variable of automake for generated files Use BUILT_SOURCES for the files that are generated by fluxcomp and are used by the normal source files. Documentation of BUILT_SOURCES can be found here: http://www.gnu.org/s/hello/manual/automake/Sources.html commit 478280b21a2f951e11570845da061aa5535df0fa Author: Holger Hans Peter Freyther <holger@moiji-mobile.com> Date: Wed Oct 26 16:19:57 2011 +0200 [valgrind] Use D_MAGIC_SET_ONLY when initializing the lock In load_default_cursor a CoreSurfaceBufferLock is placed on the stack and the addr is passed to dfb_surface_lock_buffer, this is calling dfb_surface_buffer_lock_init and is using the D_MAGIC_SET on the lock. The macro will compare the current unitialized magic to the new one. Use D_MAGIC_SET_ONLY to set the magic wihtout looking at the current value, the alternative would be to initialize the CoreSurfaceBufferLock on the stack with the magic set (or provide a macro for that). commit 52dd2302621f72d18d7862b7597626f139ad6f11 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 9 15:13:22 2011 +0100 Core: Get rid of the 16 extra bytes at the end of each surface buffer (dfb_gfxcard_calc_buffer_size). commit 1b66aeb49b8b908bfb27c5e8f0f79e383b9ccdc6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 9 11:32:59 2011 +0100 VoodooPlay: Fallback to UDP discovery when an unknown player does not support TCP discovery. commit 4f767ef0c7b166f8814836211031b15c946c0486 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 8 20:19:12 2011 +0100 Core: In resource manager code don't consult client interface when identity matches ours (master). commit 29e94631b41c6799f0b5527bb35a2d33fafae44b Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 8 17:40:30 2011 +0100 IDirectFBDataBuffer: Don't include media/DataBuffer.h when DIRECTFB_BUILD_PURE_VOODOO is defined. commit 9a7c607664a89458dc0dbeeb41ed819194deaeff Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 8 17:40:05 2011 +0100 Win32: Add generated files. commit 09ec31c442f85ef1b21efe191932e413f9faffca Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 8 13:58:33 2011 +0100 MSVC: new structure with relative paths commit 5880da9a20d5d4bba0aadb1ba6b440a06ee16c01 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 8 13:54:13 2011 +0100 MSVC: new structure with relative paths commit 8490c6684ea72d02fe008ae15f3b3d23aca700c0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 8 13:52:49 2011 +0100 MSVC: new structure with relative paths commit 4c76c51790f1e751a7510217533569f7f8a1745d Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 8 13:51:10 2011 +0100 MSVC: new structure with relative paths commit 6ea59948fdb0716cbb146dcdd67549e420fdf217 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 7 21:29:02 2011 +0100 Win32: Implement VoodooLink::WaitForData(). commit f06cce41d51fe45bb2f6a06f6b2e645cf584c4d2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 7 21:11:16 2011 +0100 Voodoo: Use voodoo_player_create() to get the player singleton rather using globals. commit b17eabf63abdb615e60f8c8a3fc0e2e41450f84c Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 7 21:00:03 2011 +0100 IDirectFBDataBuffer: No DataBuffer_Init_Dispatch when DIRECTFB_BUILD_PURE_VOODOO is defined commit 69baa44c55e13ecac0249aa89c2e4fb890ed432a Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 7 20:59:24 2011 +0100 Core: Use __inline__ commit 24b2704d3dd7023fefcbdcca89440680a10ea7ce Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 7 20:59:01 2011 +0100 VoodooPlay: use direct_snprintf commit 5e4eb23d04633dd2ce46d06edd10077821f9b540 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 7 20:58:44 2011 +0100 VoodooPlayer: MSVC fixes commit fafa29f097d500bac93f37e1b333d45e26b712d9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 7 20:57:40 2011 +0100 init: No Core_TLS__init when DIRECTFB_BUILD_PURE_VOODOO is defined commit 3bd6b79f19993bbe91d997f896e196dc07016191 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 7 20:54:20 2011 +0100 MSVC: update project commit 1121b6acf5c877f3b7a39fd69180913441965166 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 7 20:53:59 2011 +0100 MSVC: update project commit 5e79c21b7a4fe7f879d4d678025c5b59f50dc1ff Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 7 20:49:51 2011 +0100 Voodoo: Readd discovery when hostname is empty, MSVC fixes. commit 1e7badba2d50a4ef65e87c229abc21723542acf8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 7 19:21:00 2011 +0100 swmdump: Add option "-p" to run in performance counter mode. Tier 0 Stacking LOWER MIDDLE UPPER Layer [0] X11 Primary Layer Size 852x480 Standard 852x480 RGB32 Border 852x480 RGB32 Single 852x480 RGB32 (*) Window 0x52300019ec00 <0x523000089800> [5] Dest 0, 0 - 852x 480 Source 0, 0 - 852x 480 Layer Region Dest 0, 0 - 852x 480 Source 0, 0 - 852x 480 State 0x0000000f ---------------------------------------------------[ Windows in Tier 0 ]--------------------------------------------- Reference FID . Refs Window - Bounds Surface - Format Opacity In Fo ID PID St Caps, State, Options... --------------------------------------------------------------------------------------------------------------------- 0x00000058 [ 1] : -1 0, 0 - 852x 480 [ 852x 480 RGB32] 0xff 0 # 5 N/A - DOUBLEBUFFER SCALED (*) Performance [LOWER]: 198 updates (99 /sec), 80 Mpixels (40 /sec) (*) Performance [LOWER]: 206 updates (102 /sec), 84 Mpixels (41 /sec) (*) Performance [LOWER]: 171 updates (85 /sec), 69 Mpixels (34 /sec) (*) Performance [LOWER]: 189 updates (94 /sec), 77 Mpixels (38 /sec) (*) Performance [LOWER]: 179 updates (89 /sec), 73 Mpixels (36 /sec) (*) Performance [LOWER]: 178 updates (88 /sec), 72 Mpixels (35 /sec) (*) Performance [LOWER]: 199 updates (99 /sec), 81 Mpixels (40 /sec) [...] commit a0c68d99818b0f5bd2778419c6b25616bdb3a840 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 7 19:19:45 2011 +0100 ISaWMan: Add simple method GetPerformance() for performance counter query/reset. commit 8298de2e9f1ac9862ee7cc487ddf22a6d26f744b Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 7 19:19:03 2011 +0100 Updates: Call sawman_dispatch_tier_update() in update_single() as well. commit 16d819ee212ca0a20b4744e18b445e0cde51e898 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 7 18:52:49 2011 +0100 Fusion: When MADV_REMOVE is supported use static ftruncate and no longer resize file in brk(). commit 2cab3c435cd431524105e6b17324ec179d9d7ff9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 7 18:22:15 2011 +0100 SecureFusion: Print error and return when secure fusion mode is enabled, this does not work with FusionDale yet. commit 3fc1a5a3d3ce8f621e3f64e49d54b016227ecdd5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 7 15:04:44 2011 +0100 Proxy: Add missing voodoo_client_destroy() in IFusionDale requestor. commit 25caabac913b0c954a5737068f54587c41f53da6 Merge: f726b21 e3b7288 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 7 14:59:27 2011 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/libs/FusionDale commit f726b213438b98d27aaeb4e5c2a1779dc58a05d2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 7 14:45:58 2011 +0100 Proxy: Add Release code to IComa and IComaComponent dispatcher. commit e3b728804335dc6905acb03c351570e753e9192b Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 7 14:45:58 2011 +0100 Proxy: Add Release code to IComa and IComaComponent dispatcher. commit cbc2de62d2e7a2dea30207517c6f57616fe94196 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 7 14:45:04 2011 +0100 Proxy: Follow API change to voodoo_manager_register_local(). commit 451e80da15502569568621d165b4ff19fa934038 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 7 14:37:34 2011 +0100 One: Coma/One implementation This is an alternative implementation of IComa and IComaComponent to communicate via linux-one instead of linux-fusion. You can select the new implementation by using "remote=%" for the first process (creating the so called Name Service for the managers). This will print the new QID of the Name Service, e.g.: (*) ComaOne/NameService: QID 1001 You can run additional processes by using "remote=%1001" in this case. You can also run the name service with a predefined (static) ID, e.g. using "remote=%=1" for the first and "remote=%1" for others. If the Name Service is not started when another process in run, it will wait until the Name Service is there. There's no shared memory being used, only asynchronous One Queues! commit 3c1a173b6f1fa0760a703418855ef7d2c121f006 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 7 12:01:58 2011 +0100 coma_test: Add Coma test program for putting system(s) under IPC load. commit 60b2adc356b74d9322ea878168ee90784885ef41 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 7 11:42:31 2011 +0100 Core: Follow API change of fusion_object_create(). commit 30aba415395a1f8a11f71c43ae8828a1e186f903 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 7 11:46:02 2011 +0100 Coma: Get rid of allocations hash table by putting a struct in front of each. commit 9d562290c351a012ef85095a7d65d616dcab84f9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 7 11:39:44 2011 +0100 Config: Read arguments via /proc interface as done by DirectFB config code. commit 3302e539561725d6591951544b534c0c039a202f Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 7 11:38:37 2011 +0100 ignore commit 7481e86063cbc880355459c80c5cc20c39081e5e Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 7 11:36:08 2011 +0100 ce_tune: Sleep 5 seconds between tune calls. commit 8967459c748d95081852591bef79e54a0dfc9a7d Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 7 11:25:27 2011 +0100 dfbtest_scale_nv21: Add planar YUV scaling test. commit eb69eb3378b57e187e08f292b4cc803740f4ed65 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 5 23:17:45 2011 +0100 Proxy: Add proper Release code. commit df8b44fad85c5577f29a0cc2cec17f161e8b94b3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 5 23:08:58 2011 +0100 VoodooPlay: No longer enumerate players not seen for longer than 10s. In addition all players from last broadcast will be enumerated, no matter how much time has passed since then. commit a729eb7621b2b5106312622b701c8affe90bfe3e Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 5 22:52:38 2011 +0100 IDirectFBWindow: Add SetGeometry() to set src and dst geometry in one call. commit 2151af6406c86ffa5a58af7eca05aa76df400898 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 5 22:48:53 2011 +0100 Core: Add error handler for window object creation, e.g. OOM case. commit 42d3726d34ed0be2c2d2f6c2c57f069b0b37d596 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 5 22:48:23 2011 +0100 Core: Fix assertion in error patch of surface creation. commit d5e318cc7db2bbf372733950ccee058cdade05b5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 5 20:16:52 2011 +0100 Core: When decoupling a buffer being unlocked, deallocate right away. commit 00cddd1914b2020adbbf4717b305d69f4a9f8fc5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 5 17:10:17 2011 +0100 ISaWManManager: Fix mixed up logic for takling the lock or not (secure fusion). commit 4c28806051a7334a51c4d209ce5d474d75fe3a71 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 4 15:46:35 2011 +0100 Core: Add dfb_surface_deallocate_buffers() that deallocates all surface buffers, called by unrealize_region() instead of destroying the buffers now. commit c6197a5470ec5356d8d2e6c65d8e882f3d14dbc7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 4 15:31:23 2011 +0100 Events; Set DWEF_REPEAT when DIEF_REPEAT is present. commit df57487f9e337805a1706256606aebad2da5f700 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 4 15:29:10 2011 +0100 Options: Add "discard-repeat-events" to filter out DIEF_REPEAT/DWEF_REPEAT events in event buffer. commit 84d52dcce582709b5ec3dd2d92429ad2323d2c54 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 4 15:20:54 2011 +0100 Voodoo: In PACKET mode check uncompressed size of packets against VOODOO_PACKET_MAX and disconnect when failing. commit 863c981de455ce0bc6265fa262a9b1ba6d80bd86 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 4 15:17:46 2011 +0100 Options: Add "window-cursor-invisible" to set DWCF_INVISIBLE (cursor invisible) for newly created windows. commit c07f5119f6e8c616cb3e66db01a7770a8439b4a0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 4 15:14:10 2011 +0100 Cursor: Defer cursor shape change to sawman_process_updates(). commit 7da522399a19ac0813bf8a36f191e0f5983803e8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 4 14:59:57 2011 +0100 dfbtest_window_cursor: Add test for cursor flags and per window cursor shape. commit bbab4683807150a6228d3ef4728dc1cefef0e759 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 4 14:53:44 2011 +0100 SaWMan: Implement per-window cursor shape and apply flags upon focus switch. commit dceeb515f19a2c7320d980820aa2f51ad83108e2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 4 14:38:03 2011 +0100 WindowsWatcher: Add IDirectFBWindowsWatcher support, use common DFBWindowConfigFlags for SaWManWindowConfigFlags. With DFBWindowConfigFlags enum values being used for SaWManWindowConfigFlags we can cast SaWManWindowConfigFlags easily to CoreWindowConfigFlags. commit 960bc2cf25794d660f790aec30c61e981de7b784 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 4 13:58:48 2011 +0100 LinoType: Return DFB_BUFFEREMPTY when FS_get_glyphmap() fails to have the core retry loading next time. commit e13d1d8bdf8b934b10cf4705699635c1b647a85a Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 4 13:58:06 2011 +0100 Fonts: If the font module returns DFB_BUFFEREMPTY we will retry loading next time. commit d3860d2822c32f77adc4aba7e2edbd74d9c022d4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 4 13:57:25 2011 +0100 VoodooPlay: Fix copy'n'paste build error :-/ commit fa37a6b7a960b4285c84e6740b26d2d7cec28a00 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 4 13:38:16 2011 +0100 dfbinfo: Print vendor and product ID of input devices. commit 8a2fc7d04b894703af651540cf337568029adfab Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 4 13:23:08 2011 +0100 VoodooPlay: Avoid broadcast discovery when client connects to an unknown player. Add Voodoo messages for DISCOVER and SENDINFO as a temporary solution on the old 2323 port. Connections to different ports assume packet mode anyhow, now. When connecting to 2323 without being able to lookup the player by its address in the information collected by VoodooPlayer already, connect using RAW mode as usual, but use the DISCOVER message and receive the SENDINFO from other player. When this information reveals PACKET capability, reconnect with that mode. With this commit the VoodooLink is no longer passed to the manager, but only the VoodooConnection object being constructed beforehand now. The manager will call connection->Start(this) at the end of its constructor. Add WaitForData( timeout_ms ) to VoodooLink interface to prevent endless blocking on the SENDINFO reply from old servers not supporting it. Rename VPIF_LINK to VPIF_PACKET. Change VOODOO_LINK_PORT (8676) to VOODOO_PLAY_PORT (8680). This is unused at the moment, but should become the new standard Voodoo port. commit e97455b357760c0bbc20fbf9bcf1c38b3911ef8c Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 3 18:38:44 2011 +0100 SaWMan: Fix mixup of dual source blit arguments. commit 2bb861d6c363c89543b5d2c6c947ca4beb32bae0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 3 15:38:06 2011 +0100 VoodooPlay: Add application listing and launching interface for app servers. This adds a new interface IVoodooPlayer that is provided by an application server featuring methods for listing applications and running instances, or to launch an application, stop an instance or wait for an instance. The applications can be shown (played) on a different machine than they are running on (app server). The target player is identified, as well as the applications, by its UUID. voodooplay_server is a test server providing Penguins and Windows. voodooplay_client is a simple interface to the application servers: = Voodoo Play Test Client = This utility uses Voodoo Play to discover all players and queries them for IVoodooPlayer to list and launch applications as well as stop or wait for running instances. Usage: /opt/dfb/bin/voodooplay_client [options] Options: -n <name> Set local player name (of this process) -l <app UUID> <player UUID> Launch application (from app server) on target player (remote display) -s <instance UUID> Stop instance -w <instance UUID> Wait for instance to terminate zwido [~/DFB/DirectFB/tools] /opt/dfb/bin/voodooplay_client -n 'Test App Client' -l 3db0b3468f582ba7b7cd9518f1e02619 0903eff0506070000000000000000000 (*) Running player 'Test App Client' with UUID 68c1eaf3667db2a52394f6da3b8cd790! (*) Direct/Thread: Started 'Voodoo/Player' (-1) [DEFAULT OTHER/OTHER 0/0] <8388608>... (*) Voodoo/Player: lo (127.0.0.1) (P-t-P) (*) Voodoo/Player: wlan0 (192.168.21.255) (*) Voodoo/Player: Sending DISCOVER to 127.0.0.1 (*) Voodoo/Player: Sending DISCOVER to 192.168.21.255 (*) Voodoo/Player: Received message from ourself (127.0.0.1) (*) Voodoo/Player: Received message from ourself (192.168.21.73) (*) Voodoo/Player: Received SENDINFO from 'Test App Server' (192.168.21.73 ) =284c7dcdf6d16432c5f79f64e2214cc0= (vendor: , model: ) (*) Voodoo/Player: Received SENDINFO from 'PhilipsTV' (192.168.20.219 ) =903effffffc480930000000000000000= (vendor: Philips, model: 2k11h2) (*) Voodoo/Player: Received SENDINFO from 'PhilipsTV' (192.168.21.0 ) =8ed5fffe198c116d0000000000000000= (vendor: Philips, model: 2k11h2) (*) Voodoo/Player: Received SENDINFO from 'PhilipsTV' (192.168.21.121 ) =2c58aec32c331d22a8968dabf5f47f60= (vendor: Philips, model: 2k9) (*) Voodoo/Player: Received SENDINFO from 'PhilipsTV' (192.168.20.142 ) =903effffffc472120000000000000000= (vendor: Philips, model: 2k11h2) (*) Voodoo/Player: Received SENDINFO from 'PhilipsTV' (192.168.21.172 ) =8ed5fffe1b8be9cf0000000000000000= (vendor: Philips, model: 2k11h2) (*) Voodoo/Player: Received SENDINFO from 'PhilipsTV' (192.168.21.20 ) =30393033454646464544384133314100= (vendor: Philips, model: 2k10) (*) Voodoo/Player: Received SENDINFO from 'PhilipsTV' (192.168.20.185 ) =903efffeb94727530000000000000000= (vendor: Philips, model: 2k11h2) (*) Voodoo/Player: Received SENDINFO from 'PhilipsTV' (192.168.20.190 ) =903effffffc7b6130000000000000000= (vendor: Philips, model: 2k11h2) (*) Voodoo/Player: Received SENDINFO from 'PhilipsTV' (192.168.21.170 ) =903effffffc47d520000000000000000= (vendor: Philips, model: 2k11h2) (*) Voodoo/Player: Received SENDINFO from 'PhilipsTV' (192.168.20.75 ) =8ed5fffe1bd81df20000000000000000= (vendor: Philips, model: 2k11h2) (*) Voodoo/Play: <1001ms> [ Test App Server ] { 284c7dcdf6d16432c5f79f64e2214cc0 } 192.168.21.73 (*) Direct/Interface: Using 'Requestor' implementation of 'IVoodooPlayer'. (*) Voodoo/Link: Looking up host '192.168.21.73'... (*) Voodoo/Link: Connecting to '192.168.21.73:2323'... (*) Voodoo/Link: Connected. (*) Voodoo/Link: Sent link code (packet). (*) Direct/Thread: Started 'Voodoo Dispatch' (-1) [MESSAGING OTHER/OTHER 0/0] <8388608>... (*) Voodoo/Manager: Connection mode is PACKET (*) VoodooConnection/Link: Allocated 34 kB input buffer at 0xff63f8 (*) Direct/Thread: Started 'Voodoo IO' (-1) [DEFAULT OTHER/OTHER 0/0] <8388608>... (*) Voodoo/Manager: Created remote super interface 'IVoodooPlayer'. (*) [ 0] { 3db0b3468f582ba7b7cd9518f1e02619 } Penguins (*) -> launching on 0903eff0506070000000000000000000! (*) => instance UUID is 9a979a29efc5d0a69265be8346e49d73! (*) [ 1] { 2da3e723744b553942f49e2416eae453 } Windows (*) [ 0] { instance 9a979a29efc5d0a69265be8346e49d73 } { app 3db0b3468f582ba7b7cd9518f1e02619 } { player 0903eff0506070000000000000000000 } Penguins (*) Voodoo/Client: Decreasing ref count of connection... (*) Voodoo/Link: Closing connection. commit 7b1ebb3e0a13fdf778c22f04d8b74e8d4e2b421c Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 3 13:20:35 2011 +0100 Core: Fix warning. commit 6f965582b1cd3007cf496c0bb062db6884dc5548 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 3 13:18:54 2011 +0100 Core: Fix missing Dispatch init for hotplug devices, thanks to Steven (Sheng-Chi) Chang! commit fa232020915fafcc2caca434340c78afe5f23ccf Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 3 11:52:13 2011 +0100 Voodoo: Properly parse the "player-uuid" option as a hex string with 32 digits. commit 4015edddde42278eb993fa54d51b074849f8de65 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 3 11:34:29 2011 +0100 IDirectFBFont: Add GetDescription() to retrieve the font description with which the font had been created. commit a78a0883a800ed31da4e1d8f450bdf8f438a2d81 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 3 11:19:52 2011 +0100 Proxy: Follow API change for voodoo_manager_register_local() passing super instance. commit 3ce95fbe655d69fe4f4e246b1579253913ffb480 Merge: 9e1510c 77cb656 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 3 11:13:14 2011 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/extras/DiVine commit 9e1510c3a355235fb6b8a75441147e5f0725551f Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 3 11:12:33 2011 +0100 Proxy: Follow API change for voodoo_manager_register_local() using VOODOO_INSTANCE_NONE as super instance. commit 746cafa095dfb68c80fd999a674e21400871e898 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 3 11:10:44 2011 +0100 Options: Add "flip-notify-max-latency=<ms>" to set maximum FlipNotify latency (ms from Flip to Notify, default 200). commit adf0228c8d1009c19807d045cd2e871e4624a821 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 2 21:41:58 2011 +0100 cursor: Move per-window cursor shape setting into core, adding dfb_window_set_cursor_shape(). commit c9b99ce48087a2eeb128b51f3aa1d035850af418 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 2 22:12:01 2011 +0100 version: 1.5.4 commit 29bfce3876951462bdc70e117d1ac3bc6b73036f Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 2 22:11:44 2011 +0100 SaWMan: Shutdown fixes. commit 3f38f143920445cf472158db038e265d007d8525 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 2 22:09:40 2011 +0100 SaWMan: When adding a window properly lookup the process by identity. commit 2d1595df59a8845a25b3929e6288218db41e0988 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 2 22:06:27 2011 +0100 SaWMan: Fixes for single region config. commit ec25552dc569612b9cef661083a02dba88afba15 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 2 21:18:45 2011 +0100 SaWMan: HW Cursor fixes, e.g. source clipping. commit 01e210ee657eb7e55d1902668a0752abcd0986ce Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 2 16:51:11 2011 +0100 SaWMan: Fix for send_button_event() with input only windows. commit 55931a462dfb6fa326944fea85cfdca9474b038e Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 31 18:30:45 2011 +0100 Core: Fix missing return of permission handle in dfb_core_memory_permissions_add(). commit 6d99b37a7f872764c6cae8c282f78db0e0f209b3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Oct 30 15:30:56 2011 +0100 Options: Implement level specification for debug domains, e.g. "debug=9:directfb/core". commit 51ce19cefdd041c69b01c199f858630a7f1537e7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Oct 30 14:24:09 2011 +0100 Core: Fix memory leak in local surface pool (single app core)!!! commit 5094bdbdb6d8536e9b4fc398f81f53b0a2a0583d Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 25 11:25:37 2011 +0200 PreAlloc: Revival of real preallocated memory support also via secure fusion Revive preallocated surface pool and add a new preallocated surface pool bridge for transfer between preallocated (slave) memory and surface allocations in the master process. IDirectFBSurface - Allow DSCAPS_STATIC_ALLOC to be used in combination with DSDESC_PREALLOCATED to request that any further Lock() will always return the original preallocated buffer pointer even if that requires lots of transfers back and forth. Otherwise, the allocation might be moved to shared memory. This especially requires the application to correctly use Lock() with the READ and WRITE flags as appropriate. Core - Add PreAlloc() function to surface pool interface to check the surface description for a supported preallocation, e.g. DSCAPS_VIDEOONLY for a preallocation in an accelerated pool. This is called on the slave side! - Add preallocated_pool_id to the surface configuration that is filled by the slave to indicate in which pool it likes to create a preallocated surface. Also add more fields to the preallocated entries like offset or phys. - Add CoreSlave interface for master to call into slave processes. This contains methods for sending or receiving data, e.g. to or from preallocated memory areas. Access to such areas is checked against permissions, though the master should be a trusted process in the DirectFB session :-) - For preallocated surfaces allocate the buffers during their creation in the preallocated pool already to ensure this already exists as the first allocation. - Tweak dfb_surface_buffer_find_allocation() to implement DSCAPS_STATIC_ALLOC and to avoid locking non-shared preallocated allocations from other processes. It is possible to create a preallocated hardware buffer from a slave and use hardware accceleration with this in the master via secure fusion, if implemented by the surface pool(s) for the hardware accelerator. PreAlloc Pool Bridge - The preallocated surface pool bridge uses CoreSlave::Get/PutData() to transfer line by line data from/to other allocations either using Lock/Unlock or Write/Read on the surface pool. PreAlloc Pool - Add preallocPrealloc() implemention in the preallocated surface pool to fill out the new surface configuration entries for the preallocated buffers before the CreateSurface call goes to master. - In preallocTestConfig() check the core identity against the buffer identity and reject allocation for other processes than the creator of the preallocated surface. This should not happen though. - In preallocAllocateBuffer() remove CSALF_VOLATILE flag from allocation to ensure the allocation will not be removed before the buffer is destroyed. - In preallocLock() check the core identity against the buffer identity and reject locking for other processes than the creator of the preallocated surface. This should not happen though. -- Change ICoreSurface::PreLockBuffer, PreReadBuffer and PreWriteBuffer to take a CoreSurfaceBuffer object rather than the buffer index which is not safe against race conditions. In ICoreSurface::PreLockBuffer, PreReadBuffer and PreWriteBuffer check for the surface buffer being decoupled and return DFB_BUFFEREMPTY. In dfb_surface_read/write/lock_buffer() work around a race condition until the allocations are objects as well by looping as long as DFB_BUFFEREMPTY is returned. -- Core - Add dfb_core_memory_permissions_add/remove/check() for management of areas where the master may read/write within slave memory via CoreSlave interface. - Put secure/insecure mode into shared memory and fail in slave init when the configuration does not match. - In Core_GetIdentity() return local core identity if stack is empty. - In Core_PushIdentity() if argument is 0, push local identity on stack. - Use Core_PushIdentity(0) before locking surfaces for actual execution of software or hardware rendering functions. - Add new initialize/join calls for surface pools to pass context data. - Add dfb_surface_pools_lookup() for lookup by ID. - Implement priorities for surface pool bridges. dfbtest_prealloc - Add dfbtest_prealloc for testing preallocated surfaces with and without the usage of DSCAPS_STATIC_ALLOC. dfbtest_resize - Add Read/Write tests to dfbtest_resize that revealed a few bugs being fixed in this commit. commit dc63df982909eba3db9aa07f45d27c7b86ae495e Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 28 12:13:59 2011 +0200 Genefx: Add planar YUV smooth scaling, only NV12 and NV21 for now. commit 242cf1cac5354fe8b1966f8f3ac0df2a515bd5e4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 28 11:55:16 2011 +0200 IDirectFBWindow: Allow DSCAPS_TRIPLE to be used for windows. commit 04616748d9e2e7e11e0b95cbf9e90ef0577d5a7e Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 27 17:00:49 2011 +0200 Input: Get lcok state and other items from input device, not via events. commit 994b5ea29f00b771c202284236644a50b9c28499 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 27 11:34:22 2011 +0200 One: Start dynamic IDs at 1000 to reserve 1-999 for static IDs. commit 09a2b784e8b8642a1eebacd95db35d42c006c0aa Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 27 11:31:37 2011 +0200 One: Don't print error on timeout. commit 4232750da0a0b912427f051df947d1a3f8a4ff6b Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 26 19:05:56 2011 +0200 IDirectFBInputDevice: Add SetConfiguration() with DFBInputDeviceConfiguration featuring sensitivity setting. Add dfbtest_input for input device related tests, only sensitivity for now. commit 68c1bede9f6a417334e6697ace1be80339ee54c5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 26 11:33:41 2011 +0200 libdirect: Add ETIMEDOUT to errno translation. commit a623416b50e606af0a525e0f6cbc6518b7baccdf Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 25 16:49:26 2011 +0200 Options: Add "font-resource-id" to specify which resource id to use when creating font cache row surfaces. commit b4ff38597bb929067b5175068f98614f71facaf3 Merge: 53048fb 2921930 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 25 16:49:17 2011 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 53048fbed885386b1f12d78e9d6db1cf3b9bd275 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 25 14:57:38 2011 +0200 IDirectFB: Pass around IDirectFB instance for IDirectFBSurface, used in GetGL(). commit 3798ca2021f30dc29896e0876d6eda0194ba1725 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 25 14:54:09 2011 +0200 libdirect: Check for error in DIRECT_ALLOCATE_INTERFACE. commit 2921930eb50bb1fc61ee064a9dca3897a77bfddc Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 25 11:10:15 2011 +0200 Core: When decoupling buffers, take care about left/right buffers as elsewhere. Thanks to Ilyes Gouta! commit 9872957d327e37f48db97f7353288505f7a37817 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 25 11:03:48 2011 +0200 Fusion: Add missing fusion_world_set_leave_callback() for single app, thanks to Haithem Rahmani! commit 026ef43fbc1967e0c40c97c76aff0cf86cad82c4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Oct 23 03:36:35 2011 +0200 CoreGraphicsStateClient: Move mod_hw flags back to modified. Temporary solution, this will be fixed by adding GetAccelerationMask() to CoreGraphicsState flux, not loading the graphics driver at slaves anymore. commit f2f54fc046e65a241ec4e4713096061b04188659 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Oct 23 02:52:14 2011 +0200 CoreGraphicsStateClient: Add debug messages. commit 5404ec3d706d846c3a802d995294168d69285eed Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Oct 23 02:49:51 2011 +0200 IDirectFBSurface: Increase number of preallocated entries in DFBSurfaceDescription to 3. commit 346a7b811a02b057170669a64ac2fd60aca000ac Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 21 22:26:50 2011 +0200 X11: Add dfb_surface_notify_display() calls to primaryFlipRegion() This function should actually be called, when the buffer is displayed, e.g. for queued swap happening on vsync. commit 01a72e06aa386bcea1dcb2325fe3e9e12197dec5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 21 22:23:40 2011 +0200 OneBench: Add Async Throughput benchmark. commit b4d735cdc4c54ca44cebc39fd0ed075cf83538aa Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 21 22:23:12 2011 +0200 Cursor: Only add update to right updates when stereo is enabled. commit 8bc262ecc15c7c641c394982ee359dc4039ad926 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 21 22:05:52 2011 +0200 ISaWManManager: Include <fusion/conf.h> commit 93404e713054fbb2a854698ee5917d02ffa4b806 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 21 21:57:44 2011 +0200 OneBench: Update after One API change. commit b24e30eb5f68ba4cccaeba626ce6f3e7ddd411cd Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 21 21:52:13 2011 +0200 Core: No fusion_object_set_lock() in dfb_surface_create() The lock was for reactor globals only. This prevents a dead lock. commit 44dda7969890e9c2ce7e548c530fec2e67326e1f Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 21 21:51:46 2011 +0200 Core: Return from _dfb_layer_region_surface_listener in CSNF_DISPLAY case. This prevents a dead lock. commit e65f69e8d898d63126146fdd3f6113baecdd87d8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 21 21:47:24 2011 +0200 ignore commit 258cddd226c7afb0d17422aa13449256117be653 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 21 21:45:07 2011 +0200 InputHub: Include <directfb_util.h> commit cafab6b517ae1071bbbb96c2b124bef75d6dce34 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 21 21:44:41 2011 +0200 direct: Add EINVAL to DR_INVARG translation commit 159a97f2e3dacec275388b58b645c8cc00fef9e7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 21 21:43:34 2011 +0200 One: Add optional receive timeout, 0 = no timeout, -1 = return immediately if nothing to receive commit 3acc3c09071ec77161b7308686319ec6af37ab31 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 21 21:36:45 2011 +0200 ImageProvider: Add secure IPC to (hardware) image providers For secure fusion the hardware image providers need to be called in the master process, as all other system and driver calls are. This adds CoreDFB::CreateImageProvider() being passed a call id from the slave for retrieving data buffer contents. The new DataBuffer flux wraps that call, used by a master side IDirectFBDataBuffer implementation. This is passed to the real IDirectFBImageProvider instance. The slave uses the new ImageProvider flux underneath a special IDirectFBImageProvider implementation. commit 2d2ed749105aa8b132eb20cc3cb87b2cf01199e3 Merge: 27b6052 3541945 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 19 11:48:32 2011 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/extras/SaWMan commit 27b60521219bdb29ca7ddbc8afe3e4d841b461a4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 19 11:47:58 2011 +0100 draw: Reset source2 to NULL as well. commit 32208bbec514e0e308a9158fa73cfe288a39348f Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 14 15:45:21 2011 +0200 Call: Increase return size limit to 32MB. commit 354194535279d87db9ba1986cb1d02f2c7df2b50 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 13 15:36:22 2011 +0200 Manager: Still use locking in non-secure mode. commit 874bd7ebbdbdc1a9498f9c193e06e3f5f715c52f Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 12 20:22:05 2011 +0200 Call: Add fusion_call_get_owner() to get the FusionID of the call creator. commit 79c4b97e9f3aeed317900a2286132d6e0d98b10e Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 11 19:38:10 2011 +0200 InputHub: Add event name in debug message. commit eea881a079d8b17a8d94cf675a36305dcf3b2640 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 11 16:45:50 2011 +0200 One: Allow attaching remote queue to local queue, needs refactoring... commit 9ed2fb1fd1687fad62fddb3813aa40f745fee957 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 11 16:45:21 2011 +0200 One: Keep a list of OneApps. commit a1198c237b40f2efbd9993008f8a3b1af0f27822 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 10 21:59:23 2011 +0200 Core: Introduce Input Hub via One (if enabled) The Input Hub provides an asynchronous interface to the input devices available and those being added / removed. This adds a new run time option "input-hub=<qid>" where QID is the One Queue ID of another DirectFB session's Input Hub. It is used by a new input driver that resembles all input devices present at the input hub, forwarding all their input events to the local core. commit b89dfc6c2bbbcd8bb67ad24d7d8fce3ee6f1c2f7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 10 21:55:35 2011 +0200 Trace: Comment out log locking until dead lock with libdl is fixed. The dead lock happens when threads use dladdr and dlopen, in the dladdr thread the log lock is taken first, but in the dlopen thread the log lock might be taken by a constructor called from dlopen. commit a62370bfa9e5a71b97cd48bf143d93e7cf2433fd Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 10 21:54:22 2011 +0200 One: Disable packet append for now commit a1f02b0fe17ee451aea24b9d87ac58a4e830ff92 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 10 21:22:38 2011 +0200 Core: Link against One if enabled. commit 614232bb3b6c54285fb7db86a63bc2cb27bc88c3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 10 20:35:40 2011 +0200 One: Don't clear magic in one_core_cleanup(). commit 023757b4c53a5657558e48bf1e6f37288d389a68 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 10 20:32:10 2011 +0200 One: Add missing one_core_cleanup() to kernel module. commit 836b2e62d533cf3c1e8c4857a3c218da168c88a0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 10 13:44:28 2011 +0200 One: Initial checkin of new IPC module. commit 6f09274b4327877c54d9c3d566026915d13f9fe6 Merge: 909afcd 4a91923 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 8 19:15:41 2011 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 8b91df211cb61f800fda4e6b24fba6d11954e842 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 8 14:33:48 2011 +0200 Cursor: Set new internal layer region config field 'keep_buffers' to true. commit ebc3519d6ffe0bd5ea485d6c36d3de656e1aa987 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 8 14:32:25 2011 +0200 debug: add missing newline commit 909afcd2fa30562e12fc70a12557e336dbd973c5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 8 14:31:19 2011 +0200 Core: Add internal field to layer region config for keeping buffers also when region is unrealized. commit 4a9192368170e7fbc39adfa6de63cd641ecb06cd Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Oct 6 15:06:43 2011 +0200 gfx/generic: handle all combinations of DSBLIT_ROTATE_ and DSBLIT_FLIP_ when clipping and in gBlit() It is now possible to specify all possible 32 combinations of DSBLIT_ROTATE90, DSBLIT_ROTATE180, DSBLIT_ROTATE270, DSBLIT_FLIP_HORIZONTAL and DSBLIT_FLIP_VERTICAL These 32 combinations melt down to 8 unique, this can is done by dfb_simplify_blittingflags() which strips DSBLIT_ROTATE180 and DSBLIT_ROTATE270 and creates a combination of: DSBLIT_FLIP_HORIZONTAL DSBLIT_FLIP_VERTICAL DSBLIT_ROTATE90 This greatly simplyfies code that has to handle all these combinations. For compatibilty reasons the full combination of flags is still passed to hardware drivers. Drivers could call dfb_simplify_blittingflags() themselves. On the long run this should already be done straight after SetBlittingFlags() in the core, so that DSBLIT_ROTATE_270 and DSBLIT_ROTATE_180 vanish completely inside the core and the drivers. This patch also fixes crashes, clipping and blitting errors when specifying some compinations of rotation and flipping flags and implements the remaining two cases of the 8 possible (rotation with horizontal or vertical flipping) in gBlit() and dfb_clip_blit_flipped_rotated() commit 9c49e6808a1faa57033414a52fb416b9817315d9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 6 00:19:28 2011 +0200 SecureFusion: Skirmish Fighting Round 1 This is the first round in getting rid of Skirmish! Remove default permission to prevail/dismiss a skirmish. Add fusion_skirmish_add_permissions(). Add fusion_skirmish_add_permissions(PREVAIL|DISMISS) call to: - create_arena - fusion_enter (arenas lock, reactor globals) - fusion_object_pool_create - fusion_shm_init - dfb_clipboard_core_initialize - dfb_core_arena_initialize - dfb_surface_create Remove unnecessary locking in shm pool attach/detach. Replace locking in dump_windows (dfbdump) by CoreLayer_GetPrimaryContext(). No permission required (only IPC calls left): - input device - layer - layer region object - screen - surface pool - surface pool bridge commit 6022155570ca78d41c7e31362ac7e08cd8ca4a21 Merge: fc0d75d 0b9a21c Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 6 00:17:59 2011 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit f65d4fab72e8264057e6db923cacc8a42d1ff152 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 6 00:14:44 2011 +0200 SecureFusion: Avoid locking Add SaWMan::IsShowingWindow(). Add SaWMan::Activate() that sends initial window/process list and enables calls to the manager. No more operation in ISaWManManager::Lock/Unlock(). commit 0b9a21c2d90632dafa799e42fcc58c6366df02dd Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Oct 4 18:07:50 2011 +0200 gfx/generic: allow DSBLIT_FLIP_HORIZONTAL and DSBLIT_FLIP_VERTICAL simultaniously in gStretchBlit() commit 0ee6771c9a60128f130266ab5fd93455fcac2aab Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Oct 4 17:28:19 2011 +0200 clip: add dfb_ prefix to clip_blit_flipped_rotated() and change parameter order to match the other dfb_clip_ functions commit f8390fdb9eba76fc78d86f2a0b132e43135dae38 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Oct 4 16:33:29 2011 +0200 clip: rename clip_blit_rotated to clip_blit_flipped_rotated() and move from gfxcard.c to clip.c commit ac16ede15f5e65d7169b1ff3232bffffa22ebc8f Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Oct 4 15:05:14 2011 +0200 libfusion/shm: use s64 instad of int to calculate number of free bytes to prevent wraparound when having more than 2GB free In ubuntu 11.10 the following tmpfs filesystems are mounted by default none 5.0M 0 5,0M 0% /run/lock none 3.9G 400K 3,9G 1% /run/shm This led to a wraparound in the 32-bit signed value for the 3.9G tmpfs and /run/lock with its 5M was favoured. commit fc0d75d639312dc26c3d3490362bc649a855f750 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 3 23:50:44 2011 +0200 ignore .orig and .rej commit 9a567064b2b209564c6447052a89965646b10849 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 3 21:27:21 2011 +0200 wm_add_window: Fix case of app man returning an error, thanks to Rodrigues Bertrand. commit b320f16e42dc837084644ee97f9c49a1fbd4d214 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Oct 2 20:01:19 2011 +0200 SecureFusion: Use CoreWindowStack_GetInsets() in IDirectFBWindow::GetPosition/GetSize commit f3730113da274d0c41b41d9366532882478a9fa3 Merge: 59aab6a 8b76961 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Oct 2 22:48:07 2011 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/extras/SaWMan commit 59aab6ad0caf84f672fed203a087c8b5488e7f1e Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Oct 2 20:56:37 2011 +0200 SaWMan: Remove unnecessary lock from sawman_join(). commit 84bf32bc69188ca68e35ea8b5fa62b52e943e696 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Oct 2 20:55:54 2011 +0200 Window: Implement DWOP_STEREO_SIDE_BY_SIDE_HALF commit e5ca21774f68051ce4ea4e4a3ed4a564f38ed995 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Oct 2 19:58:52 2011 +0200 SecureFusion: Move IDirectFBDisplayLayer_GetWindowByResourceID() to CoreLayerContext flux. This avoids locking the skirmish and fixes reference counting! commit d7fa5c430e60b9678c39941bebb1345b76ac652e Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Oct 2 19:56:10 2011 +0200 X11: Remove lately added CSAID_CPU from layer description (temp secure fusion workaround) commit 218b5b5fed5785f8da8ba5191cd1464e1da2e702 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Oct 2 18:37:50 2011 +0200 Fusion: Remove bogus assertion from fusion_call_init and fusion_call_init3. commit 3754d9894ca2a76771e268b4f6fca1d78184d757 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Oct 2 12:05:00 2011 +0200 GLX: Force layer pixmap to 24 bit. commit 01cdb02c08e2bfc5c902096ded22fe405e9331e8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Oct 2 12:02:23 2011 +0200 Core: Add GetInsets() to CoreWindowStack flux. commit 5c4f20d0c5984fecd81f74268a5bfd25c984e626 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Oct 2 11:53:33 2011 +0200 IDirectFBWindow: Add DWOP_STEREO_SIDE_BY_SIDE_HALF to have stereo output without changing buffers. commit debefb4dd8c3d68a4f8c50c469b2066f1ff3e344 Merge: ff1ab45 ef5e139 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 28 23:46:36 2011 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit ff1ab455f4c95a472b370f4210e438288e3eee01 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 28 23:45:58 2011 +0200 Core: Fix crash in dfb_surface_reconfig(). commit ef5e1398fe4037b63d6513e450f107fcfe91047f Author: André Draszik <andre.draszik@st.com> Date: Wed Sep 28 18:36:00 2011 +0100 generic_stretch_blit: fix compilation due to undefined reference to DSPF_ARGBF88871 ../../../../DirectFB/src/gfx/generic/generic_stretch_blit.c: In function 'stretch_hvx': ../../../../DirectFB/src/gfx/generic/generic_stretch_blit.c:444:21: error: 'DSPF_ARGBF88871' undeclared (first use in this function) ../../../../DirectFB/src/gfx/generic/generic_stretch_blit.c:444:21: note: each undeclared identifier is reported only once for each function it appears in commit 12ed6a15927f0036badb0d78d9b3002101b41070 Author: André Draszik <andre.draszik@st.com> Date: Wed Sep 28 18:32:05 2011 +0100 directfb.h: fix DFB_COLOR_IS_YUV quite a few entries were missing in commit 79e3eeccaba478154 (Stereo3D: API extensions for stereoscopic viewing) that added this commit 94ee3db9e40ecd9435080d26ddbb58b9c63f268b Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 28 17:51:52 2011 +0200 ce_tune: Set of test applications for Coma. commit 165087ea88eac5f3692208b8be5c9054171dce14 Author: André Draszik <andre.draszik@st.com> Date: Wed Sep 28 16:45:25 2011 +0100 surface.c: fix dfb_system_surface_data_*() coding style This also aligns the code in destructor and error paths to be identical, and only calls the surface data constructor / destructor if really necessary, i.e. if surface data size != 0. commit c726c366ba64f34052a8f2ffca398c4d10be6c39 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 28 09:48:15 2011 +0200 dfbtest_window_surface: Simple resource/reference counting test. commit 8b76961d114a7436132dfda9af0dcd06a0573a5d Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Sep 26 14:49:12 2011 +0200 testman: fix layer_reconfig (the layer was used as window id) commit 025dcd66ce34b1a6fa91b282ae914c94461ecf1c Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Sep 26 13:27:04 2011 +0200 Shutdown: Reset lock pointer to NULL and check for pointer in unregister_process(). commit 415fdf72bb442d9a15e116db4edd0565fdab4409 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Sep 26 13:19:48 2011 +0200 Fusion: Add option "[no-]defer-destructors" and let non-deferred be the default again. Deferred destructors have shutdown issues currently. commit e0efb3d0215ba96e3c0f25d605c18d84500d53c9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Sep 25 23:12:56 2011 +0200 SingleConfig: Manage region config directly, layer context config still shows standard config. commit 0d36074822f832fb39f2c8a481f9a66e40893ba1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Sep 25 23:07:33 2011 +0200 Options: Add "[no-]static-layer" option, default is dynamic configuration. commit 64668de9049f82112f95454e312a6e7e7cae78c9 Merge: 987c6e4 d9eb48e Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Sep 25 22:43:28 2011 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/extras/SaWMan commit 987c6e49d52a22b62590e348e834080892cbaf7a Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Sep 25 22:43:07 2011 +0200 SaWMan: Implement Start/Stop via SaWMan flux. commit 9e1090054776b5d8a7f0ed0d7dd514ba34ebb00a Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Sep 25 22:39:49 2011 +0200 Core: Export layer surface allocation functions. commit 13328418bbaa8949e89687e9f50ec32f9d31d430 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Sep 25 17:56:03 2011 +0200 Makefile: cleanup double deletion commit 573283f4d7b7279ff347745027c356b10a2f1337 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Sep 25 11:07:19 2011 +0200 tests: Link against GL_LIBS, also build when gl driver is enabled (not only gles2). commit b9157363b10ae3950f90de9700cb4454dbeecc4f Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Sep 25 11:06:48 2011 +0200 dfbtest_old_gl2: Fix error message. commit ad55645ed252750bf1f90068a08c1f59994e1a85 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Sep 24 13:19:37 2011 +0200 Fusion: Require linux-fusion 8.7.x commit 30a2799b73aff913f09c05bd6fe51c16af890f4b Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Sep 24 13:07:49 2011 +0200 Core: Resource management and client identification ICoreResourceManager and ICoreResourceClient - Add new interfaces for resource management, optionally being loaded as modules. - The manager has one method to create a new client instance (called within master, per slave). - The client has a few methods for checking surface creation/reconfig, adding/removing/updating surfaces. Runtime Options - Add "resource-manager" option to load a resource manager implementation, default is none. Core - Add ICore::Register() method for slaves joining to create a resource client instance in the master. - Make ICore_Real::CreateSurface() use the new Core_Resource_CheckSurface() function for asking the resource manager (if any) for creation of the resource. - Add Core_Push/PopIdentity() to store the caller ID of an incoming request in TLS. - Add Core_GetIdentity() to query the current identity, i.e. ID of the Fusionee that made the IPC call. - Add Core_Resource methods wrapping and managing instances of ICoreResourceClient. Flux - Run fluxcomp with argument "-i" to generate calls to Core_Push/PopIdentity(). Fusion - Add fusion_get_fusionee_path() to retrieve the executable file name of a Fusionee (as in /proc/*/exe). This can be used when the resource client is created to apply special limitations, privileges... - Add fusion_world_set_leave_callback() to register a callback for processing the new FMT_LEAVE message when a slave leaves the world. This is used by the master to cleanup the resource client instance. - Add FusionID parameter to fusion_object_create() to give objects an identity, i.e. the identity of the Fusionee calling the master to create an object. ICoreResourceManager_test - Add test implementation for ICoreResourceManager and ICoreResourceClient that keeps track of and prints the amount of surface memory being used per slave process. == Following example shows test with df_window started as slave == cyto [~/DFB/DirectFB] /opt/dfb/bin/dfbmaster --dfb:resource-manager=test ~~~~~~~~~~~~~~~~~~~~~~~~~~| DirectFB 1.6.0-pre1 |~~~~~~~~~~~~~~~~~~~~~~~~~~ (c) 2001-2010 The world wide DirectFB Open Source Community (c) 2000-2004 Convergence (integrated media) GmbH ---------------------------------------------------------------- (*) DirectFB/Core: Multi Application Core. (2011-09-24 11:08) [ DEBUG ][ TRACE ] (*) Direct/Memcpy: Using Generic 64bit memcpy() (*) Fusion/SHM: Using MADV_REMOVE (2.6.38.0 >= 2.6.19.2) (*) Direct/Thread: Started 'Fusion Dispatch' (-1) [MESSAGING OTHER/OTHER 0/0] <8388608>... (*) Direct/Thread: Started 'Fusion Deferred' (-1) [MESSAGING OTHER/OTHER 0/0] <8388608>... (*) GLX/Surfaces: Using visual 0x96 (24bit) and 0x9c (32bit) (*) Direct/Thread: Started 'X11 Input' (-1) [INPUT OTHER/OTHER 0/0] <8388608>... (*) DirectFB/Input: X11 Input 0.1 (directfb.org) (*) DirectFB/Genefx: MMX detected and enabled (*) DirectFB/Graphics: OpenGL Acceleration - Mesa DRI Intel(R) Sandybridge Desktop 0.5 (Denis Oliver Kropp) (*) DirectFB/Core/WM: Default 0.3 (directfb.org) (*) Direct/Interface: Loaded 'test' implementation of 'ICoreResourceManager'. (*) Core/Resource: Using resource manager 'test' (*) X11/Display: Using XShm. { start df_window } (*) ICoreResourceClient/test: Adding ID 2 - '/opt/dfb/bin/df_window' (*) ICoreResourceClient/test: Check surface 40x40 ARGB 6k (ID 2, at 0k) (*) ICoreResourceClient/test: Check surface 40x40 ARGB 6k (ID 2, at 6k) (*) ICoreResourceClient/test: Check surface 852x480 ARGB 1597k (ID 2, at 12k) (*) ICoreResourceClient/test: Check surface 832x26 ARGB 84k (ID 2, at 1610k) (*) ICoreResourceClient/test: Check surface 300x200 ARGB 234k (ID 2, at 1694k) (*) ICoreResourceClient/test: Check surface 512x145 ARGB 290k (ID 2, at 1928k) { quit df_window } (*) ICoreResourceClient/test: Removing ID 2 commit a0e3065cd8668849f2fb4198b7eb6742b9999c19 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Sep 23 17:55:42 2011 +0200 gfxcard: make use of clip_blit_rotated() in dfb_gfxcard_batchblit() This fixes clipped rotated blits and clipped flipped blits commit cd575a84f10d90759e069f5f2e6092251a1b84bd Author: Sven Neumann <s.neumann@raumfeld.com> Date: Fri Sep 23 10:00:02 2011 +0200 libdirect: remove include of <linux/config.h> That header has been removed from the Linux kernel with 2.6.19 and it should not have been needed anyway. commit d9eb48ea0bb35a5e273bc079735871369cd93ba0 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Sep 22 17:55:38 2011 +0200 sawman: shutdown fixes commit acd0e4b2e40661b8fde9df1659248915540a8655 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Sep 22 15:59:14 2011 +0200 remove flux flux now has its own package please checkout git://git.directfb.org/git/directfb/core/flux and make sure to have fluxcomp in your path when building DirectFB from git. You dont need it if you build a distribution tarball. commit 878bfacfa98048e8700eb6904d772ace0dc779bb Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Sep 22 13:30:28 2011 +0200 system/vnc: use ARGB instead of ABGR mode commit e25007f9f6abfe49623580a53f591c60a52171de Author: André Draszik <andre.draszik@st.com> Date: Thu Sep 22 10:24:08 2011 +0100 joystick: wrong number for buttons & axes read When using the DirectFB joystick input module, a wrong number for buttons and axes is read. The interface declares the variables used to get the number of buttons and axes as 'char' not 'int'. commit 8d04e6ee372c1a8bc4be5b4c5ffb24f895cb9539 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 21 14:50:00 2011 +0200 ignore commit 0d402b30020bdcd194dc125276a870820a1b60bf Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 21 14:49:44 2011 +0200 Win32: update project files commit d510797709ce14fdaa76370da364a997405fdd74 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 21 14:48:50 2011 +0200 Win32: Implement thread termination and soft joining. commit 98c5f07e2b517d77f0a899033b30717bbbd9de54 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 21 14:47:59 2011 +0200 Win32: Use GetCurrentThreadId() for direct_gettid() and direct_getpid(). commit da308973fdce832b9e8671eec9f484c82199806b Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 21 14:47:35 2011 +0200 Win32: Add missing fflush(stdout) to logging code. commit be78a2ed03fad93f465a49d9cf89ff94b31f2561 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 21 14:47:03 2011 +0200 types: Add _ZUn(x) macro for variable width %zu. commit 000f7e97cd8dbdce0d2ade9d4138eff2d4ab6887 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 21 14:41:34 2011 +0200 configure: Show list of packages required if check for mesa fails. commit e37f0956f92c0697482648f5de0a3d8c2f0d111f Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 21 14:41:06 2011 +0200 voodoo: hot fix crash of delete this with MSVC commit 5b63c064951cb3693930800d048f66c4a3b2d2a4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 21 14:39:41 2011 +0200 voodoo: Init host with "" if NULL to fix strcmp crash. commit 6fc58f89da5a9177840a30e92eaa2882e505af6c Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 21 14:38:15 2011 +0200 Options: Add "[no-]flip-notify" option, default is off. commit 3dea824e12e30baf4d7f7623355a330a20f3cecb Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 21 14:33:26 2011 +0200 buffer: move unref in case of lock failure below (commented out) code. commit c5b75c63465830e60bbc9844bc048a3f4b40ee2e Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 21 14:08:25 2011 +0200 Dummy: Initialise buffer mode in display layer config. commit 9e5eaaa38a6dc25c479fcf0a1ffafebc016bc132 Merge: 7aaf0e5 8a27c60 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Sep 20 21:05:16 2011 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 7aaf0e5e7f4c8c829101da7de7000a6f9ee22785 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Sep 20 21:04:12 2011 +0200 Genefx: Fix Bop_argb_blend_alphachannel_src_invsrc_Aop_argb for special case alpha = 0. commit 8a27c6035bc5a73092aabc491fcd38add895270b Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Sep 20 19:08:25 2011 +0200 system/vnc: allocate system only surface, instead of using a peallocated one This makes the vnc system at least usable again commit 229308a780b6bf9cd26807b68ffefa76cc4bf55e Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Sep 20 17:20:19 2011 +0200 core: shutdown fixes commit ee340bf0d8a7a5de5e5291e884533494ccc9f277 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Sep 20 16:23:13 2011 +0200 sawman/debian: update for 1.6 commit b4fd983b684bc7a15d05652d9539289f35a7c135 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Sep 20 15:54:39 2011 +0200 debian: include fluxcomp in developer package commit 3a0d74b528941a7910e03352896e85534f408c8e Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Sep 20 13:41:27 2011 +0200 sawman/build: fix out-of-tree builds commit f73b492abf06862f600309dacc5636f191ce4e7c Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Sep 20 13:00:50 2011 +0200 flux: remove workaround for c-mode (dummy data for fusion_call_execute3) Requires new linux-fusion commit 22f799e3f9e432d7cf86b86e348ec3de9a222c1c Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Sep 19 18:55:44 2011 +0200 core: remove Dispatch class, use functions instead (even in C++ mode) This patch also adds _Deinit_Dispatch() calls which were missing before (fixes leaks) commit 234f84b7ea39b4ff39467220bf7fcf8b14034399 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Sep 15 15:16:55 2011 +0200 videoprovider: remove all videoprovider previously merged from DirectFB-extra due to licensing issues and/or circular dependencies commit 1fa6796233c660da14758b2fb4fc312f05b51de6 Merge: 812961e c73a117 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Sep 15 14:27:36 2011 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 812961e9bb3741471ebddc42f96ee85663a6ae7a Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Sep 15 14:24:45 2011 +0200 flux: added option --include-prefix= to fix build of external projects(e.g sawman) commit c73a117332fe9c1fb727f6fe749f8069cd373e1a Merge: 87a252c 9a23f1d Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 14 16:40:22 2011 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 87a252c0b0172b48bfd5b36d68a7ce293ce649d1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 14 16:39:41 2011 +0200 Genefx: Fix top clipping of flat top triangles. commit 9a23f1d0b6ece7e09cb15d055c1e33abadd2344f Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Sep 14 14:58:25 2011 +0200 build: fix out-of-tree builds commit 14716223da7d9fdd74176c41e8aa29ccb0132e78 Merge: 87ff81f f959aa9 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Sep 14 12:31:32 2011 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 87ff81fa9ebfb48863ac575fdd9b2752663effad Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Sep 14 12:22:29 2011 +0200 png: fixes for adam7 deinterlacing in 16->8bit per color component conversion case We now hand off handling of adam7 deinterlacing to libpng except for the case of 16 bit colorkeyed images. In that case use our own minimal adam7 code (just enough to have to correct end result without perfect intermediate results before the final pass) commit f959aa9ee2cfb859c6dde44feff38e52eb8b5994 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Sep 13 23:00:11 2011 +0200 dfbtest_old_gl2: Add gears for IDirectFBGL. commit a2a0b92883543c1067f6e6a58d41772a4a7385ab Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Sep 13 22:04:40 2011 +0200 X11: Add IDirectFBGL implementation using GLX commit 9c70fb065dd9e67f2ef57497e38d2f70bce23fd4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Sep 13 22:02:41 2011 +0200 GLX: Work around crashing glDeleteTextures() by leaking it. To destroy the textures the proper context would need to be made current so the whole architecure should be rethought of especially with secure fusion in mind. commit c1eeda0b4dd18b2db112e4014752789bfe4fbfdb Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Sep 13 22:02:03 2011 +0200 GLX: Choose config with depth buffer. commit 5387244e64b484d1a355d854d0e550e053f5cdc1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Sep 12 20:16:49 2011 +0200 Proxy: Fix build for MSVC. commit e5d6ea4b7e85dbed97b78d6e1ab5429da2e344d6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Sep 12 20:14:51 2011 +0200 dfbtest_fillrect: Fix build for MSVC. commit 19196e0fdd71899fb19b2321ac393f7eab7653bb Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Sep 12 20:13:51 2011 +0200 singleton: Move idirectfb_singleton from idirectfb.c to directfb.c for pure voodoo mode. commit b899b570787dcce13f04dd075064ba8e691767a0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Sep 12 20:11:36 2011 +0200 libdirect: Move config init at first place. commit 47b4b92da11028267ce48a8bf10a00ab02237ea4 Merge: 7c813ee 181788c Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Sep 12 20:11:14 2011 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 7c813eecda4fc8c7161f52d8bd25f71719da7281 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Sep 12 20:10:34 2011 +0200 util: Don't use DFB_BOX_INIT_FROM_REGION in header file, some compilers don't like it. commit 181788cf27a4c93113b93799b475305161efb9a4 Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Sep 12 15:25:57 2011 +0200 png: various fixes for colorkey handling and grayscale images - fix 1,2,4 bpp color key handling - fix 1,2,4 bpp grayscale crashes - fix color protection in 16 bit grayscale colorkeying case commit ea36a29ce9ef5bd4131d6181238060af22aed86f Author: Andreas Shimokawa <andi@directfb.org> Date: Sat Sep 10 00:04:18 2011 +0200 license: relicense image/video providers that were GPL to LGPL (in accordance with the original author) THANK YOU CLAUDIO :-) commit cd247f5ea04310cec6b34608b9863c23993f82db Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Sep 9 14:59:45 2011 +0200 MSVC: updated paths commit f744e7f64cfba07161dc10bb6012c6543f2e8003 Merge: ba94b6c 6ba42ae Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Sep 9 13:34:38 2011 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit ba94b6cb4d3fec4e0765b362a8c3fa9f9b1f6086 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Sep 9 13:34:00 2011 +0200 VoodooConnection: Include <direct/memcpy.h> for dllimport. commit 6ba42ae6a884ba676185933fc5fef2d6f58902c9 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Sep 8 18:37:44 2011 +0200 fluxcomp: added semicolon to fix warning in generated C code commit e93c7ee79b24a4d5a96998f0f0a11e8a6ef7e4f0 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Sep 8 18:21:38 2011 +0200 fluxcomp: added C mode for generation C instead of C++ commit 396713cca63e8cb58fe13f2740aabe3fab9b6669 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 7 13:20:03 2011 +0200 SaWMan: Add ISaWMan::RegisterListeners() and UnregisterListeners(). Listeners are as follows: typedef struct { void (*TierUpdate) ( void *context, DFBSurfaceStereoEye stereo_eye, DFBDisplayLayerID layer_id, const DFBRegion *updates, unsigned int num_updates ); void (*WindowBlit) ( void *context, DFBSurfaceStereoEye stereo_eye, DFBWindowID window_id, u32 resource_id, const DFBRectangle *src, const DFBRectangle *dst ); } SaWManListeners; Add listening to swmdump (-l option): (*) Window/Blit: LEFT [1] (0x0000) 0, 0- 200x 200 -> 100, 100- 200x 200 (*) Tier/Update: LEFT [0] 0, 0- 852x 480 (*) Window/Blit: LEFT [1] (0x0000) 0, 40- 40x 120 -> 100, 140- 40x 120 (*) Window/Blit: LEFT [1] (0x0000) 0, 0- 200x 40 -> 100, 100- 200x 40 (*) Window/Blit: LEFT [1] (0x0000) 160, 40- 40x 120 -> 260, 140- 40x 120 (*) Window/Blit: LEFT [1] (0x0000) 0, 160- 200x 40 -> 100, 260- 200x 40 (*) Window/Blit: LEFT [2] (0x0000) 0, 0- 120x 120 -> 140, 140- 120x 120 (*) Window/Blit: LEFT [1] (0x0000) 0, 0- 200x 200 -> 100, 100- 200x 200 (*) Tier/Update: LEFT [0] 0, 0- 852x 480 commit b0db6ef94e506a74817ad34e61abf398127f111b Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Sep 6 11:34:39 2011 +0200 libdirect: Fix type cast in MIPS' atomic code. commit 5d91114a8d39a6bb95a1668e75d8182b5fd61664 Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Sep 5 18:00:13 2011 +0200 core: add prelock to manage interlocks at master commit 2e5f84910a046a6f6972436628ab7813ab998520 Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Sep 5 16:19:32 2011 +0200 build: set CXX=g++ for fluxcomp, to avoid the cross compiler from being used commit e023be924445ad84bdfa5d87fd97faa3727e790e Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Sep 5 15:35:29 2011 +0200 core: set permissions for FUSION_REF_UP/DOWN for secure-fusion commit 835cfe9eeec0eaffb3c33ecdcd34962028c7c245 Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Sep 5 13:05:31 2011 +0200 build: add more explicit rules for new generated headers commit c4b0287d78604e211ae983d261537026f8091bee Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Sep 5 12:43:21 2011 +0200 SecureFusion: Final major update adding CoreScreen and CoreInputDevice interface Also lots of additions to CoreLayerContext, some in CoreSurface, fixes... commit 042da8eee97c19bb3ffb2d397ae788a353ef752a Merge: f1b3086 761a316 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Sep 5 12:40:10 2011 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit f1b3086cc3bf46a1d4d6cdde4e96c1df0360da38 Merge: f817749 c63fbcd Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Sep 5 12:39:22 2011 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 761a3160b58325bac31905381f0f6fd9e59f26a5 Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Sep 5 12:38:21 2011 +0200 build: fix build of generated core files by specifying explicit rules commit c63fbcd865b443767a3d34e65d94dcae0d6ae048 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Sep 2 13:15:56 2011 +0200 build: add link.h and packet.h to include_HEADERS This will include them in the next distribution. commit f817749ac4aeeedbbae88588e284f99d2437252c Merge: a3f8878 9bf320b Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Sep 2 11:05:22 2011 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 9bf320b531013ba354dc4d6fb7e1d97929553adc Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Aug 31 17:45:14 2011 +0200 build: remove tab after \ commit 61718e6828a1fb29b3af5b6690aec7dc23498e25 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Aug 31 17:44:34 2011 +0200 Revert "build: fix parallel builds" This reverts commit eeb3012efda7729ac4240d62e76f58543719b353. sorry, this all makes no sense commit eeb3012efda7729ac4240d62e76f58543719b353 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Aug 31 17:03:46 2011 +0200 build: fix parallel builds commit 4bb99ec42820f97e73f15188238019d4530f6c43 Author: Phil Edworthy <phil.edworthy@renesas.com> Date: Wed Jul 27 12:42:51 2011 +0100 sh772x: Only use the shjpeg library if available This allows DirectFB to work on the SH7723 device which does not have the JPU hardware & associated shjpeg library. Patch by Michael Szafranek commit 4bcfa149cb4f3015d2100e93c1df3f93efbf108d Author: Phil Edworthy <phil.edworthy@renesas.com> Date: Wed Jul 27 11:52:42 2011 +0100 sh772x: Move dfb_surface_lock/unlock to CoreSurface fns commit 9199803808011b1cf21fe7048d41d208286645a5 Author: Phil Edworthy <phil.edworthy@renesas.com> Date: Wed Jul 27 11:49:17 2011 +0100 sh772x: Fix sh7722_jpeg destructor releasing a buffer it doesn't own commit 67bc1f9dcfa8a3b3ba23be17fb0f9d3b25ce0fe1 Author: Phil Edworthy <phil.edworthy@renesas.com> Date: Tue Jul 26 14:17:36 2011 +0100 sh772x: comsmetic changes only (tabs to spaces) commit 6eedb42b6e8ad426abcb9b68bdefc456ad20515b Author: Phil Edworthy <phil.edworthy@renesas.com> Date: Tue Jul 26 13:50:58 2011 +0100 sh772x: Correct device name in debug messages commit 27713a58a7fb94f06bf57345601158f33427ab36 Author: Phil Edworthy <phil.edworthy@renesas.com> Date: Tue Jul 26 09:18:31 2011 +0100 sh772x: Fix warnings in sh7722_jpeg.c commit 77f3c632bcafb1ac8e30cfaacc614df4d071c48b Author: Phil Edworthy <phil.edworthy@renesas.com> Date: Mon Jul 25 14:54:13 2011 +0100 sh772x: Fix build error, new arg to dfb_surface_create_simple commit 2e42371c4542adaf713c61aadb9d94ca18fcd9bc Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Aug 31 14:06:04 2011 +0200 xine-vdpau: fix build commit 834a3e1703cb7a0292a4997310570143576e79e1 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Aug 31 13:59:17 2011 +0200 debian: update control file commit 171b9ca2f0945af2a07ff4d5689b43918e72a271 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Aug 31 13:58:39 2011 +0200 xine video_out_dfb: compile fix commit 5697029d913634ca2287d99486b7a67d18623da5 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Aug 31 13:37:19 2011 +0200 debian: package more modules commit 7d35773e64219ee35ff7a045d731e5dd76eef3bb Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Aug 31 12:44:22 2011 +0200 videoprovider: integrate video providers and libdvc from DirectFB-extra commit 146b7c6c6343bb247f908b0d13a07c2b0b771fe6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 16 14:58:30 2011 +0100 Xine: Fail in Probe() function of non-vdpau video provider if vdpau system is detected. commit 6bd5f99acc9adb72f38c238d995c3ea2d89f808f Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 16 14:49:29 2011 +0100 VDPAU: Add Xine/VDPAU based video provider without any software copy of pixel data. This module uses Xine's VDPAU output driver, but there's a patch required sitting next to the module source. The patch has minimal impact and does not affect the normal usage of the module at all. With the patch applied and the special initialization data (visual) the VDPAU output driver provides us with the output surfaces rather than queueing them at the presentation queue directly. Each time a VdpOutputSurface is coming from the Xine output driver, we wrap it into a DirectFB Surface by creating a preallocated surface in the VDPAU pool. This surface is then StretchBlit()ed to the desired destination surface/rectangle without any CPU intervention, as StretchBlit() just boils down to calling OutputSurfaceRenderOutputSurface() in the graphics driver. Tested successfully with sample1 and df_window. TODO: - avoid blitting when possible, pushing allocations into target surface, e.g. layer commit 8387c9d6d3380cb785b7753d2f60afbe3f298c55 Author: Ville Syrjala <syrjala@sci.fi> Date: Mon Jun 21 05:01:38 2010 +0300 ffmpeg: PIX_FMT_YUV422 has become PIX_FMT_YUYV422 commit 102e410085a3b667ca33d7fd082b9cf1e7a17dd2 Author: Ville Syrjala <syrjala@sci.fi> Date: Sat Nov 1 18:04:02 2008 +0200 ffmpeg: Follow ffmpeg changes commit 983162be12a2373875d0c4122f0bc6460c240d38 Author: Ville Syrjala <syrjala@sci.fi> Date: Sun Oct 26 06:20:33 2008 +0200 Fix AddRef/Release return types. commit de79d40b3f23f10864274d0520f1035f7df7d872 Author: Ville Syrjala <syrjala@sci.fi> Date: Tue Oct 21 19:29:18 2008 +0300 Follow dfb_surface_lock_buffer() API changes. commit 1224664b882a5a50c9abb083f58e310b1687b613 Author: Ville Syrjala <syrjala@sci.fi> Date: Wed Mar 19 22:27:43 2008 +0200 imlib2/libmpeg3/openquicktime: Port to new surface core. Remove __ from datatypes. commit 630e7bc21facfe07fd65ca3570a4992bddc4439b Author: Claudio Ciccani <klan@directfb.org> Date: Fri Feb 29 16:11:35 2008 +0100 Removed old type __s16. commit 055237dac357146da4721e4673378c838dbfb4e1 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Feb 6 15:44:04 2008 +0100 Fixed snprintf() related vulnerability in FFmpeg video provider. commit bdb83dae0bc99b35a27dd57b02ce1950a658dc70 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Jan 15 08:55:38 2008 +0100 Do not limit audio channels to 2 but to FS_MAX_CHANNELS. commit a8c90f7e47e429a37e17d914a414bf6469186921 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Jan 15 08:40:20 2008 +0100 Swfdec video provider ported to swfdec-0.5. commit 8e48e967a647d783b19904a9d4abc91e10d16aa2 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Jan 3 11:48:00 2008 +0100 Builds with xine-lib 1.2. commit f1b4ffdbe80ded4ac95fcdd6cfbdbded60493f00 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Thu Jan 3 10:55:53 2008 +0100 ignore commit 0e088d4b0cd429cd04ba75a878d690e3572fe1b3 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jan 2 19:17:55 2008 +0100 Build without frame-pointer. commit 6dde3a6d32ed85686b6b81f1087241177b917ede Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jan 2 19:16:35 2008 +0100 Fix compilation of MMX on x86-64. commit 09e2889ee2bf83158b9bf8859bc3364a7cf13a81 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jan 2 19:14:12 2008 +0100 Follow changes in ffmpeg. commit 2bb42814f7e7dd0b7e850df929fa63183332aa23 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Nov 5 14:32:00 2007 +0100 When playback is paused, wait using pthread_cond_wait() instead of usleep() in the audio thread. commit 1aaf1311cb73a5723c42b4823dac5e20caceb927 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Nov 4 12:59:54 2007 +0100 Implemented CreateEventBuffer(). Handle new videoprovider events. Removed useless lockings. commit 278e01bc09c98313695c44eea182f69f3e3cf4cf Author: Claudio Ciccani <klan@directfb.org> Date: Sun Nov 4 12:58:33 2007 +0100 Implemented Create/Attach/DetachEventBuffer() and Enable/DisableEvent(). commit 65f3862089e5ed512d96f5cbb7fb0e40f79dfbe8 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Fri Nov 2 15:23:05 2007 +0100 Implemented Attach/DetachEventBuffer() in Xine video provider, sending different events. Also added locking and cleaned up code slightly. commit 186df06440cd21b3cd406fc289887b8798c8833a Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Sun Oct 14 14:50:31 2007 +0200 Don't use usleep(0) leading to 100% load, but usleep(1). The code should not use sleep but conditions where possible. commit bd411798b6ac493583eb3e4a9020c4e84f84ef20 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Fri Sep 7 14:26:43 2007 +0200 Fixed warnings. commit f1b546ea8aa3f66849bcebec81e4a66214e94d26 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Aug 28 11:36:49 2007 +0200 Ported to the new surface core. commit 182bec1231645c52522b52843cba044b67accee1 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Aug 22 15:11:57 2007 +0200 Fixed incorrect ByteIOContext initialization. commit e753cd7ffafa87920ef938914bad6d76584a24ea Author: Claudio Ciccani <klan@directfb.org> Date: Thu Jun 21 10:32:53 2007 +0200 Reset GAP_TOLERANCE to 15ms. Set GAP_TRESHOLD to 150ms to prevent persistent lose of sync. commit 25ab2275f2deef7120856ce0377a7a3f467f5865 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jun 10 15:12:39 2007 +0200 Do not fail if audio driver could not be opened. Disable audio instead. commit 8208e8ab12ac8b3c1c7d5766d099f051fde70508 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jun 10 14:51:56 2007 +0200 Enable dropping video frames when decoding process takes more than frame duration. If audio timestamp is invalid (i.e. after seeking), avoid increasing it by summing frame duration. Raised GAP_TOLERANCE to 17ms (this should reduce the sensible gap between audio and video that occasionally happens when playing high definition movies [e.g. 640x480]). commit 17975f5fd9f8a0b8476cd42d3ff1623f698031bf Author: Claudio Ciccani <klan@directfb.org> Date: Mon May 14 11:15:48 2007 +0200 Added RGB444 and RGB555. commit b37f711d665ea6de6ec4300da44f1883135ae09f Author: Claudio Ciccani <klan@directfb.org> Date: Mon May 14 11:14:25 2007 +0200 Added RGB555. commit 4a778706fa87aae0102e2a92b879cd88cc305658 Author: Claudio Ciccani <klan@directfb.org> Date: Fri May 4 11:57:18 2007 +0200 Fixed incorrect aspect ratio information (ffmpeg returns pixel aspect, must multiply by width/height to obtain frame aspect). Fixed issue with subsequent instances of ffmpeg not working (as usual, static data is the hell!). commit b7c7e3f6021fd98f977568cbc11ff4877eab85a2 Author: Claudio Ciccani <klan@directfb.org> Date: Fri May 4 11:38:17 2007 +0200 Do not assume 4:3 frame aspect. commit 971d4fa6f36e437c598a20e0ff24fd00f180281b Author: Claudio Ciccani <klan@directfb.org> Date: Tue Apr 24 09:51:56 2007 +0200 When stopping playback, stop the input thread and release the surface too. commit c165a2c831a8c3f9284251bbc23f4735ea2e61e7 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Apr 24 09:50:05 2007 +0200 When stopping playback, stop the input thread too. Set default queue length to 3 seconds. Dropped down .rm support because libavcodec supports only old and really uncummon codecs RV10/RV20. commit 8b38f0e8b22858ffbafe3704a4126d1108292ec5 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Apr 20 10:11:30 2007 +0200 Do not return the video aspect ratio since the information isn't known. commit 1bcfa02191caac6c3540350ba5f376c20e816ef3 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Apr 17 18:37:27 2007 +0200 Follow changes in DVC (scaling support). Signal playback speed change to the video thread only if new speed > previous speed. commit f0c2062541cb4c8325446dfcf4ee89859b495597 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Apr 17 18:34:37 2007 +0200 Added support for image scaling: supports linear interpolation when upscaling but (actually) only nearest when downscaling. commit 0a57e62bf4db86af69954cd2c620b2a30c24e032 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Mar 7 09:59:14 2007 +0000 Removed unimplemented methods. commit c74d1ccc846f48b448607ab4246850ba4bcc3739 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Mar 2 14:49:03 2007 +0000 Re-enabled frame dropping. commit 886c9346bdf482f00bc3dc66960c28d09d544f13 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Feb 21 11:07:46 2007 +0000 Return DVSTATE_BUFFERING during buffering. commit 5f64b341a268a1e3b0c3bc1a0da9098e39d3ceb2 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Feb 20 11:03:22 2007 +0000 Rebuffer during playback when playing a broadcasted stream (this will stop the playback if the buffer is empty). commit e8bc746927ca567de284e04c4b46906c9a029024 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Feb 6 14:19:14 2007 +0000 Align pitch(es) to 8. commit 4298077b190de6d8d4dcd6e13a6a6a7dac66db10 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Feb 6 14:18:14 2007 +0000 Attempt to fix compilation failure with gcc 2.4.6. commit b6e8e1258a941216519881c1224a641ed684c5bf Author: Claudio Ciccani <klan@directfb.org> Date: Sat Feb 3 08:58:00 2007 +0000 Use clock() intead of gettimeofday() to compute elapsed time. commit 9520d10ce51efa638bc689792389a3f2067d209f Author: Claudio Ciccani <klan@directfb.org> Date: Fri Feb 2 18:07:20 2007 +0000 Moved dvc to lib/dvc. Added dvc_test. Require DirectFB version 1.0.0. commit dc65ae209b924296d11c2e3e77b8ad1e42a88c3d Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jan 28 21:52:15 2007 +0000 Fixed typo, thanks to Marco C. commit 83c4ba526996f7660085cb4f54576a3f48a4bd10 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Jan 27 11:49:22 2007 +0000 Support color adjustment. commit f7dc8888b2a32bc0f58bfada5f6bdd9e6c7afff1 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jan 24 18:18:22 2007 +0000 Handle missing codec formats. commit 33f414b3c096b1dcd2c944ec81352fa831652b7e Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jan 24 17:27:54 2007 +0000 Use DVC by default. commit 716ccc7caabbe240f839a4b13eaff744a65567bf Author: Claudio Ciccani <klan@directfb.org> Date: Tue Jan 23 15:20:28 2007 +0000 If the movie contains multiple audio/video streams, select the logical stream with higher bitrate. commit db96f13699ee48121b9f5017fa5b3cb411a5566d Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jan 14 14:50:08 2007 +0000 Enable linking ffmpeg provider againt libswscale (when available). commit 498b3552e95b316204dd36720d10dfed180c2681 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jan 14 11:46:12 2007 +0000 Handle XINE_EVENT_MRL_REFERENCE. commit 3ff8b79d3e4c0d37d84eb2d2675053dc7bd5bcb1 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Jan 13 14:19:48 2007 +0000 Fixed audio packet's length computation. commit 65b12917f8757d74cb749365ab09d8b865ec2303 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jan 10 13:30:41 2007 +0000 Set GAP_TOLERANCE to 15ms (smoother playback). commit a36f0f8b08e125debced518065f34ad3f2538894 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Dec 28 11:22:07 2006 +0000 Compute frame duration before starting displaying frames and update during playback. If framerate is not known, assume 25fps. commit c518478df6da97837b6fa639279f0a2b053adadf Author: Claudio Ciccani <klan@directfb.org> Date: Fri Dec 22 12:00:39 2006 +0000 Switched to LGPL. commit c3fd87a019246a8a0bbd4ff6e6623d7d7c02bbc4 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Dec 13 18:38:53 2006 +0000 Check overlapping video overlays and set the blend functions accordingly (ONE,ONE if overlaps). commit 2a1e4cf689af5c7cbd5ebd9811bd8594ceab9c1e Author: Claudio Ciccani <klan@directfb.org> Date: Mon Nov 20 21:12:26 2006 +0000 Enable prebuffering only for streamed movies. Compute queue length according to packet timestamp. Converted old (dfb)types to new ones. commit 0427e6e75467c463b082ebc1e9667b9bb6f428a3 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Nov 20 15:58:46 2006 +0000 Prebuffer 5 seconds before starting playback. Be aware that YUY2 and UYVY are always little endian in libavcoded. Support YUV410 and YUV411 formats. commit a9907c8f6c6e94025a0df26e3bbec77f19f594b3 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Nov 18 11:30:45 2006 +0000 Follow internal API changes (**Can't check if they build**). commit 882acf76285e35906033df787ecc83f80174670d Author: Claudio Ciccani <klan@directfb.org> Date: Sat Nov 18 11:10:47 2006 +0000 Follow internal API changes. commit c3b1ba7bbf5162af37da9d7190be8482b8b7f7f7 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Nov 3 10:22:29 2006 +0000 Rewritten video_out_dfb: - Use global API instead of internal API - Removed format conversion functions, use DirectFB builtin format conversion functions instead. commit e2aa3ce566685a03bef8a65f8c1be2bf59d870fa Author: Claudio Ciccani <klan@directfb.org> Date: Mon Oct 30 17:16:40 2006 +0000 Start dropping frames when gap exceeds 1 second. commit 0ea0414df5f2d9d7a81f49d89f53087841e3ad62 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Oct 25 17:18:44 2006 +0000 Clamp a/v gap only if it is less than 1 second. commit 33b39b1191c0f792777a7451ea00f1640dddfe3c Author: Claudio Ciccani <klan@directfb.org> Date: Tue Oct 24 17:46:09 2006 +0000 Clamp a/v gap to a constant range in microseconds (GAP_TOLERANCE). commit 67fd8c9b880d358a3125c8f2a0799ce6e35a03e8 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Oct 24 16:20:08 2006 +0000 Improved playback smoothness: this is done by recomputing frame duration after each frame and and clamping the a/v gap to -duration/+duration. commit 5f6d5c983a677b9296b48245800a2eb86c9ffbfa Author: Claudio Ciccani <klan@directfb.org> Date: Tue Oct 3 08:46:38 2006 +0000 Still improvements on a/v sync. commit 34c7dd03dd4806cfc040e909ae68b09d63bf4997 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Oct 2 13:34:00 2006 +0000 Faster probing method. commit d1cb3d465bf517a258289c56ba0a2d04307a29b0 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Oct 2 13:33:18 2006 +0000 Do not set pixel aspect ratio to 4:3 if the information is not available. commit c5fefee40d59743cab860a04ca83d200ce7a42fa Author: Claudio Ciccani <klan@directfb.org> Date: Tue Sep 26 13:05:54 2006 +0000 Cleanup and attempt to improve a/v sync. commit deeea84967d5c99e26ee4e1e1e8074c9133286f3 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Sep 26 10:31:22 2006 +0000 Avoid usage of recursive mutexes. commit da0ab6ec2f71cd9cf16fc16ee76d6ba8171b6f2b Author: Claudio Ciccani <klan@directfb.org> Date: Tue Sep 26 10:30:41 2006 +0000 Do not set audio/video threads to non-cancellable state. Avoid usage of recursive mutexes. commit 7336f220b18c7cc598cca1b58623f0305c1b4a3e Author: Claudio Ciccani <klan@directfb.org> Date: Mon Sep 25 08:14:55 2006 +0000 Make ffmpeg aware about streamed media. commit d877a2be84e5128077d456331e26f96751756144 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Sep 14 16:17:19 2006 +0000 Made swfdec video provider build against swfdec-0.3.6. commit 8fac333d2f3d83b5162c1bf944dbfa2a2a337750 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Aug 8 10:37:23 2006 +0000 Limit speed multiplier to 64. commit 6522ae32f42da3ee64eaae2abf456009b5982d70 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Aug 4 15:03:11 2006 +0000 Do not force FusionSound audio driver, enable autoprobing instead. Use the new param FINE_SPEED for speed control. commit d6fc137ead5c47d20c97cbaf95fe51ec23303588 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jul 30 09:58:59 2006 +0000 Handle audio codec open failure. commit 6beb7895e84ae53ba326bfbf0cb86429c38798f7 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Jul 27 16:19:41 2006 +0000 BUGFIX: do not store the errorcode in the interface data (the latter may be freed before returning the errorcode). commit d822d6864777b32698aad7a166b4e4f39862d669 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Jul 27 13:41:51 2006 +0000 Use DataBuffer in case of piped input (stdin or fifo). commit c2b72019720fc678160dc0a7aa770d91e31dbd7d Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jul 19 12:30:30 2006 +0000 Ignore GIFs. commit 9e682d44523e2bc12260a4fb80f89a26fe6ad371 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jul 19 10:13:35 2006 +0000 Release destination surface on Stop(). commit 4ce78668bc88c002d459b1f1e3d00e88c55c961e Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jul 19 10:13:00 2006 +0000 Dropped down support for GIFs (doesn't work fine and we have a GIF video provider now). Release destination surface on Stop. commit ae97a6df21aa581ee0da7b35afdea4d1580e9c04 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Jul 14 14:13:33 2006 +0000 Check if the stream is seekable before enabling DVPLAY_LOOPING. commit e9c6c7d7f085f459ab5c765f5361248365dfe3f2 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Jul 13 12:57:53 2006 +0000 Set the provider status to DVSTATE_STOP when Stop() gets called, either if playback was not active. commit ccb14523a2274fed15e25c08cea3b2ad871e0d8c Author: Claudio Ciccani <klan@directfb.org> Date: Thu Jul 13 10:55:33 2006 +0000 Added support for playback on rectangles with negative x,y coordinates. commit 18c90693a5874e84b490bb0022bf697a3c2a1fb5 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jul 12 09:37:27 2006 +0000 Avoid usage of alloca(). commit 3824f2ab2076e538c2de11653159e3d0bdd070fa Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jul 9 15:41:31 2006 +0000 Raised maximum playback speed to 8.0. Cleanup. commit 3a2e56e7ead3b230d042dedfaaa283f7efb80862 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Jun 24 12:51:11 2006 +0000 Added GetVolume(). commit 35a75b7224c57ea0249a6afc89427c011a9d7988 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Jun 24 10:18:20 2006 +0000 Added Set(Get)Speed() and SetVolume(). commit 2e17fbf77892627a40e201aefdd819e54d6ab815 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Jun 24 10:17:40 2006 +0000 Added SetVolume(). commit f3c6d384e42f28499d53544f019c9bf9ed186bba Author: Claudio Ciccani <klan@directfb.org> Date: Fri Jun 23 19:57:11 2006 +0000 Removed unused code. commit e6de92abea2f4443f3a28a164925605dfe75265e Author: Claudio Ciccani <klan@directfb.org> Date: Fri Jun 23 19:56:27 2006 +0000 Better pause mode handling (speed multiplier = 0). commit 84d0e9dbf616822e4b9614c6e0ecf667d8d94544 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Jun 23 18:00:28 2006 +0000 Implemented SetPlaybackFlags and Set(Get)Speed. commit 84e8ac39b10f67543c6c5d38339629e1d70f0bd1 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Jun 23 08:30:57 2006 +0000 Fixed crash with latest DirectFB code. commit 95f63eb870f60d5f8a7f9772d679deafccf4ceac Author: Claudio Ciccani <klan@directfb.org> Date: Thu Jun 22 13:00:47 2006 +0000 Try to join rectangles (if possible) when rendering the subpicture. commit cb04cd73b88ee2b02b75e8ba54380b906c784bc1 Author: Claudio Ciccani <klan@directfb.org> Date: Sat May 6 13:10:20 2006 +0000 Improved a/v sync. commit 89e2ff56398da1eeed60975fb39ccf630c4c5f79 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Feb 1 09:37:10 2006 +0000 Set the maximum audio/video queue size according to the bitrate. commit b9cbc2e1d2e3a858a32a1b9391e889e0fe1f2a33 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jan 16 10:00:13 2006 +0000 When seeking in paused mode, fetch audio packets from the queue without writing them into the FusionSoundStream. commit 34ef42721bf241412946e42ab258f5978a7fdc58 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jan 15 19:19:07 2006 +0000 Follow API changes. commit d4c692391a8d8c6c6855e4e015484615ea49bd55 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Jan 14 15:16:55 2006 +0000 Follow API changes. commit f5d103e57fc1ad9f7eefed69447e90ca29fdb844 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Jan 14 09:45:12 2006 +0000 Use a mutex for each queue to avoid locking the input thread. commit 417810719ee0913720090b9544bf78f6664add4c Author: Claudio Ciccani <klan@directfb.org> Date: Fri Jan 13 18:25:38 2006 +0000 Accept aspect ratio value in 16.16 format. commit d1e3378b7267f0175cd873bd999144e04b282b82 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Jan 13 18:24:24 2006 +0000 Avoid usage of asprintf(). commit ec06f3bfa2b689d36ae5a21eb71d13b71d7d240b Author: Claudio Ciccani <klan@directfb.org> Date: Thu Jan 12 16:58:35 2006 +0000 Fixed two minor bugs. commit 41ad4eef11cd33184a1c374ddbd2cfd4ec9b7dcf Author: Claudio Ciccani <klan@directfb.org> Date: Thu Jan 12 14:08:49 2006 +0000 Minor fixes. commit dbd74f318a581a03cf068a15460a2ec4b2679097 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Jan 12 12:11:22 2006 +0000 Improved a bit Audio/Video syncronization: recompute video refresh time using the following equation [frame_delay_in_seconds = 1/rate + video_pts - audio_pts] and reduce audio buffer size to 120ms. By default seek requests are performed on delay (by the Input thread), but there is a flag to control this feature (SEEK_ON_DELAY). commit 47ba5bba540484f54e3059c730f1035fcb27ef01 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Jan 10 18:13:57 2006 +0000 New video provider using FFmpeg (libavcodec+libavformat): - Supports input from DataBuffer, basic features and seek; - Audio/Video syncronization still requires some work. commit 9b1c0bfc0a313ced1b162a40d2f916aeec56e8f2 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Dec 17 08:59:07 2005 +0000 Create an IFusiondSoundStream whose buffersize matches the size of an audio buffer. Use direct_list_foreach_safe() when freeing the audio buffer queue. commit 3322d4007990d8e60d48c432daccc92b1a2a0e3e Author: Claudio Ciccani <klan@directfb.org> Date: Fri Nov 4 09:39:46 2005 +0000 Intersect the destination rectangle with the destination area before writing a video frame. commit 055d63c59a7fe864431ce1b767c7bf484e0fe63c Author: Claudio Ciccani <klan@directfb.org> Date: Wed Nov 2 11:12:53 2005 +0000 Added an additional mutex for the input thread to avoid stopping playback when decoding data. Preload 20% of the stream before starting playback. commit 86e71b5c46e17c416b3f27e821aca3da85982d68 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Oct 30 18:26:54 2005 +0000 Follow internal API change (dfb_state_init()). commit 1e7af5d15925b13642d8a2e298ab89d28dfc8422 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Oct 30 18:24:52 2005 +0000 Separated SwfPlayback thread into two different threads (SwfVideo and SwfAudio). GetPos() no longer returns DFB_EOF because there is no way to detect when the execution of an action script is finished. Added SendEvent(). No longer link directly to FusionSound, use IDirectFB::GetInterface() instead. commit b0d3c9437e56ae2ed07f7fd7e1b4c48060c3bb96 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Oct 30 18:19:39 2005 +0000 IDirectFBVideoProvider::SendEvent(). commit 9c94d5d7d78be322de287a2e526889f8abe73f85 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Oct 25 10:31:30 2005 +0000 Added support for user specified aspect ratio: params greater than XINE_VO_ASPECT_DVB are treated as float ratios. commit a7d47d640e51165b0a9660203f22c7c72d6b7a02 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Oct 24 13:48:45 2005 +0000 Follow API changes. commit 48853d59983ff54f1181dc06133ae65774f601ac Author: Claudio Ciccani <klan@directfb.org> Date: Wed Oct 12 08:50:37 2005 +0000 Notify decoder of End-Of-File. commit 9b88f4c12219ea56d0d26ee30fff82d2f45e4c9d Author: Claudio Ciccani <klan@directfb.org> Date: Wed Oct 12 08:48:16 2005 +0000 Fix build with xine-lib from CVS. commit 7e6894d8cd8edae289bb13331019870a9eadb1d6 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Sep 26 10:42:27 2005 +0000 Follow changes in IDirectFBDataBuffer. commit 516ebf842737420c39d4d97ca6f682870b207880 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Sep 24 14:20:45 2005 +0000 Avoid to load entire swf file into memory during initialization: databuffer could not be full. Use a thread for buffering, instead. commit c0bcf522001a9c2f064f1f312814c746c4be2b5b Author: Claudio Ciccani <klan@directfb.org> Date: Sat Sep 24 14:18:17 2005 +0000 Try to translate media devices path to xine's mrl format (e.g. /dev/dvd => dvd:/, /dev/cdrom => cdda:/, /dev/vcd/ => vcd:/). commit ad2be2e85cc38defde761da10b1debd16a0c8fcb Author: Claudio Ciccani <klan@directfb.org> Date: Fri Sep 23 09:51:29 2005 +0000 Follow video provider interface changes. Actually input from streamed databuffers is only supported by xine and swfdec providers. commit 5a87570c4ea72ef0fdf617c8e950b93ef13ac3a2 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Aug 28 09:47:33 2005 +0000 Removed unused code. Prebuffer 98 rectangles when rendering the OSD using hardware accelerated FillRectangle(). commit 235de656e838889c46c58c84e061cc3e95c20227 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Aug 2 08:28:27 2005 +0000 Cast pointers to long instead of uint32_t. commit afb3d5518f092d49e4c0a0ba072a9c388e58071c Author: Claudio Ciccani <klan@directfb.org> Date: Sat Mar 12 11:43:19 2005 +0000 Some optimizations. commit 09c1200af7978c319100515d668fa0c4864d5f78 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Mar 12 09:54:48 2005 +0000 Added Swfdec based video provider: supports seek and audio playback, but CPU load is too high and action scrips are not supported fine (therefore LibFlash is better). commit 36c8b1347bc1b38d456372b71a4885b374e8756f Author: Claudio Ciccani <klan@directfb.org> Date: Sat Feb 19 12:07:14 2005 +0000 Follow changes in video_out_dfb. commit 0d4dc0b59636336dde6135dca46df8385ca4aa10 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Feb 19 12:06:03 2005 +0000 Changed the output callback to notify video frame pixelformat. commit af81fdf774305391f650fb5b4b58726c830ab685 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Feb 17 20:21:57 2005 +0000 Prefer subpicture surface when returning output size from get_property(). commit e7dec44f9299a71d6c504ec2fca2c26b931fc5f4 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Feb 17 15:05:00 2005 +0000 Fixed palette format selection. commit 636fbe188de441d7d89ae4103bcf7666aee718a5 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Feb 17 14:49:33 2005 +0000 Fixed unscaled overlays rendering. Now the driver can be used to change the aspect ratio. Added more debugging messages. commit 7a875ebc3f8ae69df710b48582b0c75b55479fe8 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Feb 16 15:04:32 2005 +0000 Added support for NV21. Added MMX conversion functions for NV12,NV16,NV21. commit 53a4cfcb84ca69abb9cd201d1280eccee82498b9 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Feb 15 15:04:53 2005 +0000 Follow changes in video_out_dfb. commit 0db2e97ccef5b772555164394b18cfab25f3718e Author: Claudio Ciccani <klan@directfb.org> Date: Tue Feb 15 15:03:53 2005 +0000 Rewrite of the DFB video driver: - Enhanced quality and speed - Added support for the following formats: NV12, NV16, ARGB2554, ARGB4444 - Added a new configuration option (video.dfb.conversion_matrix) to select the matrix for software conversion according to different standards - Added support for hardware OSD: a surface can be specified in the visual for overlays rendering - New buffers policy: share the same buffers with the decoder when possible, thus reducing memory usage and increasing performance by ~30% - Fixed support for big-endian machines commit b5445d71732759aad69ed9ea3d75f051d386d06c Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jan 30 14:14:55 2005 +0000 Field parity was set on the wrong surface. Use the field flag set by the decoder to autodetect interlaced frames. commit ba133ce6a66b851499d404849944377cfb0905a0 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Jan 29 18:01:47 2005 +0000 Allow to control field parity through XINE_VO_PARAM_DEINTERLACE parameter: 1 for top field, 2 for bottom field. commit e132c0f63aa3d4ebf53fbba133c7636579b4fa88 Author: Andreas Hundt <andi@directfb.org> Date: Sat Jan 8 15:19:15 2005 +0000 include <string.h> for memset. required on my powerbook commit af11522f374d350c828bb329e4e123ef18f9544a Author: Claudio Ciccani <klan@directfb.org> Date: Sat Jan 1 18:54:58 2005 +0000 Updated copyright. commit dd961dc9104af8591df4a5fe4532673b8a42ec37 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 21 19:28:00 2004 +0000 Fix distcheck. commit d57fece93efe3e884bdc104ed4516197c3eee26c Author: Claudio Ciccani <klan@directfb.org> Date: Thu Dec 9 17:06:59 2004 +0000 After playback is finished, return stream duration in GetPos() to notify end of playback. commit 4accbca0ff0c2cfa6ff5c682048ea88a884855be Author: Claudio Ciccani <klan@directfb.org> Date: Thu Dec 9 14:02:51 2004 +0000 OpenQuicktime video provider compiles again. commit 2076742eb684533ef3bc67914344b05ee8f7f232 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Dec 9 12:07:25 2004 +0000 Avifile video provider compiles again. commit 4289dfc735b115625f18236a5b4439fa5f9ddbb0 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Dec 9 11:24:11 2004 +0000 Added --enable-mmx configure option. commit d9216a573998840f71ffcc24b22dae9ff51a0bae Author: Claudio Ciccani <klan@directfb.org> Date: Tue Nov 23 17:48:23 2004 +0000 Link video_out_dfb directly to directfb. commit fec06e174cf8f33411e64bdb7b15f7ef10b94957 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Nov 1 16:59:21 2004 +0000 Replace dfb_gfxcard_fillrectangle() with dfb_gfxcard_fillrectangles(). commit 0c69ef78a8b9d14222da0fe3b615c082daf4b95e Author: Claudio Ciccani <klan@directfb.org> Date: Sun Oct 17 10:36:22 2004 +0000 Cosmetics. commit 30473b20e94bb98e6a765e0fa6d46ccce05faa04 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Oct 16 15:41:36 2004 +0000 Replaced tabs with spaces. commit 64e9d1932776706364c43550e6836f6cdfafb122 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Oct 16 15:40:38 2004 +0000 Removed unused macros. Replaced tabs with spaces. commit 8a576bf7c5a72353a17cd8a27bce4096299ea2d9 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Oct 16 15:39:46 2004 +0000 Added specific functions for ARGB. Replaced tabs with spaces. commit 473c1becd59d8e29be91510379802fba1ae4b20b Author: Claudio Ciccani <klan@directfb.org> Date: Thu Sep 16 09:12:53 2004 +0000 Include unistd.h. commit f07a0f01e54e54a3780d01a49c3fb8c10fc932d9 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Sep 10 09:06:37 2004 +0000 Small fix in source rectangle. commit 9ff8874f5e1c76e5b64a48e179889c5c7489b4e3 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Sep 10 08:08:26 2004 +0000 Follow changes in video_out_dfb. commit e1de9dd923f82cc7cdc6f3f7bd140a3f2296dd31 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Sep 10 08:07:01 2004 +0000 Pass original width/height to output callback. Some clean-up. commit 792b7e68a0975182a2c4831ca4318857c87865c9 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Jul 27 21:02:32 2004 +0000 Fixed segfault when calling xine_get_error() with no stream. Replaced xine_config_register_enum with xine_config_register_string. commit 89938c2c79e46e894c4ba08d4852cefc085a2272 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Jul 27 06:45:10 2004 +0000 Fixed incorrect shift. commit df67639c45fd3f2f6eff6582357d00d819d639d2 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jul 18 17:47:31 2004 +0000 Fixed incorrect parameter in output callback. commit 4a6d9f4f0f4b64bc02144a25f01ec67817536855 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jul 18 15:18:49 2004 +0000 Always use full surface area when destination rectangle is NULL. commit 286bfea59194776ff1f4e3bb341896782d96840b Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 14 09:09:13 2004 +0000 Added "const" where appropriate (Interface API). commit 6a9274e3441492beba89ad71922277276480f0ef Author: Claudio Ciccani <klan@directfb.org> Date: Fri Jul 2 16:11:45 2004 +0000 Improved errors handling. commit 575b5003ca800ea9c98cd59dc5255582e2c21917 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Jul 1 10:48:23 2004 +0000 Fixed post plugin handling. commit c5dee99b24638c97e71a5dd47f47eb58e2027b97 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jun 30 12:56:33 2004 +0000 Removed -O2. commit c129552c1d89dc17197b313539a09cafbf46758f Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jun 30 12:53:55 2004 +0000 New version of the Xine video provider: -> implemented support for adjusting saturation; -> improved speed in all functions; -> improved support for OSD; -> fixed some bug in OSD when dest surface is RGB; -> reorganized code. commit 7a76177b5cd4537375c79625935c3701b8b96f79 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 19 02:06:35 2004 +0000 Only recreate the surface if width, height or format changed. commit af9fcb2c22d42f81c0d00670836513cdfcd28b03 Author: Claudio Ciccani <klan@directfb.org> Date: Sat May 8 12:53:51 2004 +0000 Mute audio when seeking in pause mode. commit c7e26c7dad0660d889c21283a601da912ebaefb6 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Apr 30 16:32:56 2004 +0000 Changes in output callback: pass video aspect ratio too. commit 3cd3c08bdc4410542052c0d9fdf93dd4b8fdd05d Author: Claudio Ciccani <klan@directfb.org> Date: Thu Apr 29 16:47:32 2004 +0000 Moved MMX code to video_out_dfb_mmx.h. Support RGB332 output. commit 7da00c4ddf89ff24e399138c61212fd57917d2b8 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Apr 29 16:46:34 2004 +0000 Support RGB332 output. commit bfbe08a1ca42fe3837e37aaf12121f03fb2c6853 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Apr 21 13:48:20 2004 +0000 Added support for blending yuv surfaces. Fixed incorrect clut conversion. commit b25fc97cf0e412cb0440ae78b1da88b1e0a78dbe Author: Claudio Ciccani <klan@directfb.org> Date: Wed Apr 21 13:47:01 2004 +0000 Adde support for blending yuv surfaces. Fixed incorrect clut conversion. commit 1822cd4cc6948001540f71509ee8013830f4ff5f Author: Claudio Ciccani <klan@directfb.org> Date: Fri Apr 16 08:15:52 2004 +0000 Some code cleanup. commit 8e0cfa745a3042bfaf162ce9099c9c7e5c61ea77 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Apr 15 13:33:33 2004 +0000 Added __mmx_yuy2_be_yv12(). For YUY2,I420,YV12 call frame->realize() only when it's really necessary. commit 181cf499defe73019ee40bdf29a54ba8283440cd Author: Andreas Hundt <andi@directfb.org> Date: Wed Apr 14 15:20:45 2004 +0000 only try to compile in mmx code on x86 commit 181edd79217113385f852c5914ac7361155021f1 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Apr 10 08:08:29 2004 +0000 Fixed YV12/I420 video output commit 26d9598e89c1952d1c2173a46057ec04140aac95 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Apr 8 08:17:51 2004 +0000 Compiles with xine-lib 1.0.0-rc3 commit a395a6a4c607b43a848c1d498d8e50851714306a Author: Andreas Hundt <andi@directfb.org> Date: Wed Apr 7 14:48:12 2004 +0000 add .cvsignore commit c9700f5da0cd6236e100d6196294076b934355f9 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Apr 6 13:14:29 2004 +0000 Added experimental support for overlays commit 6b03b8b0252ec6597b587ff8958c86a9a723cfe5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Apr 5 12:28:47 2004 +0000 Follow internal changes in DirectFB. commit ee4862c557bc18d3a697578cf719502e6138f9ac Author: Claudio Ciccani <klan@directfb.org> Date: Sat Apr 3 10:00:44 2004 +0000 Builds again commit d3b43d7b9c590fe78cd32bc002ff40a140a5b0dd Author: Claudio Ciccani <klan@directfb.org> Date: Fri Apr 2 17:26:10 2004 +0000 Fixed segfault with current DirectFB code commit ee441c760fe447e493e9fe333f08275c0a24d93d Author: Claudio Ciccani <klan@directfb.org> Date: Fri Apr 2 08:11:32 2004 +0000 Builds again commit cb54af266facc1309a71f6e5eda959cc1b770e66 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Apr 1 19:09:38 2004 +0000 removed yuv_render_t::i420() method, use yuv_render_t::yv12() for both YV12 and I420 commit 3471406f2e3ac3a70c0312963b2c62d1ce937821 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Apr 1 19:08:23 2004 +0000 bugfix in CardState flags; added __mmx_yv12_be_yv12 commit 3558aaff5f23605cfdc11253e117bb26380e7595 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Mar 31 08:45:22 2004 +0000 updated dfb_driver_t structure commit 2ed9e427b7324f3f4cf825e7575c1c3f73cce552 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Mar 31 08:44:32 2004 +0000 let xine manage frame conversion; added 2 config vars: "video.dfb.max_num_frames" and "video.dfb.gamma_correction" commit 3541118143d63cc29ba74a157af8fe1b4f3b7cf4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 31 00:56:45 2004 +0000 Builds again. commit 026234b8e1f6d6c2d50eab8b7d835121673e900f Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 30 23:50:29 2004 +0000 Can't really test them all. commit b1c97f8870f46b89665a1758cd0e2c183e4ff0b6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 30 19:15:30 2004 +0000 Added missing include. commit a15a6a188ca31f00278ea6a86db9bbdc25c03c65 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 30 18:37:30 2004 +0000 Follow header and namespace changes. commit 0a44d37d8a013e177ec0b321b1ea44762900ee1d Author: Claudio Ciccani <klan@directfb.org> Date: Tue Mar 30 17:14:14 2004 +0000 select audio driver according to "audio.driver" config value commit b4351ad31a8198775478020d9f0344bc4baca9cf Author: Claudio Ciccani <klan@directfb.org> Date: Tue Mar 30 15:26:12 2004 +0000 *** empty log message *** commit 58d24e02436995f92d016a5586cef1f526348bda Author: Claudio Ciccani <klan@directfb.org> Date: Tue Mar 30 15:22:58 2004 +0000 added xine video provider commit 79b37a66fb2ce21b4afdb580d5c7b6f38547ebfe Author: Andreas Hundt <andi@directfb.org> Date: Mon Nov 10 16:45:31 2003 +0000 - make FusionSound support optional, use OSS support as fallback at compile time commit f1a64fab90ef5415dce151ec939709d3730a13f2 Author: Andreas Hundt <andi@directfb.org> Date: Thu Nov 6 23:55:31 2003 +0000 - added FusionSound version of libmpeg3 provider TODO: DirectFB-extra now requires FusionSound - make this optional. commit 48689d656c29b2afdbb0fa822cc2561bd5a633ee Author: Andreas Hundt <andi@directfb.org> Date: Thu Nov 6 20:20:55 2003 +0000 compile fix commit 49dde23405167a7c1664c9d7f451d8b0d71eb616 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 8 17:00:21 2003 +0000 Added missing include. commit 5a05a27febf58fa9af9a0e0615ad4d2b95bce120 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 8 16:50:21 2003 +0000 Follow pixel format conversion cleanup in DirectFB. commit ba351a53cb5249acb22eb20daaad9651d60530b9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Apr 16 15:21:13 2003 +0000 Warnings fixed. commit a8e4f68415bf4ab6795521186d17aba003cfdc6d Author: Sven Neumann <neo@directfb.org> Date: Mon Jan 13 12:50:35 2003 +0000 Added avifile and flash video providers from the main DirectFB package. Requires autoconf >= 2.52. commit 2613e8ca7501c653ef78f5d7b55f3b107d366514 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 27 17:52:09 2002 +0000 Adapted to DSPF_ARGB1555. commit 20324f00acc5fbc4420fcad0489319b36b19b12e Author: Sven Neumann <neo@directfb.org> Date: Thu Jul 25 08:26:30 2002 +0000 Bumped version number to 0.9.13. Check for pkg-config >= 0.9. Added const qualifier to DFBRectangle parameter in IDirectFBImageProvider::RenderTo() and IDirectFBVideoProvider::PlayTo(). commit 15aafe8b5df28cf31c7debe0e82b70aaf779f301 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 14 18:46:22 2002 +0000 Use new probing contexts. commit 078c888d794d3044af4104f226c41edc82ad10a6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 17 14:46:36 2002 +0000 Minor changes for static linking support. commit 002bab207018362baa1d0254998c2be1a3fe8f3e Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 14 06:29:38 2002 +0000 Use new dfb_memcpy for planar YUV. commit f39bfd96c837bf0b0a0e9ab47110e7867aaa3a0a Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 10 15:37:07 2002 +0000 All global DirectFB symbols have the prefix "dfb_" now. commit c3360a12fe0c38524d17154c8c959ba4fae4fc2a Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 4 23:31:57 2002 +0000 decode both audio channels in stereo commit 11539d5a9e7162bdad205a2e60ada1d6ddfb9af3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 2 00:37:34 2002 +0000 Added support for I420 and YV12. Can still be optimized by decoding directly to the destination, save one memcpy. commit d9a8ba793d2438177ce3511170621095ffc812c8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Dec 29 17:43:26 2001 +0000 Switched to RGB888 for reading RGB data. Minor frame dropping tweak. commit 7871bf3f42d0a1e985fc9fbc72bedb60dba6f90b Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Dec 29 16:36:09 2001 +0000 Added audio playback via OSS. Fixed some minor problems. commit a84df07cb00bc3916fda4d31177340d5e250bcb4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Dec 29 07:42:54 2001 +0000 Added YUY2 and UYVY support. commit 54618ce3e40ca055efa7264f9e62c987e7e8e4c3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Dec 29 05:32:28 2001 +0000 Fixed frame dropping. Fixed playback speed after seeking. commit 945b6901fe86b958b6b8d283cc1a05ac9820c5bc Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 28 23:11:46 2001 +0000 Instead of cancelling the video thread use a boolean variable and just join. commit d71057636ac158651c162bf11e9cb420d1f8e146 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 28 22:18:06 2001 +0000 Added RGB24 support (possibly not endian clean). commit cff0a70c7b72830d703508d94267ab19fe76d02e Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 28 19:37:49 2001 +0000 Destroy mutex during interface destruction. commit 4b27473b7ea5e796b994312f8178d5fa1c388cba Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 28 19:34:15 2001 +0000 New package for additional modules. New OpenQuicktime Video Provider. Check the README for more details. commit 2c339ba7bbcd07dc69d81df93c1fb32458b580ce Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Aug 29 16:33:39 2011 +0200 bmp: fixes for little endian commit 263af2b06fa9cf38666fc6ef20ee1e47200911a3 Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Aug 29 16:06:53 2011 +0200 imageproviders: use generic refcounting, use IDirectFBImageProvider_data commit e0142c434a557cd9ccc078571978302ad7031e0f Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Aug 29 15:00:23 2011 +0200 imageproviders: include merged providers from DirectFB-extra into build system commit dfc927ab7cbb6465a6ac97520537dd1b6c0c3a3a Merge: 587972e 71f2850 Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Aug 29 14:14:40 2011 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 587972ed9dd922bd889a4aa20bc8aac11819bfdd Author: Niels Roest <niels@directfb.org> Date: Wed Feb 10 21:54:26 2010 +0100 whitespace removal commit 6111cfad568efe5339017003825e5d68b172d0d0 Author: Niels Roest <niels@directfb.org> Date: Wed Feb 10 21:51:23 2010 +0100 bmp provider: 1 and 4 bit BMP bugfixes The BMP provider has a couple of bugs. The first is a faulty for condition for 1bit BMPs. The second is an incorrect palette lookup for 1 and 4bit BMPs. Thanks to Sorin Otescu for providing the patch. commit 9158f356cfb2c0211d4818546c4f9dc1aa64cd0b Author: Ville Syrjala <syrjala@sci.fi> Date: Tue Oct 21 19:29:18 2008 +0300 Follow dfb_surface_lock_buffer() API changes. commit 6f939d1c49d7057a003fe8b007e6eaf0529f1061 Author: Ville Syrjala <syrjala@sci.fi> Date: Wed Mar 19 22:27:43 2008 +0200 imlib2/libmpeg3/openquicktime: Port to new surface core. Remove __ from datatypes. commit 3d8699cd2d3cb21d17f813bef0c124fc20f1ffbc Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Thu Jan 3 11:02:05 2008 +0100 MPEG2: Added MPEG2 I-Frame Imageprovider. Patch by Daniel J Laird - daniel.j.laird _ nxp.c0m commit a9b8fcbb374eff9781f4a74cecbed7e9442acf6b Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sat Dec 15 13:07:43 2007 +0100 JPEG2000: Fixed warnings. commit 48ea9188726e3d55ed1824f66b35e33ed6552b43 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Sep 17 20:00:06 2007 +0200 Optimized RenderTo(). commit aa777f59708855a6df0a9328c126ca4ed78ccc5b Author: Claudio Ciccani <klan@directfb.org> Date: Mon Sep 17 19:10:06 2007 +0200 Added a JPEG2000 image provider supporting .jp2,.jpc images through jasper (http://www.ece.uvic.ca/~mdadams/jasper). commit e3a4f22685d295c5b3547751172e182bcbd1061d Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Fri Sep 7 14:26:43 2007 +0200 Fixed warnings. commit a182fd379db34738a08c082a042fd1777ec2d727 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Aug 29 18:00:07 2007 +0200 Ported to the new surface core. Replaced old dfb types by new types. commit e74854d9240bb782459fe937ae84d697b45ef171 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Jul 12 16:48:20 2007 +0200 Support bitmaps with 32bit depth. Fixed a typo. commit bcee93b9e0e387936b313116bef9df68a29ba41f Author: Claudio Ciccani <klan@directfb.org> Date: Sat Nov 18 11:10:47 2006 +0000 Follow internal API changes. commit 91ffab3a16d2962e1a1f0c0fba4db87572e42f17 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Aug 8 10:35:18 2006 +0000 Shut up warnings. commit 4f7464ed99eeb564c360ab4ab135785fb13d1863 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Jul 15 10:50:53 2006 +0000 Added BMP image provider. commit 4af5de1f292738af946d59e99de88cb837ddd125 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Jul 13 10:57:31 2006 +0000 Ignore callback result when rendering buffered image data. commit 1d72815333edc6fe3f1cf6e6a97989bb272f1fda Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jul 12 16:39:09 2006 +0000 Follow internal API changes. commit 6c42d20c3af5d1b3094dfbe5d8d917accd942f71 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Jun 13 12:45:35 2006 +0000 Added support for gzip'd SVGs (formally SVGZ). commit a99d5e353dbcdb2cf5d9f69a7661069aa1837ab1 Author: Claudio Ciccani <klan@directfb.org> Date: Wed May 31 08:31:09 2006 +0000 Call cairo_scale() to scale the image. commit a6f4bd14fc204202b1b38801c629591b329f6c0a Author: Claudio Ciccani <klan@directfb.org> Date: Thu Sep 29 10:25:21 2005 +0000 Clear the destination rectangle to zero when rendering. commit 971c6392e728712b14b9493ea454b440fbbac55a Author: Claudio Ciccani <klan@directfb.org> Date: Tue Sep 27 08:06:27 2005 +0000 CAIRO_FORMAT_RGB24 is RGB32, not RGB24. commit b1de2a2bc17134ec76178471b1505e88b1ac4e57 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Sep 26 14:10:05 2005 +0000 New SVG image provider using libsvg-cairo. commit 667ea4810b69986d256d85c18cf1b91d0b3de11a Author: Claudio Ciccani <klan@directfb.org> Date: Mon Sep 26 10:42:27 2005 +0000 Follow changes in IDirectFBDataBuffer. commit 64d4c994d1a3006b8991dd6866e8d075b3084192 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Aug 28 15:39:10 2005 +0000 Assume PGM contains an alpha channel by default. commit bc8d4ac3d862edc5c419c6efc27e0796cd9a4635 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Aug 28 15:12:56 2005 +0000 Fixed incorrect Plain PPM rendering on big-endian machines. Cosmetics. commit 4df825cc0cfed45a65f9f3824d75c47eaa84dccf Author: Claudio Ciccani <klan@directfb.org> Date: Sat Jan 1 18:54:58 2005 +0000 Updated copyright. commit 56bcc36d55a307f90532189091b5a16b9ea4afb7 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Sep 14 12:21:52 2004 +0000 Cosmetics. commit 4a53e751e3005a09de68b14034e7f5d5ee92de31 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Jun 22 10:30:07 2004 +0000 Use dfb_scale_linear_32 for scaling. commit b7cc6a3fd63a17fd3d1bca99c3538c5408eac93a Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jun 21 17:05:49 2004 +0000 Fixed incorrect alpha handling. commit ded27d1d92c2c2c73ebd21ee9fe80e797e37f9eb Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jun 21 14:24:24 2004 +0000 Use ARGB1555 for PBM images. commit cd54d119384e481601299b63b6db5471aaed2a6e Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jun 21 11:09:02 2004 +0000 New PNM image provider: supports PBM,PGM,PPM images (both ascii and raw). commit bc0ac9b9067e9e5eb2e029e499569665ef716a2c Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Apr 5 12:28:47 2004 +0000 Follow internal changes in DirectFB. commit 7a820cecb8ff13d1fdf66f97e8d7c81e9834b109 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 30 23:50:29 2004 +0000 Can't really test them all. commit d2310a7f35320a9d4f6a9c4ec6f7443b7ef9d645 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 30 18:37:30 2004 +0000 Follow header and namespace changes. commit 5fe0752c1c9d8acd3dd4f79d50e2cdf31d0320f1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 6 19:19:16 2003 +0000 Follow internal API cleanup. commit d7bbf6a0d780663e7ce5eaaf06e5eef4d421058c Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 25 15:13:55 2003 +0000 Support DSCAPS_SEPARATED in dfb_copy_buffer_32(), too. commit 91ebd09bcc4a597bdbc4b3ac72c1f323427180b7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 25 14:43:20 2003 +0000 Pass surface caps to dfb_scale_linear_32(). commit 2849e62f97432478f6f9290f0d02909be8857525 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 8 16:02:35 2002 +0000 The provider can be used for file based loading again. commit 1adab34b621911ff1915ce5db8431538ee80e515 Author: Sven Neumann <neo@directfb.org> Date: Mon Jul 29 19:47:10 2002 +0000 Removed unneeded call to IDirectFBSurface::GetCapabilities from RenderTo() function. commit 7458322349729dde2775dc9ba30e8a05cbf141ef Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 29 17:23:47 2002 +0000 Compile fix, support for indexed formats. commit aa14a90749ffd07a53ceb34bdd5060e4ab2ec724 Author: Sven Neumann <neo@directfb.org> Date: Thu Jul 25 08:26:30 2002 +0000 Bumped version number to 0.9.13. Check for pkg-config >= 0.9. Added const qualifier to DFBRectangle parameter in IDirectFBImageProvider::RenderTo() and IDirectFBVideoProvider::PlayTo(). commit 2fe6d3b0c7a1e2a5cfbb023929783e7654b41e2f Author: Sven Neumann <neo@directfb.org> Date: Wed Apr 17 11:08:44 2002 +0000 Follow DirectFB API change in IDirectFBImageProvider::RenderTo(). commit b3ccbc024f91460a121ec4ce586a1e0f06cedcc0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 14 18:46:22 2002 +0000 Use new probing contexts. commit 034b86eb96d7072b3088dd50d53c017e09b4cd9f Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Apr 13 00:04:04 2002 +0000 Use 'dfb_primary_layer_pixelformat()', 'dfb_layers' is no longer global. commit e019e2c60b440ddcf544542d52aa82a39034ccec Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 17 14:46:36 2002 +0000 Minor changes for static linking support. commit 343164fa1564337b2c9f89216aa63b9f43035e40 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 14 03:12:41 2002 +0000 Call imlib_context_set_image not just once but each time a function of the provider has been entered. Not 100% thread-safe though. Fixed GetSurfaceDescription for images with an alpha channel. commit 8b13af08ff91f5352cdcf3c397ad3d3643be629c Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 10 19:06:09 2002 +0000 Imlib2 Imageprovider from Till Adam <till@adam-lilienthal.de>. commit a3f8878824fc1a8db7196838a3aa0093685d90bd Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 29 05:09:26 2011 +0200 Core: Add copy of surface type flags and resource id to surface buffer. This can be used by unlock/dealloc functions in surface pools rather than accessing the surface object which is no longer permitted in unlock/dealloc functions. commit 71f2850d3c89479764f51c70d6006de09de8ad24 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 29 04:27:16 2011 +0200 Core: Fix typo in last commit of Surface Buffer object changes commit fee7392214beaa050576c455ca19c58e0b1aad0c Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 29 04:15:58 2011 +0200 Core: Make Surface Buffer a FusionObject and implement locked surface resizing The Surface Buffer object is created when a surface is created or reconfigured. It has a global ref count of as long as it belongs to the surface. dfb_surface_reconfig() no longer returns when a surface is locked, but decouples the buffers by setting the back pointer from the Surface Buffer object to the surface to NULL and decreasing the global ref count. When a buffer is locked, the local ref count is increased, to keep the buffer object alive until the buffer is unlocked. Fixed locking for a few functions accessing surface members before locking it. Weak 'locked' counter in buffer is now replaced by dfb_surface_buffer_locks() function returning the local ref count of the Surface Buffer object. All functions involved in unlocking and deallocating a buffer may no longer use the surface back pointer unconditionally. commit 73ddcd9fde8238d3be59cadc3fa8d763fe9bf73d Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 29 04:01:55 2011 +0200 dfbtest_resize: Add test for multi threaded window resize and surface locking commit 7f0bf82563fc46a554eb2791fe6a578849de743d Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 29 03:40:22 2011 +0200 Fusion: Fix crash by commenting out debug print after unref (in fusion_ref_down itself) commit 6bb5a7cb553da0f706f9a4cd8f0e025769f7493e Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 29 03:39:43 2011 +0200 Fusion: Fix fusion_vector_foreach_reverse for empty vectors commit 6fc15ed2670fcaee18cea34f2ec6c4cfbaf1c16b Merge: 178a2d9 0c1b5df Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Aug 24 11:31:15 2011 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 178a2d936079953505b6bd202398a3108b190630 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Aug 24 11:30:13 2011 +0200 Core: Use old shm surface pool for non-secure fusion, get rid of indices in secure surface pool. commit eb2c1d1ef8efced5dbf20ba95abe0c65eb045889 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Aug 24 11:22:40 2011 +0200 X11: Fix crash in non-secure mode. commit 0c1b5dfa11449bdba55d7dd18b7dc74d6769082c Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Aug 23 16:16:00 2011 +0200 remove executable flag commit fcc6ba75ee28fa7e17133c4ee44620bbae969bfb Merge: f0c0ea9 d72614d Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 22 23:03:58 2011 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit f0c0ea9b4e6e7aa34678e855f8a8076dd2c969b2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 22 23:02:48 2011 +0200 IDirectFBSurface: Fix missing CoreGraphicsStateClient_Deinit() that has led to a memory leak. commit d72614deddd410e4ac9238786c727cedd427fa04 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 18 00:03:00 2011 +0200 CoreGraphicsStateClient: move declaration out of for statement commit 7fc7734b1d431a314f21006f2aade98361839244 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 18 00:02:45 2011 +0200 gfxcard: move declaration out of for statement commit e005d32fdc2ba832736a6438125014d2a6360d58 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 18 00:01:51 2011 +0200 generic: move declaration out of for statement commit 4f82bee075f2bb24da2564613ceeac4eaea4d443 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 15 09:28:55 2011 +0200 Graphics: Increase DFB_GRAPHICS_DRIVER_ABI_VERSION commit cb387301301d4aec4815649c244bd6e7bc454750 Merge: 754ddc8 de41ca8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 15 09:28:31 2011 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 754ddc8fe84dc8797c9fa1799191257fa000b678 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 15 09:28:20 2011 +0200 version 1.6.0-pre1 commit de41ca8212314fd71383536decb3e27101f2e5ea Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Aug 12 23:55:16 2011 +0200 mesa: add check for gbm in configure.in, set EGL_PLATFORM environment to drm in mesa system commit fe0b838501dc2cf93c7686cf0b55b3cdf24206cb Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Aug 12 19:05:55 2011 +0200 gfxdriver/gles2: use glUniform3i() instead of glUniform3iARB() which is no longer in mesa commit db808683fcab1c37901936e70726a3280ebef591 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Aug 12 19:02:37 2011 +0200 mesa: update mesa system to use gbm commit 682e983e62885106dac0214704646089dd5291ae Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Aug 12 13:17:04 2011 +0200 png: remove printf() commit 94439dd019e6fdd9608aed93ed42804077e431e4 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Aug 12 13:00:29 2011 +0200 png: dont use libpngs internal 16 to 8 bit channel conversion but our own For colorkeying, protect pixels that would be keyed only due to the reduction of colordepth by toggling the least significant blue bit. commit c287df67b2332b89c8a4df3b526c7a00584999f2 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Aug 10 15:58:19 2011 +0200 font/freetype: accept LUT2 as font-format commit 62bc0dd25a5715d634557cad3e9256aa29aabeba Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Aug 10 12:38:33 2011 +0200 font: fix memory data buffer for fonts commit 673464a2753add34cd445c1094b41a2b81529f18 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 9 22:56:47 2011 +0200 NEWS/ChangeLog for 1.5.3 once more commit c5b23f00f27f7a531f4eeeed8025b9c9a047e558 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 9 22:55:54 2011 +0200 Graphics: Add BatchFill driver function to reduce overhead. This is only used by FillSpans so far. commit 233a2a2bf6782b2066d7f4559f937c3c3fea4dac Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 9 22:10:50 2011 +0200 NEWS/ChangeLog for 1.5.3 commit d0ea019404a191da743d2af9e7ebd11021597f1f Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 9 22:08:57 2011 +0200 NEWS/ChangeLog for 1.5.3 commit 308b095d54aee05ad9ca1cb9f712e650664d7480 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 9 21:10:17 2011 +0200 FreeType2: Add support for DFFA_VERTICAL_LAYOUT and DFFA_STYLE_ITALIC. DFFA_VERTICAL_LAYOUT uses FT_LOAD_VERTICAL_LAYOUT. DFFA_STYLE_ITALIC at the moment requires a special FreeType2 version with FT_LOAD_OBLIQUE flag to use FT_GlyphSlot_Oblique( face->glyph ) in FT_Load_Glyph(). Support using the transform matrix is planned. commit a82802758e8859e872c4660e9a5798625ed98e8d Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 9 20:51:45 2011 +0200 Graphics: Add BatchBlit driver function to reduce overhead. commit eaf166f6bd68e7e169052d2fefbfa6954bbb9b1f Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Aug 7 22:37:24 2011 +0200 IDirectFB: Implement primary surface creation with DSCAPS_STEREO in fullscreen and windowed mode. commit 7f33435b6715505dba43b5d9a4a21a8d45943bfd Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Aug 7 22:36:37 2011 +0200 Core: In dfb_window_create() add DSCAPS_STEREO when DWCAPS_STEREO is used. commit 8481cf90d8a9e7ab1683b1f2ee213143ca5dc751 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Aug 7 14:28:53 2011 +0200 IDirectFBSurface: Move _Layer/_Window implementation of Get/SetStereoEye() to generic IDirectFBSurface, add missing generic FlipStereo(). commit ab03e1b18cee590ebb5908579abe889526f85f81 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Aug 7 12:27:25 2011 +0200 Stereo: Add stereoscopic display support including stereo windows and/or stereo depth. commit 1141f18171882e7825e4a5ee7fb7f707589a3120 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Aug 7 12:27:14 2011 +0200 version: 1.5.3 commit 8fe6e5c9aafd9595368179b1435dd1e5c5c80782 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Aug 7 12:24:39 2011 +0200 dfbtest_stereo_window: Add simple test for stereo depth of windows. commit add268627325d3e4d46356160d5a0a68ae4f8cf2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Aug 7 10:57:25 2011 +0200 X11: Add stereo display support via side-by-side output, implement 'x11-borderless' option. commit 29a9f0f8d3afd218f28c96418b3194a0b499219a Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Aug 7 10:55:39 2011 +0200 Runtime Options: Add 'x11-borderless=[x.y]' to disable X11 window borders and optionally position window commit 74953fdd83d7adb4bfc4ec8e5eb40fd799d0cdf1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Aug 7 10:54:54 2011 +0200 Core: Fix crash when dfb_wm_update_cursor() is called with 'no-cursor' option. commit abaa3ae3768accc0204818fd86ac5463946d1dcc Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Aug 7 10:54:14 2011 +0200 Core: In region_buffer_lock() fix surface accessor argument for right buffer lock. commit 8b3e0c7ca95f2f73276cedd3cb2566452af90a55 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Aug 7 10:53:08 2011 +0200 Core: In dfb_layer_region_flip_update() redirect to dfb_layer_region_flip_update_stereo() automatically. commit 26678b818aaab16399792d28220d059a0a02b34b Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Aug 7 10:51:49 2011 +0200 IDirectFBFont: Add DFFA_STYLE_BOLD for loading bold face from a file. commit 3563fecc29e4d2cd7395c7b5c967c47f50bf5269 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Aug 7 10:50:55 2011 +0200 IDirectFBScreen: Add DSECAPS_FRAMING to indicate support for different stereo output modes. commit 7156119285a97c45435810a4aa517a70ac4c6b46 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Aug 6 22:44:23 2011 +0200 IDirectFBScreen: Add full resolution side-by-side to DFBScreenEncoderPictureFraming and rework naming. Deprecated names have compatibility defines unless DIRECTFB_DISABLE_DEPRECATED is defined. commit 1199663b0ca1388adbc3f547736c997b40501cb4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 2 16:53:51 2011 +0200 version: 1.5.3 commit 0e631311bd585494e6d877ce5bee27a76c13fb15 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 2 16:53:20 2011 +0200 NEWS/ChangeLog for 1.5.2 commit f86823798f856467649393c0716294dff6a6adb4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 31 23:54:48 2011 +0200 version: 1.5.2 commit ebfa6bfb4e40733f8ce16588154cd86ff7c19bc1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 31 21:26:02 2011 +0200 update NEWS/ChangeLog for 1.4.14 release commit b2fa1d669d485906e5f293ac9ad69368ac248697 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 31 21:25:29 2011 +0200 Makefile: Remove generated files at distclean-local commit 0cd52e8c6c4d8091c2df2c1726a1b6fbcf9deb99 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 31 21:08:48 2011 +0200 version: Go back to 1.4.14, only call it 1.5.x again when stereo is integrated. commit 252c8697ebb24a5a33b9c440eab982cd6c8d23c1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 31 16:57:58 2011 +0200 version: 1.5.2 commit 7a97ba48408dbc584c0b9ec21f9767f401e5fda6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 31 16:57:24 2011 +0200 SecureFusion: Final major step to get SaWMan working with secure fusion Add SaWManManager flux to implement the public ISaWManManager interface for the application manager which could be a slave process without write access to the SaWMan structures. This includes QueueUpdate(), ProcessUpdates(), CloseWindow(), InsertWindow(), RemoveWindow(), SwitchFocus(), SetScalingMode(), SetWindowConfig(). At the moment all calls are asynchronous because of a very difficult to solve issue, that is when an application calls into the master to move a window, the master calls into the application manager, but that in turn calls into the master again now. This would block as the Fusion Dispatch thread is blocking on the call to the application manager and cannot process the call from the application manager. Add SaWManProcess flux including SetExiting() and RegisterManager(). Add permission management to throw functions. Add SaWManWindow as an object that can be looked up, thrown, caught... Change manager call to use FusionCall v3 copying back and forth the data instead of using a shared memory pointer. commit fa37c644e0f6c8c9d8e993aa4be30da41ca9eea7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 31 14:05:59 2011 +0200 version: 1.5.2 commit d31957b0e7b64a7ac09799c2ee63b69c30ef94f2 Merge: ee5bad2 83bb21e Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 31 14:05:14 2011 +0200 Merge branch 'secure-fusion' Conflicts: lib/fusion/call.c lib/fusion/shm/pool.c commit 83bb21e8c3f04a03272ce4d5804b83942b6bcdf3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 31 13:59:16 2011 +0200 SecureFusion: Final major step including permission enforcement, object ownership, new surface locking... Add _GetID() functions for all core objects. Add permissions for catcher in throw function, e.g. to ref_up/catch, call, attach to reactor... Set object owner to catcher in throw function of surface, window and palette objects for now, but only if the owner has not been set yet. This is enough for the time being. Check object owner in lookup functions and fail if owner is set, but does not match. Turn CoreGraphicsState into a FusionObject to handle reference counting and to get rid of the custom creation/throw/catch code etc. Add CoreGraphicsStateClient_Deinit(). Add CoreLayer::GetPrimaryContext(). Add CoreLayerRegion::GetSurface() to add surface permissions to region owner. Add CoreSurface::GetPalette() to add palette permissions to surface owner. Add CoreWindow::GetSurface() to add surface permissions to window owner. Add special code for parent and top level window in DFBWindowDescription passing of CoreLayerContext::CreateWindow(). The windows are passed as object arguments to go through the object ownership checks on dispatcher side when looked up by id. Remove LockBuffer and UnlockBuffer from CoreSurface interface and use dfb_surface_lock_buffer() at all locations again. Add CoreSurface::PreLockBuffer(), PreReadBuffer() and PreWriteBuffer() doing all work that needs to write to shared memory, e.g. allocating a buffer, syncing allocations, syncing with accelerator, and then returning the index of the allocation to be used. Call these new functions from dfb_surface_buffer_lock/read/write() and then call into surface pool implementation locally. Add special code for parent window and keys in CoreWindowConfig passing of CoreWindow::SetConfig(). The window is passed as object argument to go through the object ownership checks on dispatcher side when looked up by id. Separately pass the keys as another argument to have it copied and set the pointer in a copy of the config on the dispatcher side. Add attach/detach permission for everyone to input devices. Fix ref up/down for input devices changing from global to local counting. Add ref up/down permission for everyone to input devices. Add execute permission for everyone to layer call. Remove preallocated surface pool for now, instead create a normal surface and copy the data from preallocated area to new surface buffers. This also reenables acceleration for preallocated surfaces which had been broken since DirectFB 1.2. In future versions there will be proper support for preallocated surfaces again. Refactor local and shared surface pools and only use local pool in single app and only shared pool in multi app build. The local surface pool has been heavily simplified to just do the malloc/free instead of the FusionCall code etc. The shared surface pool has been reimplemented to create a file in tmpfs per surface buffer allocation that is writable by slaves, since all Fusion SHM Pools are read only now! This avoids security holes as no heap information is writable and allows for more fine grained permission management per surface buffer. The tmpfs files are currently mapped/unmapped on Lock/Unlock. Add CSPCAPS_READ and CSPCAPS_WRITE being set automatically when the surface pool provides a Read and Write function. commit 2311b095790da1279d3f470a4d84ff62ff1585b5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 31 13:02:53 2011 +0200 Fusion: Just return OK in single app implementations for permission management. commit 6c0941f93c38774210287e1ce620d56c18a65498 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jul 30 23:44:43 2011 +0200 Fusion: Add fusion_get_tmpfs(), remove obsolete select() call. commit ee5bad2be947b14e4b5eb5ff5b6e247ae38b4c17 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Jul 29 19:00:33 2011 +0200 core: call dfb_gfxcard_...() directly for slaves that are not using secure fusion commit 362ac4eb76c8e02f367ae60e8b835ef77ac8cf76 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Jul 29 17:40:51 2011 +0200 core: only reject preallocated surfaces when using secure-fusion and not being master commit d1ee31a964be266e5da51dec373c1acca73b540a Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 29 14:55:15 2011 +0200 Fusion: Use new security mechanism in linux-fusion 8.5.0 Add generic fusion_entry_add_permissions() with plain bit mask. Add per entity type functions, e.g. fusion_call_add_permissions() with specific bit mask. Map shared shared root page read only in slaves. Remove writable flag in shared memory pools (all read only in secure mode). This change is needed as the heap information was writable and therefore not secure enough. Writable shared memory will only exist outside of shared memory pools, e.g. a separate file per surface buffer allocation. Enforce shared memory permissions on file system level, using 0640 instead of 0660, so the master may be run as a different user, but with the slaves being in the same group, see also the shmfile-group option to control which group is being used. Add a field to FusionObject to store the owner's FusionID. At the moment this stays zero until it is set. For now, all skirmishs have default permission to allow lock/unlock for all other Fusionees. Skirmishs will be removed soon anyhow... commit dfb1fe6535d21c531c33e6f9799a07246537879e Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 29 14:44:30 2011 +0200 Flux: Generate TypeName_GetID( ptr ) instead of ptr->object.id. commit 0238806f7e9a06efd75cf6f4d28809fb12c8e793 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Jul 29 12:53:03 2011 +0200 debian: updated changelog (prepare for next release) commit e85c58c0a202a66cc8d93553b506697cdaa06e2e Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jul 28 22:24:21 2011 +0200 configure: depend on 1.4.14 from now on, for all the flux etc. commit 31e2387d7711ae3dac629656dd718619f88674d8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jul 28 22:20:05 2011 +0200 version 1.5.0 commit bd8e632837b9036556cd16c7a8eb9081c29a8316 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 13 22:13:28 2011 +0100 Fusion: Fix assertion in single app fusion_call_destroy(). commit 8f846662325ea4a379dd32ae439661bbe4585fdb Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 6 18:37:23 2011 +0200 Fusion: Add dummy fusion_ref_throw() and fusion_ref_catch() for single app. commit ece4a422b6202216c55f4b2ca55d22b4a77ea856 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 6 18:36:46 2011 +0200 Fusion: Add fusion_call_init3() and fusion_call_execute3() for single app. commit 60c0c53855c91576db8a9d74aef60b5cfba28f99 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 6 18:51:43 2011 +0200 Core: Remove generated files from flux on make distclean. commit 996a50f98f29791092d6d9ac01ca9f6d470d7c1f Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 6 12:51:41 2011 +0200 call: Comment out error message in fusion_call_destroy() for now The call is destroyed by the kernel module already when the creator dies. commit baaef5da12eb7f729b70f0c134cf5ca705f08a65 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 6 12:50:55 2011 +0200 Flux: Check fusion_config->secure_fusion to use real interface in slaves as well when false. commit cbf43bbd7e74786af7b100ecc082ad00cea70423 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 6 12:50:14 2011 +0200 Runtime Options: Add "[no-]secure-fusion", disabled by default. commit b77af7da090537f58e0d9b0da1825a5ca5a2a54e Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 6 11:30:11 2011 +0200 Flux: Added TODO for types/structs. commit 40374b545999c6a0ddfdf239cc6e74710bc8d082 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 6 11:05:13 2011 +0200 SecureFusion: Add documentation, status... commit 6eaf208059700844e2de0d1259f3e0585eb7f7af Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 26 15:13:59 2011 +0200 fusion: Use new FUSION_SHM_GET_BASE as a replacement for FUSION_SHMPOOL_GET_BASE. commit 387e53948904b4e8599a113f05f298770de58834 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jul 21 01:57:30 2011 +0200 SaWMan: Add flux for process registration. commit 13089ccf8bd4ec9465859653e386435fe8dbe9f5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jul 21 00:52:18 2011 +0200 atomic: Fix usage of keyword 'new' in MIPS specific code. commit 6ce7767e894c434d3893728aa3d501a7db687543 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 15 18:15:55 2011 +0200 release 1.5.1 commit ba84b928a9d1db8e37fb2b16ee58863f6e6497e7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 15 01:24:01 2011 +0200 IDirectFBSurface: Add DSBLIT_SRC_CONVOLUTION, SetSrcConvolution() and DFBConvolutionFilter with a 3x3 kernel, scale and bias. No SW implementation yet. commit d692bf9abc10e3907f521741d5d30cd014ed3549 Merge: 2a03bf9 fdbb520 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 15 01:01:21 2011 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 2a03bf9786053bc07bbfae2991d1d4c8289b7595 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 15 01:00:27 2011 +0200 IDirectFBSurface: Add DSBLIT_SRC_COLORMATRIX and SetSrcColorMatrix(). No SW implementation yet. commit fdbb520b19e33554971f5d779064521031735d26 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Jul 14 11:23:51 2011 +0200 Revert "added LUT1 pixelformat, almost unimplemented yet(same level as LUT2)" This reverts commit 63b67096cd2e9bd96a0cc5a02bc5f82691d988db. commit 83e520675785f29bec8e536223d5dd6f936640df Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Jul 14 11:08:56 2011 +0200 Revert "lut1: implemented Sop_lut1_to_Dacc for minimal LUT1 font support" This reverts commit 67751d2b3d6e53757b172813dc93cc0646e172af. commit 9a27640d538c9aa31510ce84c42bfd9e83c8b3a7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jul 14 00:38:33 2011 +0100 IDirectFBSurface: Add special monochrome rendering function for characters: DrawMonoGlyphs(). No SW implementation yet. commit 29136d583486ac7c59010c7728e2b83d3d9a3e3b Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 13 23:23:09 2011 +0100 IDirectFBSurface: Add extended source/destination color keying, no SW implementation so far. Add DSBLIT_SRC_COLORKEY_EXTENDED and DSBLIT_DST_COLORKEY_EXTENDED. Add DFBColorKeyPolarity with DEFAULT and OTHER. Add DFBColorKeyExtended with polarity and lower/upper color. Add IDirectFBSurface::SetSrcColorKeyExtended() and SetDstColorKeyExtended(). commit f2c99e1a701086d8ccd513eaddcee18e87aa569f Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 13 22:40:39 2011 +0100 ISaWManManager: When changing association, reset to default geometry (non-follow) if parent is not found. commit 555194b170a519618f9d0ddb550fa5972b12a1b3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 13 22:23:23 2011 +0100 Repaint: Fix crash when multiple regions are repainted due to cursor rendering, thanks to Frank Chou! commit fcf38a71aaf0851af757a229beae2fc6831442b7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 13 22:13:28 2011 +0100 Fusion: Fix assertion in single app fusion_call_destroy(). commit 6c6497bc252d70dcf09339759f30f930ec9a545d Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Jul 13 19:20:17 2011 +0200 added basic RGBAF88871 pixelformat support commit 47c81d26fb79012da2f135b68613321b0644ac5f Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Jul 13 17:50:25 2011 +0200 remove test file commit ee1c18bef58c4f5f7d0307537ed35312d640cb12 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Jul 13 17:45:56 2011 +0200 test: sorry, we are fighting with git commit 67751d2b3d6e53757b172813dc93cc0646e172af Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Jul 13 14:57:00 2011 +0200 lut1: implemented Sop_lut1_to_Dacc for minimal LUT1 font support NOTE: LUT1 font support is unfinished, background and foreground colors are hardcoded. commit 63b67096cd2e9bd96a0cc5a02bc5f82691d988db Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Jul 12 15:22:11 2011 +0200 added LUT1 pixelformat, almost unimplemented yet(same level as LUT2) commit b0a689fdff012e7c5d04700a6fb53aa9b20e5d95 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jul 7 18:30:35 2011 +0200 direct: Add DIRECT_OS_FAMOS commit 7344fa9a5169e84c86357e8339c9bca9f2529146 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jul 7 18:30:13 2011 +0200 version: 1.5.1 commit d9bed4c8daa67892dab6744e80737197fd16cf43 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jul 7 03:15:34 2011 +0200 update 1.5.0 release commit 9be4a5d193da6a82d2b985717b39210c35be9cf9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jul 7 03:19:16 2011 +0200 mesa: Add vt.h to sources. commit b6c8e4487d25a4b68445ad80f88f560255dc3bb3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jul 7 03:15:08 2011 +0200 tools: Add mkresult.sh to EXTRA_DIST. commit b5ba80143c0575055199cc994861ff5f6b44058f Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 6 18:52:10 2011 +0200 The giant 1.5.0 release is coming! commit c5e0b0abb7f750fd4e5ab0b6d00f2684f9118dbf Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 6 18:51:43 2011 +0200 Core: Remove generated files from flux on make distclean. commit a2a1abdb38737678debf32adcbc7daafe6725dfe Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 6 18:37:23 2011 +0200 Fusion: Add dummy fusion_ref_throw() and fusion_ref_catch() for single app. commit 38d9addbdb177f34fb0cdfe5dc60dfd4fb396375 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 6 18:36:46 2011 +0200 Fusion: Add fusion_call_init3() and fusion_call_execute3() for single app. commit d756c0a0f7392cd5b353db15f399013705b742c2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 6 18:35:58 2011 +0200 Makefiles: Add some missing headers, fix .c/.cpp confusion. commit d6a7b28399588c75eb253b1b33410c8969a8d7e5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 6 14:25:29 2011 +0200 IDirectFBSurface: Add SetRop() with DFBSurfaceRopCode, DFBSurfacePatternMode, fg/bg color and pattern bits commit bf0707a0714e5da477f2e0bfde7645bcffe7972b Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 6 14:11:43 2011 +0200 state: Fix SMF_ALL after adding SMF_WRITE_MASK_BITS. commit cdce79b9dc5c14868d7779c50aaf4ab7985d605d Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 6 13:51:31 2011 +0200 MNG: Add libmng based video provider. commit 7e9a4d0a390f0de4f9fe0b5fb58d9582bbae179b Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 6 13:35:46 2011 +0200 IDirectFBFont: Add DFFA_VERTICAL_LAYOUT to load vertical layout. commit aaf264707f48892b40ed69795b9cdd9ef27ae1a2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 6 13:31:09 2011 +0200 IDirectFBSurface: Clarify write mask bits documentation. Bits being set in the mask will NOT get written to the destination. Default is all zeros, i.e. all bits written. commit 12d97c14aac53848a1c45ebc2c4c1b1a17b35fbe Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 6 13:28:29 2011 +0200 API: Add DFB_MASK_BYTE0-3 macros, e.g. for SetWriteMaskBits() commit b949eef0f4f0e8ca981c5d9c406471da82a6ff52 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 6 13:26:33 2011 +0200 IDirectFBSurface: Add DSRO_WRITE_MASK_BITS and SetWriteMaskBits(). commit 43f8e6a5ca97cd3c64ece3f78a71cfe65255308e Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 6 13:01:49 2011 +0200 IDirectFBFont: Add DFFA_STYLE_ITALIC to load italic style from same file. commit 70e3a27f9c8630814366f6429384da8b0e885ebe Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 6 12:59:42 2011 +0200 IDirectFBFont: Add GetUnderline() to get the position and thickness of the underline. commit f571e31833687646cd7e23b1031b7ab81a918395 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 6 12:51:41 2011 +0200 call: Comment out error message in fusion_call_destroy() for now The call is destroyed by the kernel module already when the creator dies. commit 4aa4384744d5a0a838098a5a4858cebad75e22e5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 6 12:50:55 2011 +0200 Flux: Check fusion_config->secure_fusion to use real interface in slaves as well when false. commit a773064a1f2fc0eefef64341df104b2a57a80dc3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 6 12:50:14 2011 +0200 Runtime Options: Add "[no-]secure-fusion", disabled by default. commit f62afeb5a15d4b34ffd14702a639b5b32ad0ac2e Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 6 11:30:11 2011 +0200 Flux: Added TODO for types/structs. commit 06b208874cb92bdef09c0e5951dda6b5de09578c Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 6 11:05:13 2011 +0200 SecureFusion: Add documentation, status... commit 6fb6632e9355ba071041921122d1d45e68905fff Merge: e0a5d07 3bbb1e6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 6 11:02:22 2011 +0200 Merge branch 'secure-fusion' This enables secure-fusion by default, but there will be a run time option shortly, by default secure-fusion should be disabled for a few weeks at least. Conflicts: src/core/gfxcard.c src/display/idirectfbsurface_layer.c src/display/idirectfbsurface_window.c commit e0a5d079bb98e4cd53100cbc3beb0731d51aa6dd Merge: a7a77d3 0161143 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 3 10:02:54 2011 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 3bbb1e623aedc312ea2ba5e604ca2f25050d8f0a Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jul 2 10:28:43 2011 +0200 DirectThread: Fix double cleanup of thread structure when destroying running thread Previously, a thread still running was detached and canceled which still led to doubly freeing the structure. Now, the thread is canceled and joined. It is also joined now, if already canceled, but not joined. commit a7a77d3fcfbcc7b6e7af39a81e3bf365bd0cf636 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jul 2 10:28:43 2011 +0200 DirectThread: Fix double cleanup of thread structure when destroying running thread Previously, a thread still running was detached and canceled which still led to doubly freeing the structure. Now, the thread is canceled and joined. It is also joined now, if already canceled, but not joined. commit 9c58ad60e096f8fae43cb93684a7394054acfd18 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jul 2 10:27:03 2011 +0200 SurfacePool: Add debug messages for type/flags to dfb_surface_pools_negotiate() commit 80b654b6d1d921e0309605eac3983fa9a3d55ea9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jul 2 10:08:28 2011 +0200 Core: Make data pool writable by slaves for now commit daad8a4e271a40552b283404f9c88820e053908e Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jul 2 10:05:23 2011 +0200 Fusion: Shutdown fixes, fix for blocking read() usage - Unlink shared root page file on shutdown - Reimplement fusion_sync() via new FUSION_SYNC ioctl - Handle EINTR in fusion_dispatch_loop() when read() returns commit f1998d37dd1a55f53c3ea27f32aed8325066d4af Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jul 2 10:04:06 2011 +0200 FusionRef: Only debug print when caller is withdrawn. commit 87cdbe64b9f75b39cea095c30ed2a2fd4d6775ca Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jul 2 10:01:34 2011 +0200 Fusion: Add reference passing via throw and catch A Fusionee having a local reference may call fusion_ref_throw() with another Fusionee's ID as catcher argument. That Fusionee may then call fusion_ref_catch() which will remove that local reference of the thrower. The catcher has to get a local reference itself beforehand, otherwise the reference is just being removed. commit 3062e19f696500ae1f59554dd115e1b3f85a315d Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jul 2 09:59:52 2011 +0200 Core: Update Makefile.am for new interfaces commit 3b3d5979be0ba7c93b1905fe84c8c7de5ca850ea Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jul 2 09:59:06 2011 +0200 IDirectFB/Palette/Surface: Use new CorePalette and CoreWindowStack interfaces commit 33c13b446b11f6ca47cd8de8706bbb9d0bc8e6a4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jul 2 09:58:41 2011 +0200 Core: Integrate CoreWindowStack flux in core commit dd76d67429905c0cf97e59d481ae196b926f7b09 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jul 2 09:57:41 2011 +0200 Core: Integrate CorePalette flux in core, make color hash local commit 4348c6c200cf6bb7c0ae71942ca6ae1421bd2ffe Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jul 2 09:55:32 2011 +0200 IDirectFBDisplayLayer: Use new CoreWindowStack interface commit 3c7436e984777dbef62cd44fb550f78257fdbca4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jul 2 09:54:56 2011 +0200 CorePalette: Add flux and real implementation for CorePalette interface commit ae9ab01588b6b45a0e4f9479d4134ec3369d3541 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jul 2 09:52:42 2011 +0200 CoreWindowStack: Add flux and real implemenation for CoreWindowStack interface commit 82887378343faa30509600161cf540cc8a12988a Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jul 2 09:50:33 2011 +0200 IDirectFBWindow: Use new CoreWindow interface methods commit 2dbb8615892d67c0b48fca030606b4a5abc6cbf4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jul 2 09:33:58 2011 +0200 CoreDFB: Add Catch/Throw implementations for reference passing, fixes for ICore_Real::CreateSurface() - Fix resource_id parameter of ICore_Real::CreateSurface() (from unsigned long to u64) - Remove CSCONF_PREALLOCATED for now (needs surface pool refactoring) commit 1a3c150b5c22fcae37bf7baf95f616bb44290dcc Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jul 2 09:31:44 2011 +0200 IDirectFBSurface: Use CoreGraphicsStateClient in all places commit 896ca7f815efc2f3a32d276a2c99f88901e77637 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jul 2 09:25:11 2011 +0200 CoreGraphicsStateClient: Finish state management, add missing render methods commit 6a2f106e25daa4a5f9d0630444b7f5c8f26c77eb Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jul 2 09:21:51 2011 +0200 CoreGraphicsState: Async render calls, finish interface, fixes - Make all render methods async - Change argument of SetIndexTranslation and SetMatrix to s32 (was u32) - Add DrawLines, FillTriangles, FillTrapezoids, FillSpans, Blit2, TileBlit, TextureTriangles - Implement IGraphicsState_Real::StretchBlit() commit ad5e225de2c6cea2add586a8955da941cae83faf Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jul 2 09:18:07 2011 +0200 CoreWindow: Extend flux and real interface with more methods BeginUpdates, ChangeGrab, Move, MoveTo, Resize, Destroy, SetCursorPosition, ChangeEvents, ChangeOptions, SetColor, SetColorKey, SetOpaque, SetOpacity, SetStacking, SetBounds, SetKeySelection, SetRotation commit 87df64ac62c0c65a5e1919e3fe244aad9be69f21 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jul 2 09:06:56 2011 +0200 Flux: Implement async calls, comments, reference passing, int/enum array input, optional arrays commit 0161143107f46e65128bd31d197cec1017ad7b3a Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Jun 30 19:08:26 2011 +0200 buildfix: fix build without voodoo commit 17a88a17699b297b782fa78797fa97dcab362ced Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 27 18:38:12 2011 +0200 x11: Add missing detach from shm images, only master for now. Add x11ImageDetach() called in x11DeallocateBuffer() to detach from shm. Still need to detach in other processes, e.g. via reactor. commit da5f93a7b07180cc4646f570b9f254b324c9cd03 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 21 19:47:32 2011 +0200 GraphicsState/Client: Add DrawRectangles(), remove FillRectangle() in favor of FillRectangles() dfbtest_window with defaults is running now! commit ca5b767ff5bfb5ddcfe293592e220e0777967c71 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 21 19:46:42 2011 +0200 IDirectFBDisplayLayer: Implement IDirectFBDisplayLayer_CreateWindow() via CoreLayerContext_CreateWindow() commit b9613a1abf47553f0b384971cdfb4c2d5b6268d5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 21 19:45:04 2011 +0200 IDirectFBWindow: Implement IDirectFBWindow_SetOpacity() via CoreWindow_SetConfig() commit 4aee5d0b21945ee4c19c80c84994f93fa03c99c1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 21 19:40:07 2011 +0200 CoreLayerRegion_real: Remove assertion for optional region parameter commit e0124f3d51b0ffc73b75f4a045e8be8d5068fb63 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 21 19:37:48 2011 +0200 CoreLayerRegion: Add optional flag to CoreLayerRegion::FlipUpdate() commit 4a2fe29be2885c3e20327a15dc7851146e573677 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 21 19:36:24 2011 +0200 CoreGraphicsState: Remove generated file from git commit fc66feb8de8ece2a34b5f0ef47ed1083908f074e Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 21 19:35:22 2011 +0200 Flux: Fix optional object passing commit 67876587dd7603e02a59596cd5a2b413eccf1b57 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 21 18:12:37 2011 +0200 Flux: Implement 'optional' flag, e.g. for FlipUpdate() with NULL region commit f7f3ca0a73f9c7869e6765f622f7225cf405fb38 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 21 11:04:24 2011 +0200 SecureFusion: Add initial CoreLayerRegion flux, fullscreen df_andi runs! - Add CoreLayerRegion::FlipUpdate() only for now - Add CoreLayerContext::GetPrimaryRegion() - Add dfb_core_get_layer_region() commit 53cf00af1df3a67baaee1fa555be9de4ab475a9d Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 21 10:37:58 2011 +0200 SecureFusion: Add initial CoreLayer flux - Add CoreLayer flux, having CoreLayer_Lookup() just do dfb_layer_at() - Move CoreDFB::CreateLayerContext() to CoreLayer::CreateContext() - Add CoreLayerContext::SetConfiguration() - Add CoreLayer::ActivateContext() commit 90380bee4b93221397912f827697fb562393ad13 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 21 07:25:55 2011 +0200 SecureFusion: FusionCall v3, more flux, e.g. graphics state - Adapt to new FusionCall v3 functions - Add CoreDFB::CreateState() - Add CoreDFB::CreateLayerContext(), to be moved to CoreLayer flux - Add CoreDFB::WaitIdle() - Add flux for CoreGraphicsState with all state setters and some render operations, to be made async - Remove manually written CoreGraphics and CoreGraphicsState code - Hold CoreSurface object lock while calling dfb_surface_flip() - Add dfb_core_get_layer_context() - Fix error message for failing dfb_gfxcard_lock() - Add dfb_layer_id_translate() - Fix state setter macro for C++ commit 8a79e1773c498292795c03791834bdb71a21adc6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 21 07:24:20 2011 +0200 X11: Add CSCAPS_PREFER_SHM for testing SecureFusion, otherwise local pool is used, breaking across processes commit 8058c8d358c89bfafc86ab0ad9086caaf408d868 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 20 22:05:57 2011 +0200 Flux: Implement variable sized array arguments, e.g. BatchBlit(rects,points,num) commit 4dcd41a3688ceb198f095be014b5f671a81be715 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 20 22:01:00 2011 +0200 libfusion: Implement multi app FusionCall v3 via new linux-fusion interface. - Change FusionCallHandler3 to return the actual size of return data as well - Use FUSION_CALL_EXECUTE3 in fusion_call_execute3() if non-local - Add fusion_call_return3() using FUSION_CALL_RETURN3 - Implement handling new FMT_CALL3 message via _fusion_call_process3 commit 157ba9b2558fb0b601dcde5dd9fc69698ed1cce8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 12 01:27:13 2011 +0200 input: When Shift is pressed in CapsLock state send small letters. commit 226f4e981d4c4f66aedd5a66e89e1141d04164ee Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 16 22:34:44 2011 +0200 Docs: Add first sketch of Core Interfaces. commit cf5c7c3c2264f0cf6201b1208da1b82321768295 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 16 21:53:12 2011 +0200 Core: Add CoreSurface Flux commit 1b08a1ed086f48aacd1127a0ed9261bd8bf5c7c1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 16 21:51:24 2011 +0200 Flux: On successful dispatch of a request, copy inout arguments from request to return structure. commit b475f3816d6a725b74bf8caefe545b1cd663bf1c Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 16 21:39:10 2011 +0200 Flux: Add TODO file - Generate stub real implementation optionally in a serate file. - Generate proper cleanup code in case of multiple object lookups etc. commit fd9116ded2880edee9a16f25f4c1ac26c4af892e Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 16 21:31:41 2011 +0200 gfxcard: Use D_UNUSED for DFBVertex_Transform. commit 1b30265f1272e9fc7cc9769c468d547f50ab5680 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 16 21:30:22 2011 +0200 Core: Add class name in debug message of interfaces' 'real' implementations. commit 956df0597d35b371ffa2ddf600d56f3e36cd71e3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 16 21:28:01 2011 +0200 Flux: Few fixes for return values (struct,enums...) and inout arguments. commit 87dad610e5b0774e2cb8b7715cf40c946075e30d Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 12 19:48:15 2011 +0200 direct: Rename __unused__ to D_UNUSED. commit aff6350c876329b8965c364c5348ae5d16ff7e9c Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 16 19:25:44 2011 +0200 Core: Use Flux for CoreLayerContext, replacing old manually written code. commit 889bc56a034264d248211e74befd595d0aac63e0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 16 18:38:54 2011 +0200 Core: Use Flux to generate all code for hiding FusionCalls behind local/proxy interfaces. This is limited to CoreDFB and CoreWindow at the moment. The Flux compiler generates .cpp and .h containing abstract interface definition and two implementations, one generated 'requestor' implementation making FusionCalls and one 'real' implementation only being declared, implemented manually in _real.cpp file. Next to these there's code generated to dispatch incoming FusionCalls to the real implementation. A C wrapper is also generated for minimizing code changes outside of new files, but the new C++ API will be used in 1.6 branch, when Secure Fusion has stabilized in 1.5 branch. commit 8eabb1293c5c9ba13445efd939db0fed6526f31f Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 16 18:31:09 2011 +0200 Flux: Introduce new language for interfaces, with parser/code generator. Input looks like this: interface { name IWindow version 1.0 object CoreWindow method { name Repaint arg { name left direction input type struct typename DFBRegion } arg { name right direction input type struct typename DFBRegion } arg { name flags direction input type enum typename DFBSurfaceFlipFlags } } method { name Restack arg { name relative direction input type object typename CoreWindow optional yes } arg { name relation direction input type int typename int } } ... commit 91c71b6ce11bb5dc799028946f0447bec70cdb80 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 16 17:57:37 2011 +0200 gfxcard: Remove stray '#' at the beginning of the file. commit e2d608380b0ab0c0636d56c63692a5e77f0630b7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 16 17:38:45 2011 +0200 Fusion: Introduce fusion_call_execute3() with variable return data. A new call handler type gets return pointer and size to return blocks of data to the caller, instead of the single int value. There's no single app impl yet and the multi app impl only works in direct call scenario so far, need to add support to Linux Fusion. commit 4dc3eb3b95cc2b76ef05efa512803d2b866ec668 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun May 15 12:44:55 2011 +0200 direct: Deinitialize logging after everything else. commit 6fda1ff4402d3415369c23245180217330e2ccee Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun May 15 12:42:10 2011 +0200 direct: Move cleanup handler calls to atexit handler to be called before destructors. commit 2f71de07ec335e897fdc47033b887e3d67a714e0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 13 01:21:55 2011 +0200 Core: Move new CoreLayerContext code into seperate files as well. commit b7ee890143912c8b2ac4768f18245f7cc17ce001 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 12 19:48:15 2011 +0200 direct: Rename __unused__ to D_UNUSED. commit 65c4ca7149e791f44001e2229da7731e083363e6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 12 02:39:18 2011 +0200 CoreWindow: Fix typo. commit 8b06dcd6bf84f099f7e7c96b842af7ffd529c164 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 11 19:09:50 2011 +0200 Fusion: Add fusion_call_init_from() for single app. commit 725cd0958edc94eab7a71adc8195ee0eb8377a70 Author: André Draszik <andre.draszik@st.com> Date: Mon May 9 15:41:08 2011 +0100 generic: implement a version of Bop_24_TEX_to_Aop commit 31f38654212e60b06f3e1eb24c9ba36b65016e45 Author: André Draszik <andre.draszik@st.com> Date: Mon May 9 13:56:12 2011 +0100 generic: use 24bpp colorkey template for RGB18 and ARGBx666 removing lots of more or less duplicated code and giving us Bop_PFI_KtoK_Aop_PFI Bop_PFI_StoK_Aop_PFI Bop_PFI_SKtoK_Aop_PFI for these formats for free commit b8f8935f2ee3b21cea972d49f81b7800d81b8600 Author: André Draszik <andre.draszik@st.com> Date: Mon May 9 12:51:23 2011 +0100 generic: use 24bpp colorkey template for RGB24, ARGB8565, VYU removing lots of more or less duplicated code and giving us Bop_PFI_KtoK_Aop_PFI Bop_PFI_StoK_Aop_PFI Bop_PFI_SKtoK_Aop_PFI (RGB24) for free commit 7db0ff1b9803dd084ae7fe1eab9604687bfd5d96 Author: André Draszik <andre.draszik@st.com> Date: Mon May 9 12:45:21 2011 +0100 generic: add a colorkey template for 24bpp pixelformats commit e5b1bd1cf057d2cce048ee20a5d910e2e8049d37 Author: André Draszik <andre.draszik@st.com> Date: Mon May 9 15:39:45 2011 +0100 generic: use 24bpp acc template for RGB18 and ARGBx666 this gives us Sop_PFI_TEX_to_Dacc Sop_PFI_TEX_Kto_Dacc Sacc_StoK_Aop_PFI for free for these formats commit 4d6372cf22c4020ec9941692328a5a6652be130b Author: André Draszik <andre.draszik@st.com> Date: Fri May 6 16:25:30 2011 +0100 generic: use 24bpp acc template for RGB24 and ARGB8565 this gives us Sop_PFI_TEX_to_Dacc Sop_PFI_TEX_Kto_Dacc Sacc_StoK_Aop_rgb24 for free for these formats commit 8882c9f8fbdd3fc92581af6be55ec7ae45be84ef Author: André Draszik <andre.draszik@st.com> Date: Fri May 6 16:24:21 2011 +0100 generic: add an acc template for 24bpp pixelformats commit a1bda4d0da3feb82591af4332484a1689063f268 Author: André Draszik <andre.draszik@st.com> Date: Mon May 9 11:34:59 2011 +0100 convert: fix typo commit 80e46aa4e2ea9fed6280ab9c29530babea307941 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat May 7 10:53:31 2011 +0200 IDirectFBSurface: Use CoreGraphicsStateClient_FillRectangles() for IDirectFBSurface_FillRectangles(). df_dok master Anti-aliased Text 3.000 secs ( 2480.400 KChars/sec) [ 99.3%] Fill Rectangle 3.000 secs ( 4165.905 MPixel/sec) [ 99.3%] Fill Rectangles [10] 3.001 secs ( 4607.829 MPixel/sec) [ 99.6%] df_dok slave Anti-aliased Text 1.386 secs ( 1916.883 KChars/sec) [ 32.6%] Fill Rectangle 2.856 secs ( 3643.948 MPixel/sec) [ 15.0%] Fill Rectangles [10] 41.629 secs ( 4652.018 MPixel/sec) [ 1.1%] commit 85e061de5db71c2eb2617cf4fb132ac8a10c46a4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat May 7 10:44:26 2011 +0200 Core: In CoreDFB_Dispatch_CreateSurface() remove CSCONF_PREALLOCATED and CSTF_PREALLOCATED for now. Same thing as in IDirectFB_Dispatch_CreateSurface when using Voodoo at public interface level. commit 2e00ae7f14c42cf76cd25451508324a8e3d4ec9c Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat May 7 03:08:44 2011 +0200 Core: Add CoreSurface Dispatch, other Calls, etc. CoreDFB - CreateSurface CoreGraphics - CreateState - WaitIdle CoreSurface - SetConfig - LockBuffer - UnlockBuffer - Flip - SetPalette Implement lots more graphics settings / operations, df_andi / df_dok work. Add dfb_core_get_palette(). Cleanup naming and files. commit 51ffd0255757e68bc0edfb942014b2a39acb5dfe Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat May 7 02:50:03 2011 +0200 X11: Lower X11 surface pool priority as it is currently not writable for slaves. commit 029a5d0d2238a44c0f419d563fb41fcbfaa90aaa Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat May 7 02:49:38 2011 +0200 SurfacePool: Set shared memory pool to writable for slaves. commit 10aa9608cefb07cfe6fd4ceee52972622eb70779 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat May 7 02:47:41 2011 +0200 configure: Set default Fusion messages size from 1024 to 16384. commit d91b840c2a3bf838e2775b3a47afc2b1db2a9554 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat May 7 02:46:56 2011 +0200 Fusion: Allow certain pools to be mapped writable by slaves, e.g. for pixel data. commit 92d8fef1eeb45ab3f80d0d6fb1bf606d74742b34 Merge: 5c33a08 d7c3da3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 6 21:39:55 2011 +0200 Merge branch 'secure-fusion' of git+ssh://git.directfb.org/git/directfb/core/DirectFB into secure-fusion commit 5c33a08f75350e104f2ad7e185eebea4207aba4e Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 6 21:37:21 2011 +0200 Core: Add CoreDFB Dispatch with ::CreateSurface, add State::FillRectangles, cleanup CoreLayerContext::CreateWindow commit ce088cc6633a79aba9a6c2fb60575191fe413802 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 6 21:36:20 2011 +0200 API: Add DFBSurfaceID. commit c3fd93a770ae300bbeab444820981212098ed040 Author: André Draszik <andre.draszik@st.com> Date: Fri May 6 14:18:20 2011 +0100 fix a few compiler warnings interfaces/IDirectFBWindows/idirectfbwindows_dispatcher.c:47:1: warning: function declaration isn't a prototype interfaces/IDirectFBWindows/idirectfbwindows_dispatcher.c:278:1: warning: function declaration isn't a prototype src/display/idirectfbsurface_window.c: In function 'IDirectFBSurface_Window_FlipStereo': src/display/idirectfbsurface_window.c:230:6: warning: format '%08x' expects type 'unsigned int', but argument 6 has type 'const struct DFBRegion *' src/display/idirectfbsurface_window.c:230:6: warning: too many arguments for format src/display/idirectfbsurface_window.c: In function 'IDirectFBSurface_Window_GetStereoEye': src/display/idirectfbsurface_window.c:405:6: warning: format '%p' expects type 'void *', but argument 5 has type 'unsigned int' commit d736089a088b35c73d858bc101ce6986d8d5c469 Author: André Draszik <andre.draszik@st.com> Date: Mon Apr 11 11:36:19 2011 +0100 build: libidirectfbfont_ft2 must be linked against libm as it uses sin() and cos() now STLinux bugzilla #11884 (cherry picked from commit b98744007d099cb653adc720016d522d22b23c1f) commit 67fc87a76b7c10c4cd662d3f6f4ac4fc0ff42235 Author: André Draszik <andre.draszik@st.com> Date: Fri May 6 12:57:29 2011 +0100 build: rename MEDIALIB to LIBM makes more sense (cherry picked from commit 89f437268ec8b931c63e3b7598eeef8e9b55f3aa) Conflicts: configure.in commit 58957d538a6fe4344e50521868021197f69ccd74 Author: André Draszik <andre.draszik@st.com> Date: Fri May 6 12:17:41 2011 +0100 build: further fix out of tree builds commit 5e12219307e7308357019ac9c7473f87c2f17728 Author: André Draszik <andre.draszik@st.com> Date: Fri May 6 12:08:40 2011 +0100 build: fix out of tree builds (cherry picked from commit 811a8c01a12994c9f8074c2d6a643759fc413e3d) (cherry picked from commit a7cabcd08d0a971ed4490f2dea9c832658fb5ed4) Conflicts: inputdrivers/dbox2remote/Makefile.am inputdrivers/dreamboxremote/Makefile.am inputdrivers/dynapro/Makefile.am inputdrivers/elo/Makefile.am inputdrivers/gunze/Makefile.am inputdrivers/h3600_ts/Makefile.am inputdrivers/joystick/Makefile.am inputdrivers/mutouch/Makefile.am inputdrivers/penmount/Makefile.am inputdrivers/ps2mouse/Makefile.am inputdrivers/serialmouse/Makefile.am inputdrivers/sonypi/Makefile.am inputdrivers/tslib/Makefile.am inputdrivers/ucb1x00_ts/Makefile.am inputdrivers/wm97xx_ts/Makefile.am inputdrivers/zytronic/Makefile.am commit 30dc4b3c64e1f8af5edbeee5b7f27e5d82fe4372 Author: André Draszik <andre.draszik@st.com> Date: Fri May 6 13:09:39 2011 +0100 configure.in: use AC_HELP_STRING in more places commit 1d8b21a837bfc90f507c928d597b0a1a8437dd76 Author: André Draszik <andre.draszik@st.com> Date: Mon Nov 29 18:04:49 2010 +0000 configure.in: fix linotype formatting by using AC_HELP_STRING (cherry picked from commit cf97dc3db41a138e03645e128bc74ac98a074ae2) commit 7feb0efd456ce4b93fd7472e7bd85a1fb0c57614 Author: André Draszik <andre.draszik@st.com> Date: Fri May 6 13:00:19 2011 +0100 configure.in: fix more PKG_CHECK_MODULES lines commit 59826528de5d38ecbfad222bb317e3c9453fd672 Author: André Draszik <andre.draszik@st.com> Date: Mon Nov 29 18:01:38 2010 +0000 configure.in: fix some PKG_CHECK_MODULES lines (cherry picked from commit 5073855e4756a3be09e505372229b406821094cd) commit 0fc520596fab64369d08a2317dce81f90f12f1e7 Author: André Draszik <andre.draszik@st.com> Date: Fri May 6 13:19:40 2011 +0100 whitespace & indentation (cherry picked from commit d6e7eada56fb3e6c9d12b1445c626a5ac9b7c4c8) Conflicts: interfaces/IDirectFBFont/idirectfbfont_lino.c src/core/gfxcard.c src/directfb.c commit 0883f1fbc33e85fa2305eb8a9ad4f286600a502c Author: Andreas Shimokawa <andi@directfb.org> Date: Fri May 6 12:19:54 2011 +0200 Revert "gfxcard: white space fixes" This reverts commit 6eec6ee6a097fa9e7f1fa0004f47ed34478dc5d7. (the "fix" actually broke it, sorry) commit d7c3da3e0bf1c1789b3ec7f2cd064eb747477e9a Author: Andreas Shimokawa <andi@directfb.org> Date: Fri May 6 12:19:54 2011 +0200 Revert "gfxcard: white space fixes" This reverts commit 6eec6ee6a097fa9e7f1fa0004f47ed34478dc5d7. (the "fix" actually broke it, sorry) commit 68782f5c0761008caa60cfbaaf579fa2f62e7ba5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 6 01:55:12 2011 +0200 dfbtest_fillrect: Print timing information. commit 82fa643e1d01c4d904245f0cbb55ea7afc6c8049 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 6 01:53:36 2011 +0200 Core: First working read-only slave dfbtest_fillrect. Needs options force-windowed and no-cursor-automation. Graphics, GraphicsState, CoreWindow interfaces introduced. commit 1f0183e864fe2aa49da1ad9044fe4f83c2f7ed19 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 6 01:34:08 2011 +0200 IDirectFBSurface: Fix warning in IDirectFBSurface_Layer_GetStereoEye(). commit c975c4135e98373b0b509e1d81378f7b70075e09 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 6 01:32:40 2011 +0200 Core: Revive cursor enable code in CoreLayerContext_Dispatch_CreateWindow(). commit 014476b23e98b1b5034d6097a1f434675ee5c36c Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 6 01:30:21 2011 +0200 Fusion: Add fusion_call_init_from() to initialize a FusionCall structure in local slave memory from call id returned by call to master. commit c17978fd1c2d3618290bb8e8f63ee2be48a9ea7a Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 5 23:39:21 2011 +0200 Fusion: Remove bogus error message at the end of the Fusion Deferred thread. commit a9c5eed514e68c504db128e907260b01f48cdc72 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 5 21:01:15 2011 +0200 Core: Add FusionCalls for CoreLayerContext and CoreWindowStack. Initial function is CoreLayerContext_CreateWindow used to create a window from slave. The call returns the id of the new window object which is looked up and refed in the slave. At the moment this is leaking a ref as the master created the object, but we're going to remove the initial ref up in the object creation and let the slave do the first ref up, otherwise call object destructor after a timeout in case the slave does not pick up the new object. commit e0ceee2c5b1b2ac171a784bd8d9a603510256052 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 5 21:00:05 2011 +0200 Core: Add dfb_core_get_window() using FusionObjectPool function. commit 88afb4a3ed9ead0e38864b1a2f1fb9f1815daf46 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 5 20:58:55 2011 +0200 Fusion: Mount shared memory pools read only in slaves. Salves segfault with this at the moment, but we're working on adding FusionCalls for everything that would need writing to shared memory. commit 74819b4bad224b70d9d74a490f6dfc50671362b7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 5 20:58:28 2011 +0200 Fusion: Change FusionObjectID to u32. commit b45fdf86f962c93c0f32087408408d312c8631bf Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 5 15:29:31 2011 +0200 Voodoo: Inline calc_blocks() in C wrapper. commit 5f94e452d3f4a14b645332299c1e2d6033687e1a Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 5 15:28:24 2011 +0200 Voodoo: Add voodoo_link_init_local() for Unix Domain sockets. commit 5f32432462a89235c582c98a2abc5f738f447ef5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 5 15:26:31 2011 +0200 tests: Fix Unix Domain socket Voodoo Benchmark. commit 9cc68e88ae81e3421f2f93947f8b4e1508d8b639 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 4 15:56:09 2011 +0200 gfxcard: fix preclipping of fonts in some cases (broken since 1.4.4) commit 0b21c4d087963a5d0868bf3487f4e8d21de1e055 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 3 22:11:26 2011 +0200 IDirectFB: Put singleton back, but disable it from Dispatcher. This is for applications using DirectFBCreate() again to retrieve the handle that was already created, e.g. WebKitDFB. commit c689c947464b6aec4f0228d24a56a515a13562ff Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 3 21:52:46 2011 +0200 Proxy: In Dispatch_Read() use RLE only if packet compression is disabled. commit 1cf8456100e199d60d67bc5cecb7f475dd05b7a8 Merge: f378338 b228506 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 3 21:52:32 2011 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit f37833840148f172b71ae183217bff2d6e0b9c33 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 3 21:51:30 2011 +0200 Voodoo: Separate C wrapper file, abstract VoodooContext instead of VoodooClient/Server, cleanups. commit b228506df14875ec8acc300f0d23f20051b1db44 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue May 3 11:45:38 2011 +0200 includes: install directfb_windows.h commit e4492e27bf79ed4dda2e01830e5e3ba7a2957db7 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue May 3 11:05:43 2011 +0200 debian: new package commit ea058af1bfe3a2309d915a84d75e56a360a97b77 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 2 16:15:54 2011 +0200 IDirectFB: Use resoruce id from surface description for primary window. commit 0a220a6f59e831511ab45c0aaac100566d4c2c3c Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 2 16:15:03 2011 +0200 Proxy: Add resource-id to be used for surfaces if not specified by application (client config). commit e3e53e2fb7a97c1d4f189445692d34ff65a5aad1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun May 1 14:27:55 2011 +0200 Voodoo: Remove garbage files, add initial TODO list. commit 8bffece409102bb98e0de94bba0992cae05b5cfa Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun May 1 14:11:42 2011 +0200 IDirectFB: Get rid off idirectfb_singleton, instance per client, client mode/pixelformat/window config. This also fixes the primary window ref recently broken. The original fix was wrong, the real issue was that IDirectFB did not get destructed as it was shared with other clients and could not unref the primary window. The run time options 'mode', 'pixelformat' and 'force-windowed' are handled on client side as well now. commit b16caff72cb8d8986b745d37c2d7380c5e69a027 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun May 1 13:07:22 2011 +0200 Voodoo: Release remote instances before local to fix event buffer requestor trying to detach from input core. commit 286efcd1580b01767bca804eae74ed8a056f4bcf Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun May 1 11:41:56 2011 +0200 Voodoo: Wait in TLS destructor for VoodooPackets to be sent or discarded. This could be improved by moving the packets to a global queue and freeing the thread resources earlier. commit f484e4853669ac1cc1636ddff705e965c880e6c0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun May 1 10:18:41 2011 +0200 Voodoo: Print instances leaking after destroying manager. So far, I haven't seen any leak since recent fixes have been done. commit e28c597652824f523d5655e720d383437e67b338 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun May 1 05:35:54 2011 +0200 Proxy: Fix FPS throttling. commit 50ffdd72373463cd35f30c1cc35ac3b9c801a4bf Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Apr 30 19:27:36 2011 +0200 IDirectFBEventBuffer: In Destruct, first detach from all windows, then unref all, to avoid a dead lock. The dead lock happened when two windows were attached to the event buffer, the first one was detached and unrefed, but unrefing gave focus to the other window which was still attached and dead locked when trying to queue an event in the event buffer just being destructed. commit c935208055d88d79f99bb5ca52f94d0546762ba3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Apr 30 19:26:25 2011 +0200 Proxy: Fix ref counting of event buffer interface instance. This fixes windows staying on screen when running single app / multi thread dfbproxy and killing a client. commit 3ef20377c58995ef4d3228d181001b1cc37e1d99 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Apr 30 13:56:15 2011 +0200 Proxy: Major improvements, fixes for ref counting, cleanup... IDirectFBDisplayLayer::SetBackgroundMode/Image... Send Release() requests from all requestor interfaces' Destruct() calls. Implement all dispatcher interfaces' Release() calls via instance unregister at manager. Release real interface in dispatcher interfaces' Release(). Implement IDirectFBDisplayLayer::SetBackgroundMode/Image(). commit f0d236aa6220859fb2004f54372104d948c33822 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Apr 30 13:55:14 2011 +0200 Voodoo: Add missing files for VodoooInstance. commit 4e1ea4cd8aa97c7b989f6c1e90a7138c75c4ff88 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Apr 30 13:47:21 2011 +0200 tests: Follow Voodoo API changes. commit 162912243084daac9aca487bfced9d1c39378169 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Apr 30 13:47:07 2011 +0200 Voodoo: Major improvements, fixes for disconnect, resource cleanup, ref counting... With these changes you can run a single process dfbproxy and connect with multiple clients, spawning multiple threads in the server. TODO: There seems to be one remaining ref counting issue with event buffers, killing dfbtest_window client is fine, but killing df_window client leaves windows there, as the event buffers are not ref counted properly, yet. Applications using a primary surface, even windowed, are working fine and get cleaned up properly. -- Introduce abstract VoodooInstance class which the C Wrapper derives from to handle the interface case, including dependendy / shutdown order handling. Add VoodooConnection::Start/Stop(). Add missing call to direct_tls_unregister(). Add missing destructor for TLS data. TODO: Packets which are not fully sent at the time of thread exiting are currently leaked. Make connection code wait on Stop() to send all packets remaining in output queue, unless connection has been closed already. -- Readd instance iterator in manager to release all remaining instances when the connection is lost. First Stop() connection, then delete dispatcher, then delete connection. Call AddRef/Release() on instances when registering/unregistering them. -- Add missing close() calls for wake up fds in link code. Other fixes, code cleanups. commit 709aba345beb5b9a2c05de1ae3b315afa13a4870 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Apr 30 01:22:42 2011 +0200 IDirectFB: Unref implicitly created window when creating primary surface non-fullscreen. The window is refed by the surface interface, so we must release our reference for the window to be removed when the surface is released. commit f34ae1fa810d3956c003b932ea70d4210a7c8fc6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 29 20:18:02 2011 +0200 dfbtest_init: Add very simple DirectFBCreate/Release test. commit 631325a7d41829f45088203a531773172d520975 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 29 20:16:38 2011 +0200 direct: Put D_MAGIC_ASSERT() into DIRECT_DEALLOCATE_INTERFACE. commit e921e3dc9b240dc56c1069cd4acf10f3537e4f11 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 29 13:43:53 2011 +0200 configure: Use O2 by default. commit a330f0840ba4232f76ebdbbab518167997610cbc Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 29 02:56:23 2011 +0200 Proxy: Improved flipping control using time stamps and frame rate control. The values are hardcoded at the moment, but there might be some auto or profile based approach. commit 6081810b2fefc7c4e7d06fccaffe2128c4ce6810 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 29 02:28:08 2011 +0200 Voodoo: Set number of output buffers to 2. commit 49b43c8077055b011bcd8c3b72f8a39e3cb8ead6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 29 02:27:42 2011 +0200 Voodoo: Remove obsolete ProcessMessages from Connection. commit acbab2a1bd0aebd4e0a435b6b2d6b2012b7d2c7c Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 29 02:23:21 2011 +0200 fusion: Fix fusion_reactor_attach() for single app (channel is 0, not -1) commit 8c4a7055e6c91c4faa2a11b60fcd7f2ad770293b Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 29 02:21:11 2011 +0200 direct: Fix a few warnings. commit 9277ef4ef8c2ece3aeb147389e846a850ee113fe Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Apr 25 19:05:50 2011 +0200 wm/default: dont call dfb_wm_dispatch_WindowFocus() if we have to window to switch to. commit b6be4ccf83bf5155f1d425e4a4045348fff7c1c8 Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Apr 25 15:26:09 2011 +0200 libdirect: fix small memory leak in DirectGetInterface() commit eb3a8d64c8cb49a259609786fd8410c19c1d2d70 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 24 22:52:27 2011 +0200 voodooplay: Print vendor and model of each received info. commit deb3d53387653208fb0e6a1745cc7d9fbf7a3961 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 24 21:57:41 2011 +0200 Proxy: Add dispatcher code for IDirectFBSurface::Read() which seemed lost. commit 511d3c6a47ec645b3acb11c6838a74f182bd4d4a Merge: 9b54f7c c979dd2 Author: Andreas Shimokawa <andi@directfb.org> Date: Sun Apr 24 21:46:22 2011 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 9b54f7c0bb1f6e65fc5e5dc98ed2e29a9889b2dd Author: Andreas Shimokawa <andi@directfb.org> Date: Sun Apr 24 21:45:27 2011 +0200 Voodoo: discard unsupported DSDESC_PALETTE and DSDESC_PREALLOCATED flags commit c979dd2be6d3b18a3ba0b3064900175d2444189c Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 24 21:15:33 2011 +0200 IDirectFBWindows extension introducing DFBWindowsWatcher register, also proxy code DFBWindowsWatcher is a function pointer table that can be filled by a client application to receive all information about the window stack, windows, configs, states, focus changes etc... commit aeefce693a98f6062e23018c310c08770b7c50ac Merge: d14810c 0db2d9a Author: Andreas Shimokawa <andi@directfb.org> Date: Sun Apr 24 20:01:03 2011 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 0db2d9a0802de85ec24d0a204844858fcb0b3265 Merge: 38daa53 d4133a6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 24 20:00:16 2011 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit d14810cb9b7e66f88ebf4b620f23f8ef5b2adfff Author: Andreas Shimokawa <andi@directfb.org> Date: Sun Apr 24 20:00:09 2011 +0200 Voodoo: Dispatcher and Requestor for IDirectFBSurface::FillTrapezoids() commit 38daa530ad453aef8258aa55b2434146e76fb7d8 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Apr 22 12:38:01 2011 +0200 debian: new package version commit cd30a9f5edd491174087e2fd39ba5425403ba486 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 24 19:55:11 2011 +0200 Fusion: Implement fusion_reactor_attach/dispatch_channel() for single app mode. commit d4133a6d7d14c206806da8207a82ced1186bf5d3 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Apr 22 12:38:01 2011 +0200 debian: new package version commit 5448a3f60fbcbe5b6c9e9f05210d9c641815a640 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 22 00:10:28 2011 +0200 Voodoo: Fix partial writes in packet mode commit 853975bcf85cf1d116896f8b7027ae8510b5c467 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 21 06:44:13 2011 +0200 Voodoo: Add 'link-packet' option to force packet mode link. commit 71457e805f9b3d5983c58ca18f104828dd168697 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 21 06:36:28 2011 +0200 Voodoo: Set compression config to false upon raw connection This is a temporary solution, instead the connection should be queried for compression dynamically to allow different connections with and without compression. commit c488541d0c07acd7839ecf2aa61da815637cc2ac Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 21 06:14:20 2011 +0200 VoodooDispatcher: Initialize packet list commit 364141665466899137f4fa20d2d7d3095096517b Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 21 06:06:34 2011 +0200 Voodoo: Remove hotfix due to introduction of VoodooDispatcher. commit 878ffe89c96d5f85a56e7a9049a090a03048aa8e Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 21 05:59:45 2011 +0200 Voodoo: Introduce VoodooDispatcher with thread based implementation Voodoo IO thread no longer dispatches messages, fixes possible dead locks with sending requests while dispatching, also allows compression/decompression to run in parallel. At the moment the data is copied once, which will be fixed. commit 06f842ab0df8554fd5d7d2a62970d66a4d2bc5b4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Apr 20 21:41:34 2011 +0200 Proxy: Fix IDirectFBSurface_Requestor::GetSubSurface() to finish the request before constructing IDirectFBSurface Requestor commit cb0c5d92cfc14ce382347569273c6e640d3bef4a Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Apr 20 21:40:33 2011 +0200 Voodoo: partial writes and some adjustments commit c255425211feb99b091a5688b7d527bdb23fc722 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Apr 20 19:00:08 2011 +0200 Proxy: Implement asynchronous flipping control, e.g. to avoid input lags For each Flip an asynchronous FlipNotify request is sent from dispatcher to requestor instance. For older servers a workaround using a hidden dummy window and an event buffer is implemented, but at the moment it creates a window/buffer per surface. With the asynchronous flipping control, the client waits upon Flip when there are already two Flips on their way... commit 022ff92b32e90b0eaaef1caee9593966077a0dff Merge: 37317fd 7605c7d Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Apr 19 23:42:29 2011 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 37317fdeeac929e8f82ea68709450b135545ce72 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 17 14:35:46 2011 +0200 Voodoo: Major cleanup, optimizations, bug fixes... commit 7605c7dfc673006d2cfeb1c2a2e7f2dc7708c886 Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Apr 18 21:24:53 2011 +0200 debian: package missing voodoo requestor and dispatcher interfaces and tools commit 66b75368e387278efce5cdb036f6e4f4db3b8e59 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Apr 13 19:13:01 2011 +0200 libfusion: in fusion_enter() initialize conditional and mutex before starting the thread depending on them. commit 41bd4f4f195d5332a2add6593601e0ccd26dbb47 Merge: 8105026 8a5a32b Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Apr 13 15:48:16 2011 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 81050262f9d1c6862c90c595dedae9783a247ee6 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Apr 13 15:48:00 2011 +0200 debian: new upstream version commit 8a5a32bfed5c23a1d064e98ad9ca23c2c909b829 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Apr 12 22:45:21 2011 +0200 Genefx: Fix horizontal clipping of left side of lines in TextureTriangle. commit 77ebc017e64eeb9b73fb2aaba1d9a1e59da95e06 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Apr 11 22:12:36 2011 +0200 Genefx: Replace fixed point for xl/xr by DDAs to fix overdraw. The mesh of texture triangles can be blended without artifacts now. commit a0882fa240dd731a57a01432b294618913ce75f7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Apr 11 18:11:35 2011 +0200 Genefx: Add Sop_a8_TEX_to_Dacc to support DrawString with matrix. commit fa827e911fd57cac87e39b777c594a223b459804 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Apr 11 18:02:48 2011 +0200 Genefx: Finish clipping implementation by adding horizontal pre-clipping as well. commit 5f99593956b90868171d6026beb85342c5429e8e Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Apr 11 17:51:58 2011 +0200 Genefx: Implement clipping in TextureTriangle, add TileBlit with matrix, more accuracy, fixes commit 2675140584b19fc3252f159ddbf5019cfba39a03 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Apr 11 12:26:12 2011 +0200 Genefx: Implement colorkeyed texture mapping, adding Sop_PFI_TEX_Kto_Dacc. commit dafdbcfd8bedbbdfe919a1407113bddcdd4fb2d5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Apr 11 01:07:37 2011 +0200 Genefx: Implement Sop_RGB16_TEX_to_Dacc correctly. With this blit-convert test of df_dok also works. commit 22191317702c7d24454958c8686dfcf5778ff038 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Apr 11 00:57:09 2011 +0200 Graphics: Add software affine transform for StretchBlit MX Stretch Blit 3.000 secs ( 908.757 MPixel/sec) [100.0%] commit 67bbc85ad69a694441111132850a60f5933de7ed Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Apr 11 00:07:10 2011 +0200 Graphics: Use Genefx_TextureTrianglesAffine() for BatchBlit() with matrix. DrawString() with matrix is working with ARGB font format now. commit bb17e765ba8631cd700a2a9fdda55ad8c8b7aad0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Apr 11 00:00:39 2011 +0200 Genefx: Cleanup naming, have affine/non-affine function, call non-float affine code directly. commit 34a0337ba440a0a86a13e447af4a4d4a3d8dd412 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 10 22:49:33 2011 +0200 Graphics: Implement Blit() with matrix via gTextureTriangle() for now. commit 2e8ae946c94b0972741e27c98a52ae9c221563b9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 10 22:49:11 2011 +0200 Genefx: Protect against zero height in TextureTriangle. commit c9ba26227ab2643c80468bf4b858426de50a3611 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 10 21:09:45 2011 +0200 Genefx: Implement TextureTriangles() and split code into a few files. TextureTriangles() is supported via affine texture mapping routine only. Genefx_TextureTriangle() is meant for affine transformation of Blit/StretchBlit originally. Next to gTextureTriangles() there are two new operations, one for texture mapping a scanline into accumulator (Sop_PFI_TEX_to_Dacc) and one for direct mapping into output buffer with same format and no flags (Bop_PFI_TEX_to_Aop_PFI). These operations simply interpolate s and t along the scanline. For perspective correct TextureTriangles() we need to add Sop_PFI_TEXz_to_Dacc or similar. commit 13bf5be61d7e032cbd44cab759fd6c3b27d91535 Merge: da8e207 d6e5317 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Apr 9 15:27:17 2011 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit da8e2075138e53ccb03d5d9f4659f206c14647e7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Apr 9 15:26:52 2011 +0200 arena: Allow NULL pointer for initialize/join. commit d6e53177440700ff95b9b7c280337787d0fe29f5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 8 22:58:30 2011 +0200 fusion: Fix single app build. commit f36ec593f862bf46052638631f62f6a305e862b8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 7 11:30:37 2011 +0100 Water: Fix outline color for rectangles which are also filled, use dfb_gfxcard_fillquadrangles() for quadrangles. commit 4c75bb8bbff8f9c1a3300bb3fa6331315a26f2fb Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 7 11:27:02 2011 +0100 gendoc: Put automatic type links for Water types as well. commit 3177993bfc7e365b67ac645ca64542393ce94aa2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 7 11:25:31 2011 +0100 fusion: Defer calls from kernel (destructors) to a separate thread. This avoids lots of dead lock scenarios, e.g. when the destructor waits on something that is blocked waiting on the dispatch thread in turn. commit 3500ce17d050916319853d8b543a9ae88478288f Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 7 11:24:46 2011 +0100 dfbfx: Add DSBF_SRCALPHASAT implementation, clamp sum of blending. commit 32e27615d462204677d4d03d15fb237082d6fd43 Author: Andreas Shimokawa <andi@directfb.org> Date: Sat Apr 2 18:04:00 2011 +0200 MESA: more deinitialization, allows to switch back to X's vt. It is now possible to run DirectFB applications from an X terminal without having X crash when quitting the application. commit 0500c0a5a0338e5489b9f73745b98a08644cad3c Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Apr 2 05:25:38 2011 +0200 docs: Include Water API commit 10b94d67698e5c37359d5967d212a2782b768637 Merge: 6c4b1c2 0f0d240 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Apr 2 05:04:37 2011 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 6c4b1c2f449d952a39dd8c4c3bcd553e7999f661 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Apr 2 05:04:21 2011 +0200 gendoc: new color scheme commit 0f0d240c019e57d62223b8b162f222eed9ac2b4e Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Apr 2 04:38:10 2011 +0200 VDPAU: Add missing 'const' to ptr in DFBX11CallOutputSurfacePutBitsNative. commit 8a851360f6c36f305ddd88316e49dfb3f1dc712b Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Apr 2 03:42:31 2011 +0200 configure: Disable drivers currently not compiling. commit a6c7fcb786cc68074772538daaed6364e10c43ae Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Apr 2 03:36:38 2011 +0200 Water: Initial checkin of Water API and simple test implementation. df_matrix_water works, but dfbtest_water still has some errors. commit a7915e23ec97877f025c58176a18a5f869a2cb3e Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Apr 2 03:04:07 2011 +0200 gfxcard: Add dfb_gfxcard_fillquadrangles() with FillQuadrangles() driver function. commit e5d4242140ab42d65c578cf5b3271b006a076873 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Apr 2 03:03:24 2011 +0200 API: Add DFXL_FILLQUADRANGLE. commit 8407d1a0feb0ea507cb90e68511dab9d70580ab5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Apr 2 02:19:32 2011 +0200 layers: Fix warnings in region_buffer_unlock() due to unused local variables. commit 55a6101a447100afe005a2259f9540babf98222a Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Apr 2 02:18:29 2011 +0200 util: Add lots of utility functions, make some inline. commit ef16df036a1fbdaf03f2753536cd07aa708fe746 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Apr 2 02:06:32 2011 +0200 util: Add lots of macros for geometry, types, etc. commit 8c45ae1627961193177a2cc90825f7b5755c69f7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Apr 2 02:05:15 2011 +0200 API: Add DFBBox (x1, y1, x2, y2), a rectangle including the top left but not the bottom right endpoint. commit f2a108cf61b07b751682b25cbf88be524091f670 Merge: f850556 0d6462d Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 1 23:06:36 2011 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit f85055631a17d8c580a7277465eaeabe0f9710ee Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 1 23:06:17 2011 +0200 Mesa: Fix parameter list to IDirectFBGL2_Construct. commit 0d6462d7ed683fb260c0b032be4e85ced8818f14 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Apr 1 14:32:26 2011 +0200 MESA: close fd before switching vt back commit 565312eecb6f41765fb050c4b86ec2c9a1415095 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Mar 31 10:24:35 2011 +0200 MESA: added simple VT code The code is basically a copy of the fbdev vt code minus the fb specific stuff. This should be merged when mesa leaves the experimental status. Starting a DirectFB application from X will still make it crash after we switch back to X's vt. I guess we need to add some cleanup code before doing he switch back to the original vt. Still this is of value for debugging, because when a DirectFB application gets started from a non-x vt, debugging output will be visible instantly after the application quits. It was annoying to switch so some vt and then searching for the original vt. commit 0945541acc71fe45c4be28c89574a191b0eea4f9 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Mar 30 17:30:58 2011 +0200 debian: new package version commit bc219189a459de6eb7f087f1cf9efe03d5ea1e01 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 30 15:43:20 2011 +0200 Win32: Update project and generated header. commit b50e35e8bf743849a5a5767b1fbd7ec36fc97147 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 30 13:04:19 2011 +0200 Voodoo: Improve raw connection code, big speedup. commit 8589c802912a9f4b315cd80bc1634934142dbd34 Merge: 5e0e075 732eb2d Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 30 01:59:18 2011 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 5e0e075b351709b8ec8fd6ea8970e844ec5afee8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 30 03:54:01 2011 +0200 Win32: Fix voodoo link disconnect detection. commit 732eb2d8d8580b4f6a37d22cb92ed1274254411c Merge: 93478bf b97c02d Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Mar 30 00:15:27 2011 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit b97c02de696ccf534630843b5bc14cb57d2067a2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 30 00:12:08 2011 +0200 voodoo: Fix crash in manager on disconnect. commit 7483384ee669bb5b2797d2f02c7d9ef48969f786 Merge: 865bbd8 5ac49c5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 30 00:11:45 2011 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 865bbd8194e8ce475f3b1dfadf4a3ba11f98f914 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 30 00:10:49 2011 +0200 voodoo: Fix server-fork option. commit 93478bf3db9437f0db44f9d279df53bef3729447 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Mar 30 00:09:59 2011 +0200 mesa: added lock support for CPU access to surfaces (only works with i915, disabled for now) TODO: - implement proper unlock - probe for i915 and enable CPU access if found - look into ways to access surface data on ati and nvidia (maybe impossible) commit 70aad907e5a713e90732e0bfa209fd64def81b5f Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Mar 29 16:48:24 2011 +0200 buildfix: use builddir instead of srcdir commit ef33f1883fda6d8758ea9264598ff21a8224acae Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Mar 29 16:47:58 2011 +0200 debian: package fusiondale commit a4c2840ddd784054df7e1272cc3d42316c32f930 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Mar 29 16:02:35 2011 +0200 debian: typo :( commit 787b03dca07ee10c4244993a77e242735b593818 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Mar 29 15:50:07 2011 +0200 debian: added Provides field to sawman wm commit 1122b7864cae80529fdcd92f14a0a038ddf4444b Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Mar 29 15:46:11 2011 +0200 debian: package sawman commit 77cb656fc08308b76640da7c27c084d7f6dfc360 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Mar 29 14:51:05 2011 +0200 debian: package divine commit 5ac49c55d89927c7de63c4babb231890414f5f2c Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Mar 29 13:10:53 2011 +0200 debian: added vnc system package commit 62d6d5df0d0cba6fa8d73aa4f44a30db19503d27 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Mar 29 00:29:02 2011 +0200 linux-input: allow linux-input for systems other than fbdev without disabling fbdev at compile-time Old behaviour: The linux-input system module did only work for non-fbdev systems when fbdev was disabled at compile-time, then it was always used by all systems. New behaviour: The linux-input system module will be used by fbdev and mesa systems by default. To use it with other systems, the option [no-]linux-input-force can be specified. commit bb62be555ca66ecc4766516c28ed4c7b13e1bad2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Mar 28 17:10:10 2011 +0200 VNC: Almost reimplement VNC system module Improvements - Input driver is part of system module now, special attach code no longer needed - Fixed several bugs in input event processing - Initialize rfbScreen once for the session, 32bit - Default screen size is 1280x720 if not set via mode option - Use preallocated shared memory surface for screen - Render layer onto preallocated ABGR screen surface - Layer positioning and scaling is supported - Only stream modified rects from clients to master (calling rfbMarkRectAsModified there) using FusionCall2 - Use automatic port allocation - Detect failure in setting up listen socket - Use rfbNewFramebuffer call commit 87f377a19f1355ee4485acb2ef8e8304ae6508ad Merge: db56a95 dcc4d10 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Mar 28 12:58:40 2011 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit db56a959f819a3362988ad466ad2502e26d21378 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Mar 28 12:58:05 2011 +0200 config: Default background color is fully transparent black now. commit dcc4d10951b4cedfe908c98378f9e7c104401079 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 25 23:46:54 2011 +0100 VDPAU: Add layer positioning and scaling support using screen size surface and fill/blit. commit d7e4ad044b9e2834842e5f65e74945c8808909f8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 25 23:39:52 2011 +0100 cursor: Fix HW cursor bugs. commit 86009a506db4b74fbe8a3c31b37fcfe11fd1a88e Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 25 23:34:23 2011 +0100 layers: Don't reallocate buffers if not needed. commit 1cb1be7e3ee036f08ff242cff33552a5b5ddb7ae Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 25 17:12:43 2011 +0100 hwcursor: Switch between cursor and window context when using hardware cursor. commit 77dfac676c5402e87a00e290d7fc597bf1c62e0a Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 25 16:15:14 2011 +0100 debug: Add more info when stacking class is invalid. commit 0e6a57aa8b029b366052868134310c86b87ced76 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Mar 24 14:45:39 2011 +0100 debian: add x11vdpau internal headers to dev pacakge commit f0f20950f0582766c66dfab7218aa5704b61679f Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Mar 24 12:53:21 2011 +0100 debian: typo :( commit 176c4070e9865a8777c7e0e06b37187ca0480d9b Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Mar 24 12:29:00 2011 +0100 debian: fix typo, new upstream version commit 13fea54960b6e1e12536a58ad656345dcea7d045 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Mar 24 12:08:16 2011 +0100 debian: disable unique, rename -dev and -bin pacakges (prepare for 1.4 packaging) commit bb025233faca3161f1252e5ea0ad23062a287940 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 23 17:26:30 2011 +0100 voodoo: Handle partial writes in link code. commit 14c32ae495acee02217fb85140adbff53cecc3b1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 23 17:18:40 2011 +0100 voodoo: Fix cases where less than 4 bytes are left in input buffer. commit 9abc73660246cc6414ab303710af4918314432d9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 23 17:17:43 2011 +0100 voodoo: Fix false assertion in connection packet code. commit 189940fecd0bd2c8308700130e922ea7271be149 Merge: df48dcc ccb34e0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 23 17:16:35 2011 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit df48dcca208514980358a09342df57347f5acc1c Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 23 17:16:01 2011 +0100 gfx: Set 'to' in copy_state in dfb_gfx_stretch_to(). commit ccb34e03dc4fcc2c2b960b09a188b03a98bfa73d Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Mar 23 00:24:07 2011 +0100 debian: change package version scheme to YYYYMMDD, added Replace and Conflicts fields for old modules, disable mesa system for now commit 07d385724fa6154a09a1ac11708a5e94a83cf5f6 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Mar 22 23:04:38 2011 +0100 debian: fix a lot of typos and rename module packages commit 07e084148b042d10323d69207b4a42f1a1ae5eb2 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Mar 22 20:16:36 2011 +0100 debian: add voodoo.pc to libdirectfb-dev package commit ed91ed18fb2812a4a2e619d0ab080de5b30412f3 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Mar 22 18:42:52 2011 +0100 debian: do not depend on nonexistant libdirectfb-extra commit 500fab148388f8d639cb060916523c838cb19555 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Mar 22 18:32:36 2011 +0100 debian packaging: first try of 1.5 packages commit 379712202ba47d20d23a1c5c8c3bbecf69c60dd7 Author: Andreas Shimokawa <andi@directfb.org> Date: Tue Mar 22 11:44:54 2011 +0100 Mesa: enumerate connectors from last to first This removes the hack that omitted the first connector for our strange test system. Plus it is possible to use the internal and external (preferred when connected) monitor on notebooks commit db37af69bce6b09645b3e789e6580da43578a6f7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 20 22:38:56 2011 +0100 dfbtest_gl3: No longer need to clear surface, use more whity colors for more colors from textures. commit 19cdb3e298ac0617a4b573167fbcdcdff03df476 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 20 22:38:25 2011 +0100 Mesa: Implement Read() and save/restore contexts and objects. commit 4540299fd70531877da22a71eabd38fd9cdcb220 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 20 22:10:36 2011 +0100 Mesa: Switch context when allocating buffers. commit 8d2982c9f7f1424071ebe25cc0e148b8da7b9423 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 20 21:24:51 2011 +0100 dfbtest_gl3: Add render to texture example using IDirectFBSurface as target/texture. This example shows gears textured with gears :) commit d1c71f643c8f2e5247502b05a7612724b556bb88 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 20 21:23:49 2011 +0100 Mesa: When locking for the graphics acceleration, make context current. It could be that IDirectFBGL2Context has been bound meanwhile. commit 6ecec291f8abf41268b0a7b6923813bc0687394f Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 20 20:06:48 2011 +0100 Mesa: Add IDirectFBGL2 and IDirectFBGL2Context implementation. commit ef131c98923680dddefe5280d5accf2a21bd1a04 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 20 20:05:59 2011 +0100 dfbtest_gl: Add two test programs for IDirectFBGL2. commit 0bb20449367fa83bb01d8b43f0151bacf7c85ea9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 20 20:01:13 2011 +0100 IDirectFB: Remove restriction on interface name for GetInterface(). commit eeb2c185c89d98dc70509959b08250555fc0dac9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 20 20:00:20 2011 +0100 DirectFBGL2: Add new interfaces for better OpenGL integration. Still work in progress... commit 0e5c92d77252597d1d72bac763c0dd5a3ea02e38 Merge: 7f2d953 10ad787 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 20 16:36:38 2011 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 10ad787fc520b8aa5c7bfa11d9c7ed6b3e4414d7 Author: Andreas Hundt <andi@directfb.org> Date: Sun Mar 20 15:38:17 2011 +0100 gles2: fix off-by-one error in DrawRectangle() commit 8bb60eaf64912c4cfac3f1d3f27211edc5e20460 Author: Andreas Hundt <andi@directfb.org> Date: Sun Mar 20 15:10:24 2011 +0100 gles2: fix clipping commit 110748f4735d04885ce2992e995cf24aaed95883 Author: Andreas Hundt <andi@directfb.org> Date: Sun Mar 20 15:01:23 2011 +0100 systems/mesa: fix double buffering commit f93899e987f2c08f3628677f19b528fbece4d665 Author: Andreas Hundt <andi@directfb.org> Date: Sun Mar 20 15:00:06 2011 +0100 gles2: always use colorkeying shader commit 9d3df5de77d5a97558631484af4007678e19b5dd Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 20 02:06:53 2011 +0100 GLES2: Enable GLES 2.0 acceleration with PVR2D/EGL PVR2D System - Initialize EGL with Native Pixmap Surface for Framebuffer - Create a Native Pixmap backed EGLImage and Texture Object in PVR2D Surface Pool GLES2 Driver - Add GLES2_CFLAGS/LIBS set to MESA/PVR2D_CFLAGS/LIBS, can only build for either Mesa or PVR2D at the moment - Use FBO in driver only with Mesa - Add precision specifiers in shader code (only for PVR2D) - Turn coordinates upside/down for PVR2D - Color keying disabled for PVR2D at the moment (does not build) At the moment eglMakeCurrent is only called once during PVR2D system init, only rendering to the frontbuffer. TODO: Check possibility of creating Renderbuffer Object from PVR2D EGLImage just as in Mesa. commit 34c20f2c83d81a46fde2f710158358591e0ad5f9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 19 23:04:30 2011 +0100 PVR2D: Add alpha blended Blit support Slightly more promising: Blit from 32bit (blend) 3.485 secs (* 13.163 MPixel/sec) [ 87.9%] Software: Blit from 32bit (blend) 3.446 secs ( 3.803 MPixel/sec) [ 99.7%] commit 4f2cb8031a6aa3463865b96032319e275deb1bd1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 19 22:54:09 2011 +0100 PVR2D: Add graphics driver using PVR2DBlt API Only simple Blit is implemented. To continue is not encouraged by the result: Blit 3.187 secs (* 30.845 MPixel/sec) [ 95.5%] Compared to software Blit 3.004 secs ( 202.891 MPixel/sec) [ 99.0%] commit 8a9dae7042485421717b85c010a64cc4d334bf49 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 19 22:04:04 2011 +0100 PVR2D: Preliminary PVR2D system module, using PVR2DMemAlloc. Layer is currently just allocated by using the mem info from PVR2DGetFramebuffer. Only frontonly working at the moment, no mode changes etc. The goal is to create EGL Images for the buffers and support the GLES2 based graphics driver. commit 439c19ca4985a953c3a2f13dae01dae1157a59a1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 19 22:02:34 2011 +0100 screens: Fix const'ness of function pointer table pointer argument to dfb_screens_register(). commit 57b2bf36c8db4b56f2635ea57d02b7b42b4e36c1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 19 21:57:46 2011 +0100 tests/tools: Link programs against libvoodoo if libdirectfb is linked against it as well (build with Voodoo) commit dd34b339458f69a4ee726662fba033d990e54ca9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 19 21:57:06 2011 +0100 core: Add CORE_PVR2D to system type enum. commit 68f6201ddcc94350298bc5c22628e00ddd9c10b5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 18 14:21:07 2011 +0100 messenger: Avoid dead locks by using only messenger lock, no more lock per port. commit 9d562ba415df7b363b5bc1e9583d388957a7ea63 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 18 14:18:55 2011 +0100 fusion-call: Add fusion_call_execute2() for single app, just calling fusion_call_execute(). commit 0d546c9ef0ce63d00f8c01b0550ff0ec6ee56d7f Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 18 13:59:05 2011 +0100 VDPAU: Multi application core support (using FusionCall2), major cleanup. Seems to work flawlessly as far as it's tested. Software fallbacks also work. GetBits/PutBits requests are done on shared memory buffers when delegated to the master process. Acceleration also uses fusion_call_execute2(), one for each draw/blit. Here's the output of df_dok as master (direct calls to VDPAU): Benchmarking 256x256 on 852x464 ARGB (32bit)... Anti-aliased Text 1.024 secs (* 87.890 KChars/sec) [100.9%] Anti-aliased Text (blend) 1.030 secs (* 87.378 KChars/sec) [100.9%] Fill Rectangle 1.011 secs (*1043.649 MPixel/sec) [100.9%] Fill Rectangle (blend) 1.009 secs (*1039.222 MPixel/sec) [101.0%] Fill Rectangles [10] 1.054 secs (*1057.032 MPixel/sec) [101.9%] Fill Rectangles [10] (blend) 1.009 secs (*1039.222 MPixel/sec) [103.0%] Fill Triangles 1.004 secs ( 9.791 MPixel/sec) [106.0%] Fill Triangles (blend) 1.011 secs ( 9.723 MPixel/sec) [106.9%] Draw Rectangle 1.003 secs ( 18.344 KRects/sec) [101.0%] Draw Rectangle (blend) 1.002 secs ( 18.263 KRects/sec) [100.0%] Draw Lines [10] 1.000 secs ( 1312.000 KLines/sec) [ 99.0%] Draw Lines [10] (blend) 1.000 secs ( 394.000 KLines/sec) [100.0%] Fill Spans 1.036 secs (* 18.977 MPixel/sec) [101.9%] Fill Spans (blend) 1.029 secs (* 19.106 MPixel/sec) [102.9%] Fill Trapezoids [10] 1.020 secs ( 2634.290 MPixel/sec) [ 99.0%] Blit 1.018 secs (* 482.829 MPixel/sec) [100.9%] Blit 180 1.001 secs ( 1165.375 MPixel/sec) [100.0%] Blit colorkeyed 1.001 secs ( 1021.340 MPixel/sec) [100.0%] Blit destination colorkeyed 1.004 secs ( 1338.135 MPixel/sec) [100.0%] Blit with format conversion 1.000 secs ( 190.054 MPixel/sec) [ 99.0%] Blit with colorizing 1.016 secs (* 483.779 MPixel/sec) [100.9%] Blit from 32bit (blend) 1.023 secs (* 480.469 MPixel/sec) [100.9%] Blit from 32bit (blend) with colorizing 1.015 secs (* 484.256 MPixel/sec) [100.9%] Blit SrcOver (premultiplied source) 1.015 secs (* 490.712 MPixel/sec) [100.0%] Blit SrcOver (premultiply source) 1.009 secs ( 428.679 MPixel/sec) [100.0%] Stretch Blit 1.018 secs (* 503.916 MPixel/sec) [100.9%] Stretch Blit colorkeyed 1.000 secs ( 566.231 MPixel/sec) [ 99.0%] Here's the output of df_dok as slave (delegated calls to VDPAU via fusion_call_execute2): Benchmarking 256x256 on 852x464 ARGB (32bit)... Anti-aliased Text 4.605 secs (* 85.211 KChars/sec) [ 20.4%] Anti-aliased Text (blend) 4.617 secs (* 84.990 KChars/sec) [ 20.6%] Fill Rectangle 8.312 secs (*1045.485 MPixel/sec) [ 12.0%] Fill Rectangle (blend) 7.130 secs (*1045.083 MPixel/sec) [ 13.8%] Fill Rectangles [10] 21.755 secs (*1057.372 MPixel/sec) [ 4.5%] Fill Rectangles [10] (blend) 21.893 secs (*1044.720 MPixel/sec) [ 4.5%] Fill Triangles 5.827 secs ( 9.559 MPixel/sec) [ 16.4%] Fill Triangles (blend) 5.857 secs ( 9.510 MPixel/sec) [ 16.5%] Draw Rectangle 3.778 secs ( 18.343 KRects/sec) [ 25.4%] Draw Rectangle (blend) 3.692 secs ( 18.147 KRects/sec) [ 25.2%] Draw Lines [10] 1.000 secs ( 1303.000 KLines/sec) [100.0%] Draw Lines [10] (blend) 1.001 secs ( 389.610 KLines/sec) [103.0%] Fill Spans 5.675 secs (* 18.477 MPixel/sec) [ 16.4%] Fill Spans (blend) 5.325 secs (* 18.460 MPixel/sec) [ 17.8%] Fill Trapezoids [10] 1.010 secs ( 2595.485 MPixel/sec) [103.9%] Blit 12.017 secs (* 484.825 MPixel/sec) [ 7.9%] Blit 180 1.004 secs ( 1168.420 MPixel/sec) [ 99.0%] Blit colorkeyed 1.003 secs ( 1012.769 MPixel/sec) [103.0%] Blit destination colorkeyed 1.004 secs ( 1325.080 MPixel/sec) [104.0%] Blit with format conversion 1.011 secs ( 187.986 MPixel/sec) [101.9%] Blit with colorizing 11.302 secs (* 484.764 MPixel/sec) [ 8.0%] Blit from 32bit (blend) 11.339 secs (* 484.916 MPixel/sec) [ 8.8%] Blit from 32bit (blend) with colorizing 11.418 secs (* 484.431 MPixel/sec) [ 8.6%] Blit SrcOver (premultiplied source) 10.925 secs (* 494.294 MPixel/sec) [ 9.0%] Blit SrcOver (premultiply source) 1.002 secs ( 425.133 MPixel/sec) [101.0%] Stretch Blit 16.389 secs (* 509.299 MPixel/sec) [ 5.9%] Stretch Blit colorkeyed 1.001 secs ( 560.013 MPixel/sec) [100.0%] The CPU load does not include the master process in this case! This code requires version 8.3 of the linux-fusion kernel module. Single app build is not working, but will be fixed shortly. commit f358f6345112d6ce09b9dff6912d857aa504f64b Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 18 13:57:37 2011 +0100 fusion-call: Add fusion_call_execute2() using new linux-fusion 8.3 ioctl. Also add handling of call payload appended to FusionCallMessage rather than a pointer in the message. commit 377204a1509bce30f17b223e669476435a94f15d Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 18 13:54:17 2011 +0100 serial: Remove name from serial structure (was for debug only), crashing with multi app... commit 9315c20211a8473940f851e7411955a5be4d2ecb Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 18 13:51:22 2011 +0100 core: Local/shared memory pool tuning via new system module capability flag. Add CSCAPS_PREFER_SHM to use shared memory surfaces rather than local memory by default, this flag controls how shared/local pool set their priority (DEFAULT vs PREFERED). Add CSTF_EXTERNAL to type flags of shared memory pool, allowing it to backup videoonly surfaces which cannot be accessed by the CPU for software fallbacks. commit 96d46bdabc1257f00bba33ac00c9594a34afdef3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 17 13:29:54 2011 +0100 coma: Fix assertion in Dispatch_Call, wrong message block type has been used. commit 46fd5e32ed95b554560963d5dbe033409866301e Merge: 786550b e6fb296 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 17 13:28:29 2011 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 786550b7b06066c53a66a3b47fa6c4646e214879 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 17 13:26:45 2011 +0100 voodoo: Allow multiple packets to be queued for sending. This fixes deadlocks which could happen when multiple threads were flushing packets, among them the Voodoo IO thread itself, waiting for itself to pick up the single packet that was able to be queued previously. commit 9f59edd2eac60393381187b56370131b4173684e Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 17 00:06:00 2011 +0100 fusion-arena: Use multi app implementation in single app as well, for multi threaded arena enter. FusionDale's Coma (component manager) will reenter the same arena from different threads (one per connection). commit 7da4d8395508a48e406dd240ac9884c7cc2562d5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 17 00:05:19 2011 +0100 vdpau_2d: Fix debug build. commit fc36fb537ee883ed2e96ed2201935477d0966282 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 16 20:48:16 2011 +0100 proxy: Add IDirectFBDisplayLayer::GetRotation() implementations. commit d13e9fba4032b94c95e804fa159163e3c4085146 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 16 20:47:43 2011 +0100 packet: Reduce input buffer size to a third. commit 61df8b6b7995e1b289ba856b761e9a9e6a0d12e9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 16 17:08:31 2011 +0100 wm: Make it build with 1.5.0 or greater. commit e39875dbf0f8284cedd1e9c6b6849d2a92990cf3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 16 17:06:29 2011 +0100 internal: Use version code macros to check for 1.4. commit 413696d1cb2d859fb5604ea9a42f383b459f5c79 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 16 16:54:46 2011 +0100 spooky: Add $(DIRECTFB_LIBS) to linker command line. commit e6fb29626173a3040b1fbeebc6dd237b016a77a1 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Mar 16 16:46:40 2011 +0100 gles2: fixes fix most display errors due to wrong source texture coordinates and destination coordinates. This was tested with df_dok and df_andi on i915 with system=mesa commit 7e9b66f9011106aebea1087760a497ec837e69c4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 16 16:31:50 2011 +0100 proxy: Call FusionDaleInit() before FusionDaleCreate() just in case... commit ad3c50a7ac47d761722be56b074eef85f82e4c7b Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 16 16:31:31 2011 +0100 proxy: Link dispatcher modules against libfusiondale. commit 1e75634899ec29fcc720aead8e2467e836612997 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 16 14:12:15 2011 +0100 cursor: Load default cursor premultiplied. commit f84849a3797dfaa8618844ac3b31c0cc11e2b89d Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 16 13:53:17 2011 +0100 VDPAU: Lock/unlock display in graphics driver properly. commit 8a5945e011aa57170e059d3db3361ef73b04143a Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 16 13:52:39 2011 +0100 VDPAU: Implement preallocated VDPAU output surfaces, lock/unlock display properly. commit 3f8e06ffc819fb9039669eaa295dce049b458ad8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 16 13:52:09 2011 +0100 VDPAU: Add PresentationQueueBlockUntilSurfaceIdle function pointer. commit 5997c930c2375c6d979676c6e29b92f5406db2f7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 16 13:50:38 2011 +0100 VDPAU: Install system module internal header files. commit e7fb5dc0692c70be2bca7d9a068a572a039306ed Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 16 13:47:28 2011 +0100 surface: Add unsigned long as a handle to preallocation array in CoreSurfaceConfig. This way a custom surface pool can implement preallocated platform surfaces, e.g. a VdpOutputSurface handle is passed in handle, the vdpau surface pool uses this handle instead of creating a new one. The preallocated surface can then be used for blitting etc. commit fd9a7d3455f78fb3dd31727b7e918b9fdeddd50d Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 15 20:32:16 2011 +0100 API: Moved new member colorspace to end of DFBSurfaceDescription and DFBWindowDescription. commit 7290908218c5bff5b478c020ba233cae9f9d5e9f Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 15 16:19:07 2011 +0100 VDPAU: Fix config testing (only allows ARGB for now). commit 4841ae3569ac2f793f1eb6e14febc8383e8889d8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 15 13:19:11 2011 +0100 VDPAU: Implement EngineSync() via pseudo GetBits() call Anti-aliased Text 10.002 secs (* 87.822 KChars/sec) [100.2%] Anti-aliased Text (blend) 10.005 secs (* 87.796 KChars/sec) [100.2%] Fill Rectangle 10.008 secs (*1045.773 MPixel/sec) [100.2%] Fill Rectangle (blend) 10.011 secs (*1046.769 MPixel/sec) [100.0%] Fill Rectangles [10] 10.029 secs (*1052.078 MPixel/sec) [100.1%] Fill Rectangles [10] (blend) 10.026 secs (*1045.856 MPixel/sec) [100.1%] Fill Spans 10.285 secs (* 19.115 MPixel/sec) [100.1%] Fill Spans (blend) 10.289 secs (* 19.108 MPixel/sec) [100.2%] Blit 10.020 secs (* 483.344 MPixel/sec) [100.0%] Blit with colorizing 10.015 secs (* 483.585 MPixel/sec) [100.0%] Blit from 32bit (blend) 10.024 secs (* 483.805 MPixel/sec) [100.1%] Blit from 32bit (blend) with colorizing 10.026 secs (* 483.708 MPixel/sec) [100.0%] Blit SrcOver (premultiplied source) 10.019 secs (* 493.204 MPixel/sec) [100.0%] Stretch Blit 10.028 secs (* 566.319 MPixel/sec) [100.1%] commit a3028412f6fe4794f8c1ae32f99459ce78409d1e Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 15 11:03:36 2011 +0100 VDPAU: Add StretchBlit() implementation. Stretch Blit 3.000 secs (* 356.869 MPixel/sec) [100.0%] commit d59da0b06b602267f5816e141d8f6b9c45bc2c29 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Mar 14 18:27:17 2011 +0100 VDPAU: Set defaults for accelerated text rendering (ARGB premultiplied). Anti-aliased Text 3.028 secs (* 60.634 KChars/sec) [100.6%] Anti-aliased Text (blend) 3.030 secs (* 87.920 KChars/sec) [100.0%] Fill Rectangle 3.000 secs (*1046.391 MPixel/sec) [100.3%] Fill Rectangle (blend) 3.002 secs (*1047.877 MPixel/sec) [100.0%] Fill Rectangles [10] 3.057 secs (*1050.462 MPixel/sec) [100.3%] Fill Rectangles [10] (blend) 3.006 secs (*1046.483 MPixel/sec) [100.3%] Fill Spans 3.087 secs (* 19.106 MPixel/sec) [100.3%] Fill Spans (blend) 3.090 secs (* 19.088 MPixel/sec) [100.3%] Blit 3.007 secs (* 486.016 MPixel/sec) [100.3%] Blit with colorizing 3.005 secs (* 486.340 MPixel/sec) [100.3%] Blit from 32bit (blend) 3.004 secs (* 486.502 MPixel/sec) [100.3%] Blit from 32bit (blend) with colorizing 3.004 secs (* 486.502 MPixel/sec) [100.0%] Blit SrcOver (premultiplied source) 3.001 secs (* 493.540 MPixel/sec) [100.3%] commit 624337db37aa36b0a4bcb6a149db0fd51b0f855c Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Mar 14 18:18:26 2011 +0100 VDPAU: Fix blit/draw blending state validation/invalidation. commit aabd51f8977e47e8f3d066dbf1eb3ab1fee6bdf7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Mar 14 17:07:22 2011 +0100 VDPAU: Initial rectangle filling support, blending still broken though. Fill Rectangle 3.005 secs (* 706.611 MPixel/sec) [100.3%] commit 2b32537a88af3f4366a1165d3c391ee22c18a064 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Mar 14 16:20:26 2011 +0100 VDPAU: Add VDPAU accelerated rendering module (graphics driver). Supports blitting with the following flags: - DSBLIT_BLEND_ALPHACHANNEL - DSBLIT_BLEND_COLORALPHA - DSBLIT_COLORIZE - DSBLIT_SRC_PREMULTCOLOR Rectangle filling is work in progress (probably need to create a static 'white' surface). ~~~~~~~~~~~~~~~~~~~~~~~~~~| DirectFB 1.5.0 |~~~~~~~~~~~~~~~~~~~~~~~~~~ (c) 2001-2010 The world wide DirectFB Open Source Community (c) 2000-2004 Convergence (integrated media) GmbH ---------------------------------------------------------------- (*) DirectFB/Core: Single Application Core. (2011-03-14 14:21) [ DEBUG ][ TRACE ] (*) Direct/Memcpy: Using Generic 64bit memcpy() (*) DirectFB/X11/VDPAU: API version 1 - 'NVIDIA VDPAU Driver Shared Library 270.29 Wed Feb 23 16:38:50 PST 2011' (*) DirectFB/Genefx: MMX detected and enabled (*) DirectFB/Graphics: VDPAU Output Surface Rendering 0.0 (Denis Oliver Kropp) (*) DirectFB/Core/WM: Default 0.3 (directfb.org) (*) X11/Display: Not using XShm. (*) Direct/Interface: Loaded 'PNG' implementation of 'IDirectFBImageProvider'. (*) Direct/Interface: Loaded 'FT2' implementation of 'IDirectFBFont'. (*) Direct/Interface: Loaded 'GIF' implementation of 'IDirectFBImageProvider'. Benchmarking 256x256 on 1280x697 ARGB (32bit)... Blit 3.003 secs (* 486.664 MPixel/sec) [100.0%] Blit with colorizing 3.001 secs (* 486.988 MPixel/sec) [100.0%] Blit from 32bit (blend) 3.002 secs (* 486.826 MPixel/sec) [100.0%] Blit from 32bit (blend) with colorizing 3.002 secs (* 486.826 MPixel/sec) [100.0%] Blit SrcOver (premultiplied source) 3.009 secs (* 496.583 MPixel/sec) [100.3%] commit 407fe4262571c9f545ddb5d1659869b2cb7794b7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Mar 14 16:18:52 2011 +0100 VDPAU: Use new CORE_X11VDPAU system type, retrieve OutputSurfaceRenderOutputSurface() pointer. commit b8a702eb9a4539eb3f0b4914546930f2b251b7ef Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Mar 14 16:17:49 2011 +0100 core: Add CORE_X11VDPAU to system type enum. commit 571338b6586eb2457226b916f2ad7251d8ff2374 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Mar 14 14:16:13 2011 +0100 vdpau: New X11/VDPAU based system module derived from original X11 module. The module also creates an X11 window, but instead of using XPutShmImage or similar it creates a VdpPresentationQueueTarget and VdpPresentationQueue. There's also a surface pool creating VDPAU Output Surfaces for use by layers via VdpPresentationQueueDisplay and later for accelerated operations using the surface rendering functions of VDPAU. This is the initial working version, successfully tested with df_dok and df_andi. The code still needs to be cleaned up a lot, multiple layers need to be composited using VdpMixer functions and special video layer support for playback will be added, so that VdpOutputSurfaces from Xine or GStreamer can be pushed into DirectFB without copying their pixels, compositing them with the other surfaces from the graphics layers, keeping the video timestamps as master clock. commit a2570e0d226361ac5b705db5bb3058f0bfe424c8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Mar 14 14:15:17 2011 +0100 voodoo_bench: Build only if Voodoo is enabled. commit fc18a1773732de4e5ae7952358e75e84db04270d Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 13 13:43:36 2011 +0100 gles2: Fix color keying by using Andi's shader from gl driver. Mesa DRI Intel(R) IGD GEM 20100330 DEVELOPMENT Blit colorkeyed 26.400 secs (* 73.479 MPixel/sec) [ 6.3%] Stretch Blit colorkeyed 40.801 secs (* 75.372 MPixel/sec) [ 2.3%] commit 7f2d9533ae0b50052c657931d475d795cf95c71e Merge: 01708e0 82a65be Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 13 07:51:22 2011 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 82a65be270f87b4b81f4434dece160c22ffee75e Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 13 07:44:05 2011 +0100 Mesa/GLES2: Add Mesa/DRM system module and GLES2 graphics acceleration Initial working version. Issues/TODOs: - Upside/down trouble (screen/textures) - Hardcoded to second connector - Flicker in df_andi - Multi App not working yet - GLES2 driver includes non-ES2 headers right now - color keying seems to be broken ~~~~~~~~~~~~~~~~~~~~~~~~~~| DirectFB 1.5.0 |~~~~~~~~~~~~~~~~~~~~~~~~~~ (c) 2001-2010 The world wide DirectFB Open Source Community (c) 2000-2004 Convergence (integrated media) GmbH ---------------------------------------------------------------- (*) DirectFB/Core: Single Application Core. (2011-03-13 05:17) libEGL warning: pci id for 4: 8086:a001, driver i915 Mesa warning: drm_i915_getparam: -22 (*) DirectFB/Mesa: EGL_VERSION = 1.4 (DRI2) (*) DirectFB/Mesa: EGL_EXTENSIONS = EGL_MESA_drm_image EGL_KHR_image_base EGL_KHR_gl_texture_2D_image EGL_KHR_gl_renderbuffer_image EGL_KHR_surfaceless_gles1 EGL_KHR_surfaceless_gles2 EGL_KHR_surfaceless_opengl Mesa warning: couldn't open libtxc_dxtn.so, software DXTn compression/decompression unavailable (*) DirectFB/Genefx: MMX detected and enabled (*) DirectFB/Graphics: GLES2 Acceleration - Mesa DRI Intel(R) IGD GEM 20100330 DEVELOPMENT 0.1 (Mark J Hood / Denis Oliver Kropp) (*) DirectFB/Mesa: Got 2 connectors, 2 encoders (*) DirectFB/Core/WM: Default 0.3 (directfb.org) (*) Direct/Interface: Loaded 'PNG' implementation of 'IDirectFBImageProvider'. (*) Direct/Interface: Loaded 'FT2' implementation of 'IDirectFBFont'. (*) Direct/Interface: Using 'GIF' implementation of 'IDirectFBImageProvider'. Benchmarking 256x256 on 1600x1164 ARGB (32bit)... Anti-aliased Text 3.029 secs (* 47.540 KChars/sec) [100.3%] Anti-aliased Text (blend) 3.007 secs (* 47.888 KChars/sec) [100.0%] Fill Rectangle 6.468 secs (* 494.458 MPixel/sec) [ 36.5%] Fill Rectangle (blend) 7.545 secs (* 373.498 MPixel/sec) [ 29.9%] Fill Rectangles [10] 7.408 secs (* 495.412 MPixel/sec) [ 27.5%] Fill Rectangles [10] (blend) 8.722 secs (* 375.693 MPixel/sec) [ 22.5%] Fill Triangles 5.778 secs (* 500.764 MPixel/sec) [ 52.6%] Fill Triangles (blend) 7.273 secs (* 382.961 MPixel/sec) [ 41.5%] Draw Rectangle 3.004 secs (* 31.691 KRects/sec) [ 99.6%] Draw Rectangle (blend) 3.006 secs (* 31.969 KRects/sec) [100.0%] Draw Lines [10] 3.018 secs (* 54.671 KLines/sec) [100.6%] Draw Lines [10] (blend) 3.019 secs (* 54.653 KLines/sec) [100.3%] Fill Spans 3.068 secs (* 12.816 MPixel/sec) [100.6%] Fill Spans (blend) 3.066 secs (* 12.825 MPixel/sec) [100.0%] Fill Trapezoids [10] 8.732 secs ( 495.347 MPixel/sec) [ 34.9%] Blit 7.504 secs (* 376.412 MPixel/sec) [ 29.6%] Blit 180 7.558 secs (* 373.723 MPixel/sec) [ 30.4%] Blit colorkeyed 19.484 secs (* 104.270 MPixel/sec) [ 8.9%] Blit with colorizing 7.514 secs (* 375.039 MPixel/sec) [ 33.1%] Blit from 32bit (blend) 9.010 secs (* 282.219 MPixel/sec) [ 22.5%] Blit from 32bit (blend) with colorizing 8.982 secs (* 283.099 MPixel/sec) [ 24.4%] Blit SrcOver (premultiplied source) 9.029 secs (* 281.625 MPixel/sec) [ 23.1%] Blit SrcOver (premultiply source) 9.012 secs (* 282.156 MPixel/sec) [ 23.7%] Stretch Blit 9.302 secs (* 464.131 MPixel/sec) [ 12.9%] Stretch Blit colorkeyed 29.960 secs (* 105.715 MPixel/sec) [ 3.2%] commit 1304a6d670d882e79cf6b75136cfd377783f1628 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 13 07:40:05 2011 +0100 systems: Add CORE_MESA to system type enum. commit 031800a1f0186ab376381ccdaf0447e9642033f8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 13 07:39:32 2011 +0100 voodoo_bench_client: Follow Voodoo link API change. commit eb02aed2623bf18fe26dcc23b75d883a09b88270 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 13 07:38:28 2011 +0100 dummy: Follow internal layer API change commit 01708e0f9ab29c124b1cb90d40784fe924654063 Merge: b579902 837a21c Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 10 11:11:27 2011 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 837a21c876587f76c9eb89c809ffc8ad5648bbf4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 4 15:06:40 2011 +0100 voodooplay: Follow Voodoo Play API change. commit 3eee114f6b580aec2980cb076133c47ac5351117 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 4 15:05:39 2011 +0100 proxy: Use RLE compression only if Voodoo compression is disabled. commit 8d967c2a4e73ef3e563eaff3a30c90952ebcc875 Merge: 906f8fa 5cbac9a Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 4 15:05:20 2011 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 906f8fa954a50670d11009006df4d2e28aebd256 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 4 15:04:07 2011 +0100 voodoo: Compatibility with old and new base protocol, auto compression etc. - add VPIF_LINK for new protocol - keep player singleton instance - add voodoo_player_lookup_by_address() - always lookup player when connecting to check link flag - use raw mode if old server or forced by link-raw option - use compression by default commit 5cbac9ae107e0f9b2e2aecc5ca690e3d5488a589 Author: Phil Edworthy <phil.edworthy@renesas.com> Date: Tue Feb 8 15:42:48 2011 +0000 sh772x: Remove restriction for only one NV12 layer The BEU driver can handle any mixture of color formats on each of inputs. Signed-off-by: Phil Edworthy <phil.edworthy@renesas.com> Signed-off-by: Andreas Shimokawa <andi@directfb.org> commit 069b167b46a377e17fc753c04885d072883ec97a Author: Phil Edworthy <phil.edworthy@renesas.com> Date: Tue Feb 8 09:17:08 2011 +0000 sh772x: Fix DSPF_RGB24 handling Signed-off-by: Phil Edworthy <phil.edworthy@renesas.com> Signed-off-by: Andreas Shimokawa <andi@directfb.org> commit f3f8dadc313d58d457dbf6b54a87e286e3099887 Author: Phil Edworthy <phil.edworthy@renesas.com> Date: Fri Feb 4 16:39:36 2011 +0000 sh772x: Bump version of libshjpeg (minor API change) Signed-off-by: Phil Edworthy <phil.edworthy@renesas.com> Signed-off-by: Andreas Shimokawa <andi@directfb.org> commit 77afd63922216ea92b5a965fb65f3c5fd2bc9d86 Author: Phil Edworthy <phil.edworthy@renesas.com> Date: Thu Dec 16 11:53:56 2010 +0000 sh772x: Update calls to libshjpeg for current api Signed-off-by: Phil Edworthy <phil.edworthy@renesas.com> Signed-off-by: Andreas Shimokawa <andi@directfb.org> commit f541720f4aaacfc29036f3e9002b54f75cadda61 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 4 12:06:39 2011 +0100 voodoo: Add code sending to Win32 link implementation as well. commit 0d08a7dd540efad801c8c08de323373a7ededc42 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 4 12:06:10 2011 +0100 voodoo: Use 32bit message serials. commit adc84caf5fea2b1d53a2634cf60be342eb696451 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 4 12:05:35 2011 +0100 voodoo: Fix raw connection mode. commit b579902ce81f9a4caa90ccf0662377671faf6716 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 26 21:01:47 2011 +0100 ignore commit 02bf1def85c069fec347f7acb4214d81bf8ac79b Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 24 13:52:56 2011 +0100 fusion_call_bench: Add FusionCall benchmark test. commit 05149e325ea4404690d26a2f20cb6184cb5fff4b Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 19 22:10:54 2011 +0100 cosmetic: Correct order of DSETV_NTSC_443 and DSETV_DIGITAL. commit f1888034773f09374fadef9e01ed36a319c880a2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 17 00:03:18 2011 +0100 gendoc: Fix parsing of interface macros which have the D_ prefix now. commit 79e3eeccaba4781541ef1d69f2e34a46d0cc3291 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 16 23:57:28 2011 +0100 Stereo3D: API extensions for stereoscopic viewing - Add DLCAPS_LR_MONO and DLCAPS_STEREO. - Add DLOP_LR_MONO and DLOP_STEREO. - Add DSCAPS_STEREO (both left & right buffers are allocated). - Add DWCAPS_LR_MONO and DWCAPS_STEREO. - Add DLSO_FIXED_LIMIT and DWSO_FIXED_LIMIT. - Add DSECONF_FRAMING. - Add DFBScreenEncoderPictureFraming (MONO, STEREO_PACKED/HORIZ/VERT and STEREO_SEQUENTIAL for HDMI 1.4). - Add framing to DFBScreenEncoderConfig. - Add IDirectFBDisplayLayer::GetStereoDepth() and SetStereoDepth(). - Add DFBSurfaceStereoEye (LEFT and RIGHT). - Add IDirectFBSurface::GetStereoEye() and SetStereoEye(). - Add IDirectFBSurface::FlipStereo(). - Add IDirectFBWindow::GetStereoDepth() and SetStereoDepth(). Implementation is working, but lower level APIs are still not final. -- This patch also includes color space extensions: - Add DFBSurfaceColorSpace (RGB, BT601, BT601_FULLRANGE and BT709). - Add DSDESC_COLORSPACE. - Add DFB_COLOR_IS_RGB and DFB_COLOR_IS_YUV. - Add DFB_COLORSPACE_IS_COMPATIBLE and DFB_COLORSPACE_DEFAULT. - Add colorspace to DFBSurfaceDescription. - Add colorspace to DFBWindowDescription. - Add DLCONF_COLORSPACE. - Add colorspace to DFBDisplayLayerConfig. - Add dfb_colorspace_name(). - Add colorspace argument to dfb_surface_create_simple(). commit 263130ded4493159de1ff3ceb417f80865f2b582 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 10 14:30:46 2011 +0100 sawman: Implement SWMCF_ASSOCIATION and SWMCF_STACKING in SetWindowConfig(). commit 521cba70571778e699e123078d96563209ee79e0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 10 14:29:29 2011 +0100 sawman: Fixup extended info in window callback during CreateManager() for already created windows. commit 8162c80b9702eb03b06c786ab2f08e3fbb75d6aa Merge: 0d00f11 639ffe7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 8 03:20:48 2011 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 0d00f11b63aac6aec1606d5bd518e560ae5ebfd1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 8 03:17:45 2011 +0100 generic: Optimize fast path ARGB SrcOver and add fast path ARGB SrcOver premultiply. df_dok's SrcOver benchmarks: before after non-premultiply 420 601 premultiply 88 560 MPixel/sec (i7 K 875 2.93) commit 639ffe7c0624d4df7436fa3c6edd5ebc835fa08e Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Feb 7 20:15:22 2011 +0100 Win32: Updated project files. commit 361437599377dd99b5e1e1a78e971e0af82a0772 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Feb 7 20:14:50 2011 +0100 Win32: Build fixes for Voodoo code. commit 728dd50cb08933c8734fae8c94bc132dda469161 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Feb 7 20:14:27 2011 +0100 fastlz: Build fix for MSVC. commit f4e0dce3ea8e7d816e4558663fbd9b1447a942be Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Feb 7 20:14:11 2011 +0100 fastlz: Added DIRECT_API statements. commit 0b81630975334d9bf9b49b80516e50301a5dc89c Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Feb 7 19:29:38 2011 +0100 voodoo: Revert accidentally committed change of message serial from 64 to 32 bit. commit 5b504ef67722daa21084eb189eea30f4790d4480 Merge: b3c96e9 00942ec Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Feb 7 19:26:28 2011 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit b3c96e9c8bfa2c8e834a3a5f4063bad6b978492d Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Feb 7 15:32:08 2011 +0100 vnc: compile fix (include directfb_util.h) commit d920ff4ff3a413343673c6ad79cd0769d04c7e88 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Feb 7 13:40:56 2011 +0100 voodoo: Initial Voodoo rework, compression, performance... Rework Voodoo code using C++, with old C API as wrapper. Add a lower level packet layer with transparent compression support. New runtime option 'compression-min', when non-zero compress packets with minimum size (default zero, no compression). New runtime option 'link-raw' to initiate a connection with old base layer. Server detects link mode based on initial 'code' word. Use one instead of three threads per connection (In/Out/Dispatch). Improved performance using thread local output buffer (async bench 4x speed). commit 3ceab2192f9521f5ba5632198bf28f4f1715121b Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Feb 7 19:16:59 2011 +0100 voodoo_bench: Follow API changes, init config system. commit 00942ece717e94d1ea172679deed47170d28ffe3 Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Feb 7 15:32:08 2011 +0100 vnc: compile fix (include directfb_util.h) commit d139f7f4aa485071ae3821d96ff7c4d7659aeed6 Merge: 115368a b37828d Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Feb 7 13:38:24 2011 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 115368a58df14109468d0a542066a01dfb858152 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Feb 7 13:37:16 2011 +0100 direct: Added direct_fastlz_compress_multi(), currently implemented via slow malloc/memcpy. direct_fastlz_compress_multi() takes an array of buffers/lengths to linearly decompress their contents. commit b37828dd5dcd970a207b81fa771c71acb3b5aa26 Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Feb 7 13:04:12 2011 +0100 sh772x: Register phys memory with UIOMux This is patch significantly improves the performance on sh772x devices. The sh772x gfx code uses an external library (libshbeu) to access the BEU hardware. In order for this library to understand that the virtual addresses passed to it are for contiguous memory, the memory must be registered with another external library (UIOMux). Signed-off-by: Phil Edworthy <phil.edworthy@renesas.com> commit c65413eee0f2ed8ed09d6c84b0b2762321b0ce87 Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Feb 7 12:48:34 2011 +0100 sh772x: Use pkg-config to detect and use SH772x dependencies. Signed-off-by: Phil Edworthy <phil.edworthy@renesas.com> commit 77a4544c333df88d86810e98937b07889f3ee210 Merge: 4916fc8 42850bf Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Feb 7 12:46:17 2011 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 4916fc886ca855857bfbedb3e0ce43498639e38c Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Feb 7 12:43:38 2011 +0100 sh772x: Update calls to libshbeu for new api Tested on MS7724 board (SH7724) using df_andi Signed-off-by: Phil Edworthy <phil.edworthy@renesas.com> commit 42850bf1d0fae810333204e724c868efaf9ee9b3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 5 23:10:12 2011 +0100 direct: Make trace enabled build work again by allowing static mutex initializer again for now. commit bb95c18b38b4358f70a64c8223fb50e233c60795 Merge: a581654 aa159d8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 5 23:07:42 2011 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit a581654c67cd59ca1a0fe2c705a10363d33f2ff2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 1 22:56:51 2011 +0100 Voodoo: Single IO thread instead of two, VoodooLink with SendReceive/WakeUp methods. Also increased send/receive buffer sizes. commit 117496ef12f0799c576c91d03a4ae331b29f9cfc Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 5 22:57:25 2011 +0100 Win32: Build with optimizations. commit b724cccd711a069e1b8a1d3bfb3f136a081f1e5c Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 5 22:56:30 2011 +0100 Win32: Disable debug by default. commit 8762579716b46e987a2adcb382fca48f30dbbb28 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 5 22:56:02 2011 +0100 Win32: Implement direct_vsscanf(). commit 3e7002124b1f81dc15d8e5ad52546e06c2f068ab Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 5 23:05:43 2011 +0100 voodoo_bench: Build fixes due to Voodoo API changes. commit aa159d8afc48f0aeae8a8e2a41bfd3c954f6f17d Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Feb 3 22:05:30 2011 +0100 gfxdrivers/gl: shader fixes 1) do not send color key as converted float to fragment shader, let the shader convert floats to int and then compare the integer values. (fixes df_dok's non-full-saturated color key values) There might be a possible optimization in the new shader code. 2) for state validation flags include SRC_COLORKEY in ALL Send color key to shader as integer for each color channel, commit 02afb21aaa6682c42a332f49cf2694998d7e4201 Merge: 0b31638 e92594b Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Feb 3 21:03:02 2011 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 0b316381d9cfa488341f9e14fa5bc26897bdbd74 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Feb 3 20:54:25 2011 +0100 gfxdrivers/gl: Added experimental fragment shader for source colorkeying. This boosts framerate in df_andi from 12fps to 245fps on my nvidia ion box. Compiling the shader is done on-demand. It should be done in init_driver() but OpenGL is not ready to compile shaders there. If compilation of the fragment shader is successfull, add DSBLIT_SRC_COLORKEY to the supported blittingflags. The downside of on-demand compilation is that source colorkeying will never be reported in the CardCapabilities. So applications querieing them will get always be reported source colorkeying as being unsupported. commit e92594b43fcecf160593e2b7670951245a227157 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 1 10:58:43 2011 +0100 Win32: Add ++DFB sub project. commit a5889d344e487ad625bd40ba48d8791d006656ab Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 1 10:57:56 2011 +0100 Win32: Comment out debug after thread main which seems to crash. commit c7bf65ac47ffaab66b22c008acb6efe942321abd Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 1 10:55:59 2011 +0100 Win32: Implement direct_clock_get_time() via _ftime64_s(). commit 548a733819a723a566b00eab349fccbdf0d32a3a Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 1 10:54:06 2011 +0100 Win32: Added VC++ project for ++DFB. commit 427b5a7a68542b260fe528a4d24836faefca4be7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 1 10:52:30 2011 +0100 ++dfb: Add more methods to IDirectFBWindow, add PPDFB_API macro for dllimport/export, other MSVC fixes commit 72147e176380cc4c8e2b7e8eab06e5a082d43b81 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 1 10:50:25 2011 +0100 data/eventbuffer: Use __FUNCTION__ instead of __PRETTY_FUNCTION__. commit 7761366ae80c9e5c06a0521bc6bad32641126e05 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 1 10:49:13 2011 +0100 dfbshow: No need for <unistd.h>. commit 6af7468d298b1575a97e5ca6bb3be1ffd1860fa1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jan 30 23:24:36 2011 +0100 Win32: Don't define bool/true/false if __cplusplus is defined. commit 3d4e2100fef347bc6e4a69201cec4b49004ef281 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jan 30 22:56:02 2011 +0100 Win32: VC++ projects for native port of pure Voodoo DirectFB Requires FusionDale and DiVine to be checked out in this directory. Tested with Visual C++ 2010 Express. commit 6fa673c2d0c2ea24d745b590da22829d9143a734 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jan 30 22:49:28 2011 +0100 Win32: Add VC++ project and DllMain. commit fa452e8df368d2831ad422e9fd570faa23798f04 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jan 30 22:48:49 2011 +0100 Win32: Add VC++ project and DllMain. commit bd879fa70d4ca6c1bc667a8d5fdf850a76e4dc4b Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jan 30 22:47:24 2011 +0100 fusiondale: Add FUSIONDALE_API macro for Dll import/export. Use D_DECLARE/DEFINE_INTERFACE. commit 5c61a1fafa78da866bb30aa285ee9d6657b0477a Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jan 30 22:46:51 2011 +0100 conf: Fixes for MSVC, pure Voodoo, use more direct. commit 077baca5deef86181f6608fd28b630d3518c08c3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jan 30 22:45:50 2011 +0100 divine: Add DIVINE_API macro for Dll import/export. Use D_DECLARE/DEFINE_INTERFACE. commit 127b1ab5ccfc0593bb12b263520507d7f94fca8c Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jan 30 22:31:55 2011 +0100 Win32: Merging libdirectfb part of Win32 porting tree Added DIRECTFB_API macro for imports/exports of public library functions. Other fixes including usage of new __inline__ macro etc. commit 481f60a1456f5b454358d916eb3a4a44729d939c Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jan 30 22:28:13 2011 +0100 proxy: Fixes for MSVC. + Fix in IDirectFBDisplayLayer::GetConfiguration() commit c65aef7164c1f0914f14d4d846fe6edbe259e847 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jan 30 22:26:51 2011 +0100 media: Fixes for MSVC. commit 86f02c9bffd268a5548b4995de5553830fdf9218 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jan 30 22:26:28 2011 +0100 databuffer: Fixes for pure Voodoo build, MSVC, use DirectMutex etc commit 606c5a6b9d6b60e7fb5e58ad869bb83c64de8954 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jan 30 22:24:24 2011 +0100 eventbuffer: Fixes for pure Voodoo build, MSVC, use DirectMutex etc commit dce5b287571c9e4ca8e4a7efd6bf7d5e9726a87e Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jan 30 22:22:28 2011 +0100 directfb: Add init/deinit code called via constructor or DllMain. commit dc4655f30820ca32d7ddedb9cb9022c83328d813 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jan 30 22:21:24 2011 +0100 directfb: Fixes for pure Voodoo mode and MSVC. commit b9bc4838591d200ffbd6af8e0c9f8cdbbca0fa35 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jan 30 22:19:02 2011 +0100 conf: Exclude code not yet building with MSVC, other MSVC fixes. commit 634147bb8e65777571a9210a5b13a97f82f8d019 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jan 30 22:17:26 2011 +0100 gfx: Moved dfb_pixelformat_name() and dfb_pixelformat_for_depth() to util, MSVC fixes. commit e64b0584d72653ec47c7e10eb17db6247577e80a Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jan 30 22:16:15 2011 +0100 dfbtest_window: Fixes for MSVC. commit 4a5edb280549c0ee677230afc84fed68e07feb9e Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jan 30 22:14:54 2011 +0100 dfbinfo: Use malloc instead of variable sized arrays (for MSVC). commit a134d9ec5e22a4fcca535a4138fcc2652d0ddba6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jan 30 14:00:09 2011 +0100 Win32: Add temporary server code (stubs, for having manager built) commit 4d3597edc4148d0d9bc4f1155e8f8842f2bad2bd Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jan 29 21:49:27 2011 +0100 Win32: Merging libvoodoo part of Win32 porting tree Introduce VoodooLink for abstraction of transport, implemented for Win32 and Unix. Use link's Read/Write and Close functions. Add VoodooPlayAddressType, VoodooPlayAddress, VOODOO_PLAY_INET_ADDR and voodoo_play_from_inet_addr(). -- Add "play-broadcast" option to force a certain address to be used for discovery. -- Add platform specific voodoo_play_get_broadcast(), implemented for Win32 and Unix. -- Use DirectMutex and DirectWaitQueue etc. -- Split waitqueue for response into two, one for waiting get and one for waiting put. Use D_MALLOC for input/output buffers. Improved tail read code with less thread switches. -- Added VOODOO_API macro for imports/exports of public library functions. -- Changed static initializers and constructors/destructors to init/deinit functions. Added init.c containing __Voodoo_init_all() and __Voodoo_deinit_all() calling init/deinit functions of the library. On Win32 __Voodoo_init_all() is called from DllMain. -- Other fixes including usage of new __inline__ macro etc. Added debug domains. Cleaned up code. commit ad9b4a3f4a9fd19cc2c096ce2f4a98d222e766c4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jan 29 19:32:43 2011 +0100 fastlz: Integrate fastlz code with less changes. Always align strict, at least this solves corruption on my 64 bit machine. commit dcffcaedd712a05c4c138440eb09bd8a56e870b8 Merge: 4a786c1 b7a98ca Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 25 16:43:30 2011 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 4a786c1db327d3a1d1b2a25961b77b74b7a3e771 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 25 16:42:38 2011 +0100 Win32: Merging libfusion part of Win32 porting tree Use DirectMutex and DirectWaitQueue, only in multi app mode there's a mutex left over and an rwlock in reactor.c. -- Added DIRECT_API macro for imports/exports of public library functions. -- Changed static initializers and constructors/destructors to init/deinit functions. Added init.c containing __Fusion_init_all() and __Fusion_deinit_all() calling init/deinit functions of the library. On Win32 __Fusion_init_all() is called from DllMain. -- Other fixes including usage of new __inline__ macro etc. commit b7a98ca9f51c855fc4ce04d1feee02fd9b57ad12 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 25 13:58:50 2011 +0100 directfb: Add DFB__RESULT_END to fix mkresult.sh processing (which has changed). commit 26b1f5810fd7f2b2e08f1d46c99d151718dd085f Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 25 13:51:38 2011 +0100 Win32: Merging libdirect part of Win32 porting tree Added DIRECT_OS_WIN32 for native build with MSVC. -- Added DIRECT_API macro for imports/exports of public library functions. Added __no_instrument_function__, __inline__, __unused__, __constructor__, __destructor__ and __typeof__ macros. Added _ZD and _ZU macros for "%zd" and "%zu". -- Added DR__RESULT_END to mark end of results and have a way to calculate the number of results. Changed mkresult.sh to generate code compatible with MSVC. -- Added direct_file_seek() and direct_file_seek_to(). Added direct_getenv(). Added direct_inet_ntop(). Moved direct_vsscanf() to OS files. -- Fixed lots of macros by using __VA_ARGS__. Renamed DECLARE_INTERFACE and DEFINE_INTERFACE to D_DECLARE_INTERFACE and D_DEFINE_INTERFACE. Lots of other minor build fixes. -- Changed static initializers and constructors/destructors to init/deinit functions. Added init.c containing __D_init_all() and __D_deinit_all() calling init/deinit functions of the library. On Win32 __D_init_all() is called from DllMain. -- Not implemented - Atomic macros - Non file streams commit dce09c380a4ea09d43a26e220954d839b7a02091 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jan 23 17:58:42 2011 +0100 configure: use safe CFLAGS for libm commit c34dbe9eabac888630147a3291b06f549883ffb7 Merge: a36043e a3a31b2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jan 23 17:55:40 2011 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit a36043ee734a5e3041fe6b6ddcdf36ee564dec0b Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jan 23 17:51:35 2011 +0100 dfbtest_fillrect: more direct commit cd526e5cf185b63691c792315d0d6daee03b0cf4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jan 23 17:51:20 2011 +0100 dfbtest_blit: more direct commit f9efb5a6b18b4aac6235338297fb16a780e58e90 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jan 23 17:50:24 2011 +0100 voodooplay: use direct_thread_sleep() commit cb16c2a8f49511d895688dabbf676eb7e5d1d882 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jan 23 17:49:35 2011 +0100 mkdgifft: include c++ headers earlier commit a3a31b2f95dd38ba312bcc80c1d0b49b472c44fb Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jan 23 17:48:15 2011 +0100 voodoo: added few benchmarks commit 0506b2cab8956762dca83ae9701f555e41e039ef Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jan 23 17:47:02 2011 +0100 dfbproxy: added few more super interfaces commit e8b4d4bf443a06b49f5bedb69d4c263b7b4eeaee Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jan 23 17:46:22 2011 +0100 voodoo: adjust buffers commit 318db501e585359e9b88c583c9d8975b1b34a1fe Merge: fe0c1ce b323e58 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 21 12:20:52 2011 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/libs/FusionDale commit fe0c1ce60c9fcdec545b77efd9fcd600beec2388 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 21 12:20:32 2011 +0100 requestor: use DirectTLS commit 659061671cb9dc393824cf2a94c3468caf32a064 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 21 12:19:22 2011 +0100 voodoo: fix check for pure voodoo mode commit 15a93aa638921faf760a258da33cf8b50fa43321 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 21 12:18:53 2011 +0100 fix: interface -> interface_ptr commit 860a908fe496fd343901599d0989c8980ed6fe1c Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 21 12:18:26 2011 +0100 cleanup: no pthread include commit b323e5894fe5d214c546c973a925631b72af7504 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 21 12:13:48 2011 +0100 1.5.0 fetch moduledir from directfb for now (FIXME) commit fe6d9aa896a2560d9094718bb8654f6f8eb3eb2b Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 21 12:13:09 2011 +0100 fdtest_bench: Added sync call benchmark. commit 83bcfce8554fe84d2e41c580e292831a1a1f261d Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 21 11:56:33 2011 +0100 voodoo: fix ifndef (change to if !) commit c6bfb41c418688b2e0f7f133dc36075169830d8b Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 21 11:52:00 2011 +0100 voodoo: Build pure voodoo mode with DIRECTFB_BUILD_PURE_VOODOO (no more posix code) commit 26a2ab56436a461081d4797f35df83b29dc146eb Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 21 11:51:02 2011 +0100 proxy: Compile with API changes in libvoodoo commit 73f5b3ca37386fee25b38ff7c0634edc3fa0622e Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 21 11:50:37 2011 +0100 Bump version number to 1.5.0, require DirectFB 1.5.0 commit 699689f385309b5bd95d8066e27c15ac2515990e Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 19 13:55:20 2011 +0100 trace: follow API change of direct file commit 9db77bae64fc5d6e57848d11b83cd8cf25018279 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 19 13:54:40 2011 +0100 sawman: fix crash in debug mode commit 2db35e1f0a341df939ab6fe4151917ece9311e01 Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Jan 17 13:09:47 2011 +0100 gfxcard: bugfix: when falling back to triangles in dfb_gfxcard_filltrapezoids() the return value of card->funcs.FillTriangle() what misinterpreted. commit 1fe4ab080938f5452902cf0d402f797673e09454 Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Jan 17 12:57:05 2011 +0100 compile fix: use uint16 instead of flzuint16 (defined nowhere) commit 99064160a303d6de30729cdb115cc472e889a329 Merge: dcef42d ff6c0ce Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 7 21:20:29 2011 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit dcef42d3ecf8c335020e19dfa795fc52d0532f08 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 7 21:18:14 2011 +0100 voodoo: Improvements in Voodoo Manager voodoo_manager_create() takes two file descriptors now, e.g. for pipe pairs. Improve input buffer management avoiding context switch in tail read code. Enhanced debug output. commit dcaa0f2fd3a9a4f33ca8d6ae850f3d972fff2c1c Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 7 21:09:19 2011 +0100 fastlz: Added fastlz based compression/decompression. See http://code.google.com/p/fastlz/ commit ff6c0ce92facc57b01acc8efc357e0398f27c0a6 Merge: 64498a1 817fd61 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 4 11:46:45 2011 +0100 Merge branch 'master' of /home/git/DirectFB-psp Conflicts: src/core/gfxcard.c commit 64498a1fcd34b333d619225806168614014123b7 Author: Ville Syrjala <syrjala@sci.fi> Date: Sat Nov 27 00:52:32 2010 +0200 rules: Add nmfile.make to EXTRA_DIST commit 84f676307f672c8109142b71f329e64ab85d8411 Author: Ville Syrjala <syrjala@sci.fi> Date: Sat Nov 27 00:44:51 2010 +0200 inputdrivers: Fix srcdir != builddir commit 91f73e4e7205c5e0c66e78906a06951a4afb86b5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jan 1 20:26:40 2011 +0100 directfb_util: include <direct/thread.h> commit f96a5b15a0eb234ebc8c159080ea92e34160c8e5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 30 16:07:13 2010 +0100 debug: comment out usage of missing direct_debug_enter/leave() commit 9388becac04bdab6caf5e2135a1fcf81d2c9f22f Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 28 19:36:07 2010 +0100 wm: Fixed three asserts, thanks to Russell Dawson! commit 43d897998ca46e389d5801b950434490f3967533 Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Dec 20 17:22:16 2010 +0100 fix: dont use stretch_hvx_ABGR, its unimplemented commit 45bc248cafae8126f5b44d4b0cb41f62f7ed50e8 Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Dec 20 16:25:52 2010 +0100 added support for 32-bit ABGR surfaces commit 29c19f01f6aa9d7e6f39a52c9f6dff014806baf1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 16 16:32:13 2010 +0100 some version requirement adjustments commit 619d9636235275ef9f6ff0b93ca52b0f17b2837f Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 16 16:26:28 2010 +0100 updated changelog commit 4affb0ab413c5c63c2e093be741751cfb915b8f0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 16 16:25:35 2010 +0100 messenger: some locking fixes commit 4c2c88b1b94a0065f6e2d4c46f376530c720e643 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 16 16:24:46 2010 +0100 Coma goes Voodoo Check for Voodoo in configure and if found build proxy modules. Add runtime option "coma-allow" and "coma-deny" for access policies (proxy only). - default is deny - setting just coma-allow allows everything - using coma-allow = "ComaName" allows whole component manager - using coma-deny = "ComaName" denies whole component manager - using coma-allow = "ComaName/ComponentName" allows component - using coma-deny = "ComaName/ComponentName/M0" denies method 0 - using coma-deny = "ComaName/ComponentName/N0" denies notification 0 - ... Keep track of allocations in a hash to be able to query the size when sending data via Voodoo link. Add fd_client and fd_proxy. Add fdmaster. Fix runtime option handling to check for FDARGS env instead of FSARGS. commit 6e312f3ac7b5ea985a7888382f5c33dd8f6f638a Author: Sven Neumann <s.neumann@raumfeld.com> Date: Thu Dec 2 12:42:08 2010 +0100 jpeg: correctly setup iDCT scale factors for libjpeg version >= 7 Previously the code selected scale factors that resulted in an image smaller or equal the desired size. Now the code selects scale factors that create an image equal or larger than the desired size. commit 58383eb1b677aca22a6eec0bfe40e7ed795f4386 Author: André Draszik <andre.draszik@st.com> Date: Mon Nov 22 10:27:51 2010 +0000 Revert "If a dlopen()'ed module did not register itself, try to dlsym() and call" This reverts commit f1a8923dc6a4499e0bb24814e3e251753850043b. Currently, DirectFB's lib/direct/modules.c will try to call a function with a name of shared_library_name with lib and .so removed in case the module did not have an __attribute__((constructor)) function. This works for many cases of the existing modules in the DirectFB source tree, but not for all: 1) the constructor function name of many (but not all) modules has had the string "_ctor" added a while ago. 2) some modules don't fit into this naming scheme (all which use the DIRECT_INTERFACE_IMPLEMENTATION macro to implement an interface), as they use different cApITAliSaTION rules for the function type name vs. the shared library name (e.g. IDirectFBImageProvider_GIF_ctor() vs. libidirectfbimageprovider_gif.so). These two actually mean that trying to call a 'default' constructor function after dlopen() has not been useful for quite a while. commit bc6c8a327919655986e02e9ec2e436d33f41538a Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Nov 22 12:19:57 2010 +0100 gfxcard: support clipping for vertical and horizontal flips this does not work in combination with DSBLIT_ROTATE_ flags yet. The software driver cant combine DSBLIT_FLIP_ and DSBLIT_ROTATE_ anyway, correct clipping here would cause a segfault in generic.c. commit a5098687a2992797912ab9903532d4ee78e11872 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Nov 21 21:23:49 2010 +0100 release 1.4.11 commit ea607605ac3606ba39dded6814a9222cd11debde Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Nov 21 21:21:26 2010 +0100 remove sawman lock, use layer context lock, fix build commit f7d4c817229ebdaaab2bc4636516991f25ddb529 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Nov 17 16:15:05 2010 +0100 core: added option to disable core signal handler for emergency shutdowns This is helpful for applications that have their own signal handler that deinializes DirectFB resources. the new options are: core-sighandler (default, same behaviour as before) no-core-sighandler commit dea6852acbacce6c3522575a47c4f6a60b9249b9 Author: Sven Neumann <s.neumann@raumfeld.com> Date: Wed Nov 10 14:30:40 2010 +0100 font: add font attributes to control the hinting algorithm Add font attributes to control the hinting algorithm used by the FreeType font provider: DFFA_AUTOHINTING forces use of the auto-hinter over the font's native hinter. DFFA_SOFTHINTING selects a lighter hinting algorithm. It generates glyphs which are more fuzzy but better resemble their original shape. It implies use of the auto-hinter. commit f84629bdd0144b98d831fdd304625d56c5c02483 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 16 19:17:45 2010 +0100 direct: Moved actual mutex implementation into object, i.e. no more static inlines. commit 56c0abb9178a701aa29f1b23470fa540a1966244 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Nov 11 11:56:56 2010 +0100 gfxcard: disable clipping for DSBLIT_FLIP_ flags until fixed :( commit 984056de87fb93ee38fdc5afdb606c8f0f1a0b9f Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Nov 10 19:45:06 2010 +0100 gfxcard: fix clipping for vertically and horizontally flipped blits commit 82358a02b32f9ca69536ca31eeb3d095dcbf815d Author: Sven Neumann <s.neumann@raumfeld.com> Date: Wed Nov 10 09:13:30 2010 +0100 directfb.pc: add -lm to Libs.private if needed commit 5cbc922b38caa10e38e6b03bafbb6b50ceb21184 Author: Lionel Landwerlin <llandwerlin@gmail.com> Date: Sun Nov 7 21:45:19 2010 +0100 Add -lm flag when nedded Signed-off-by: Lionel Landwerlin <llandwerlin@gmail.com> commit 43bf2e477d43fded94178c21bfb2b71932b18701 Author: Andreas Shimokawa <andi@directfb.org> Date: Wed Nov 10 11:50:31 2010 +0100 gfxcard: no preclipping if matrix is set in DrawRectangle() commit a32d2cf6f5250e3f836cf022502b706971303726 Merge: 3b190c4 b07d769 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 10 09:43:09 2010 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 3b190c45d05b568bb5f8c93fb4dea313f8637a00 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 10 09:42:40 2010 +0100 fusion: Fix broken join due to new root page file. commit b07d7695652277e37d431a04788c82d013422d42 Merge: c4b1966 53d3cb1 Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Nov 8 15:01:08 2010 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit c4b196606e2d839b81e3265ec6087ecc174fc756 Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Nov 8 14:58:11 2010 +0100 gfxcard: added fill_trap() function for filling Trapezoids without splitting into rectangles The new function is used if no matrix is set and there is no hardware support for neither trapezoids nor rectangles commit 53d3cb19a84a5011f044b75b443f0aaf19e0b8c6 Merge: cb8d2a5 0840b8a Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 8 12:40:20 2010 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit cb8d2a59f3d79b19f1f8ca780333955149d4fab1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 8 12:40:01 2010 +0100 git: Don't ignore dfb_types.h. commit 0840b8a69c763b65e4c5929941124a9c32b30717 Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Nov 8 11:51:21 2010 +0100 linux_input: fix warnings commit fd1fa661076f74cd670e468a9df6a09bad71b0b4 Merge: 604cee9 63d56ef Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Nov 8 10:29:59 2010 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 604cee9c02605b74fbb1fa305f94dac2cbb84412 Author: Andreas Shimokawa <andi@directfb.org> Date: Mon Nov 8 10:29:15 2010 +0100 gfxcard: copy Trapezoid before sorting commit 63d56ef2bbdacf8e637f335c9c76684f59e24365 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 6 23:46:04 2010 +0100 voodoo: Add simple Voodoo client/server test programs. commit 817fd6159c6ad5039794aabf61876ad1936e5221 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 21:58:55 2010 +0100 psp: strip commit c5540f5f99863f1aa45ff85e0283872f9bf5254c Merge: 9cf502e 77e5a38 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Nov 5 21:53:01 2010 +0100 Merge branch 'master' of git+ssh://cyto/home/git/DirectFB-psp commit 9cf502ec6fbe07394f10cb55243306413b6d44dd Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Nov 5 21:52:46 2010 +0100 put libpng and other to LIBS commit 77e5a38b3fe9a43873c9ca1073ef41bc1f96c17a Merge: 021976c 9bffe56 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 21:52:46 2010 +0100 Merge branch 'master' of /home/git/DirectFB-psp commit 021976ce153ba7a05ef230fdb9648f78b5272f81 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 21:52:39 2010 +0100 psp: +dup hack commit 9bffe56d8df4d74cf5548969e870afbdbd341970 Merge: 130f4f7 6a86ecd Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Nov 5 21:50:08 2010 +0100 Merge branch 'master' of git+ssh://cyto/home/git/DirectFB-psp commit 130f4f7e2adfa42f5a2d3344dd9c007e50efd450 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Nov 5 21:49:54 2010 +0100 -lc commit 6a86ecdddc5cc1133bcf8aa99328932127a5e1fb Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 21:49:11 2010 +0100 psp: -dup hack commit 6afe290db6a42e8ca33cff2da52f1d08e7d72a16 Merge: 2670ebb 530f348 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Nov 5 21:47:21 2010 +0100 Merge branch 'master' of git+ssh://cyto/home/git/DirectFB-psp commit 2670ebb6b6f9852efcf44f8d0653f09292e58e4c Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Nov 5 21:47:15 2010 +0100 ja commit 530f3485162d76f44c89ff43785667cc6a41f794 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 21:47:07 2010 +0100 psp: -dgiff commit b7f3c5454a99ec7dd4216b55478a102257360b98 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Nov 5 21:46:22 2010 +0100 typo :( commit 59b7b7fcc9ff4815056c2c4611c5785804d0b505 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Nov 5 21:45:29 2010 +0100 fix typo commit 6b79863cf6eca548eee1fa8a066d57daf091fe63 Merge: 0909b13 acb7a0f Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Nov 5 21:44:52 2010 +0100 Merge branch 'master' of git+ssh://cyto/home/git/DirectFB-psp commit 0909b13ba093aacdc6e7e478b406f67b9a888faf Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Nov 5 21:44:39 2010 +0100 add font providers commit acb7a0facd74429b157c699ff49f522bbab3b1a8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 21:41:24 2010 +0100 psp: -ft2 commit 4ed7c1461b2da285f3a37e40fcd95f304155f1eb Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Nov 5 21:40:35 2010 +0100 remove dfiff commit f3fe20727e972701ced039cc1acfe89fa485de6d Merge: b0a9e8e 0914730 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 21:40:21 2010 +0100 Merge branch 'master' of /home/git/DirectFB-psp commit b0a9e8ecddd4055cf87368a9c467bd39c43ceb58 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 21:40:13 2010 +0100 psp: -dfiff commit 091473004d2f2838be9727e4c3ca06d0bde44666 Merge: a931d53 f6e7308 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Nov 5 21:36:26 2010 +0100 Merge branch 'master' of git+ssh://cyto/home/git/DirectFB-psp Conflicts: build-psp/Makefile commit a931d534e89be4c1bf57a17dfd7f27d07f7df422 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Nov 5 21:35:10 2010 +0100 add dummy system commit f6e7308b48847796dbaefbda683b911bea436b9e Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 21:34:06 2010 +0100 psp: setup commit bcd7fb9954b0d19c8449a2f91d093d4e01de2ae1 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Nov 5 21:27:23 2010 +0100 add psp-setup.c commit ba88bdbc427bc1f8e6c8b0131a17500ec3fc32d2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 21:23:27 2010 +0100 fix commit 7e8d6fb38e9be371e7ea7fde8f9dbc75b52b8a83 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 21:22:42 2010 +0100 fix commit a718b03fa15b5e52ca12d31e8c256840c2927514 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 21:21:47 2010 +0100 psp: add fixup commit c72807b8acc5f9baadca213cf2c7f2ba2e45896e Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 21:19:42 2010 +0100 psp: fix deps commit 7cf8d60dc150fbac481d38154be96096ac18e670 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 21:19:00 2010 +0100 psp: fix deps commit 37963571b1e2aa0f5059bce6f348386cfcb7a7cb Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Nov 5 21:07:54 2010 +0100 asd commit c26b3c4f51650416e74bbb07f391a398605be4f1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 21:07:01 2010 +0100 psp: Add empty dup() as a hack. commit 1c731ef79a7ac4da2afd479754cc93b7be900088 Merge: a54f41e 2a5edad Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Nov 5 21:00:37 2010 +0100 Merge branch 'master' of git+ssh://cyto/home/git/DirectFB-psp commit a54f41ed578dfd107274e714bcca301aa7af902d Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Nov 5 21:00:27 2010 +0100 build .a commit 2a5edad8981a6357a8a4479d6738d8b89634e759 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 20:59:38 2010 +0100 psp: Add direct_strcasecmp() and direct_strncasecmp(). commit f771c3681f329aed9003d7f204e174b2f8a4a51e Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 20:59:10 2010 +0100 direct: Moved direct_strcasecmp() and direct_strncasecmp() to os source. commit efbc8e99c35415555d5388af1e490f1219e13725 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 20:50:48 2010 +0100 psp: Add fusion/build.h. commit 99c4f995e1c01d9a7060816f98b4fcb9eaf7e12d Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 20:50:26 2010 +0100 directfb: Use direct_thread_sleep() instead of usleep(). commit 99e7e23c52b871f09298b5202da2a6eeb569b2f4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 20:49:49 2010 +0100 conf: Use direct_geteuid() instead of geteuid(). commit 1bc5277c661a36f6aedb44e8274e47357f034273 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 20:49:26 2010 +0100 direct: Add direct_thread_sleep(). commit 059426ba1b7fccae46e397bf9dacb55bbf0c0f22 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 20:49:08 2010 +0100 psp: Implement direct_thread_sleep(). commit 6365ba87a7c56d90ed0ab615902ddd99f1a72b46 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 20:48:41 2010 +0100 psp: Implement direct_sigprocmask(), direct_getuid() and direct_geteuid(). commit 319533d65fc6fe7f2fb2e534bb05782e0a426d81 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 20:48:15 2010 +0100 psp: Implement direct_file_get_info(). commit fce8a6dafce4ec53dad98d2320dcbbec6a167a62 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 20:47:48 2010 +0100 glibc: Implement direct_thread_sleep(). commit a5ab2f8205d602f608067a753a8569b98263257a Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 20:47:26 2010 +0100 glibc: Clear file pointer in direct_file_dup(). commit 741ecab08e8fab7f5b5416b6f4f8f03a666508c9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 20:29:08 2010 +0100 glibc: Implement direct_getuid() and direct_geteuid(). commit 93d2bbbb7b28d13a5ea56d29e9ec5a93736907a0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 20:28:50 2010 +0100 glibc: Use fstat(), not stat()... commit 8c392046f7585955842510f85bcfc8f76fda011d Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 20:27:30 2010 +0100 direct: Added direct_getuid() and direct_geteuid(). commit 3e5a69323a798a54d68eefb90c046254f4cbf300 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 20:25:45 2010 +0100 fusion: Build without shmfile-group option support in single app mode. commit 3858eb97655b5ca07c49e683428033a0792b7fae Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 20:24:00 2010 +0100 direct: Added direct_sigprocmask(). commit c98f857bce3159c76fe5a8addd5458ee88b58e59 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 20:23:22 2010 +0100 fusion: Use direct_sigprocmask() instead of sigprocmask(). commit a2a0112105950655f395875354a8d853148d5942 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 20:22:54 2010 +0100 direct: Use direct_sigprocmask() instead of sigprocmask(). commit 3926c6f8bd9b43dbdfe6c524c676d0b4f9988bc7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 20:21:23 2010 +0100 psp: Fix DirectFile API names. commit a370e77ba34eeddd23ab6cece732421037183a2f Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 20:20:59 2010 +0100 glibc: Include <sys/socket.h>. commit 264c46e5c159b73f8ef9c06feefe5fb26a4cc6c0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 20:20:20 2010 +0100 glibc: Implemented direct_kill(), direct_sync(), direct_socketpair() and direct_sigprocmask(). commit bbe093877d8e5fbe9eefaa0d5612b33fdec3c5d9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 20:20:03 2010 +0100 glibc: Implemented direct_file_dup(). commit 86f99489da0081f478b4a520f9b6078cce6feb71 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 20:19:48 2010 +0100 direct: Added direct_file_dup(). commit 129c7e895e84e2f68ce8e4a5d40b6844a3c79c4f Merge: 27aaa95 0e2618a Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 20:15:25 2010 +0100 Merge branch 'master' of /home/git/DirectFB-psp commit 27aaa955fbdee72c06f2fc30e99cca6a59540435 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 20:15:17 2010 +0100 glibc: include sys/stat.h commit 0e2618a71d45bb90db0349258544826912664241 Merge: bd1d7ce 5542879 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Nov 5 20:15:13 2010 +0100 Merge branch 'master' of git+ssh://cyto/home/git/DirectFB-psp commit bd1d7cee2cbdc60a09b75c22b3cfe7b8628cb8ab Merge: b1373c4 dd4bab3 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Nov 5 20:15:07 2010 +0100 Merge branch 'master' of git+ssh://cyto/home/git/DirectFB-psp commit b1373c4175d8fb65ec9fc0fc7dc7b88ec3e9faa9 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Nov 5 20:14:54 2010 +0100 build imageproviders commit 55428790ef3724236b3eab7f3cf6cece814861d2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 20:14:48 2010 +0100 glibc: direct_open changed to direct_file_open commit dd4bab34d95aba798939d5acf42e5326942b8e2c Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 20:14:24 2010 +0100 psp: include fusion single objects commit 70b745e5515ff865a3732a719d30462f87832817 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 20:06:54 2010 +0100 glibc: Implemented direct_file_get_info(). commit 459ee935ea3e9797d76b837d8ddead24e019cc02 Merge: 93a6e20 44ff142 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Nov 5 19:57:10 2010 +0100 Merge branch 'master' of git+ssh://cyto/home/git/DirectFB-psp commit 93a6e209421a8b62915978aa69af187e0e29cc0c Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Nov 5 19:56:56 2010 +0100 too much commit 44ff142569c324134cd52528689ca236d4040b9b Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 19:56:27 2010 +0100 psp: fix locks commit ca6faa23ee7062dc7a35fa77b439ba5733cf188c Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Nov 5 19:20:02 2010 +0100 follow libdirect changes commit 60bf4d4429911d00749bf3624e99f592c15b2ae2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 19:19:13 2010 +0100 direct: Added DIRECT_OS_PSP. commit 899094366cb31e83dadd1cd4d61c5315e542485c Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 19:18:54 2010 +0100 font: Use DirectFile API to open and map file. commit 6d25b0746896e1290c39916187e6680d984e5b26 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Nov 5 19:17:37 2010 +0100 direct_file_map and direct_file_unmap fake implementation (read file into memory) commit ac388e138191188747f3c5e42ad172aa943e2fd3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 19:07:50 2010 +0100 direct: Fixed enum (was struct). commit 1bdc721b4f86f4102631fa0fd77c70f341d4c306 Merge: bffdb3c 1b68ebc Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 19:05:21 2010 +0100 Merge branch 'master' of /home/git/DirectFB-psp commit bffdb3cae946886b2e7731df466785482b746558 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 19:04:46 2010 +0100 direct: API changes for DirectFile, renamed functions to direct_file_, added direct_file_get_info() commit 1b68ebc601fc980e5e6f6788fbf37307880bd24b Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Nov 5 19:04:03 2010 +0100 fix commit 29bfbadef8f3fdc2109fa82c91679f4fad380d64 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 19:03:33 2010 +0100 psp: update direct/build.h commit ff88eababac004a1da1397f64ded5fb4e0017d84 Merge: e874182 23c2eaf Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 19:00:15 2010 +0100 Merge branch 'master' of /home/git/DirectFB-psp commit 23c2eaf357eed9af7cd21a15751782cb1216b89f Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Nov 5 18:59:58 2010 +0100 fixes commit a038dd5f6625db76118fccc8d8ac22f1a920a4c3 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Nov 5 18:58:23 2010 +0100 various fixes commit e87418255e39ed3c5837b4ee0925c63bddc99bc2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 18:35:15 2010 +0100 psp: Fixed include paths in os/types.h commit c3d1e541ca2f4aba3a39b959cfa1bdd60232ae96 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 18:24:54 2010 +0100 glibc: Implement direct_mmap() and direct_munmap(). commit 41ceaa4d4a97908feea6e8ce520b075e745ba370 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 18:24:31 2010 +0100 direct: Rename direct_unmap() to direct_munmap(). commit 4fb6f37602d63b62df9b71e74b98afd8a9725b92 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 18:17:07 2010 +0100 direct: Added ret_addr parameter to direct_mmap(). commit 47cf8fbc977dce0ec3c8d49af4d7597c30481ba2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 18:14:53 2010 +0100 direct: Add direct_mmap() and direct_unmap(), preliminary API, will most likely change. commit 2e62b4b2d9f186be9cf17b023895adb61daae863 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 18:06:48 2010 +0100 inputbuffer: Use direct_socketpair() instead of socketpair(). commit 60d23b4865c1a755e7dfa6a3edfb93b636f2d7e1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 18:06:22 2010 +0100 psp: Add direct_socketpair(). commit 7b9bc9da7f98f0fd6b722aec9ac0672f2c62d907 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 18:06:10 2010 +0100 direct: Add direct_socketpair(). commit 51445008ea650ab55541cbc14eb75089b254acd8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 18:02:43 2010 +0100 input: Use direct_kill() instead of kill(). commit 39efdb7c85ce937f29cec23e3ce233b27b15b8ef Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 18:02:31 2010 +0100 psp: Add direct_kill(). commit 6801e878b2e34b52839cd84d65d510c0c8bfae87 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 18:02:18 2010 +0100 direct: Added direct_kill(). commit 95bcf6e99593145af8bc6a0d13b359bcc3770d79 Merge: 56f5243 2967d3c Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Nov 5 18:02:07 2010 +0100 Merge branch 'master' of git+ssh://cyto/home/git/DirectFB-psp commit 56f5243d96249fa6b0d78175d14eece551b0d691 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Nov 5 18:01:44 2010 +0100 copy DFBTrapezoid before sorting. commit 2967d3c5342d2f13d8bc917c83043b3f0d95cc72 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 17:53:31 2010 +0100 psp: -Werror commit 60a92b08c02ea102ff9b36a9a2babc8f3de5948c Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 17:51:23 2010 +0100 core: Call direct_sync() instead of sync(). commit 0a76a4d6a86e083d52f9bc6c2c640b3e7288d12e Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 17:51:00 2010 +0100 psp: remove sync() call again commit 789b230599f41d3b2261b5a6ba8e5a4755cfd92b Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 17:50:03 2010 +0100 psp: call sync() in direct_sync() implementation commit b27f31c23b736dcd47280e6166824e6b23953085 Merge: 29ee97c 61e9e3b Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 17:49:39 2010 +0100 Merge branch 'master' of /home/git/DirectFB-psp commit 29ee97cd5e6b5efc965b37499adf69f74060bf09 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 17:49:24 2010 +0100 direct: add direct_sync() commit 61e9e3bcc0fdad1440bfb8201a92178878c74e96 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Nov 5 17:45:36 2010 +0100 fix for make clean commit 3d51fe004750c40ea2cbfb7e76279d6c539fcf4e Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Nov 5 17:44:13 2010 +0100 add -Werror-implicit-function-declaration commit 88ff297a41ad7d8600c6bf8ffee3e39136a8365e Merge: 7c7afad 05b6f10 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Nov 5 17:41:14 2010 +0100 Merge branch 'master' of git+ssh://cyto/home/git/DirectFB-psp commit 7c7afadcf446611e3c788baa51788642324b83fa Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Nov 5 17:40:49 2010 +0100 set DIRECT_OS_PSP commit 05b6f10341611b7fe249e1d16c16c23fedccbf40 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 17:38:37 2010 +0100 fusion: Include <sys/mman.h> and <sys/utsname.h> only if needed (multi app). commit da3fb70af0ebd0016fa1250630b0322e36a27083 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 17:37:02 2010 +0100 direct: Use SA_NODEFER, SA_RESETHAND and SA_RESTART only if defined. commit 7219d17fe7119573e1ceb7ca579319a8e8a1fb2a Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Nov 5 17:31:13 2010 +0100 added psp os specific stuff commit ca7625ff90095a5856a1868d7ccd8a3573632412 Merge: 09a3e09 14863a2 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Nov 5 17:24:20 2010 +0100 Merge branch 'master' of git+ssh://cyto/home/git/DirectFB-psp commit 14863a2ccb94557c8f48f167e4eef74acf9193d3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 17:18:57 2010 +0100 test commit 09a3e094539c16842429a9e214401a78f4383dbe Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Nov 5 17:17:50 2010 +0100 first version of psp build system commit d504d93ddd2dceff6a3886b598b7be59841924b0 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Nov 4 19:20:15 2010 +0100 small fixes commit 7859c9eddcdc0a33bfdd4ba126b2e055ce470d4d Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Nov 4 19:09:47 2010 +0100 reverted one change I accidently pushed commit 7c31c7b81ae37e046f8d16b8a0d05f3537b74ba1 Merge: 46c1cc1 25e2386 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Nov 4 18:59:33 2010 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 46c1cc16c23b7216e7d750581f84023bec4fe2f3 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Nov 4 18:49:44 2010 +0100 IDirectFBSurface: added FillTrapezoids() - added new type DFBTrapezoid - added FillTrapeziod() to GraphicsDeviceFuncs - software and hardware fallback to triangles - matrix operations supported commit 25e2386c79083d81458bac2e95ca9eb306ee4f48 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 4 15:49:48 2010 +0100 voodoo: Added option "server-single=" that allows to enable the single client feature that was accidentally committed without a run time option for it. commit 559f79ab0ed910543a822fac1c53f4fff9315263 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 4 12:01:11 2010 +0100 voodoo: Change session to port and use default of 2323 if port is 0 (compatible). Sessions other than 0 haven't been supported so far anyhow. Fixed parsing of value after colon in remote= option. commit e2e950273963b9dc072aef578f03998924e9deb8 Merge: 0603785 ebe9f26 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 4 10:49:50 2010 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 06037858741bb42a807e60816f5096dfcb2f7a97 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 4 10:48:17 2010 +0100 voodoo: Added addr and port parameter to voodoo_server_create(). This allows running multiple servers on one system, listening on different ports or specific interfaces, e.g. local only. commit ebe9f266a9aedc45dc03b0ff05e45270dac9a917 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Nov 4 10:48:13 2010 +0100 fix comment in driver commit 493d330ec7bf54b059b9079682e7088089491bf1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 4 10:45:09 2010 +0100 remove directfb.h.orig commit eb1be951756d6d4a12fd8d998dbdc26d4f6fc1c6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 4 10:35:55 2010 +0100 voodoo: Added parameter to choose between fork/thread to voodoo_server_create(). The recently added runtime option "server-fork" is passed to the function by dfbproxy. commit ce35a6c321f0a64d4b53c694db08224761ac9996 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 3 22:19:30 2010 +0100 DFBResult: Generate directfb_result.c using mkresult.sh to register DFBResult error strings at startup. commit 3a6ada5af561e2f99aaeb1f8ee0519fde688ff78 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 3 22:16:28 2010 +0100 atomic: Removed duplicate volatile in D_SYNC_POP_MULTI. commit c836c09df76ff6c921dd530e93b1f70594edd2b8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 3 18:11:46 2010 +0100 shm: Use FUSION_SHMPOOL_GET_BASE to get rid off hard coded address in user space. commit b7b2cd86f396a54cbd2f8c012b147d4745948742 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 3 16:23:23 2010 +0100 uniquewm: Added missing wm_set_cursor_position() as unimplemented. commit b82d6a23d9b7c37360b7eeed65bb87e94c9f3059 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 3 16:22:46 2010 +0100 fusion: Close files of shm pools for safety. commit 9bc8e295016d22e33858f9aaef5bd35de1c9d2bf Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 3 15:17:38 2010 +0100 fusion: Map shared root structure via tmp file like pools. commit 382e9d68392f1e6467deaa4e9f5a7540f21b19c3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 3 15:06:35 2010 +0100 build: Build tools before wm to let unique use directfb-csource. commit 91c2c33914eadd6a9abc8cb182361ec5809ea49b Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 3 13:10:07 2010 +0100 release 1.4.10 commit f076f4c51e7f5e4c534b1be1989bc2ff703afc0d Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 3 13:08:58 2010 +0100 build: fixed DIRECTFB_BUILD_PURE_VOODOO checks, thanks to Lionel Landwerlin commit 046825ad9947859cc732a98539248e5d62d358df Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 3 13:08:52 2010 +0100 bumped to 1.4.10 commit 3fcc384cd360a9a14bbbea14db03f45ec2132427 Author: Sven Neumann <s.neumann@raumfeld.com> Date: Tue Nov 2 16:29:29 2010 +0100 surfaces: refactor backup_allocation() Refactor backup_allocation() to only take a single parameter. commit a15f212dc09f629a5b11eebc9b0d5ae9a12d05b0 Author: Sven Neumann <s.neumann@raumfeld.com> Date: Tue Nov 2 16:21:23 2010 +0100 surfaces: fix buffer passed to backup_allocation() commit 2e83b4e665d6801d950a0ed616670f652b3c8b5b Author: Sven Neumann <s.neumann@raumfeld.com> Date: Tue Nov 2 16:18:10 2010 +0100 surfaces: fix reset of 'read' allocation pointer Move the block that resets the 'read' allocation pointer before the block that changes the local variable 'allocation'. commit 3bf1952724dc2906e24a2bdb366a69a51aa67fb2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 2 00:14:26 2010 +0100 voodooplay: include <string.h> commit ea68f14d0a19950ac286fbe6bd7bc70fd915a9cf Merge: 3f05aed d91253d Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 2 00:09:01 2010 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 3f05aedca06cfd7b75d83eacc8743d3fc133cbc3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 2 00:08:41 2010 +0100 Configure Options - Add "--enable-pure-voodoo" to build a client only library. - Add "--without-setsockopt" to disable usage of setsockopt() call. - Generate directfb_build.h with Voodoo options. - When Voodoo is enabled, add library dependency to pkg-config file and pass runtime options to libvoodoo. Runtime Options - Add "[no-]server-fork" choosing between fork() and thread based connection handling. - Add "player-name=<name>", "player-vendor=<name>", "player-model=<name>", "player-uuid=<name>" to set Voodoo Player information. - Add "proxy-memory-max=<kB>" to set maximum amount of memory per connection. - Add "proxy-surface-max=<kB>" to set maximum amount of memory per surface. - Add "proxy-layer-mask" to limit the set of layers to be used by clients. - Add "proxy-stacking-mask" to limit the stacking classes to be used clients. - Add "proxy-resource-id" to make all surfaces system only except those with the specified resource ID. Voodoo - Reuse connections when same server is used. - Lookup remote player if no host has been specified. - Implement multi response adding voodoo_manager_next_response() call. - Add flush parameter to voodoo_manager_respond() to allow efficient transmission of multi response. - Add voodoo_manager_unregister_local() which should have been there since the beginning *sigh* - Add voodoo_manager_check_allocation() looking at VmRSS if "proxy-memory-max" option is used. Implementation - Add implementation for IDirectFBDisplayLayer::GetWindow() and GetWindowByResourceID(). - Add implementation for IDirectFBWindow::EnableEvents(), GetProperty() and SendEvent(). - Add implementation for IDirectFBSurface::Read(). - Add Release calls to IDirectFBSurface and IDirectFBWindow. - Cache pixel format in IDirectFBSurface::GetPixelFormat(). Voodoo Play - Introduce discovery and transport implementation, stay tuned... commit 5d46192f229a34c23483b1dd681aa3e511ffe0e2 Merge: d25b4d5 246697c Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 1 22:49:31 2010 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/extras/++DFB commit d25b4d5c02baa795ad95677d25be76b173b9e8fc Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 1 22:48:41 2010 +0100 license: added proper COPYING file! commit 0ea27a1f8ffa9d3fe3cb485629e63fcec34c4f41 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 1 11:03:56 2010 +0100 release 1.4.8 commit bf376eb0fdcabe9a019ac4140c3e2ca781e9f4fe Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 1 11:06:27 2010 +0100 changed DIRECTFB_PURE_VOODOO to DIRECTFB_BUILD_PURE_VOODOO commit 74f5bbf4a984be280ed6eed3667dabcd93a2c4fb Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 1 11:01:48 2010 +0100 Add ISaWMan::GetUpdates() which returns updates done on screen (blocking until updated since last call). Enable support for remote session via Voodoo (when remote option is set). Add option "resolution=<width>x<height>" to set a virtual SaWMan resolution, e.g. to be used across all input devices (absolute positioning on screen, or unified relative motion/sensitivity). Default resolution is either "mode" option from DirectFB if set or queried on first screen. Add option "hw-cursor=<layer-id>" to use a hardware layer for the cursor shape. Implement new cursor APIs of DirectFB. Implement sending DWET_UPDATE events. Different fixes and minor enhancements. commit a3ab08c4d307c976371d6333742e99a787da8f78 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Oct 31 12:29:03 2010 +0100 bumped version to 1.4.8 commit d91253d8b59dbff54152fa6d91770bae58d211b0 Merge: 8ccd711 ede0fb8 Author: Andreas Shimokawa <andi@directfb.org> Date: Sun Oct 31 09:08:29 2010 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 8ccd7117e5850d7ab0ab04feeb1344b18a52756a Author: Andreas Shimokawa <andi@directfb.org> Date: Sun Oct 31 09:07:44 2010 +0100 more missing includes. (compile fixes for non gnu/linux environments) commit ede0fb80033bb1eaff58f9e84c9ad9a820b58cad Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 30 16:41:27 2010 +0200 options: Added max-axis-rate to limit the amount of input axis events. commit 1780ece2f98ccef23627c37e9253c1885baee1f9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 30 16:38:23 2010 +0200 windows: Add DWET_UPDATE for sending update events (upon Flip). Send DWET_UPDATE events in default window manager module when the application does a Flip on the window surface. This way another process can capture the output of the application. commit 0fb6eefe57eba33b4f7495742af8bd942a5c4a17 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 30 16:18:13 2010 +0200 windows: Extended cursor capabilities for advanced input devices. Add DFBWindowCursorFlags (per window) with the following definitions: DWCF_RELATIVE receive relative coordinates instead of absolute DWCF_EXPLICIT if window has focus it's also the pointer window DWCF_UNCLIPPED pointer is not clipped against stack boundaries DWCF_TRAPPED pointer is clipped against the window boundaries DWCF_FIXED pointer does not move at all, but still may send relative motion DWCF_INVISIBLE cursor opacity is zero when this window is pointer window Add DWEF_RELATIVE to DFBWindowEventFlags to indicate x/y are relative coordinates. Add IDirectFBWindow::SetCursorFlags() to set the per window DFBWindowCursorFlags. Add IDirectFBWindow::SetCursorResolution() to define per window coordinate space, e.g. SetCursorResolution( 100, 300 ) will always send 50,150 in the middle of the window. Add IDirectFBWindow::SetCursorPosition() to warp the pointer relative to the window based on the per window coordinate space if set. -- Add CWCF_CURSOR_FLAGS and CWCF_CURSOR_RESOLUTION to CoreWindowConfigFlags. Add cursor_flags and cursor_resolution to CoreWindowConfig. -- Add dfb_wm_set_cursor_position() called by IDirectFBWindow::SetCursorPosition(). -- Add SetCursorPosition() to WMFuncs. Add wm_set_cursor_position() to wm module header and set it for SetCursorPosition(). -- Removed setting of cx and cy from dfb_window_post_event(), instead this is done in window manager modules now. -- Set cx and cy of window events in default window manager module now. Add unimplemented wm_set_cursor_position() to default window manager module. commit d8da80e011132e695ca290761dfcaf081190c31d Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 30 16:07:31 2010 +0200 windows: Added IDirectFBWindow::SendEvent() to send a window event via a window. commit d204d5cb889b0fb47a01927b84f9c45ab341fee8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 30 16:41:27 2010 +0200 options: Added max-axis-rate to limit the amount of input axis events. commit e75b23cf33ee92818c71529350067832dc073fa0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 30 16:38:23 2010 +0200 windows: Add DWET_UPDATE for sending update events (upon Flip). Send DWET_UPDATE events in default window manager module when the application does a Flip on the window surface. This way another process can capture the output of the application. commit 6ce13e67d264010c5ae002fedc60364f31671aea Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 30 16:18:13 2010 +0200 windows: Extended cursor capabilities for advanced input devices. Add DFBWindowCursorFlags (per window) with the following definitions: DWCF_RELATIVE receive relative coordinates instead of absolute DWCF_EXPLICIT if window has focus it's also the pointer window DWCF_UNCLIPPED pointer is not clipped against stack boundaries DWCF_TRAPPED pointer is clipped against the window boundaries DWCF_FIXED pointer does not move at all, but still may send relative motion DWCF_INVISIBLE cursor opacity is zero when this window is pointer window Add DWEF_RELATIVE to DFBWindowEventFlags to indicate x/y are relative coordinates. Add IDirectFBWindow::SetCursorFlags() to set the per window DFBWindowCursorFlags. Add IDirectFBWindow::SetCursorResolution() to define per window coordinate space, e.g. SetCursorResolution( 100, 300 ) will always send 50,150 in the middle of the window. Add IDirectFBWindow::SetCursorPosition() to warp the pointer relative to the window based on the per window coordinate space if set. -- Add CWCF_CURSOR_FLAGS and CWCF_CURSOR_RESOLUTION to CoreWindowConfigFlags. Add cursor_flags and cursor_resolution to CoreWindowConfig. -- Add dfb_wm_set_cursor_position() called by IDirectFBWindow::SetCursorPosition(). -- Add SetCursorPosition() to WMFuncs. Add wm_set_cursor_position() to wm module header and set it for SetCursorPosition(). -- Removed setting of cx and cy from dfb_window_post_event(), instead this is done in window manager modules now. -- Set cx and cy of window events in default window manager module now. Add unimplemented wm_set_cursor_position() to default window manager module. commit 7d5648e57be174b15fa61b0f3fe385cfdb32a9f1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 30 16:07:31 2010 +0200 windows: Added IDirectFBWindow::SendEvent() to send a window event via a window. commit d396deb5855aaedfa65f68488b3607a70a8db999 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 30 14:05:14 2010 +0200 layer: Added IDirectFBDisplayLayer::GetWindowByResourceID(). It returns the first window with a surface matching that resource id. commit a8f4b3722910cdb44f2ffadb7c14ded6498be03e Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 30 13:18:45 2010 +0200 fusion: Don't assert that msg_size is greater than zero. msg_size may be zero which means the actual message size is passed with each dispatch call. commit 0369ab1a76305c6ba17e218056ce3b204ee15c2e Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 30 13:11:01 2010 +0200 LinoType: Added new font module using LinoType library. commit 14125d9510f276f0f18f7484761a6f33eb470f5f Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 30 13:05:57 2010 +0200 fonts: Added font rotation based on initial patch from Phil Endecott. Add DFDESC_ROTATION to DFBFontDescriptionFlags. Add rotation to DFBFontDescription. Add DFB_DEGREES and DFB_RADIANS convenience macros. Add IDirectFBFont::GetLineSpacingVector() and GetGlyphExtentsXY(). commit 223efadfca5d211d73014032af784c7c98331252 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 30 12:56:21 2010 +0200 keyboard: Extend custom key definitions from 100 to 255. commit bcdd03026751ca27c5465efc897f6daaa472d357 Author: Sven Neumann <s.neumann@raumfeld.com> Date: Thu Oct 28 22:56:25 2010 +0200 fbdev: fix issues with fbdevMuckOut() Fix debug macros so the code compiles and works when compiled with debug enabled. commit 47902f221d9f5be5feb48a7ebd7938a8e3bc623f Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 28 00:51:25 2010 +0200 fbdev: Add MuckOut implementation for surfaces in fbdev pool using surface manager displace. commit cb967c0b0aa24df3a2761bfe7ee346350bb98e52 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 27 21:46:52 2010 +0200 font: Try to mmap the font file before loading all of its contents via data buffer. commit 3b0f198f427264aeff845dd86af4f9522f6ddf10 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 26 22:59:48 2010 +0200 default-wm: fixed wm_window_lookup to return DFB_IDNOTFOUND when window with specified ID wasn't found commit b7454efa9ad4a01c7c7ec653e61e578dfba42f78 Author: André Draszik <andre.draszik@st.com> Date: Sat Oct 23 22:59:38 2010 +0100 directfb-csource: fix colour replacement for transparent pixels commit eec7fda707dfe834876e4b61c28b23d1cf88a4f4 Author: Andreas Shimokawa <andi@directfb.org> Date: Sat Oct 23 10:21:22 2010 +0200 Query GLX_RED_SIZE, GLX_GREEN_SIZE, GLX_BLUE_SIZE, GLX_ALPHA_SIZE and add their values instead of querying GLX_BUFFER_SIZE. (Although the GLX specification says GLX_BUFFER_SIZE is the sum of GLX_RED_SIZE, GLX_GREEN_SIZE, GLX_BLUE_SIZE, GLX_ALPHA_SIZE, this is often not the case.) This fixes glx acceleration with nvidia and probably other drivers. commit 060f810f5de94a45206b07e7c9596c10b85e113d Author: André Draszik <andre.draszik@st.com> Date: Thu Oct 21 17:29:52 2010 +0100 conf: whitespace commit 505f8946f1ac8983c9b207144b3a585aefc13766 Author: André Draszik <andre.draszik@st.com> Date: Wed May 19 05:29:26 2010 +0100 image providers: refactoring exercise step 2 Move lots of common code (AddRef(), Release(), and SetRenderCallback()) to one single place. commit a7e3861934c493faab0077cc1ce5a832458f3ffb Author: André Draszik <andre.draszik@st.com> Date: Wed May 19 05:05:59 2010 +0100 image providers: refactoring exercise step 1 Create a base struct to be used by all the image providers, and make them use it. This will allow us to factor out some code common to all image providers. commit dcd6c9a7c9e5cd31c65f8bd58aa79b9b2dec6ac0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 19 14:39:34 2010 +0200 fonts: Avoid too many surface switches during one string rendering. commit 910958e4051b051723693116126f4431a4b1bc75 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 19 14:34:24 2010 +0200 gfxcard: fixed warnings commit 50c38b54ca0e5261ed17fcfc2ef62d29aa56f31b Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 19 14:33:12 2010 +0200 fonts: set default max-font-rows to 99 commit c3e6db20818fb56f96064de9d83468216078fb87 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 19 14:03:22 2010 +0200 surface pool: Fix namespace of surface_pool_get_local. commit 2801186d9a14296c3dc3a3ea9922027552eb57e4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 19 13:44:03 2010 +0200 fonts: One more assertion fix, check on row != NULL, just removed cache member (unused). commit ce0cd0ba16aa3c3a2b79844b675a0cdc035be917 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 19 12:45:58 2010 +0200 configure: Use -Wall for CXXFLAGS as well. commit 752f170591b0def655954a080c9ce2cdac166a57 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 19 12:45:40 2010 +0200 mkdgifft: Fixed warnings. commit 1900fc8c7499747efda6f49e775c0394ef0f0f99 Author: André Draszik <andre.draszik@st.com> Date: Thu Oct 14 11:59:36 2010 +0100 generic: improve code readability commit f7a98d76b49173fcdcbfc26e3e83a56bd217158f Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Oct 14 14:15:20 2010 +0200 - provide libshjpeg patch until merged upstream commit b08fd67739fe22b6dbe8a52c7531ca9b1a963a58 Author: Andreas Shimokawa <andi@directfb.org> Date: Thu Oct 14 14:08:58 2010 +0200 - rewrote sh772x driver to use libshbeu - reintroduced jpeg provider, uses libshjpeg commit 80c6a8448023f5ab603e54523845185190203b17 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 14 12:00:48 2010 +0200 dummy: Added new dummy system module, e.g. for using DirectFB offscreen only. commit 8050415b921edd638260a8315019ac28a1b615bd Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 14 11:59:48 2010 +0200 layers: Use surface_caps and surface_accessor if specified in DFBDisplayLayerDescription. commit 6502a98f3e9843480d99ff11762e25be5c06eba5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 14 11:59:03 2010 +0200 layers: Added surface_caps and surface_accessor to DFBDisplayLayerDescription. commit 27754b29f49b5969dbf140a3e37aaa1f0c7776d8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 14 11:25:19 2010 +0200 mkdgifft: Fixed warnings. commit 331672add25a591e86a8857cd3d329b841422686 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 14 11:25:01 2010 +0200 test: Fixed warning in fusion_skirmish test. commit a0fb165ec225f2d01173b13f73d247b5a3e192ea Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 14 11:24:45 2010 +0200 dfbtest_font: Fixed warning. commit f932370f61c1858e357c84a8d0088b117e5f7ea8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 14 11:23:59 2010 +0200 voodoo: Fixed warning by adding cast to VOODOO_PARSER_GET_ODATA. commit e8575739d576f378568c179c86b7763e51903b3c Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 14 11:23:43 2010 +0200 proxy: Fixed warnings. commit 6baa35c51ad6228852d56bb4d6dc748c9c73c0f9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 14 11:23:31 2010 +0200 ft2: Fixed warnings. commit 02aad7d91ae1febcfa158405f8b4e074b4a90d99 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 14 11:11:06 2010 +0200 configure: Don't append '-std=gnu99' to CXXFLAGS. commit fb786bafc6b2b4e6ba37de15df4f7efdcf21cc2a Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 14 11:10:27 2010 +0200 directfb-csource: Fixed warnings. commit 0c1f745c5214cd8b9f522601712ff50184c25bad Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 14 11:10:10 2010 +0200 x11: Fixed warnings. commit 11ec37c5fc03b5e45b151ee2887cbe29c56601b6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 14 11:06:54 2010 +0200 generic: Fixed warnings about unused functions (via attribute). commit 5029b7a9b6dfeecca284dc53ed5005d766ed86b9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 13 18:47:32 2010 +0200 screen: Fixed warning. commit 0071eae4736b3d0b17f7f36af50e419dd7482214 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 13 18:47:16 2010 +0200 input: Fixed warning. commit fb5560d50b0f8b7915cc59f219217636acd3a8e6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 13 18:46:54 2010 +0200 fonts: Fixed wrong state member being used for blitting flags... commit ee7c6eb703ac160ca0adb515aaa7e90b20a13ba1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 13 18:46:41 2010 +0200 core: Fixed warning. commit 853fb549de89a07191dfdb57f07b1a9687ceb817 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 13 18:46:23 2010 +0200 shm: Fixed warnings. commit a76888b3d1d17293188ebd93e6a4dcad72295cd1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 13 18:46:05 2010 +0200 futex: Fixed warning. commit a74458e47fdf2d0b29b44bc5a4e32d53d4b9afab Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 13 18:09:29 2010 +0200 fonts: Fix assertion because of missing cache assignment. commit 4caf40fbabf1bdfe04de675ce0bfc87077b8ddac Author: Andreas Shimokawa <andi@directfb.org> Date: Sat Oct 9 12:47:59 2010 +0200 build fix: include <sys/stat.h> for fstat() commit 1301d6ffd254836ebb15c640aebf202ef3f90f18 Author: Andreas <andi@reactor.(none)> Date: Sat Oct 9 12:36:18 2010 +0200 build fix: replaced direct_* with direct_dbg_* where appropriate commit d2865da3260f659123ae15a92003ac394e5e0b8e Author: Andreas <andi@reactor.(none)> Date: Sat Oct 9 11:40:16 2010 +0200 include <sys/stat.h> for fstat. commit 79efdaf0643d19189f4d8b2b948e64513d47b8c9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 8 15:03:34 2010 +0200 libdirect: Welcome 1.5! commit 5fecc32403cfdeed4df408f661acd7ba2b77f69a Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 8 15:03:11 2010 +0200 idirectfb: fixed warning commit 5367c50a108e166a8db13845c6141c28cef81e75 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 8 14:55:25 2010 +0200 voodoo: fixed warning commit 2b5deba31338674d9649aaea6dea14cd69c9f52f Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 8 14:55:01 2010 +0200 dfbproxy: fixed warning commit 4a85b3959946f7ecc637563f50ae7b238d27cf81 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 8 14:54:45 2010 +0200 generic: fixed some warnings commit f7216ffe7233f700411f44cd880f71d63b1b339f Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 8 14:54:32 2010 +0200 layers: fixed warnings commit cf33de7c57c78ad84c0a58a28ea5f09851c6c3e6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 8 14:54:11 2010 +0200 input: fixed warnings commit b6325d8fffef1723967dae7fc7b1c7719fe761dc Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 8 14:48:42 2010 +0200 fonts: fixed warnings commit 1e3d582dc887c3d01253916ecefc9befc2b76df3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 8 14:41:16 2010 +0200 map: fixed warnings commit beeb6144400bac729e8d68168696baa42896bc7d Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 8 14:05:15 2010 +0200 release 1.4.6 commit c8a0921edcef4dffb5e24349818ba00ebb195eb2 Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Oct 8 12:00:18 2010 +0200 build fixes for new c++ code commit e3ff6d047c3d72a7c54c4ed2328ea7ae51c5061f Author: Andreas Shimokawa <andi@directfb.org> Date: Fri Oct 8 10:49:01 2010 +0200 use direct_snputs() instead of snprintf() (also fixes gcc warnings) commit 4fd23cf60e4bd9a22b52df9e542ff59c43d86a47 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 8 10:33:56 2010 +0200 configure: add -std=gnu99 to CFLAGS commit c066948c6b01f8e841d6f38b4c95e67faa5ec9f6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 8 09:55:39 2010 +0200 fonts: Reworked font cache for global cache row management. - Font cache rows are shared across fonts. - Maximum number of cache rows is total and not per font. - Cache rows are selected by individual glyph height, not font height. Applications may now load hundreds of fonts and use them in a random fashion without having hundreds of font cache rows. commit a3ff914ff718791dde30d40729f77b17acc997f1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 8 09:51:42 2010 +0200 map: added map implementation, like hash with custom objects as keys instead of primitives On creation pass in a hash_func and compare_func. hash_func calculates hash based on key. compare_func checks if the object matches the key. commit c76bbdc3d7dd80d5b4f07487378f086550d17ef5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 7 22:19:08 2010 +0200 graphics: Cleanup code by moving font state setup/restore into two functions. commit 6af0d424746666601887a846e791d408334d4e3e Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 7 22:17:51 2010 +0200 font: Removed default font implementation, use of DGIFF is adviced instead. commit bd69fa94f9eeeb7e714f98420b8d8d548cbb7332 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 7 22:15:21 2010 +0200 list: Change direct_list_check_link to be a macro for getting the actual file:line in assertions. commit 8354fdff105ded6ab48adf70d2f3471e09d95241 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 7 22:13:39 2010 +0200 mkdgifft: New tool to generate DGIFF from a description and image files. Description looks like this: face { size 54 height 47 ascender 40 descender -6 maxadvance 40 blittingflags BLEND_ALPHACHANNEL glyph { unicode 0x0041 left 0 top 0 advance 40 file "smiley1.png" } glyph { unicode 0x0042 left 0 top 0 advance 40 file "smiley2.png" } } commit 538a372c1fba069547b1801070ad2f35d1400880 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 6 11:56:43 2010 +0200 linux_input: Fix build when HAVE_INPUT_ABSINFO is not defined though input_absinfo is available. Need to add proper configure check for HAVE_INPUT_ABSINFO! commit c88992b94493ac8fda54a7cff6086ddc88871e29 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 6 11:56:20 2010 +0200 linux_input: Query vendor and product id. commit 9f55d7f3cc06f2e82fefb1f15c3681f1b0ae3612 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 6 11:48:37 2010 +0200 input: Add vendor_id and product_id to DFBInputDeviceDescription. commit bc4109a21dfef8d13c367c43e7bd27e0e458e35b Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 6 10:50:00 2010 +0200 DGIFF: Add blitting flags to structure in file (in place of padding), backward compatible. commit 1e5a56006caaada06438ea1f048fc9e6b11bc27b Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 6 10:49:21 2010 +0200 generic: Show blend functions in Blit warning. commit 236f652372a8f16a85e46246e8c22d4a3f899360 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 6 00:14:56 2010 +0200 mkdgiff: Added option --premult (-p) for premultiplied alpha (ARGB only). commit 247146ef9edcf4560b71d6e9b5121647bbf53253 Author: Denis Oliver Kropp <dok@localhost.(none)> Date: Thu Sep 23 20:05:17 2010 +0200 sh772x: Remove all jpeg related code The jpeg code was commented out and also removed from the SOURCES declaration in makefile.am, but the remaining code still #included sh7722_jpeglib.h patch by Phil Edworthy <phil.edworthy@renesas.com> commit 924fff15dc8edc45799b3228f2250cfadc5b2b76 Merge: 1fdd7ab 8175b70 Author: Denis Oliver Kropp <dok@skunk.intern.txtr.com> Date: Thu Sep 23 13:14:16 2010 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 1fdd7abf2130c67f6606034088fecaf27ec75b40 Author: Denis Oliver Kropp <dok@skunk.intern.txtr.com> Date: Thu Sep 23 13:13:02 2010 +0200 directfb-csource: Follow macro name change from previous commit. commit 8175b702f1fc9f9c5a35a5dbb5dfaedaf4a7b46d Author: Denis Oliver Kropp <dok@localhost.(none)> Date: Thu Sep 23 12:59:51 2010 +0200 dfbtest_font: Extended test to load font at different sizes. commit 052763d884525639a463efd5bba461792a84593a Merge: d46d766 52b2766 Author: Denis Oliver Kropp <dok@localhost.(none)> Date: Thu Sep 23 12:59:15 2010 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit d46d766869e3149c4a8e6b457516a2218ed41637 Author: Denis Oliver Kropp <dok@localhost.(none)> Date: Thu Sep 23 12:58:24 2010 +0200 header: add some comments to video provider structs to avoid errors in parser commit 52b2766927eadc2a0b03c28ad6215ac19d12829a Author: Denis Oliver Kropp <dok@skunk.intern.txtr.com> Date: Thu Sep 23 12:28:39 2010 +0200 gfx_util: Added dithering for non-RGB16 formats with separate configure option (only ARGB4444 so far) commit eb0467496681c98db4a567ee48836d33e848e1a8 Merge: 8e5341e f9cd9ae Author: Denis Oliver Kropp <dok@skunk.intern.txtr.com> Date: Thu Sep 23 11:21:18 2010 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 8e5341ef5cbb80a7bc9f5969d4b14e4db6796db1 Author: Denis Oliver Kropp <dok@skunk.intern.txtr.com> Date: Thu Sep 23 11:20:22 2010 +0200 IDirectFBFont: Added Dispose() to free resources used by the font, but keeps it usable, recreating resources as needed. commit f9cd9aeeb438fa55f6f5ef850e02e2b4fe1ce6be Author: Denis Oliver Kropp <dok@skunk.intern.txtr.com> Date: Thu Sep 23 11:16:50 2010 +0200 sh772x: Remove the hook for the BEU IRQ as it isn't used for anything and will soon conflict with kernel resources. patch by Phil Edworthy <phil.edworthy@renesas.com> commit 17482789552ee3d044ce7457a83366d37361fab0 Author: Denis Oliver Kropp <dok@skunk.intern.txtr.com> Date: Thu Sep 23 10:17:51 2010 +0200 configure: add sh-) to detect toolchain (by Phil.Edworthy@renesas.com) commit 34ec42ef5ec03512156fd35dc9b1fdedbdbf262b Author: Denis Oliver Kropp <dok@skunk.intern.txtr.com> Date: Thu Sep 23 10:11:04 2010 +0200 Added systems driver specific shared surface data structure Added a systems driver specific shared surface data structure that is created/destroyed by the core. Added three new functions to the systems driver to do this: system_surface_data_size, system_surface_data_init, and system_surface_data_destroy. This allows the systems driver to store custom data in the CoreSurface. patch by timothy.strelchun@intel.com commit e0e0cb670e8de90c1f3cc99529acf7e520f37196 Author: Denis Oliver Kropp <dok@skunk.intern.txtr.com> Date: Thu Sep 23 10:07:58 2010 +0200 Added surface_pool_get_local Added the function surface_pool_get_local to enable a surface buffer pool to obtain its own local data. Useful for custom surface buffer pools so that they do not have to explicitly store a static local pointer to it during init/join. patch by timothy.strelchun@intel.com commit 26253f2629ebdf5dcef89aaabcd2e10ebfeb5dec Author: Denis Oliver Kropp <dok@skunk.intern.txtr.com> Date: Thu Sep 23 10:05:57 2010 +0200 Added layer enumerators to CoreSurfaceAccessorID & updated handling Expanded CoreSurfaceAccessorID to include enumerators for all possible display layers to resolve array out-of-bounds accesses that can occur when display layer surfaces are locked (internally/externally) that have an id value > 7 and < MAX_LAYERS. Updated dfbdump tool to dump information regarding all available display layers. patch by timothy.strelchun@intel.com commit f08d4a56591008ca77ddc8607a60ee8e4a77e3d6 Author: Denis Oliver Kropp <dok@skunk.intern.txtr.com> Date: Thu Sep 23 10:03:54 2010 +0200 Default WM clears pending region updates on process_updates failure In the default window manager's process_updates function, if there is a failure to obtain the primary region, reset and clear all pending region updates (such as due to cursor movement) to prevent the region from performing any subsequent outdated repaints. In some multiple display layer usage scenarios when that would previously occur, visual artifacts have been observed on other display layers. patch by timothy.strelchun@intel.com commit 55d521ec406e035f10bc2ff2351c4bf8bd51313f Author: Denis Oliver Kropp <dok@skunk.intern.txtr.com> Date: Wed Sep 22 12:52:26 2010 +0200 options: Added "max-font-rows" and "max-font-row-width" font cache limit options. commit 3fc02996904812401c037972be12951d7ab654d4 Author: Sven Neumann <s.neumann@raumfeld.com> Date: Wed Aug 25 10:11:29 2010 +0200 linux_input: set DICAPS_KEYS for all input devices with key events All linux input devices that have the EV_KEY bit set get DICAPS_KEYS set in their DFBInputDeviceCapabilities. Signed-off-by: Sven Neumann <s.neumann@raumfeld.com> commit e2649a62092c921c7294e912afaf4660f38c9ee4 Author: Sven Neumann <s.neumann@raumfeld.com> Date: Wed Jul 7 10:12:07 2010 +0200 x11: don't blank the cursor commit cb4093d57a383885974a3577146f46399d174cb7 Author: Sven Neumann <s.neumann@raumfeld.com> Date: Wed Jul 7 10:08:09 2010 +0200 tools: add option 'transparent' to directfb-csource Add an option that allows to specify a color to be used for all completely transparent pixels. commit cdc75f1f1eaf5172a24adea78f8647409987c9b0 Author: Sven Neumann <s.neumann@raumfeld.com> Date: Wed Nov 25 12:02:26 2009 +0100 input: initialize linux_input key states IDirectFBInputDevice caches the key states (up/down) by keeping track of press and release events. This doesn't take into account that a key may be pressed at the time the device is opened or that a key might have changed state while the device was in suspend. This change introduces code to the linux_input driver that queries the keystates when the event thread is started and synthesizes key events for all keys depending on the key state as reported by the linux input layer. Signed-off-by: Sven Neumann <s.neumann@raumfeld.com> commit 438a9b1b5e9fbabfa243a699f2abebaa647bd211 Author: Denis Oliver Kropp <dok@localhost.(none)> Date: Thu Aug 19 02:00:42 2010 +0200 config: properly allocate memory for getcwd call commit 3a4befbd92469ea274fd51d96ffd2c061d08a999 Author: Denis Oliver Kropp <dok@localhost.(none)> Date: Thu Aug 19 01:41:05 2010 +0200 options: added "[no-]cursor-automation" for "Automated cursor show/hide for windowed primary surface" commit 8af5573e8cc42a2e0f08d2a6fb14ec414039519e Author: Denis Oliver Kropp <dok@localhost.(none)> Date: Thu Aug 19 01:32:10 2010 +0200 util: added dfb_gfx_stretch_to() commit 819efe67a624112085faec609dbf5a2c1a30eaa8 Author: Denis Oliver Kropp <dok@localhost.(none)> Date: Thu Aug 19 01:22:07 2010 +0200 directfb: updated banner, added optional DIRECTFB_VERSION_VENDOR display (just define via CPPFLAGS) commit 2067c761f226fdd4c54d200089f8037550313d2a Author: Denis Oliver Kropp <dok@localhost.(none)> Date: Thu Aug 19 01:15:23 2010 +0200 version 1.4.6 commit f49b17b3fd5211920b9e8f20298fed62f0f8c488 Author: Denis Oliver Kropp <dok@localhost.(none)> Date: Thu Aug 19 01:11:47 2010 +0200 debug: added D_DEBUG_CHECK() macro implemented by new function direct_debug_check_domain() commit cea8365a168cd786df7f569be287143ec4610e21 Author: Denis Oliver Kropp <dok@localhost.(none)> Date: Thu Aug 19 00:39:57 2010 +0200 release 1.4.5 commit b427695a3e0fbb4590f1b9226d17e2bb1d4f0d07 Author: Denis Oliver Kropp <dok@localhost.(none)> Date: Thu Aug 19 00:39:05 2010 +0200 sawman: flipping enhancements - implements DSFLIP_QUEUE/FLUSH - new update scheme for double and triple buffering commit eb269ef6d1493c1d4002e4759e95b7b5d7b4145f Author: Denis Oliver Kropp <dok@localhost.(none)> Date: Thu Aug 19 00:38:37 2010 +0200 version 1.4.5 commit b1964ffb5d6b87be10e68f4de2dd4dd44e501e3c Author: Denis Oliver Kropp <dok@localhost.(none)> Date: Thu Aug 19 00:35:01 2010 +0200 release 1.4.5 commit 1640a04f5f8a2f499e1a8576d0af2cb53e5b426e Author: Denis Oliver Kropp <dok@localhost.(none)> Date: Thu Aug 19 00:32:57 2010 +0200 surface: flipping enhancements - added DSFLIP_QUEUE and DSFLIP_FLUSH - added CSNF_DISPLAY - added dfb_surface_notify_display() - added dfb_gfx_copy_regions() utility function commit ad43c9b79042a06a7d527b8116265ecd71867fe5 Author: Denis Oliver Kropp <dok@localhost.(none)> Date: Thu Aug 19 00:32:51 2010 +0200 version 1.4.5 commit 9df3dc14197d8caa13ffc47ec5edc383c9d172da Author: Denis Oliver Kropp <dok@localhost.(none)> Date: Wed Aug 18 11:33:37 2010 +0200 release 1.4.4 commit 9caa65bb2cbab8dda476218a08b8aadf90bd95a8 Author: Denis Oliver Kropp <dok@localhost.(none)> Date: Wed Aug 18 11:31:46 2010 +0200 release 1.4.4 commit 229de8dd238278fb26228708b920dc2c4dc0f61b Author: Denis Oliver Kropp <dok@skunk.intern.txtr.com> Date: Thu Aug 12 18:02:30 2010 +0200 voodoo: one more warning/error commit c885424f6b06d3d675eff0e91ab8acc8148d7b21 Author: Denis Oliver Kropp <dok@skunk.intern.txtr.com> Date: Fri Aug 6 20:53:00 2010 +0200 voodoo: fixed warnings commit d53c6c71e73b86917b444c809c157280ac6b43ce Author: Denis Oliver Kropp <dok@skunk.intern.txtr.com> Date: Fri Aug 6 16:32:56 2010 +0200 voodoo: fixed some warnings commit e606c000acb51a30e95b6a01e8ce4f4ce370b00d Author: Denis Oliver Kropp <dok@skunk.intern.txtr.com> Date: Fri Aug 6 16:25:04 2010 +0200 voodoo: don't redefine htons commit d2a911709b0a876651947760d80485e91852e055 Author: Denis Oliver Kropp <dok@skunk.intern.txtr.com> Date: Fri Aug 6 16:24:43 2010 +0200 modules: avoid warning by adding missing #ifdef DYNAMIC_LINKING commit bfd25ad8009d2cb5fcaee235139a973cec5683df Author: Denis Oliver Kropp <dok@skunk.intern.txtr.com> Date: Fri Aug 6 16:24:17 2010 +0200 memcpy: don't include dfb_types.h commit 483b322b9c2c0025c166022cc9380838de8ec326 Author: Ville Syrjala <syrjala@sci.fi> Date: Mon Jun 21 05:38:24 2010 +0300 direct/interface: Add missing pthread_mutex_unlock call commit 88dcd0e86487957f50ba153a5571ea883ea83150 Author: Ville Syrjala <syrjala@sci.fi> Date: Fri Jul 3 18:23:47 2009 +0300 mach64: Enable auto block writes with WRAM commit bc671612cb7b67c64deffab70763e17a8e721b63 Author: Ville Syrjala <syrjala@sci.fi> Date: Thu Aug 20 11:53:49 2009 +0300 linux_input: Ignore devices w/o caps Devices without caps are useless. Ignoring them will make it less likely that MAX_LINUX_INPUT_DEVICES is exceeded and some actually important input device gets left out. commit f0e54d88fb1774cf18fc4e317e412a3d6b6515cf Author: Ville Syrjala <syrjala@sci.fi> Date: Wed May 20 19:25:37 2009 +0300 surfaces: Add some missing dfb_surface_buffer_lock_deinit() calls commit 6f761c6eb4ebbb8f2ce1a1cb5a31d0e585d5c0dd Author: Niels Roest <niels@directfb.org> Date: Sun Jun 27 23:44:40 2010 +0400 reverted 401f5fec02bcd6179c5e70e9b438836a02a49b45 removed the ugly hack that copies locks. This should work now, given the patches provided by Timothy. Not seen any locks so far here.. commit ec26598c5835c036a4f8bb9d4baebd37edb5fc59 Author: Niels Roest <niels@directfb.org> Date: Sun Jun 27 23:31:52 2010 +0400 input: compatibility with system X11 commit 2c1a806233d11a402eb76e39fb193eeb78d61351 Author: Niels Roest <niels@directfb.org> Date: Sun Jun 27 23:31:26 2010 +0400 revert 6697e1db627bea5e24150999819cf8e3d67ef46f causes problems on PC with system X11 to be further investigated.. commit dd821f539839c85d512e5c46c318364fbd38026d Author: Niels Roest <niels@directfb.org> Date: Sun Jun 27 23:30:10 2010 +0400 revert aa25cc7283a20da12385c80d45a3497a5a625ab6 said patch causes program end to block on PC with system x11 commit 7a0ec465f9b395bba5fdff62739d82b4d6585e17 Merge: 02ee33d 52408af Author: Niels Roest <niels@directfb.org> Date: Sun Jun 27 23:21:40 2010 +0400 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/extras/SaWMan commit f18821c01382ac743f38614a7b85ed52bbc00718 Author: Niels Roest <niels@directfb.org> Date: Sun Jun 27 22:52:12 2010 +0400 core: Fix to not hold region buffer lock for lifetime of layer Made changes to avoid locking the region buffer for the lifetime of the display layer and to only lock it whenever needed. This allows more than a single process to lock the region context and prevents them from deadlocking. patch by: Timothy Strelchun <Timothy.Strelchun@Intel.Com> commit 0f1992ac4a2524277b12a3f25c99a021f6923ce0 Author: Niels Roest <niels@directfb.org> Date: Sun Jun 27 22:50:24 2010 +0400 core: Added USB hot-plug support to linux_input and input core. Added the ability for the DFB input core to support input providers that provide hot-plug support for their associated input devices. Currently, only the linux_input input provider has been updated to support the hot-plug capability. The changes involved: 1. Added six functions in InputDriverFuncs as the common interface for all input providers (drivers) to implement the hot-plug feature (including suspend and remove handling), and updated the DFB input core to support the feature. 2. Implemented hot-plug feature for the linux_input provider. Also updated it to only report support for hot-plug and provide devices if the systems driver (fbdev) has opened the /dev/tty0 for use. 3. Implemented two functions (dfb_input_create_device and dfb_input_remove_device) in input.c which will be called by input providers to maintain the status of input devices in the DFB input core. 4. Implemented stack_containers_XXX function family to maintain the connections between windowstacks and input devices. 5. Implemented containers_XXX function family to maintain the connections between input event buffers created by IDirectFB::CreateInputEventBuffer and input devices. Patch by: Timothy Strelchun <Timothy.Strelchun@Intel.Com> commit aa25cc7283a20da12385c80d45a3497a5a625ab6 Author: Niels Roest <niels@directfb.org> Date: Sun Jun 27 22:33:36 2010 +0400 core: Enable Fusion message dispatching usage during shutdown Delayed stopping the Fusion dispatcher in dfb_core_shutdown(). The Fusion dispatcher is needed to handle Fusion events during the releasing of resources. Patch by: From: Timothy Strelchun <Timothy.Strelchun@Intel.Com> commit 6294d37f509572c039616fec3c81f9d0676ae4e6 Author: Niels Roest <niels@directfb.org> Date: Sun Jun 27 22:32:18 2010 +0400 core window stack: Fixed _dfb_windowstack_inputdevice_listener race condition with layer context Fixed a race condition when _dfb_windowstack_inputdevice_listener begins using a layer context, that is then destroyed before the listener has finished using it. This problem occurs because the layer context's reference count was never incremented to account for the listener's reference to it that it stored and subsequently used. Rather than establishing a reference count cycle (with the window stack having a reference to the layer context which has a reference to the window stack for which additional complexity would be needed to break), the listener now just increments the layer context's reference count prior to usage and then decrements it. Patch by: From: Timothy Strelchun <Timothy.Strelchun@Intel.Com> commit aa1b5b1dc17f9a1c3edd508d69653943e17f4269 Author: Niels Roest <niels@directfb.org> Date: Sun Jun 27 22:31:10 2010 +0400 core: Fix various layer context lock related deadlock scenarios Changed dfb_layer_context_get_primary_region to return the error DFB_TEMPUNAVIL if the primary region is being destroyed. Previously in this scenario (which means the primary region's reference count was zero and there was not a request to create a new one), a deadlock could occur involving the layer context lock when the primary region was being destroyed by the main thread (single-app mode), the Fusion Loop thread (multi-app mode), or any other thread (such as linux_input thread that triggers the window stack input processing) is trying to get the primary region. In addition, object_reference_watcher would be called more than once when the reference count changes from 1 to 0 again in the implementation. Patch by: From: Timothy Strelchun <Timothy.Strelchun@Intel.Com> commit 614873cdcb84e355d378c1683d10519190aff8a9 Author: Niels Roest <niels@directfb.org> Date: Sun Jun 27 22:30:17 2010 +0400 fusion: Fixed global reaction handling to prevent multiple removals Fixed global reaction handling so that one is not removed more than once from the global reaction list in fusion_reactor_detach_global and process_globals. This involved keeping the global reaction's attached field updated in fusion_reactor_attach_global, fusion_reactor_detach_global and process_globals. patch by: Timothy Strelchun <Timothy.Strelchun@Intel.Com> commit 58aae687097212c30e84180572799d8f053d32b3 Author: Niels Roest <niels@directfb.org> Date: Sun Jun 27 21:54:47 2010 +0400 direct: ntohl normally already defined in either in.h or inet.h commit 6a7320bc7e65966291836486fdf22ba6f2aec698 Author: André Draszik <andre.draszik@st.com> Date: Mon Jun 14 23:39:52 2010 +0100 generic: fix software rendering for DSBLIT_FLIP_HORIZONTAL | VERTICAL Which is equal to ROTATE180, of course. Other combinations require more thought, though. commit cfa3c71858f39835e090939e5b50a2c00841a246 Author: André Draszik <andre.draszik@st.com> Date: Mon Jun 14 23:33:35 2010 +0100 generic: use explicit indexes when initialising arrays based on pixelformat commit d016bd96a078c03eea50243b7f0403e4e775401e Author: André Draszik <andre.draszik@st.com> Date: Mon Jun 14 23:31:00 2010 +0100 generic: make function tables const where possible commit 8af98198253e1e25c694042336ea2c497d843d27 Author: André Draszik <andre.draszik@st.com> Date: Mon Jun 14 23:27:48 2010 +0100 generic: whitespace commit 3c2ff45fc66a33b06644803a617af989071cebb4 Author: André Draszik <andre.draszik@st.com> Date: Mon Jun 14 22:22:10 2010 +0100 pixelformats: add DSPF_YV16 This is similar to the already existing DSPF_YV12, except no horizontal downsampling is applied commit 095fe33c788cc23627f7313990d1cd70df2ed973 Merge: 67678af d8c19e1 Author: Denis Oliver Kropp <dok@localhost.(none)> Date: Mon Jun 21 15:15:29 2010 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 67678af6777f1214643c8db0f50024dea1a31949 Author: Denis Oliver Kropp <dok@localhost.(none)> Date: Mon Jun 21 15:14:07 2010 +0200 tests: Added simple rectangle filling test. commit 4950edf4323ec1ca2d5ff850c7021a5deafee66f Author: Denis Oliver Kropp <dok@localhost.(none)> Date: Sat Jun 19 18:20:30 2010 +0200 build: added LIBPNG_CFLAGS to some Makefiles commit d8c19e1ae1919c9d64d02bba5a4b407cb68826e9 Author: Denis Oliver Kropp <dok@localhost.(none)> Date: Sat Jun 19 13:17:59 2010 +0200 voodoo: no __swap16 commit 3f3879e3d42cd68ddebf25b9fb5bd175622f1125 Author: Denis Oliver Kropp <dok@localhost.(none)> Date: Sat Jun 19 13:07:54 2010 +0200 direct: use kill, no sigqueue commit fc968f2f39dc296f06bc49d83284dbf0bae3c736 Author: Denis Oliver Kropp <dok@localhost.(none)> Date: Sat Jun 19 12:50:21 2010 +0200 thread: added DIRECT_BUILD_NO_PTHREAD_CANCEL commit 52a1a1db6acf29f5953f052f80f1bea4d07a5ecc Author: Denis Oliver Kropp <dok@localhost.(none)> Date: Sat Jun 19 12:28:49 2010 +0200 thread: check for PTHREAD_EXPLICIT_SCHED commit 16c516ef6a4e6b4a808bb7f1f72cd8fbdaf6bcaa Author: Denis Oliver Kropp <dok@localhost.(none)> Date: Sat Jun 19 12:26:00 2010 +0200 IDirectFBSurface_Window: use DirectThread for legacy flipping thread commit 5e4a8573eef5fa5bceac597d195190f267078d75 Author: Denis Oliver Kropp <dok@localhost.(none)> Date: Sat Jun 19 12:19:18 2010 +0200 conf: use unsigned long commit e85db2383497fac3d0954d022e45fd51c15d9c09 Author: Denis Oliver Kropp <dok@localhost.(none)> Date: Sat Jun 19 12:18:44 2010 +0200 fusion_bench: use pthread_mutexattr_t for recursive mutex initialization commit cd8364f0a4cb3bd2d130d9ff7a69c21a292ca454 Author: Denis Oliver Kropp <dok@localhost.(none)> Date: Sat Jun 19 12:17:50 2010 +0200 direct: use sigqueue on own tid and if that returns use exit_group or _exit commit 5bac9b4e1ddab1a102d8104726926c528ff68ab5 Author: Denis Oliver Kropp <dok@localhost.(none)> Date: Sat Jun 19 12:04:01 2010 +0200 voodoo: define htons ourselves commit b60fdaf0450c3b1ec05d2951c069eacd79ee38c7 Author: Denis Oliver Kropp <dok@localhost.(none)> Date: Sat Jun 19 12:03:03 2010 +0200 direct: define ntohl ourselves commit 0e12c876ca43f9fb10c32b813d15f2284c51b8f4 Author: Denis Oliver Kropp <dok@localhost.(none)> Date: Sat Jun 19 12:00:20 2010 +0200 voodoo: check for EAI_ADDRFAMILY commit f289702f088bcac6ead31cce0e8614535a08eaeb Author: Denis Oliver Kropp <dok@localhost.(none)> Date: Sat Jun 19 11:59:50 2010 +0200 direct: include <sys/syscall.h> commit 1d52711428049e911a1643f898898be9ad9c7fc0 Author: Denis Oliver Kropp <dok@localhost.(none)> Date: Sat Jun 19 11:58:49 2010 +0200 direct: check for EAI_ADDRFAMILY commit 6697e1db627bea5e24150999819cf8e3d67ef46f Author: Denis Oliver Kropp <dok@localhost.(none)> Date: Sat Jun 19 11:58:11 2010 +0200 direct: use non-recursive mutex for interfaces lock commit d5feb8d7e9bb71dafa846c6cd89dbb46b5b6fbd3 Author: Denis Oliver Kropp <dok@localhost.(none)> Date: Sat Jun 19 11:57:22 2010 +0200 direct: use fallback killpg commit 5afa698947c553bbbcb6694e540d326f8f52700d Merge: b7af4c5 72ff97d Author: Denis Oliver Kropp <dok@localhost.(none)> Date: Sat Jun 19 11:56:50 2010 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit b7af4c55c2297d9d7ceb2283724524df3df46a25 Author: Denis Oliver Kropp <dok@localhost.(none)> Date: Sat Jun 19 11:56:28 2010 +0200 direct: check for signal.h commit 72ff97d2823d72395d4f0df5beb93bcbb669ab2b Author: André Draszik <andre.draszik@st.com> Date: Sat Jun 5 12:38:03 2010 +0100 jpeg: correctly setup iDCT downscale for libjpeg version < 7 Previously, for a downscale that resulted in an exactly representable iDCT downscale fraction we would not have applied the correct fraction. commit e057fd2d677c181b87d79e560c2c8eb70e9c942d Author: André Draszik <andre.draszik@st.com> Date: Thu May 13 18:40:20 2010 +0100 fbdev: prevent assertion in debug mode There are places in DirectFB which D_ASSUME() the lock's offset and the allocation's offset to be identical, being verbose if that's not the case. commit 443dc1391ca2be4aebd96119a879646244faed05 Author: André Draszik <andre.draszik@st.com> Date: Mon May 10 13:53:52 2010 +0100 fusion/ref: prevent invalid assertion when destroying a ref ref->multi.shared might have been zero'ed out already by the cleanup thread by the time we get to run again. commit 80cfeebfd127c8e0a06bffee45d3294c62864f0e Author: André Draszik <andre.draszik@st.com> Date: Tue Apr 27 01:47:04 2010 +0100 jpeg: fix libjpeg >= v7 usage apparently nobody ever tested it commit eb22c5129480d890b12c67b762f3e33e396626b0 Author: Niels Roest <niels@directfb.org> Date: Sat Apr 24 18:38:54 2010 +0400 Fix for showing unitialized buffer and superfluous clear at startup. Fixes display layer window stack repainting to NOT be performed when it is frozen. This prevents a display layer surface flip from being done and showing an uninitialized buffer when the IDirectFB::GetDisplayLayer function is called with an associated no-init-layer directfbrc command (without init-init[=0-15]). Fixes IDirectFBDisplayLayer::GetSurface function to only perform single buffered display layer clearing when the region is frozen and to render the background if it is configured (each time GetSurface is called the surface should not be cleared). Also added support for this behavior when the cooperative level is DLSCL_ADMINISTRATIVE. Thanks to Timothy Strelchun for the patches. commit 97901f378b8432b74dfcfad535963da9fe60a4d1 Merge: 3e39b0a 497bed3 Author: Niels Roest <niels@directfb.org> Date: Sat Apr 24 17:50:49 2010 +0400 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB Conflicts: lib/fusion/lock.c commit 52408afce376264ff8c269a57eb65c930d304fd5 Author: André Draszik <andre.draszik@st.com> Date: Fri Apr 16 15:05:09 2010 +0100 config: update SaWMan help message commit b304a36302e2e33956eec03fb6b959cc5d1c3300 Author: André Draszik <andre.draszik@st.com> Date: Fri Apr 16 15:31:39 2010 +0100 config: fix command line parsing commit 53a636ad57664f4a911ab3c149caaed398ba61ed Author: André Draszik <andre.draszik@st.com> Date: Fri Apr 16 15:04:40 2010 +0100 testman: call SaWManInit() commit 497bed3275b6dbd1fbf1e60f4adb46400cee21b3 Author: André Draszik <andre.draszik@st.com> Date: Wed Apr 14 14:48:05 2010 +0100 fusion/lock: fix single app memory corruption got broken in 91afed9692ff15ffc7d2b6221aa5cd061ff44fa9 (shirmish: for single app, make skirmish a pointer) commit 59c4c319d5d9f6f014d81e396ae504c10ae3ad87 Author: André Draszik <andre.draszik@st.com> Date: Thu Feb 11 10:40:55 2010 +0000 fusion: fix compiler warning commit e8d323a25e75fa9e3d1fd90ea7d36718ceae8ff7 Author: Nikita Egorov <nikego@varma-el.com> Date: Thu Apr 15 14:04:12 2010 +0400 Fixed wrong conversion from A8 to RGBA5551 commit 79f958bfd005609f625d669912ce7c6b9dab840d Author: André Draszik <andre.draszik@st.com> Date: Wed Apr 14 15:09:48 2010 +0100 configure.in: fix --enable-sse help message got broken in commit c656a0fa9e0858474b3ca4469d9842e0a0b020b7 (configure.in: use AC_HELP_STRING() where appropriate) commit 84a0282e661755110bb7a08985a3e05fbaf36f5c Author: André Draszik <andre.draszik@st.com> Date: Tue Apr 13 23:45:07 2010 +0100 convert: handle DSPF_A8 in dfb_pixel_from_color() and dfb_pixel_to_color() commit 9b8a1f74e75fe56a0269b98a93785061fa5871e2 Author: André Draszik <andre.draszik@st.com> Date: Thu Apr 1 14:49:22 2010 +0100 add some comments for DWCAPS_COLOR commit 7ff7d22bbfcdc4be22112e60e323ce7d7c76dfcb Author: André Draszik <andre.draszik@st.com> Date: Wed Mar 31 16:58:59 2010 +0100 configure.in: little whitespace cleanup In addition, it's $THREADLIB, not $THREADLIBS commit cd6ce0aca8a2afda70fb83b6e3aa40b6a4cc86d8 Author: André Draszik <andre.draszik@st.com> Date: Fri Mar 12 04:56:23 2010 +0000 configure.in: use pkg-config for libpng Also, previously almost all shared objects had an explicit, unnecessary, and unwanted dependency on libz, which is gone with this patch, too. (Unless --enable-zlib is given during configure, in which case it's all as before) commit c656a0fa9e0858474b3ca4469d9842e0a0b020b7 Author: André Draszik <andre.draszik@st.com> Date: Wed Mar 31 17:04:28 2010 +0100 configure.in: use AC_HELP_STRING() where appropriate commit 661f385c94816237d3ba41463ed6603dd20ff6c9 Author: André Draszik <andre.draszik@st.com> Date: Sat Sep 12 13:07:10 2009 +0100 input: handle button devices with just up/down keys as remote control This is mostly useful for front panels which might just have up/down/left/right and maybe a few more buttons. Now they are handled as remote controls, too Signed-off-by: André Draszik <andre.draszik@st.com> commit 57ca1282a64dcdd3a9ccc25712557486bd7fc506 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Mar 28 01:06:45 2010 +0100 FusionRef: Added debugging messages commit d2868e2cfc85b1a2dc01b1960d2a3725c832b303 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Mar 28 01:06:05 2010 +0100 surface: Debug in error paths of surface_buffer_write() commit 90939845d053e814d9c9b1c6324552a45933210c Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Mar 28 01:05:17 2010 +0100 IDirectFBSurface: Allow negative pitch in Write() commit 3e39b0aece87ee9ae16359259f56c43e592f1040 Author: Niels Roest <niels@directfb.org> Date: Sat Mar 27 13:54:57 2010 +0300 gfx: added LUT8 to LUT8 dest ckey blit fallback 'generic' routine Added function to support LUT8 to LUT8 blitting with destination color key enabled for surfaces with identical palettes. commit cbb1d5f6494ba20e054b37ab505e030d19f9f78a Author: Niels Roest <niels@directfb.org> Date: Sat Mar 27 13:53:32 2010 +0300 RGB24: fixed injection Fixed a little endian DSPF_RGB24 byte ordering defect injected 2009.11.06 as part of git commit 0fdf41ff34ed403367d0eb05edc793b15a940860. Previously, the red and blue pixels were reversed. commit cca0466b09ed7a6d4afb053974cd6d164007a720 Author: Niels Roest <niels@directfb.org> Date: Sat Mar 27 13:50:08 2010 +0300 pixelformat: Added DSPF_A1_LSB Added pixel format DSPF_A1_LSB that uses the LEAST significant bit first for pixels, because the existing DSPF_A1 format is MSB first. The VDC unit on the Intel(R) CE Media Processors use this for one of the various formats on its many display layers. The DFB software rasterizer functionality provided is equivalent to the functionality already provided for the existing DSPF_A1 format (minus one/two functions for other new pixel formats). Thanks to Timothy Strelchun for the patch. commit 3c3bd4027a006cb496854993cfb996af3c40f9fb Author: Niels Roest <niels@directfb.org> Date: Sat Mar 27 13:41:42 2010 +0300 fusion lock: single app mode: 'name' storing overwrites pointers fix skirmish used in single DFB app usage mode Thanks to Timothy Strelchun for the patch commit 3a9360cb003f605be22134b54eeeee1858d727bd Author: Niels Roest <niels@directfb.org> Date: Sun Mar 14 07:46:27 2010 +0300 font: drawstring clipping A check is done before glyph blitting to ensure that at least some portion is within the clipping rectangle. The check is wrong as it assumes the glyphs are referenced by the top left of the bounding box instead of the baseline origin. Thanks to Tim Ross for the patch. commit 246697c4515f556522a24f81b27c0f4d46e8eb92 Author: dok <dok@debian.directfb.home> Date: Tue Mar 2 23:13:49 2010 +0100 ++DFB: Introduced convenient classes for DFBDimension, DFBPoint, DFBRectangle, DFBRegion commit 9536351218d33cdf31dd84fe5bedb36a99c6e7ca Author: dok <dok@debian.directfb.home> Date: Tue Mar 2 21:27:42 2010 +0100 IDirectFBWindow: Implemented SetSrc/DstGeometry() in Dispatcher/Requestor. commit 88b4afa3ada175afba6f7b63672c041a3001d6b2 Author: dok <dok@debian.directfb.home> Date: Tue Mar 2 21:22:04 2010 +0100 Voodoo: Implemented RLE compression for 16 and 32 bit Write() calls. commit afb165989ad9e5e2704e8a980a08d072a0e7ec3e Author: dok <dok@debian.directfb.home> Date: Tue Mar 2 21:18:39 2010 +0100 Voodoo: Fixed fork bombing until child process accepted connection. Also fixed zombies remaining. commit 1d267cfe712f15206bcdbd8ef64506091632a3a5 Author: dok <dok@debian.directfb.home> Date: Tue Mar 2 20:44:37 2010 +0100 IDiVine: Introduce IDiVine along with proxy dispatcher/requestor for use via Voodoo. commit 049d9cb12adee4cac54e11874d7742d6cc39ee8c Author: dok <dok@debian.directfb.home> Date: Tue Mar 2 15:23:03 2010 +0100 spooky: added missing include commit f7b2c15d519651b12a8decf0040cf0d129bd556b Author: dok <dok@debian.directfb.home> Date: Tue Mar 2 14:50:14 2010 +0100 spooky: cleanup vertical scrolling example commit 883ba2457f1819939b71445655e6d065d7837c70 Author: dok <dok@debian.directfb.home> Date: Tue Mar 2 14:49:23 2010 +0100 spooky: Allow for sending symbols. commit 368a0681a03b1b84bff159034951ab237f60a718 Author: dok <dok@debian.directfb.home> Date: Tue Mar 2 12:11:01 2010 +0100 dfbtest_font: Added simple font loading/rendering test. commit 509150b2882e3ff60d071751b164fb58153b8633 Author: dok <dok@debian.directfb.home> Date: Tue Mar 2 12:08:44 2010 +0100 Voodoo: Support fonts via network just like images (sending encoded/compressed data). commit 278a20b07c5fa9bddf023b1836f2bc403db84a88 Author: dok <dok@debian.directfb.home> Date: Tue Mar 2 12:07:27 2010 +0100 font: Support chunked reading of font data into ctx.content. commit b6f41c3ca975f8c9e27e77f6940b2fe7305ffeb9 Author: dok <dok@debian.directfb.home> Date: Tue Mar 2 12:06:16 2010 +0100 voodoo: Print error if manager is quit while waiting for a response. commit 3aa2b77eef6a63b64559adb3acec852bed1e1981 Author: dok <dok@debian.directfb.home> Date: Tue Mar 2 11:29:42 2010 +0100 fixed warning commit d0e6d997d17af2c394c74df8d01cf38f0a9884c2 Author: dok <dok@debian.directfb.home> Date: Tue Mar 2 11:29:13 2010 +0100 fixed warnings commit 1efc7c2322d399362dbb8a88e2ce1774fbdabb1d Author: Niels Roest <niels@directfb.org> Date: Thu Feb 25 14:21:12 2010 +0300 fbdev: Fix RGBA5551 transparency offset This trivial patch fixes an obviously wrong bit layout for RGBA5551. Signed-off-by: David Hunter <hunterd42@gmail.com> commit b3117710d46368b76896e5eccc98f4a0dd3fc143 Author: Niels Roest <niels@directfb.org> Date: Wed Feb 10 21:39:36 2010 +0100 dfblayer: allow to set layer position and size using command line Signed-off-by: André Draszik <andre.draszik@st.com> commit 0ca394d3a9fc86728b48bd2c8c162aa42d9423c7 Author: Niels Roest <niels@directfb.org> Date: Wed Feb 10 21:38:21 2010 +0100 IDirectFBScreen: add a DVO 656 'connector' type Signed-off-by: André Draszik <andre.draszik@st.com> commit df51de1636d935dc2856d1db4d8e53a26cc7b468 Author: Niels Roest <niels@directfb.org> Date: Wed Feb 10 21:36:21 2010 +0100 dfbinspector: add DSPF_AVYU and DSPF_VYU pixelformats Signed-off-by: André Draszik <andre.draszik@st.com> commit 8301e33aaa791aacab1021ccdd5b7db46aa91b2a Author: Niels Roest <niels@directfb.org> Date: Wed Feb 10 21:35:26 2010 +0100 dfbscreen: little fixes print background alpha, too fix printing of scan mode name Signed-off-by: André Draszik <andre.draszik@st.com> commit c0c74444ed5601bf9b45a3b07683f97d0633ca78 Author: Niels Roest <niels@directfb.org> Date: Wed Feb 10 21:33:09 2010 +0100 gfx: LUT8 is not a YUV format commit d32220451e4fe38188db53819501a7085ba713bc Author: Niels Roest <niels@directfb.org> Date: Wed Feb 10 21:26:33 2010 +0100 doc: surface: add some source code level documentation Signed-off-by: André Draszik <andre.draszik@st.com> commit 50f529ac86e3779c0119a78e8324b68330c806ab Author: Niels Roest <niels@directfb.org> Date: Wed Feb 10 21:25:33 2010 +0100 warning: fix Signed-off-by: André Draszik <andre.draszik@st.com> commit c695cfefbca35a476d9cf3305fd7030de014d24b Author: Niels Roest <niels@directfb.org> Date: Wed Feb 10 21:03:59 2010 +0100 surface: replace GetFramebufferOffset() with GetPhysicalAddress() The IDirectFBSurface::GetFramebufferOffset() is not really useful anymore, as it returns an offset into a memory pool, not necessarily into the framebuffer memory pool. Make it obsolete, and add IDirectFBSurface::GetPhysiclAddress(), that always does what one might expect. Signed-off-by: André Draszik <andre.draszik@st.com> commit 216348491c33a5db184561bcb12d2be0ac582dc7 Author: Niels Roest <niels@directfb.org> Date: Wed Feb 10 15:05:12 2010 +0100 font: fix off-by-one bug in IDirectFBFont_GetStringBreak() GetStringBreak() returns one character too much (in certain cases) in ret_str_length. Signed-off-by: André Draszik <andre.draszik@st.com> commit cac59c15fb795b37c2a5f7636ed474ed2a557528 Author: Niels Roest <niels@directfb.org> Date: Mon Feb 8 21:10:49 2010 +0100 jpeg: implement decimated decode for software JPEG decoder We can speed up scaled-down rendering of JPEG images by asking libjpeg to only decode the image to a fraction of the original size. Thanks to Sven Neumann and André Draszik for the patch works for both libjpeg62 and libjpeg7 Signed-off-by: André Draszik <andre.draszik@st.com> commit 466a6d14c81e8297266dd39327d6033b38ed2990 Author: Ville Syrjala <syrjala@sci.fi> Date: Wed Jan 20 02:23:28 2010 +0200 fbdev: Reduce useless nesting commit 8049217e6e4a3570aac83e14cdc6ff250d11dbe7 Author: Ville Syrjala <syrjala@sci.fi> Date: Tue Jan 19 04:28:03 2010 +0200 fbdev: Fix mode setting Since the surface pool no longer sets the mode it must be done by the SetRegion call. commit c6c1118d33f69b8acbb9fd011b75e12ca4e170ed Author: Ville Syrjala <syrjala@sci.fi> Date: Wed Jan 20 02:21:29 2010 +0200 linux_input: Use MAX() instead of open coding it commit 03cf362e440ecf84a4012b97ccf8372ac63f4854 Author: Ville Syrjala <syrjala@sci.fi> Date: Tue Jan 19 02:28:03 2010 +0200 linux_input: Don't check quitpipe fd is select() was interrupted When select() is interrupted the fd sets are not updated so checking if the fds are ready needs to be done after checking the return value. commit 490e3e91abf6a9cdef668ab42c89c6d251700ff7 Author: Niels Roest <niels@directfb.org> Date: Mon Feb 8 20:03:30 2010 +0100 png: support for 1.4.x libpng Thanks to Bernhard Rosenkraenzer for the patch commit 02ee33d9fc153641b43f923872cfd962daef37f2 Author: Niels Roest <niels@directfb.org> Date: Fri Feb 5 18:28:05 2010 +0100 ISaWManManager: layer reconfig -> now also when going from single The callback SaWManCallbacks::LayerReconfig used to be only triggered when SaWMan wanted to reconfigure towards single mode (when only one window was visible). Now the callback is also triggered when leaving single, or when changing config for any cause, thus allowing the SaWMan manager to overrule the settings. commit bde552d778371722d08bc0a27a31fee4471eb517 Author: Niels Roest <niels@directfb.org> Date: Fri Jan 29 18:54:18 2010 +0100 IDirectFBScreen: add IDirectFBScreen::GetVSyncCount() Signed-off-by: André Draszik <andre.draszik@st.com> commit 7d724d90a6953791a13681d643b6bcd8d00735ef Author: Niels Roest <niels@directfb.org> Date: Fri Jan 29 17:56:37 2010 +0100 screen: NTSC and PAL60 standards are defined as 59.94Hz not 60Hz Signed-off-by: André Draszik <andre.draszik@st.com> commit faeef7708320e4d22e9c45082d97345505e86a9d Author: Niels Roest <niels@directfb.org> Date: Tue Jan 26 19:04:59 2010 +0100 x11: improved GLX-detection It seems a 24bit and a 32bit BPP visual were required, but instead the depth, which is the depth buffer, is checked. Thanks to Erwin Rol (www.erwinrol.com) for the fix. commit 5457553715e592ffeb896da020d23accc5c2db81 Author: Niels Roest <niels@directfb.org> Date: Wed Jan 20 20:43:22 2010 +0100 added IDirectFBSurface::FillRectangle(DFBRegion) commit 3feac6ae2ba9ad5025d832a1a9b73180b53bb934 Author: Niels Roest <niels@directfb.org> Date: Tue Jan 19 19:53:01 2010 +0100 IDirectFBSurface: convenience overloaders. add const in SetClip. commit 2ac44af76764896a4ecabecd0af803ae935f8519 Merge: 6f42654 fd5979e Author: Niels Roest <niels@directfb.org> Date: Thu Jan 14 21:05:35 2010 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/extras/SaWMan commit 6f42654cefeef458bae688b9fda4b81ef6fb9c9a Author: Niels Roest <niels@directfb.org> Date: Thu Jan 14 21:02:07 2010 +0100 window composition: alpha blending fix fix for blending: windows with RGB (so no alpha channel) and opacity != 255 commit f170bb2d90fc6fbac962e4c2e7d8e0e91720cfb1 Author: Niels Roest <niels@directfb.org> Date: Thu Jan 14 21:00:22 2010 +0100 support for DWOP_INPUTONLY IDirectFBWindow::SetOption has a new option, this patch implements it in SaWMan. also fix in sawman_draw_two_windows fallback border drawing commit ffd93d12e746e8000ff053accd91cb908a8093cf Author: Niels Roest <niels@directfb.org> Date: Thu Jan 14 20:53:14 2010 +0100 cursor: fix cursor appearance bug the cursor should be redrawn when an update window WM call is received. add "surface" to sawman_draw_cursor to limit extra code. commit e7f404865c53984593c0ca66ee63c54347a2edb8 Author: Niels Roest <niels@directfb.org> Date: Thu Jan 14 19:50:21 2010 +0100 IDirectFBWindow::SetOptions: add DWOP_INPUTONLY works as DWCAPS_INPUTONLY, but is a dynamic option. main work is done in window manager. commit ba35178422ccbb7a10a009c5621e72860001359b Author: Niels Roest <niels@directfb.org> Date: Thu Jan 14 19:49:11 2010 +0100 IDirectFBWindow::SetOptions bit handling bug bit toggling was compared with a wrong mask possibly causing toggling of DWOP_GHOST, DWOP_INDESTRUCTIBLE and DWOP_INPUTONLY to be ignored commit d0f706b2d04d13b76082372a8bdc4e36998f2940 Author: Niels Roest <niels@directfb.org> Date: Fri Jan 8 20:07:37 2010 +0100 tests: add fusion_call used to test calls primarily to test skirmish transfer on calls currently blocks with 4 participants - only 2 transfers allowed. commit 0654893e61f4f5c6b00048d61d1f86d7d9bac234 Author: Niels Roest <niels@directfb.org> Date: Fri Jan 8 20:05:24 2010 +0100 x11: preliminary support for IDirectFBScreen functions get some code in to support this commit e58b7fcb33b2209efbcf0e42ce5d233ad91777fd Author: Niels Roest <niels@directfb.org> Date: Mon Dec 14 18:33:53 2009 +0100 font: add API to load font from databuffer this also requires internal changes the font "probe" will now be passed either a file name or a mem struct with the complete file in it (file type detection by the FreeType library requires an undefined number of bytes). commit 844eb4d124498fd5268b029f4d27a68a6ea75f18 Author: Niels Roest <niels@directfb.org> Date: Mon Dec 14 18:27:57 2009 +0100 hash: move externally unused func to .c file commit 2fd85b2d80ae3d81815f9d19500d69a05da5c758 Author: Niels Roest <niels@directfb.org> Date: Fri Dec 11 14:05:24 2009 +0100 X11: add error detection, better depth support Add detection for "late" errors (i.e. errors occurring after the function causing it returns) Since X11 normally does not do automatic depth switching, we deny visuals with a different depth than the "DefaultDepthOfScreen" commit 11c9b259bf82459b9383499c878a75d448489239 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Dec 11 05:10:03 2009 +0100 voodoo: Fork server for each client to have different Fusionees with full resource cleanup on disconnect. This makes it depend on multi app core when more than one client connects. commit 45565a9741c3f9b9dc09a5c702035838b1af27eb Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Dec 11 04:29:26 2009 +0100 gfxcard: Accelerate matrix fallback if possible, for FillRectangle() and Blit(). In dfb_gfxcard_fillrectangles() and dfb_gfxcard_blit() don't always fall back to software rendering when DSRO_MATRIX is not supported, but try to use hardware if rectangles are just translated/scaled and blits are just translated. commit f99e5ff4c014c295acb35204658e2d00a5e47bc4 Merge: c2d022f 2dad4f2 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Dec 11 03:04:53 2009 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit c2d022f0dc7dbebaea94d8f05077205c20361d6a Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Dec 11 03:04:34 2009 +0100 generic: Added Sop_a4_Sto_Dacc implementation. commit 2dad4f2dde329f4bfc0e9e658b7171ea16d080dd Author: Niels Roest <niels@directfb.org> Date: Thu Dec 10 18:10:06 2009 +0100 configure.in: fix X11 detection - use pkgconfig Signed-off-by: André Draszik <andre.draszik@st.com> commit 238dbdc23ab1f349a6c323eeb6320b4ff703d7ca Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Dec 10 15:32:14 2009 +0100 tlshm: Introduce ComaThread object to protect tlshm against leaking. Also protect against intermittent abortion by delegating alloc/free via FusionCall. commit 5a88c304b18e39228593ac264218a6dd8f97d16f Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Dec 10 15:31:37 2009 +0100 fdtest_coma: Stress test GetLocal() and FreeLocal() in a loop. commit fd5979e4e99af0d224c92f89b516938e4e4d7c9b Merge: 85d88f0 20fa554 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Dec 10 14:11:24 2009 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/extras/SaWMan commit 85d88f0e356281a467db7819a77a61212304cc02 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Dec 10 14:10:36 2009 +0100 flip-once: Implemented configurable timeout via "flip-once-timeout" option. commit e4f5e9b1125c0ce4a030e5ff4d7843c254bb5f38 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Dec 10 13:40:35 2009 +0100 flip-once: Added debug messages. commit 20fa5540b34af7d6a83afdd978c0ddd6e04ba624 Author: Niels Roest <niels@directfb.org> Date: Tue Dec 8 21:22:47 2009 +0100 release: SaWMan 1.4.3 commit aa7d592e8b4a7135e7086a50af655be184f1bb80 Author: Niels Roest <niels@directfb.org> Date: Tue Dec 8 21:12:16 2009 +0100 compatibility: compiles with DirectFB 1.2.10 and 1.4.3 (change to counting locks, since 1.2.x locks not while 1.4.x locks once) commit b49b12c58b8df83b8127cdebf20c426a70f1bb1b Author: Niels Roest <niels@directfb.org> Date: Tue Dec 8 21:09:15 2009 +0100 release: DirectFB 1.4.3 commit 922d96e4e780f8d63b0faf8cda44a4d89499d2c8 Author: Niels Roest <niels@directfb.org> Date: Tue Dec 8 21:04:20 2009 +0100 core: reorder dispatcher shutdown to allow proper windowstack cleanup commit 4534f132b742976fc8a887153310546cf363b082 Author: Niels Roest <niels@directfb.org> Date: Tue Dec 8 20:19:47 2009 +0100 pixelformats: fixes for YUV444P, AYUV, AVYU, VYU among others fixes for Bop_PFI_StoK_Aop_PFI. Thanks to André Draszik <andre.draszik@st.com> for the fixes. commit 744dc7b053562386a62a2b0a0047a5672bea507f Author: Niels Roest <niels@directfb.org> Date: Tue Dec 8 14:50:58 2009 +0100 draw: use card capabilities to work out if BLIT2 is accelerated commit b2acb69c4e3cb23438b2d6e1362280b37b9cdb35 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Dec 8 14:47:15 2009 +0100 fdtest_coma: Added simple Coma test entering 'FDTestComa' and getting thread local shared memory. commit b5aa55fe777b78f24793f3f1442277acbc640e07 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Dec 8 14:46:14 2009 +0100 fddump: Dump all shared memory pools. commit 106d80b58ba67f20274a7f966e41a2041332482f Author: Niels Roest <niels@directfb.org> Date: Tue Dec 8 14:09:09 2009 +0100 config: clean-up config before exit Main reason is that the swift library unload will corrupt/make holes in the memory leak list at libdirectfb exit commit c80928b4bf00bfb9b3dc011aee22393a300df5bc Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Dec 8 14:07:12 2009 +0100 fdmaster: Added option to enter a component manager and moved program to tools. commit cd4605d91dc0ebd03831237f35df186b9ec1ae7c Author: Niels Roest <niels@directfb.org> Date: Tue Dec 8 13:55:03 2009 +0100 gfxdriver: add destructor to unregister. commit 91afed9692ff15ffc7d2b6221aa5cd061ff44fa9 Author: Niels Roest <niels@directfb.org> Date: Tue Dec 8 13:54:02 2009 +0100 shirmish: for single app, make skirmish a pointer so skirmishes can be copied into each other This is useful, but also required by a "hack" in SaWMan where the context lock is aliased to the sawman lock to prevent deadlocks. Aliasing now works since a skirmish copy will only copy pointers, not content. (also added debug statements for skirmish single app) (allocation is done locally, since single app does not need shmem) commit 24bc7f756b9a8c00de469c917bd57fc8ed47fd2a Author: Niels Roest <niels@directfb.org> Date: Tue Dec 8 13:48:11 2009 +0100 core: add shutdown functions to layers and screens add ShutdownScreen() add ShutdownLayer() both are optional increase ABI of core modules because directfb modules need to be rebuild commit df9c1799dd26f03fdb712c6fc0e568f99194d999 Author: Niels Roest <niels@directfb.org> Date: Tue Dec 8 13:45:59 2009 +0100 modules: plug leak: module entries were not cleaned completely commit f78af8fc203d11e48fc1ecf9a13d210645bcaa05 Author: Niels Roest <niels@directfb.org> Date: Tue Dec 8 13:43:53 2009 +0100 systems: make function tables static, so everything not declared is 0 commit 35614c0191e5350a75fc44423ea96414b97249f9 Author: Niels Roest <niels@directfb.org> Date: Mon Dec 7 18:34:21 2009 +0100 locks: make sure lock hack cleans up after use by swapping locks commit 12b2a744c714f22d3d8bef39015e52e062293f06 Author: Niels Roest <niels@directfb.org> Date: Fri Dec 4 19:40:09 2009 +0100 key repeat: pass DIEF_REPEAT on to window events, so key repeat can be observed commit 073869f667ba2175ad84096c017fb4422f21e10d Author: Niels Roest <niels@directfb.org> Date: Fri Dec 4 19:35:20 2009 +0100 API: add DWEF_REPEAT flag to signal key repeat. added implementation for default and unique WM. (unique also required missing function wm_begin_updates) added key repeat detection for X11 driver. commit 10b2ec35896eb2964de91fc2a7a5f3a112629d3d Author: Niels Roest <niels@directfb.org> Date: Fri Dec 4 14:56:10 2009 +0100 cleanup: remove update_region() and update_region2() remove associated code, completely remove original region.c content move the update_region3() usability functions to region.c commit 68f8f013d148fb65f9b15c2155b9dbd43cdc3293 Author: Niels Roest <niels@directfb.org> Date: Tue Dec 1 21:59:20 2009 +0100 keygrabbing: fix for ungrab UNSELECTED KEYS commit 1f3f28046aebdca611b2bb4370bb556d863cdbd5 Author: Niels Roest <niels@directfb.org> Date: Tue Dec 1 20:04:29 2009 +0100 fusion: fix mem leak in single application mode Signed-off-by: André Draszik <andre.draszik@st.com> commit fcf4bd2862241a963f4621e8f81c26786bed3396 Author: Niels Roest <niels@directfb.org> Date: Tue Dec 1 14:54:38 2009 +0100 util: function reorganising move some sizable functions from header file to c-file add DFB_REGIONS_DEBUG_AT (corresponding to existing RECTANGLES) commit 1c1dfffcd84bc648f2b874b69be83a5a3a143c06 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Nov 27 23:15:42 2009 +0100 voodoo: Implemented IDirectFBSurface::Write(), SetRenderOptions() and SetMatrix(). commit 087ffb7b15f33567b573dd6d96eb9e1c6f304b26 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Nov 27 21:33:26 2009 +0100 voodoo: Implemented IDirectFBDisplayLayer::TestConfiguration(). commit e4641033488dd89021297f0856aed85b4c908d64 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Nov 27 21:32:22 2009 +0100 voodoo: Added unimplemented SetRenderOptions() and SetMatrix() to avoid segfaults. commit 97db34b9766cd203135a3bd39e0fd18a605610d5 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Nov 27 21:30:52 2009 +0100 convert: In dfb_pixel_from_color() for RGB32/24 apply 0xffffff mask to fix color keying. commit f733be004596a6ce7cc45f8ad25988eb5be6c8f1 Merge: 6fa2598 e943dec Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Nov 27 19:54:29 2009 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 6fa259880ac7173bf33565296c442aa8328e99fb Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Nov 27 19:54:12 2009 +0100 voodoo: Fixed warnings. commit e943dec781174df22d38dc48771d79ffa1adc282 Author: Niels Roest <niels@directfb.org> Date: Tue Nov 24 20:07:20 2009 +0100 davinci: removed superfluous include file directives files were included in ../include/directfb exports, but did not contain any outside usable function declarations. not exported anymore. commit 1e433fe2b33de6ea3bf0c4234207b08b4d0f2051 Author: Niels Roest <niels@directfb.org> Date: Tue Nov 24 19:06:17 2009 +0100 generic: removal of yuvtbl references, not used anymore was used previously for YCbCr - RGB conversion, now done with formula commit 2c07207ff30228e1359d86d5e3910d23e566ccb1 Author: Niels Roest <niels@directfb.org> Date: Tue Nov 24 14:44:07 2009 +0100 cleanup: header file not needed commit ee09def022b124ba2018dededd52f9b713fa334e Merge: 170ced2 4fc55b5 Author: Niels Roest <niels@directfb.org> Date: Tue Nov 24 14:06:33 2009 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 170ced2f3c46026708c6ad82c5586e5ad852fcb2 Author: Niels Roest <niels@directfb.org> Date: Tue Nov 24 14:06:22 2009 +0100 sh772x: support for the new MS7724 The patch is to support MS7724 from Renesas. Thanks to Takanari Hayama for the patch. (since JPEG support is disabled, the libraries are not needed either) commit 4fc55b522e9a36d078e453fbbae82178f8de78a8 Merge: 3353043 70a94aa Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Nov 23 22:49:12 2009 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 3353043d577890755c7d66ee76f43ef88838ab61 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Nov 23 22:48:44 2009 +0100 dfbscreen: Added resolution and frequency switch. commit 81a3df28f1c2a59e23daa84a261458cbe1059b6a Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Nov 23 22:47:29 2009 +0100 names: Added DFBScreenEncoderFrequency names. commit 7be508ee324492a2cbf6443feb7a56741dc3021a Merge: b3467e2 d316019 Author: Niels Roest <niels@directfb.org> Date: Mon Nov 23 16:36:08 2009 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/extras/SaWMan commit 70a94aa978775cc7450b9c8032a5de8514f7c4d6 Merge: 96ba606 88fd076 Author: Niels Roest <niels@directfb.org> Date: Mon Nov 23 15:13:06 2009 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 96ba606063c5e57f01b50db02ca5cd163b2fa56a Author: Niels Roest <niels@directfb.org> Date: Mon Nov 23 15:11:28 2009 +0100 surfaces: allow no windows on surfaceless layers When using SaWMan on Sigma Designs hardware, it tries to create windows on layers without surface capability. This causes a segmentation fault. Thanks to Sorin Otescu for the patch. commit d316019ee57cb679a7fada82761abb16c9ea70e0 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sat Nov 21 23:14:42 2009 +0100 wm: Implemented synchronized window updates with BeginUpdates() and DSFLIP_ONCE. commit 88fd0767458fbe36bb1874f61bae1a5568b67600 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sat Nov 21 23:13:31 2009 +0100 dfbtest_window_flip_once: Added test for IDirectFBWindow::BeginUpdates(). Updating first window is artificially slowed down to one second, three seconds for the second window. The intermediate white filling is never seen, even though it takes seconds to synchronize. commit c7082756d779542681c774b23e7d9719569522bd Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sat Nov 21 23:11:53 2009 +0100 IDirectFBWindow: Support for synchronized window updates. IDirectFBWindow::BeginUpdates() has been added to mark a window as "UPDATING". DSFLIP_ONCE has been added, causing the Flip() to wait until all other updating windows' surfaces are being flipped as well. commit bcaa7e375c68d1d272d3c25cdc80715babc3fd36 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sat Nov 21 19:05:32 2009 +0100 wm: Added a hack to avoid dead locks. commit dc3fe2f12af4b8470c01888a078fe95bb1b0fdd4 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sat Nov 21 16:24:54 2009 +0100 generic: Fixed drawing with XOR and/or DST_PREMULTIPLY without blending. commit 74570c57242520ac8ab2b77ee56a9d4dbd15c876 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sat Nov 21 15:27:53 2009 +0100 generic: Fix combined blend/xor for drawing and blitting. commit 2a50e5b1594e13afa1d5a1c67662e2b9ee75fc6d Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sat Nov 21 13:18:36 2009 +0100 generic: Moved XOR to the end. commit 7f1c985b5ccb18f35f7e312dfff483f9f43e17bf Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sat Nov 21 13:18:17 2009 +0100 dfbfx: Moved XOR to the end. commit 8fd55e6478a5b8731722dbfcab7e0627a3d9c094 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Nov 19 23:13:02 2009 +0100 dfbtest_mirror: Added test that uses scale/mirror with destination color keing. commit 8fdf0c14ca07a41c6ea88f205fea7438804fa772 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Nov 19 22:52:39 2009 +0100 dfbtest_window: Added WarpCursor test. commit 21173cc1d50c8fcdc44ebb255f9dfab5bfa3da70 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Nov 19 22:51:38 2009 +0100 PNG: Don't use fast path if pixels have to be premultiplied. commit bf278c608c83ce425b17158a5256e1c5bbd95e1e Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Nov 19 22:50:38 2009 +0100 colorhash: Commented out annoying assumptions. commit 8801fde783fe4e387aa8abaeb044e3bb89524e55 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Nov 19 22:49:53 2009 +0100 FusionObject: Print reference id in debug message of dead objects. commit b64ac6e3b56da5f7d051459d7dbbf174af24e0cc Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Nov 19 22:48:53 2009 +0100 generic: Really fixed Bop_rgb32_toK_Aop_64 this time. commit f25b0b35d35f0a39d1b7331a85f6067efb99308a Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Nov 19 22:37:32 2009 +0100 generic: Commented out #warning, breaks -Werror. commit 6c834e01ab6edaea39518de1b11a75f33dcd6dfa Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Nov 19 22:37:01 2009 +0100 generic: Fixed Bop_rgb32_toK_Aop_64. commit af9e6d021033b342ab3cebceda6453c166bead73 Merge: fc5d370 761df41 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Nov 19 22:19:41 2009 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit fc5d3705b4c9e1b3a61607d2b662d28b1c25b4b7 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Nov 19 22:16:54 2009 +0100 [generic] Fixed Bop_PFI_OP_Aop_PFI(StoK). commit b3467e2fda0398044608683b113356c5262744ae Author: Niels Roest <niels@directfb.org> Date: Tue Nov 17 18:01:06 2009 +0100 composition: add completed support for BatchBlit2 may need some cleanups to select between using it and not (if not supported, checking algorithms can be performed faster) commit 761df415ea50841687368080cc0197975e2f67dd Author: Niels Roest <niels@directfb.org> Date: Thu Nov 12 19:45:49 2009 +0100 pixelformat: add system X11 16bit support for UYVY commit 2ade9556d8a05d9373070267e17588fef765b08c Author: Sven Neumann <s.neumann@raumfeld.com> Date: Mon Nov 9 00:34:38 2009 +0100 improve the formatting Signed-off-by: Sven Neumann <s.neumann@raumfeld.com> commit aee6b25e6853d6f27510bc3726f30645b8accd55 Author: Sven Neumann <s.neumann@raumfeld.com> Date: Mon Nov 9 00:30:39 2009 +0100 font: correct documentation of ret_str_length in GetStringBreak() The parameter ret_str_length of IDirectFBFont::GetStringBreak() returns the number of characters, not the number of bytes. The documentation suggested to pass this value to DrawString() for the bytes parameter. This change corrects the documentation. Signed-off-by: Sven Neumann <s.neumann@raumfeld.com> commit 218c54ec2b41f577dc4a8487cbd184a0d17e2a71 Author: Sven Neumann <s.neumann@raumfeld.com> Date: Sat Nov 7 00:13:13 2009 +0100 remove trailing whitespace Signed-off-by: Sven Neumann <s.neumann@raumfeld.com> commit dea7579c61b2f0d4e433aeeab1e969dd0e0a8429 Author: Sven Neumann <s.neumann@raumfeld.com> Date: Fri Nov 6 23:52:50 2009 +0100 font: fix an UTF-8 problem in GetStringBreak On an UTF-8 string, we can't go back to the previous character by subtracting 1. Instead keep a pointer to the previous character and use that. Signed-off-by: Sven Neumann <s.neumann@raumfeld.com> commit 081f62f4f28d905a15e96c42ea461f5d06016c09 Author: Sven Neumann <s.neumann@raumfeld.com> Date: Fri Nov 6 23:40:26 2009 +0100 font: remove trailing whitespace Signed-off-by: Sven Neumann <s.neumann@raumfeld.com> commit 6c234de8c7899cd860602305521dc8718a7c0364 Author: Niels Roest <niels@directfb.org> Date: Fri Nov 6 21:08:10 2009 +0100 composition: add preliminary support for BatchBlit2 composition takes extra advantage of: - dual source, single destination blitting: two blits to one - in certain cases, less background drawing due to collate - no need to draw background under a opaque window when a translucent on top of it is updated (note that is a safety checkin, the old update_region2 is still default) commit b2996ab52bb164c79f40f692989c3b7dd01d3283 Author: Niels Roest <niels@directfb.org> Date: Fri Nov 6 21:03:48 2009 +0100 API: add batchblit2 batchblit2 takes 2 sources and 1 destination. This is primarily added for hardware that supports this function directly. No software fallback yet. commit d0637cd9bd139526e8e379e556e943fc2f8796f6 Author: Niels Roest <niels@directfb.org> Date: Fri Nov 6 20:31:41 2009 +0100 pxa3xx: remove some old debug statements got a build error so removed those in line with the last patch of Sven.. Prob doesn't show in "retail" build commit 9462ad9962139c6ec4d1f2e6ee0b21049cc6c10a Author: Niels Roest <niels@directfb.org> Date: Fri Nov 6 19:55:20 2009 +0100 default wm: removed "region"; unnecessary ASSERT on COLOR window a window with DWCAPS_COLOR will trigger an assert since the region is not set. since the region is not used at all, it is removed. DWCAPS_COLOR is still not supported -> the window is not drawn. commit 0fdf41ff34ed403367d0eb05edc793b15a940860 Author: Niels Roest <niels@directfb.org> Date: Fri Nov 6 19:52:44 2009 +0100 pixel format: support for AVYU and VYU thanks to André Draszik Small adaptions for X11 system and little endian support commit 8e5143d7f9bd07c0007ec71d5565a6d40a5b42fa Author: Niels Roest <niels@directfb.org> Date: Fri Nov 6 15:59:07 2009 +0100 sdl: 1.4.x changes commit 7d4a6b722745044267b6730bda085bc5a16a7b57 Author: Niels Roest <niels@directfb.org> Date: Fri Nov 6 15:58:33 2009 +0100 debug: prevent deadlock in stack trace with SaWMan active This can only happen when a stack trace is printed. Previously, the debug log system was locked during this operation. When a symbol needed to be looked-up, "nm" would be started which could lead to a "process_added" debug print in SaWMan; this would lead to deadlock since the log system was locked already. Solution is to accumulate all statements (incl. symbol lookup) and lock-print-unlock in one go. commit f31d17da4a3a7f7521376b43cad5ed6b65231d90 Author: Niels Roest <niels@directfb.org> Date: Fri Nov 6 15:42:46 2009 +0100 configure: beatification: remove "," in output commit 8892c8777b77619fc3a46dac05f6f69248eafb5d Author: Niels Roest <niels@directfb.org> Date: Mon Oct 5 17:29:51 2009 +0200 pixelformats: add ARGB 8565 DSPF_ARGB8565 24bpp, A8+RGB16 Signed-off-by: André Draszik <andre.draszik@st.com> commit 82b5d2b4daa3095ba08174163b5e68d650a5ab6d Author: Niels Roest <niels@directfb.org> Date: Mon Oct 5 17:28:06 2009 +0200 pixelformats: add YUV 4:4:4 planar DSPF_YUV444P this is a 3 buffer format Original version for DirectFB 1.0.1 by Ilyes Gouta <ilyes.gouta@st.com>. Ported to DirectFB 1.4, modified to fix bugs and enhanced to be faster and more feature complete. Signed-off-by: André Draszik <andre.draszik@st.com> commit c1f336788a11e7ac28a3489664bbdac4452f1014 Author: Niels Roest <niels@directfb.org> Date: Mon Oct 5 17:25:46 2009 +0200 pixelformats: fix for RGBA5551 format introduced in f990465367b49ed816a57d74436f7abf548593a6 format: Support RGBA5551 pixel format added. Signed-off-by: André Draszik <andre.draszik@st.com> commit fdf26bbb6df238266b111194327c7e4eddcb8330 Author: Niels Roest <niels@directfb.org> Date: Mon Oct 5 17:23:12 2009 +0200 Revert "pixelformats: add AVYU and VYU single plane formats" This reverts commit 2399f7b3b3e9faff60ad79163b41ff26def5a439. Apply order was incorrect - will reapply later commit 4443218f72ce2dac9629e25460f00298085f1966 Merge: 549668a 878455d Author: Niels Roest <niels@directfb.org> Date: Fri Nov 6 19:55:55 2009 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 878455dabfb7f2dc4310faaa5dd7b539d1bf790f Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Nov 6 17:53:36 2009 +0100 generic: Added StretchBlit with DSBLIT_FLIP_HORIZONTAL/VERTICAL. commit 98840d212d4cfd109d88c2d1a0c3ac2cc086933b Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Nov 6 14:29:10 2009 +0100 generic: Fix DSBLIT_FLIP_VERTICAL for non-square blits, copy'n'paste bug. commit 438b5990c35f84a81601cc0e125238377ac04989 Merge: 4d1764f 01b6e0f Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Nov 6 12:58:19 2009 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 4d1764fa38bf8a196a5451339966ff1067124f1a Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Nov 6 12:57:35 2009 +0100 CreateSurface: For non-flipping fullscreen primary surface, force initial update to unfreeze region as no Flip() may come from application. commit 01b6e0fa56aa3ceadbde8344c3f35cb4a1feab15 Author: Sven Neumann <s.neumann@raumfeld.com> Date: Tue Oct 27 19:39:35 2009 +0100 pxa3xx: rewrite of the kernel - userspace interface The interface to the pxa3xx kernel driver had a race condition that causes spurious errors. Denis rewrote this part and moved some more logic to the kernel driver. All tests so far seem to indicate that the new code works perfectly. We will push the changed kernel driver usptream now... commit c5a548e4a91fd265044a05fe6d783c7bfc8561b8 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Oct 22 17:00:39 2009 +0200 dfbtest_sync: Added StretchBlit() to random operations. commit 168753d5b6dbe5dca97ef546acf995cb1348a05a Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Oct 19 18:53:02 2009 +0200 IDirectFBSurface: Added Read() and Write(). commit deadfa55337cc9f446bf2b2ef297de61235988a0 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Oct 19 18:52:30 2009 +0200 Bumped version to 1.4.2. commit 8f52ac5c176aa518e14013a3c6874118e72d81a1 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Oct 19 18:50:22 2009 +0200 Replaced all __u8 by u8 etc. commit 9f38b3d94dd5320216632c53ce52878d45551d7e Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Oct 19 16:26:37 2009 +0200 generic: Implemented DSBLIT_FLIP_HORIZONTAL and DSBLIT_FLIP_VERTICAL, cleaned up gBlit() a bit. commit 653d33c6f8fdea9eb555844481bc122ca8d822c4 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Oct 19 16:25:59 2009 +0200 IDirectFBSurface: Added DSBLIT_FLIP_HORIZONTAL and DSBLIT_FLIP_VERTICAL. commit 3e8d7e52c698fef1605222cb183e6a52b6347391 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Oct 19 15:17:27 2009 +0200 generic: Removed special 180 degree rotation code. Generic version seems to be faster anyhow. commit e33986bd3268ada2bf285cecb9249786753a6bdc Author: Sven Neumann <s.neumann@raumfeld.com> Date: Mon Oct 12 21:45:06 2009 +0200 x11: free the X cursor resource Signed-off-by: Sven Neumann <s.neumann@raumfeld.com> commit abf6363afdf648842c704d581996eaf70ec99bc7 Author: Sven Neumann <s.neumann@raumfeld.com> Date: Mon Oct 12 21:41:23 2009 +0200 x11: minor whitespace cleanup commit a51c0949936266fc51807482ee7385996675aaaa Author: Sven Neumann <s.neumann@raumfeld.com> Date: Mon Oct 12 21:36:56 2009 +0200 x11: release bitmaps used for creating the empty cursor The bitmaps used to create the NullCursor can be released immidiately and don't need to be kept in the XWindow struct. Signed-off-by: Sven Neumann <s.neumann@raumfeld.com> commit 549668a41ad3d6b18a5d048b927a323661d54bc5 Merge: 94646ca 9f6e888 Author: Niels Roest <niels@directfb.org> Date: Mon Oct 5 17:20:26 2009 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 94646ca71c16fc98b4752b6334f13a886c1b3840 Author: Niels Roest <niels@directfb.org> Date: Fri Oct 2 17:33:45 2009 +0200 font: flush "batchblit" between each layer, in case colour has changed commit 3d6e67641ee62e4051f7e4ff934b0ef72dba9fe5 Author: Niels Roest <niels@directfb.org> Date: Mon Oct 5 16:57:21 2009 +0200 configure: treat uclinux targets as linux The current glob for linux targets does not include the common uclinux target which is merely no-mmu Linux. In this particular code, the difference is irrelevant. Signed-off-by: Mike Frysinger <vapier@gentoo.org> commit 9f6e8887c061527d08dd176e7221882bdbddb599 Author: Niels Roest <niels@directfb.org> Date: Fri Oct 2 17:33:45 2009 +0200 font: flush "batchblit" between each layer, in case colour has changed commit 2399f7b3b3e9faff60ad79163b41ff26def5a439 Author: Niels Roest <niels@directfb.org> Date: Fri Oct 2 17:32:59 2009 +0200 pixelformats: add AVYU and VYU single plane formats AVYU: 32 bpp, single plane, 4:4:4 VYU: 24 bpp, single plane, 4:4:4 Signed-off-by: André Draszik <andre.draszik@st.com> commit b89fc158a4ca5d39fdd4d771b29196a4485ed51b Author: Peter Korsgaard <jacmet@sunsite.dk> Date: Fri Oct 2 13:35:50 2009 +0200 gfxcard: fix build error with --enable-debug Commit fdc611ea (Added support for colors and multiple layers in a glyph implementing outlines) changed dfb_gfxcard_drawglyph() to take a layers argument instead of index, but the D_DEBUG_AT call wasn't changed to match. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk> commit 31cf4cad4d642547f21306791687680ea501bbf5 Author: Niels Roest <niels@directfb.org> Date: Wed Sep 30 18:25:54 2009 +0200 fork: disable fork() usage in tests Some of the tests use fork() which fails for targets that lack fork(). The library itself does not care about fork() usage, but the normal build fails as it tries to build the tests. Signed-off-by: Mike Frysinger <vapier@gentoo.org> commit e6489d882e3fc8f6ce846c1dbc7710fc41d5d4bd Author: Niels Roest <niels@directfb.org> Date: Wed Sep 30 17:48:43 2009 +0200 dynamic linking: only include dlfcn.h when needed Some files include dlfcn.h but don't need to, and others include it all the time instead of only when needed. This breaks building on systems that lack dynamic library support. Signed-off-by: Mike Frysinger <vapier@gentoo.org> commit 8f98996e9fbde407d66db11d3065516005dc465f Author: Niels Roest <niels@directfb.org> Date: Wed Sep 30 12:22:37 2009 +0200 x11: "expose" event sometimes comes with non-owned "Window" - simply ignore. commit 8ee3089a15e09cc6219e6778ed63d42715b17ff1 Author: Niels Roest <niels@directfb.org> Date: Mon Sep 28 18:12:21 2009 +0200 generic: fixes for big-endian handling for NV12/NV16/NV21 commit 17aaafcfe45c15544c3786c93952b922bae9d18a Author: Niels Roest <niels@directfb.org> Date: Mon Sep 14 13:24:33 2009 +0200 configure: patch for new tslib. Thanks to Henning Heinold for the patch. commit 29820dab3f63a6eb5836f4e2f20cc25079b78576 Author: Stanislav O\. Bezzubtsev <stas@lvk.cs.msu.su> Date: Fri Sep 4 13:02:38 2009 +0400 gfxcard: don't call gfxcard functions in no-hardware mode There is no need to call FlushTextureCache, EmitCommands and etc. gfxcard functions if the program was started with no-hardware argument (or software_only flag was set from elsewhere). Signed-off-by: Stanislav O. Bezzubtsev <stas@lvk.cs.msu.su> commit 853397e854c60ff29d1d71cd9901b80687e7c0cd Author: Niels Roest <niels@directfb.org> Date: Fri Sep 11 14:13:15 2009 +0200 dfbtest_sync: update .gitignore commit 275fc5b543071223ba79afcb38425a4921807afd Author: Niels Roest <niels@directfb.org> Date: Fri Sep 11 14:11:48 2009 +0200 doc: clarification for IDirectFB::SetVideoMode commit 8266c622dae837a9037c2e5fb13d0feba6b24da2 Author: Niels Roest <niels@directfb.org> Date: Fri Sep 11 14:10:55 2009 +0200 X11: support 3 layers in addition to DLID_PRIMARY, layer id 1 and 2 have been added These are implemented as separate X Windows, so you can observe and debug multi-layer configurations on PC. The mouse shape is restricted to DLID_PRIMARY but the events are accepted on all X Windows. commit cd5178fd33cc6aee534d6b427cc988dd02d2cdb5 Merge: b14e0e1 af7138a Author: Niels Roest <niels@directfb.org> Date: Fri Sep 11 13:39:28 2009 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 06567b55a32cbc3072e87201adff0857bc2a6fe3 Author: Niels Roest <niels@directfb.org> Date: Fri Sep 11 13:02:21 2009 +0200 border: default values were unused commit 4f30b24a2291b75cdb52749365aaba80422276b3 Author: Niels Roest <niels@directfb.org> Date: Fri Sep 11 13:01:38 2009 +0200 SaWMan: add sawman_unregister Unregisters the SaWMan Manager, a.o. setting callbacks to 0 Solves problem when callbacks fired during clean-up commit b9afb4fe79033de5b068e522e1f94f2296e217a9 Author: Niels Roest <niels@directfb.org> Date: Fri Sep 11 12:57:44 2009 +0200 colorize: now updating properly previously, only got updated later, or when combined with other flag commit 7141ca9816a6221cc239cea01e3bfba85aaa39c0 Author: Niels Roest <niels@directfb.org> Date: Fri Sep 11 12:55:10 2009 +0200 key selection: fix for bad flag handling. Previously, key selection was not passed correctly through to SaWMan Manager, causing the flag to be unset. commit b7d5a8f990fa0bdae1d520280a66df06dc3a8a67 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Sep 11 11:49:13 2009 +0200 updates: fixed windows being painted on all tiers after recent optimization commit af7138ad04ee31443c9fb214742656b4af10b3bc Author: Lionel Landwerlin <lionel.landwerlin@openwide.fr> Date: Wed Sep 2 23:49:16 2009 +0200 Fix compilation with debian packages The debian package build method uses a build directory different from the source directory. Because of generated headers in include/, the compilation for debian packages failed. Signed-off-by: Lionel Landwerlin <lionel.landwerlin@openwide.fr> commit e0a4978bd5ea412d865f3e2b97f4dc88898c3dac Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Sep 1 12:12:39 2009 +0200 SaWMan: Optimized stack updates for premultiplied alpha windows (use copy at bottom) Adds misc_region code from pixman. commit 40371b79b82418836ec955d3d5fe3c258acec80b Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Aug 31 13:28:43 2009 +0200 SaWMan: Some refactoring cleaning up... commit c065e9e24481e8a6ee682fa36da2eecbd6131f20 Author: Niels Roest <niels@directfb.org> Date: Fri Aug 28 17:22:57 2009 +0200 release: SaWMan 1.4.2 commit b14e0e104cdf59e1082fc8868ec4d5bf36e0c6a8 Author: Niels Roest <niels@directfb.org> Date: Fri Aug 28 16:52:58 2009 +0200 input: fix for event completion when missing key ID thanks to Hung Wei-Hsuan commit 1c43021d7f7664dfd5d5cc979ae5079a22d0f646 Author: Niels Roest <niels@directfb.org> Date: Thu Aug 27 21:51:24 2009 +0200 release: DirectFB 1.4.2 commit b01e091e17e69aa97bab7d4dd3a59d7ec02f020d Author: Niels Roest <niels@directfb.org> Date: Thu Aug 27 21:42:55 2009 +0200 samples: install samples too commit 2a4a00852809b342b992c4506599b9d163e93d61 Author: Niels Roest <niels@directfb.org> Date: Thu Aug 27 21:42:30 2009 +0200 SetWindowConfig: allows now all flags, except: SWMCF_KEY_SELECTION, _SWMCF_ASSOCIATION and SWMCF_STACKING commit 93d73fc032952a6cbcf53aec028ff17b9e926548 Author: Niels Roest <niels@directfb.org> Date: Thu Aug 27 21:34:47 2009 +0200 compatibility: fix for cooperation with DirectFB 1.2.9 commit fdc611eab2b3680932c189e88cd576ffcc165e37 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Aug 26 20:54:59 2009 +0200 Fonts/Colors: Added support for colors and multiple layers in a glyph implementing outlines. Added DFBColorID and DCID_PRIMARY, DCID_OUTLINE. Added IDirectFBSurface::SetColors() that takes an array of IDs and an array of DFBColor. Added DFFA_OUTLINED for loading a font with support for outlines. Added DFDESC_OUTLINE_WIDTH and DFDESC_OUTLINE_OPACITY. Added outline_width and outline_opacity to DFBFontDescription. Added DSTF_OUTLINE that activates the outline per DrawString(). Simplified font rendering in core using the current state instead of its own. Fixed IDirectFBSurface::GetAccelerationMask(). commit dc6d97bbf2a3d905655d8db985b6138e02a13d1a Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Aug 26 20:19:42 2009 +0200 dfbtext_sync: Added simple test program randomly doing operations and syncing. commit f990465367b49ed816a57d74436f7abf548593a6 Author: Niels Roest <niels@directfb.org> Date: Wed Aug 26 14:30:17 2009 +0200 format: Support RGBA5551 pixel format added. Thanks to Stanislav Bezzubtcev <stas@lvk.cs.msu.su> commit f8bc3cfa4bf0a97945f1dcd5c18792e7339a769c Author: Niels Roest <niels@directfb.org> Date: Tue Aug 25 13:05:04 2009 +0200 fbdev: Fixed RGB fields sizes in dfb_fbdev_set_gamma_ramp. thanks to Stanislav Bezzubtcev <stas@lvk.cs.msu.su> commit f97dfefae9ee1d3d94e9a56be34a6669fe4521a6 Author: Niels Roest <niels@directfb.org> Date: Tue Aug 25 13:02:54 2009 +0200 gfx: Bugs in pixel format convertion fixed. Formats ARGB1555 and RGB555 were incorretly converted to RGB16. G component extended from 5 to 6 bit by coping of the last one. Now low bit of G component is a copy of upper one. Format RGB16 was incorretly converted to RGB32, ARGB. G component extended from 6 to 8 bit by coping 4,3 bits to 1,0. Now 1,0 bits of G component are copies of 5,4. thanks to Stanislav Bezzubtcev <stas@lvk.cs.msu.su> commit 129ab7f0a1aaaee3a88b50c468b23fd193d4e3af Author: Niels Roest <niels@directfb.org> Date: Tue Aug 25 12:58:36 2009 +0200 font format: Allow fonts premultiplication on ARGB1555 format. thanks to Stanislav Bezzubtcev <stas@lvk.cs.msu.su> commit 8f2cab830b385ca7e31167fb959886410116e3b6 Author: Niels Roest <niels@directfb.org> Date: Tue Aug 25 12:57:42 2009 +0200 comments: fix mistake in comments. thanks to Stanislav Bezzubtcev <stas@lvk.cs.msu.su> commit 0c63f702b470d4626a40e23cd1c5a8045ee91d18 Author: André Draszik <andre.draszik@st.com> Date: Sat Jul 25 13:41:50 2009 +0100 [rgb32] PIXEL_RGB32() sets alpha to ff now Signed-off-by: André Draszik <andre.draszik@st.com> commit a4c15793964d10902dfc3ff5b5e60ee49eb569b8 Author: André Draszik <andre.draszik@st.com> Date: Wed Jul 29 14:54:33 2009 +0100 [surface] add support for the DESTINATION Porter/Duff rule Signed-off-by: André Draszik <andre.draszik@st.com> commit 4e68fe0c8260e4b969a1ddf90b0e2abf7812a2d7 Author: André Draszik <andre.draszik@st.com> Date: Wed Jul 22 02:06:49 2009 +0100 [software rasterizer] buffer unlocking fixes in error paths Signed-off-by: André Draszik <andre.draszik@st.com> commit bb34ad7efb8c1c04906de37feed673558e7bd95e Author: Sven Neumann <s.neumann@raumfeld.com> Date: Sat Aug 15 21:20:30 2009 +0200 [pxa3xx] reject unsupported combinations of blitting flags Blitting with DSBLIT_BLEND_COLORALPHA is only accelerated if it is not combined with other flags. commit 5f4eacf9ec031949bf863bd0e5ac23a57284dd28 Author: Sven Neumann <s.neumann@raumfeld.com> Date: Fri Aug 14 13:23:12 2009 +0200 [pxa3xx] implement blits with DSBLIT_BLEND_COLORALPHA Accelerate blits with DSBLIT_BLEND_COLORALPHA to destination surfaces without alpha channel. Signed-off-by: Sven Neumann <s.neumann@raumfeld.com> commit 4cb00b02ae4e5334a7b0c26550bfd7c3508bce7c Author: Sven Neumann <s.neumann@raumfeld.com> Date: Mon Aug 3 13:13:38 2009 +0200 [nvidia] try to map the MMIO area before anything else commit f8212adabaa85277db2ee22d7c98b90b9f616f84 Author: Sven Neumann <s.neumann@raumfeld.com> Date: Mon Jul 20 12:12:12 2009 +0200 [fbdev]: return the accelerator ID regardless of mmio_len commit d4e25f6bea54b74f79779793a0d3e9759559f3c9 Author: Sven Neumann <s.neumann@raumfeld.com> Date: Mon Jul 20 11:34:29 2009 +0200 [pxa3xx] fix accelerator ID in driver_probe() commit 6f7ee204f888216aee2e1c8d1761bc6be01eb2da Author: Sven Neumann <s.neumann@raumfeld.com> Date: Mon Jul 20 10:39:01 2009 +0200 [pxa3xx] add license and copyright header to all source files commit 04b62d0fcfe6e042137199a93e8e828c8e621509 Author: Sven Neumann <s.neumann@raumfeld.com> Date: Fri Jul 17 19:42:43 2009 +0200 [pxa3xx] implement acceleration for anti-aliased text commit ad7167e12ef33b9ddf6b8b71a3199107ec9099ef Author: Sven Neumann <s.neumann@raumfeld.com> Date: Fri Jul 17 17:45:45 2009 +0200 [pxa3xx] implement blended rectangle fills Implement blended rectangle fills using a blit from a fake buffer. Split blit implementation in two functions. commit 47c08c733837e4b7b64e1e87a3a640c38b96bc11 Author: Sven Neumann <s.neumann@raumfeld.com> Date: Fri Jul 17 15:12:15 2009 +0200 [pxa3xx] go back to rotate blits commit 92d5992e6780da63732a03114e1b27e24999a5e6 Author: Sven Neumann <s.neumann@raumfeld.com> Date: Fri Jul 17 13:56:30 2009 +0200 [pxa3xx] fixes to blended blits Blended blits to surfaces with alpha channel are not accelerated. Use an ordinary blit if a blended blit is requested and the source does not have an alpha channel. commit e1788c17b3e382977ae2ce445da92d5021ae8eab Author: Sven Neumann <s.neumann@raumfeld.com> Date: Fri Jul 17 13:45:47 2009 +0200 [pxa3xx] fix source offset in blits with alpha-blending commit dbd30770119f7ce6399d904614daa81dc386d415 Author: Sven Neumann <s.neumann@raumfeld.com> Date: Fri Jul 17 13:44:56 2009 +0200 [pxa3xx] use raster-blit, pattern-blit is fast but broken commit da87ef9891ac84c6b54496e8c53f13d8bd428a46 Author: Sven Neumann <s.neumann@raumfeld.com> Date: Fri Jul 17 11:41:02 2009 +0200 [pxa3xx] set color in destination pixel format commit 37079389636738775313ef7c49b664fdb398573b Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Jul 16 15:41:50 2009 +0200 [pxa3xx] Use pattern blit if non-rotated. commit 042f1294a4d23f7f95c56b5c798eb378548d966f Merge: 6363526 d323818 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Jul 16 15:39:46 2009 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 6363526ba4603a90a23e8c64baf88fff7d600189 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Jul 16 15:39:20 2009 +0200 [pxa3xx] Fixed twist in rotation code (90 vs 270). commit d323818b2f5773f3f3cfd10c6ded6a69fb020191 Author: Sven Neumann <s.neumann@raumfeld.com> Date: Thu Jul 16 14:19:47 2009 +0200 removed trailing whitespace commit 0e1af203066f8e0f8ad7a04588d822422e36ccee Author: Sven Neumann <s.neumann@raumfeld.com> Date: Tue Jul 14 11:18:27 2009 +0200 [pxa3xx] adjust the device name The driver name changed to pxa3xx-gcu, adjust the device path accordingly. commit bf7da40ef83bc07be9fac19eb5dff17cd6f2c2c3 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Jul 10 10:18:21 2009 +0200 [pxa3xx] This adds a driver for the 2D graphics accelerator found on PXA3xx processors. Only resource mapping, interrupt handling and a simple ioctl handler is done by the kernel part, the rest of the logic is implemented in DirectFB userspace. Graphic applications benefit for line drawing, blend, and rectangle and triangle filling operations. Measurements on a PXA303 using the df_dok benchmarking tool follow, where the value in square brackets show the CPU usage during that test. Without accelerator: Fill Rectangle 3.007 secs ( 175.922 MPixel/sec) [100.3%] Fill Rectangles [10] 3.178 secs ( 182.696 MPixel/sec) [100.0%] Fill Triangles 3.023 secs ( 99.232 MPixel/sec) [100.3%] Blit 3.082 secs ( 39.770 MPixel/sec) [100.0%] Blit 180 3.115 secs ( 28.994 MPixel/sec) [100.3%] Blit with format conversion 3.078 secs ( 18.863 MPixel/sec) [100.0%] With accelerator: Fill Rectangle 4.377 secs (* 88.433 MPixel/sec) [ 5.9%] Fill Rectangles [10] 5.176 secs (* 87.245 MPixel/sec) [ 0.5%] Fill Triangles 3.025 secs ( 87.437 MPixel/sec) [ 46.6%] Blit 12.177 secs (* 22.250 MPixel/sec) [ 1.3%] Blit 180 8.421 secs (* 32.175 MPixel/sec) [ 4.9%] Blit with format conversion 8.216 secs (* 40.045 MPixel/sec) [ 2.5%] commit 0ed67ad6c7631668745c95b20870c48752e2cb06 Author: Niels Roest <niels@directfb.org> Date: Mon Jul 6 20:17:01 2009 +0200 [API] application_id revisited commit 27ab674db1554d71009081151e0e24dd728598a8 make API more in line with window_added() and window_removed(). Also makes it possible to relate the callback to a specific window. Small fix since GetApplicationID did not work yet. commit 07fc8c55db562ba82702915e209cab95f32116db Author: Niels Roest <niels@directfb.org> Date: Mon Jul 6 17:56:32 2009 +0200 [fix] typo when splitting patches commit 5b2b7862ad470ef8f42f700a0fb7a7b9460dedf7 Author: Niels Roest <niels@directfb.org> Date: Thu Jul 2 21:36:57 2009 +0200 [colorize windows] allow the window config value "color" to colorize the window If you do IDirectFBWindow::SetColor on a window without DSCAPS_COLOR: a color with a non-nul alpha value will multiply the window content with this color. Only supported by SaWMan, currently. For other WMs this call has no effect. commit c170ad89b250011b652e5a29f8bd1d381e4694b4 Author: Niels Roest <niels@directfb.org> Date: Thu Jul 2 21:34:00 2009 +0200 [API] add application_id to a window Addition of: IDirectFBWindow_SetApplicationID IDirectFBWindow_GetApplicationID These functions set and get a free-to-use application ID. Any change, i.e. any call to the setter will inform the window manager. Currently, only SaWMan implements this callback as a callback to the SaWMan manager. commit 85f8252dc59c3c82316e6a52e495f51a37efaa92 Author: Niels Roest <niels@directfb.org> Date: Thu Jul 2 21:28:40 2009 +0200 [colorize windows] allow the window config value "color" to colorize the window This parameter was reserved when a window was created with DSCAPS_COLOR: it would show the window with this color only (single color, no surface needed). Now it is also active without DSCAPS_COLOR: if you specify a color with a non-nul alpha value, the window will be blended to the screen using DSBLIT_COLORISE: this multiplies the window content with this color. commit 6f6e932b107df092829af81a4266cd468091074b Author: Niels Roest <niels@directfb.org> Date: Thu Jul 2 21:26:05 2009 +0200 [LayerReconfig] fix to make it work fix for commit b4d90ffc2b09c2ad57153323003575624e9937f9 commit 3601086b222a2da56ed630f737f03b3c089002f3 Author: Niels Roest <niels@directfb.org> Date: Thu Jul 2 21:24:25 2009 +0200 [API] add application_id to SaWMan, and app ID changed callback This is a window property; with this, SaWMan can monitor the app ID of this window. This is a free-to-use-parameter (no imposed usage). This has to be synchronous with the DirectFB change too! DirectFB API has corresponding IDirectFBWindow::SetApplicationID added. commit ce6f3cf32a454a7260bec1883bfc9695b3f5c7d8 Author: Niels Roest <niels@directfb.org> Date: Thu Jul 2 21:17:58 2009 +0200 [ISaWManManager] fix SendWindowEvent.. This has never worked. commit dde84a8d2df9c397ff53f53b2db3fafc3fd66c92 Author: Niels Roest <niels@directfb.org> Date: Thu Jul 2 21:15:42 2009 +0200 [SetWindowConfig] add SWMCF_OPACITY as a configurable parameter had to move some funcs because of that; functions are just renamed/copied, not changed! commit be1a495c91aab97fd223a26c5a54872f4c8eeb15 Author: Niels Roest <niels@directfb.org> Date: Sat Jun 27 00:22:02 2009 +0200 [release] SaWMan 1.4.1 commit 5f78372869747bb919e3523dfb7816f5811c58ab Author: Niels Roest <niels@directfb.org> Date: Sat Jun 27 00:04:03 2009 +0200 [release] DirectFB 1.4.1 commit ce54b3a1abf37d382b590201bb524a31779b9a39 Author: Niels Roest <niels@directfb.org> Date: Fri Jun 26 23:18:26 2009 +0200 [direct] add possibility to prevent declaration of u8..u32; in this way, you can prevent nameclashes. commit 9f26bc4797464f58fa8e9e518b6844e58626c6b7 Author: Niels Roest <niels@directfb.org> Date: Fri Jun 26 23:17:31 2009 +0200 [input] linux_input can now be used without fbdev system (e.g. devmem) commit 4e3d606bf6e96fb17b6b40df4b85826166721800 Author: Niels Roest <niels@directfb.org> Date: Fri Jun 26 22:16:26 2009 +0200 [API] hide macros in internal sawman file commit 2febaaeb9c54c91ace6fa33e804f6eb1463eb7f4 Author: Niels Roest <niels@directfb.org> Date: Fri Jun 26 21:24:17 2009 +0200 [API] fix in casting, causing possible SEGV on 64-bit systems commit 828b8544da6e3ef74a73e7418941d8e8c8f3738a Author: Niels Roest <niels@directfb.org> Date: Fri Jun 26 21:23:48 2009 +0200 [API] continuing the API cleanup, some functions were added/extended: SaWManWindowFlags: now also contain FOCUS and ENTER info (key focus) SaWManWindowInfo: now also contains DFBWindowID and SaWManWindowFlags ISaWManManager_GetWindowInfo: to get basic window info using the handle ISaWManManager_GetProcessInfo: to get process info about the window ISaWManManager_IsWindowShowing: if window is visible and not obscured by other opaque windows goal is to hide the SaWMan internals, while offering the same functionality as before. commit a643ead470548d5acb1b0016c5cd8b8d8be8aa4e Author: Niels Roest <niels@directfb.org> Date: Fri Jun 26 21:16:19 2009 +0200 [fbdev] fix for BGR555 in conjunction with fbdev systems commit 9fa1437faab48d4f40e4f8f1d83965c4f1e441ad Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Jun 25 07:43:01 2009 +0200 [fbdev] Removed cruft from header file. commit 3e5920418fbb5a6c72784c7a13e4dc81cb1b3ad9 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Jun 25 07:41:30 2009 +0200 ignore commit 3557657cdab83cb4a85230bffd4bfe37fb7cf008 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Jun 25 07:35:57 2009 +0200 [fbdev] Big cleanup and some fixes, enhancements. Removed #if 0ed code. Removed mode switching from fbdevAllocateBuffer() and moved pitch, offset determination to fbdevLock(). Check mode switching result in fbdevSetRegion() by reading back var info. Check amount of video memory in fbdevTestRegion() to avoid running over buggy drivers' framebuffer. commit 963ece2a2c3f9891fdf50e19cdfdaf7687413366 Merge: f37d34d 62d93da Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Jun 25 03:23:30 2009 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit f37d34da902e318d6f2d23eb5caa758fb79e724d Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Jun 25 03:20:39 2009 +0200 [configure] Allow LIBPNG_LIBS and LIBPNG_CFLAGS to overrule nasty libpng-config usage. commit 23e83b4da630d60381c51f2bad5736a36f96a3ef Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Jun 25 03:16:43 2009 +0200 [fbdev] Added a few surface pool debugging messages. commit 02048d2672bc46af22c7fdeeb5a018e0005f02e6 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Jun 25 03:12:21 2009 +0200 [surface buffer] Print error from allocation during lock() only if not DFB_NOVIDEOMEMORY or DFB_UNSUPPORTED. commit b72b687f78ce97b0eb31ef5c261852acd85df858 Merge: fc7747c 2802bb5 Author: Niels Roest <niels@directfb.org> Date: Tue Jun 23 22:38:46 2009 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/extras/SaWMan commit 2802bb5523ccd217c236fe04f5edc756cfe1727c Merge: 5a17537 823f1cc Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Jun 23 22:40:10 2009 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/extras/SaWMan commit 5a175377f3a06e701feb8967993f788fecc3d2bf Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Jun 23 22:39:37 2009 +0200 [window info] Added resource_id from window description to window info. commit 62d93da2ecc2a918b3376436705523e74a1f6d06 Author: Niels Roest <niels@directfb.org> Date: Tue Jun 23 22:35:10 2009 +0200 [window] add resource ID also to window structure, if window has no surface commit fc7747cf902ea11cc31a4e40d40dcc60b8d77c0b Author: Niels Roest <niels@directfb.org> Date: Mon Jun 22 21:17:28 2009 +0200 [testman] make sure not to set superfluous request options commit 823f1ccf028bf8d57180c17cd4bbaa1f485c2a99 Merge: 12f1e16 74a4912 Author: Niels Roest <niels@directfb.org> Date: Thu Jun 18 12:20:38 2009 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/extras/SaWMan commit 12f1e16ce89f2e325a2254986eabfc4094fc7d55 Author: Niels Roest <niels@directfb.org> Date: Thu Jun 18 12:20:32 2009 +0200 [window] add support for DWCAPS_COLOR, solid color windows (no surface) commit ce501730da1fa31c5e23f42a656632eba783ab3f Author: Niels Roest <niels@directfb.org> Date: Thu Jun 18 12:16:33 2009 +0200 [window] support for DWCAPS_COLOR when you specifiy DWCAPS_COLOR, the window will have a solid color only. A surface will not be created, so window->surface is 0. The color can be specified with Window::SetColor(r,g,b,a). This is always a "normal" color, NOT premultiplied, so DSCAPS_PREMULTIPLIED has no effect here. Currently, this option is only supported by the SaWMan window manager. commit 74a491209d0d690e49c15ad0203e42123bb5f093 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Jun 17 15:37:29 2009 +0200 [compatibility] Fixed compatibility macro usage from recent merge. commit 444f3b9e7a27ae8b538192f3ea9f0eaeabfeb4fb Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Jun 17 15:33:24 2009 +0200 [LayerReconfig] Added callback to allow override or single window optimizations. commit 1f322b73ab384f6b1e81c4946955bd391c6e3b30 Merge: 36e274f e7bc963 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Jun 17 14:36:10 2009 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/extras/SaWMan Conflicts: src/sawman.c wm/sawman/sawman_wm.c commit 36e274f191e4bd1d9b0752bb653a7bb792ec0c0a Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Jun 17 14:33:05 2009 +0200 [SetAssociation] Dynamic window association implementation. commit f0d9f96df53147e4ecffe3b97dce3f190cda8f5d Merge: aaa4577 83a4d19 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Jun 17 14:32:36 2009 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit aaa457773be51f72086e1df6f42347f546a07315 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Jun 17 14:31:18 2009 +0200 [IDirectFBWindow] Dynamic window association via IDirectFBWindow::SetAssociation(). This patch adds dynamic association of windows, as opposed to the static initialization done via the window description. commit e7bc9634dbdce30f597d5abdc0937b371e7d7af3 Author: Niels Roest <niels@directfb.org> Date: Tue Jun 16 19:21:25 2009 +0200 [release] forgot this.. drop the rc1 commit cab9c58d033c146bfc19f0b1088ca3918101c37e Author: Niels Roest <niels@directfb.org> Date: Tue Jun 16 19:00:00 2009 +0200 [release] SaWMan 1.4.0 commit 8c9fd8ec310771784cdc7fb355f046533ad21974 Author: Niels Roest <niels@directfb.org> Date: Tue Jun 16 18:08:12 2009 +0200 [requirements] lighten SaWMan requirements: also use DirectFB 1.2.x The upcoming 1.4.0 release of SaWMan can be used with both DirectFB 1.2.x and DirectFB 1.4.x branches. A rebuild will do. commit 83a4d19dfb4dd0239748562aa551b4766da0767b Merge: 436f053 c5d5677 Author: Niels Roest <niels@directfb.org> Date: Mon Jun 15 14:50:45 2009 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit c5d567740ea070318d696635615807724425eb68 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Jun 12 23:37:58 2009 +0200 [configure] Fixed missing JPEG=yes setting in configure when LIBJPEG is set manually. LIBJPEG can be set to something like "-L/path -ljpeg" when running configure. commit 91d3568c031dd25d381b374c1f40b963b570c7fd Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Jun 12 23:31:47 2009 +0200 [dfbtest_window] Set DWOP_FOLLOW_BOUNDS when association is made. commit 34b18bdb2187cb450eaf57d29a73bb6bfa9fb122 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Jun 12 23:30:51 2009 +0200 [tests] Install test programs. commit 436f053ec4305aae00eb33cd9fc87c9756e78dc3 Author: Niels Roest <niels@directfb.org> Date: Thu Jun 11 17:51:31 2009 +0200 [trace] fix so trace will also print static funcs in stack dump commit e8c54bb215a9883007ba9b5bbb3123227addefd9 Author: Niels Roest <niels@directfb.org> Date: Thu Jun 11 17:47:13 2009 +0200 [vt switching] timing problems when vt-switching. doing graphic operations while DirectFB is suspended (due to vt-switching) caused asserts and problems - fixed thanks to Jacques Luder. commit 30644acacb67ff46f56e278832820b335c10be0c Author: Niels Roest <niels@directfb.org> Date: Mon Jun 8 18:58:01 2009 +0200 [destruct] with SaWMan, enabling cursor in IDestruct leads to assert commit 243d71d1cfa67ab3963590fe39b25d93a53333dc Author: Niels Roest <niels@directfb.org> Date: Thu Jun 4 15:41:34 2009 +0200 [release] DirectFB 1.4.0 commit cd3e0306347ab0601ad1e6b98b0897aac2fb8942 Merge: b4cf1e3 b29d791 Author: Niels Roest <niels@directfb.org> Date: Tue Jun 2 18:47:24 2009 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit b29d791b04000d0dd1d46331fcf6bce1802937ef Author: Sven Neumann <s.neumann@raumfeld.com> Date: Fri May 29 17:37:01 2009 +0200 updated copyright in source files Changed the DirectFB Open Source Community copyright from 2001-2008 to 2001-2009 all over the place. commit 15b303d8946250d424b596565507dce081bfba23 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu May 28 08:37:03 2009 +0200 [fbdev] Allow accelerator id to be overridden by runtime option, print some info during init. commit b4cf1e38969bb931e24592d4098d5bc2552d63f1 Author: Niels Roest <niels@directfb.org> Date: Mon May 25 14:20:16 2009 +0200 [layer] Bug when switching source from surface to surfaceless (video). The bug is caused by the destruction of the region surface before the active buffer is unlocked (lock being held by layer). Thanks to Sorin Otescu for the patch. commit 9df11d6795de316b3bf8a8e014095549b5a0a822 Author: Niels Roest <niels@directfb.org> Date: Mon May 25 14:09:09 2009 +0200 [build] fix for commit 5a941ac479883bef11bd9ada65b07fafafff2ad1 INCLUDES were in the wrong order. Thanks Andre. commit 95c1ed2a6afa5eee838378dcc9557ce975ab54ff Author: Niels Roest <niels@directfb.org> Date: Mon May 25 12:14:00 2009 +0200 [surfaces] Clean up after failed pool init to keep the memory consistent; consistency is required by ASSERTs. Thanks to Andre Draszik. commit 68ff8b08292622c8b0d65812858898ebb121b47d Author: Sven Neumann <s.neumann@raumfeld.com> Date: Fri May 22 09:30:45 2009 +0200 Removed const qualifier from destination pointer The recently introduced IDirectFBSurface::Read method had a const qualifier for the pointer to the destination memory. Removed this qualifier as the method writes to this memory. commit 689a97a85fa0c79c1ab2ff60803d950506d346de Author: Ville Syrjala <syrjala@sci.fi> Date: Sat May 16 00:31:45 2009 +0300 layers: Prevent deadlock when destroying context A deadlock can happen between the input device shared reactor global lock and the layer context lock if the layer context destruction and input even processing happen at the same time since the code paths acquire the locks in different order. Fix the problem by detaching the input devices from the windowstack before taking the layer context lock in the context destruction path. Nothing ever modifies the windowstack's device list so AFAICS it should be safe to do this without holding the layer context lock. This is a backtrace of the deadlock: Thread 13 (Thread 0x436a7950 (LWP 6158)): 0 0x00007f23b8125117 in ioctl () from /lib/libc.so.6 1 0x00007f23b95982ee in fusion_skirmish_prevail () from /usr/local/lib/libfusion-1.3.so.0 2 0x00007f23b9846604 in dfb_layer_context_lock () from /usr/local/lib/libdirectfb-1.3.so.0 3 0x00007f23b985690e in _dfb_windowstack_inputdevice_listener () from /usr/local/lib/libdirectfb-1.3.so.0 4 0x00007f23b959a12c in fusion_reactor_dispatch_channel () from /usr/local/lib/libfusion-1.3.so.0 5 0x00007f23b9843dff in dfb_input_dispatch () from /usr/local/lib/libdirectfb-1.3.so.0 6 0x00007f23b5a4b1f6 in linux_input_EventThread () from /usr/local/lib/directfb-1.3-0/inputdrivers/libdirectfb_linux_input.so 7 0x00007f23b9387ec6 in direct_thread_main () from /usr/local/lib/libdirect-1.3.so.0 8 0x00007f23b904e087 in start_thread () from /lib/libpthread.so.0 9 0x00007f23b812bccd in clone () from /lib/libc.so.6 10 0x0000000000000000 in ?? () Thread 18 (Thread 0x40832950 (LWP 6153)): 0 0x00007f23b8125117 in ioctl () from /lib/libc.so.6 1 0x00007f23b95982ee in fusion_skirmish_prevail () from /usr/local/lib/libfusion-1.3.so.0 2 0x00007f23b959944a in fusion_reactor_detach_global () from /usr/local/lib/libfusion-1.3.so.0 3 0x00007f23b98574cd in dfb_windowstack_destroy () from /usr/local/lib/libdirectfb-1.3.so.0 4 0x00007f23b98476f8 in context_destructor () from /usr/local/lib/libdirectfb-1.3.so.0 5 0x00007f23b959900e in object_reference_watcher () from /usr/local/lib/libfusion-1.3.so.0 6 0x00007f23b9595026 in _fusion_call_process () from /usr/local/lib/libfusion-1.3.so.0 7 0x00007f23b9596d5a in fusion_dispatch_loop () from /usr/local/lib/libfusion-1.3.so.0 8 0x00007f23b9387ec6 in direct_thread_main () from /usr/local/lib/libdirect-1.3.so.0 9 0x00007f23b904e087 in start_thread () from /lib/libpthread.so.0 10 0x00007f23b812bccd in clone () from /lib/libc.so.6 11 0x0000000000000000 in ?? () commit 10c2bee93fa36b518de06be670669ce7c263c9a7 Author: Sven Neumann <s.neumann@raumfeld.com> Date: Tue May 19 09:37:45 2009 +0200 core: added a const qualifier for the source buffer commit db6b85fd39a26714d173ac3e479688158fbd0e95 Author: Ville Syrjala <syrjala@sci.fi> Date: Mon May 18 02:29:35 2009 +0300 matrox: Fix BES single buffering Commit f94cc4934addfc80025d4fbc6a4f0b98042e6d8f introduced a problem where SetRegion() would update the inactive set of buffer registers. The problem was only really visible with single buffering since the active registers were never updated as FlipRegion() was never called. commit adab4e0a39c096c1f5359c975c10856c7dc06324 Author: Sven Neumann <s.neumann@raumfeld.com> Date: Fri May 15 09:38:40 2009 +0200 gfx: sprinkled the code with const qualifiers Add const qualifiers to the source pointers for all pixel-format conversion functions. Also move some variables to local scope. commit 555970f9b6707790b9ec5697f542ca0ae75f6c50 Author: Niels Roest <niels@directfb.org> Date: Thu May 14 20:27:33 2009 +0200 [input] fix for shutdown crash reproducible with "splashy" boot screen commit 49baa1d479d3fe65b33d7db5d97de2ec15bc249c Merge: b13d1a0 df22ef6 Author: Niels Roest <niels@directfb.org> Date: Thu May 14 20:25:38 2009 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit df22ef6e4fc5141461afaf46a6b61f7dc1d83a3b Author: Sven Neumann <s.neumann@raumfeld.com> Date: Thu May 14 14:53:36 2009 +0200 Add defines for the RGB16 dithering methods commit 90fa8286cf22f6d91f29df8c92ea3f71758d9478 Author: Sven Neumann <s.neumann@raumfeld.com> Date: Thu May 14 14:38:23 2009 +0200 tools: add --dither-rgb16 option to directfb-csource commit b13d1a0c4b0085fadbca3a1293118afacd202f02 Author: Niels Roest <niels@directfb.org> Date: Wed May 13 21:47:58 2009 +0200 [API] add NTSC-443 enum format; add some missing frequency enums. commit 4b2dfd572bb0ae8863f60d53c9d73c9da14dd5dc Author: Niels Roest <niels@directfb.org> Date: Wed May 13 21:46:31 2009 +0200 [jpeg] plug mem leak on file read error commit b794f110988652354a0f51d126b9b5b62249e217 Author: Niels Roest <niels@directfb.org> Date: Wed May 13 21:45:58 2009 +0200 [matrox] add #ifdef to prevent wrong asm on non-X86 build commit 5a941ac479883bef11bd9ada65b07fafafff2ad1 Author: Niels Roest <niels@directfb.org> Date: Wed May 13 21:45:28 2009 +0200 [build] add missing include path for builddir != srcdir reshuffle makefiles to make changes easier and shorter commit 50aa399b878c4811d061e50b33e479ddd4401da0 Author: Niels Roest <niels@directfb.org> Date: Wed May 13 21:43:35 2009 +0200 [sis315] fix: allow a program to call both blit and stretchblit. commit b142a30140673eeffc6823da40cea6df76df19a5 Author: Sven Neumann <s.neumann@raumfeld.com> Date: Tue May 12 18:12:42 2009 +0200 gfx: introduce optional dithering for RGB16 surfaces Introduce a configure switch to enable dithering when rendering an image to a RGB16 surface. The pre-generated dither matrices are taken from GdkRGB. commit cefa2171ff9c9122ce26821cba4c88c33fe58a6e Author: Sven Neumann <s.neumann@raumfeld.com> Date: Tue May 12 15:27:20 2009 +0200 cosmetics commit c414dedf8dadacd489b35de2ff531d139ddea923 Author: Sven Neumann <s.neumann@raumfeld.com> Date: Tue May 12 15:25:33 2009 +0200 cosmetics commit 8082fcb0a454f55ab5a8c82159047661a6e4b519 Merge: b1f8ddb 970c13c Author: Niels Roest <niels@directfb.org> Date: Tue May 12 15:12:52 2009 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit b1f8ddbbca046fdd55ca02ab5e3fb86bacf2abd6 Author: Niels Roest <niels@directfb.org> Date: Tue May 12 15:12:40 2009 +0200 [build] compiler warning, debug message extended, include file order commit 970c13c54dcdb94dde9eca215ae914ccfb115d60 Author: Sven Neumann <s.neumann@raumfeld.com> Date: Tue May 12 14:41:56 2009 +0200 Consistently use doubles to calculate the inverse scale factors Use of floats here triggered a bug in the gcc 4.3 soft-float code. Since we are already using 1.0/scale in some places, it seems OK to make this consistent. commit 97fd4ba6f39f890f6267960a50e796e581da14ee Author: Sven Neumann <s.neumann@raumfeld.com> Date: Tue May 12 14:33:17 2009 +0200 cosmetics commit 1300cd4814b8e1691a5651ae447e84e5753efc24 Author: Sven Neumann <s.neumann@raumfeld.com> Date: Tue May 12 11:46:54 2009 +0200 added more const qualifiers, moved variables into local scopes commit e0be70ec8aedde56f23d216530746a93e7746ff6 Author: Ville Syrjala <syrjala@sci.fi> Date: Tue May 12 04:16:57 2009 +0300 vt/keyboard: Flush console input when not used To keep the kernel happy the console buffer must be kept from filling up. If the buffer is sufficiently full the kernel stop sleeping and instead wakes up every tick to do something. This problem occurs when the keyboard driver is not used and the linuxinput driver does not grab the devices. Add a new thread whose job is to keep flushing the buffer when the keyboard driver is not there to consume the data. commit a9edc19c0275527144cae7bd7ba9b66224924708 Author: Ville Syrjala <syrjala@sci.fi> Date: Sun May 10 01:23:46 2009 +0300 Silence some compiler warnings commit ffa522e63e4de0a999566821f3c17b78141cec86 Author: Sven Neumann <s.neumann@raumfeld.com> Date: Fri May 8 17:00:26 2009 +0200 removed trailing whitespace commit bac0f25ce65795d63354d3ba3b9eded4a910351e Author: Sven Neumann <s.neumann@raumfeld.com> Date: Fri May 8 16:55:42 2009 +0200 Sprinkled the code with const qualifiers commit 49e8ec67d124093a57492aecf5fbc65a6422a2be Author: Sven Neumann <s.neumann@raumfeld.com> Date: Mon May 11 16:46:14 2009 +0200 font: introduce new font attribute DFFA_NOBITMAP Some truetype fonts include bitmap strikes for certain sizes. A new font attribute is introduced to the DFBFontAttributes enum. It maps to the FT_LOAD_NO_BITMAP attribute in the freetype2 renderer. This tells the renderer to always provide an anti-aliased rendering, ignoring bitmap strikes embedded in the font. For bitmap-only fonts this flag is ignored. commit 153cbdcce3b1334f5fc74d87516edda1ad228103 Author: Sven Neumann <s.neumann@raumfeld.com> Date: Mon May 11 16:44:21 2009 +0200 indentation cleanup commit f94cc4934addfc80025d4fbc6a4f0b98042e6d8f Author: Ville Syrjala <syrjala@sci.fi> Date: Tue May 5 22:09:13 2009 +0300 matrox: Improve BES triple buffering The BES has two sets of buffer registers and a status register which can report the status which buffer is being displayed. besvcnt can be used to make the buffer flip + status read atomic which allows guaranteed tear free triple buffering. besvcnt can also be used to make all other BES register updates atomic. commit 094540b0a6e493945fab560c737700948b70b07e Author: Ville Syrjala <syrjala@sci.fi> Date: Tue May 5 22:07:20 2009 +0300 surface: Fix back<->front swap Wrong back and front buffer indices were used when performing the back<->front buffer swap which caused the the application render into the wrong buffer. commit 32e49cdac7a18d9ac0195d50c19c58186acc88e1 Author: Sven Neumann <s.neumann@raumfeld.com> Date: Thu May 7 21:27:13 2009 +0200 input: no need to set min and max for the touchpad, it doesn't deliver absolute events; check that minimum or maximum is != 0 commit 6c9c5db93abc2ae6e93659af3e71a3dbdd460748 Author: Sven Neumann <s.neumann@raumfeld.com> Date: Thu May 7 21:15:30 2009 +0200 git: don't ignore the m4 whole directory but only the files that libtool adds there commit b0373d3f3b5f55be43d07f9d1b5b9cce51f65c6e Author: Sven Neumann <s.neumann@raumfeld.com> Date: Thu May 7 17:26:32 2009 +0200 git: ignore the m4 directory commit ea1ee89c7a06605f4c9879040542eb42c3dd582e Author: Sven Neumann <s.neumann@raumfeld.com> Date: Thu May 7 11:34:52 2009 +0200 input: Implement driver_get_axis_info() in the linux-input driver commit c6c28a529def38f174040f00018638cf82d4b8a2 Author: Sven Neumann <s.neumann@raumfeld.com> Date: Fri May 1 09:49:18 2009 +0200 Makefile: include armasm_memcpy files in EXTRA_DIST Include the recently added optimized memcpy implementation for the ARM platform in EXTRA_DIST so that the files end up in the release tarball. commit 338646f31ca2a5786454f02e17dc7b5adce137b9 Author: Ville Syrjala <syrjala@sci.fi> Date: Wed Apr 29 23:04:22 2009 +0300 modules: Don't touch the module entry after dlclose() When a module was unloaded with dlclose() the destructor function (direct_modules_unregister() for the input drivers) was called. The dtor freed the module entry but the code calling dlclose() proceeded to fiddle with the already freed entry afterwards. Reorganize the code slightly to avoid the problem and add a few comments to remind people what may happen when dlclose() is called. The problem sometimes manifested itself as a segfault when loading the modules. Suppressing all but the required input modules was an effective workaround for the problem. commit 41ef7a58e47eaba0d35635a6031f10a31adb97d5 Author: Ville Syrjala <syrjala@sci.fi> Date: Wed Apr 29 03:09:07 2009 +0300 modules: Simplify the path string handling The code does unnecessary NULL checks which would have triggered an assertion or segfault earlier. Also trying to avoid a few extra '/' characters makes the code hard to read. Just make it simple. commit 2c9cca71b759af7e2bd124066b16f900e37dd4d0 Author: Ville Syrjala <syrjala@sci.fi> Date: Fri Nov 28 00:12:06 2008 +0200 modules: Add some error checking and assertions commit 5568eef87d2fdd15d2e331725eabb029671eef62 Author: Ville Syrjala <syrjala@sci.fi> Date: Fri Nov 28 00:11:52 2008 +0200 input: Check allocations commit 0a6ab4e7670baa225fbe89855279be6370ca210c Author: Ville Syrjala <syrjala@sci.fi> Date: Wed Apr 29 03:26:32 2009 +0300 configure: Remove a stray comma in summary output commit 9b69da8350463103a8216f1661c7e9cdea5d9898 Author: Ville Syrjala <syrjala@sci.fi> Date: Wed Apr 29 22:01:43 2009 +0300 gl: Link w/ -Wl,-no-undefined commit b6b6ebd0b805d2453e35e8941d09ab22fb6f8c81 Author: Ville Syrjala <syrjala@sci.fi> Date: Wed Apr 29 03:09:30 2009 +0300 Makefiles: s/-export-dynamic/-module Libtool's -export-dynamic option should be used when symbols from the output file must be used to resolve undefined references. That is not the case with our modules. Instead use the -module option which tells libtool we're building a module that will be dlopened. commit b4df34ce12f0739ac6d9105d808d22d56ee07eeb Author: Ville Syrjala <syrjala@sci.fi> Date: Wed Apr 29 03:06:54 2009 +0300 elo: Silence a compiler warning commit 2803b16d3c853a76e50fc16c15fd195a5a78c620 Author: Ville Syrjala <syrjala@sci.fi> Date: Wed Apr 29 03:03:59 2009 +0300 mutouch/penmount/zytronic/sdl: Make the driver names match the file name It's a lot easier to use disable-module when you can just look at the module file name instead of having to dig through the source code. commit c3dbe3813b84477deef839688bae062877229b45 Author: Niels Roest <niels@directfb.org> Date: Thu Feb 12 19:10:25 2009 +0100 [key handling] Some Key DWKS_LIST implementation + cleanup fix. commit 39bf9a2ec2e20172d63a359ebf17d83e969f30e3 Author: Niels Roest <niels@directfb.org> Date: Mon Apr 27 20:27:59 2009 +0200 [Interface] Big interface clean-up. - interface functions have external types - no need to traverse internal SaWMan or DirectFB structures - not backwards compatible! [key handling] Key routing fixes. - up and down keys are now routed. - Unselected keys are now routed. - double routing (recursion) is fixed: prohibited. (small fix in autogen script) (fix for skirmish assert in swmdump) commit 05f7d9ca0f240ba92a10bd727743e1fb0750bd66 Author: Niels Roest <niels@directfb.org> Date: Thu Apr 9 11:57:42 2009 +0200 [sis315] added support for: XGI Z series chip, STRETCHBLIT, and big endian handling Thanks to Yi-Lin Shieh for the patch commit 58e39b27fc7c7f3bb4aeabff9f2688b7ffdf3d0d Author: Niels Roest <niels@directfb.org> Date: Wed Apr 8 11:14:00 2009 +0200 [sis315] patch when blitting to y < 0 Thanks to Yi-Lin Shieh for the patch commit 282a00d95b03a732c8375f28c2009a4b82c40b48 Merge: 50482eb 5b02825 Author: Niels Roest <niels@directfb.org> Date: Tue Apr 7 19:13:11 2009 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 50482eb3b7f2df314befbfd71e3f242cfb83b14a Author: Niels Roest <niels@directfb.org> Date: Tue Apr 7 19:12:57 2009 +0200 [voodoo] bug in DisableAcceleration causing ASSERT thanks to Costa Michelakis for the fix. commit 5b028250d134dcd69ee192dc91297088eb78baa8 Author: Nikita Egorov <nikego@varma-el.com> Date: Mon Apr 6 12:27:23 2009 +0400 implemented three skipped 16-bit functions when rotation angle is not 0 commit 5e542f3f4b005cab15c4e7fff5c3e40022799720 Author: Niels Roest <niels@directfb.org> Date: Wed Apr 1 12:57:09 2009 +0200 [doc] rephrase commit 9239fd5c147772d2406ecff3d303509bef87e21e Author: Niels Roest <niels@directfb.org> Date: Tue Mar 31 19:40:33 2009 +0200 [release] DirectFB 1.3.1 commit 14f274b390072a7eec6a4fb8608fda901036d108 Author: Niels Roest <niels@directfb.org> Date: Tue Mar 31 11:27:07 2009 +0200 [surface] add Write/Read commit b76a683c6dcc8f9f06e8d179689c8105123ba708 Author: Niels Roest <niels@directfb.org> Date: Tue Mar 31 14:29:42 2009 +0200 [surfaces] local pool clean-up was too greedy; fixed commit dcc121eff4d04ee48b3fb4a5a73e1ac3ae9647b2 Author: Niels Roest <niels@directfb.org> Date: Mon Mar 30 20:22:53 2009 +0200 [fusion] changes for Fusion 0.8.1, forgotten this. commit 2ca169d55aed8a000dc2da574d1ad93e0e6b9984 Author: Niels Roest <niels@directfb.org> Date: Mon Mar 30 20:21:33 2009 +0200 [fbdev] corrected ioctl error handling: now stops on error. commit 6b110a50afe68d1aa21c44ea6e94496f0cb95228 Author: Niels Roest <niels@directfb.org> Date: Mon Mar 30 20:20:22 2009 +0200 [x11] additional logging and error detection, mainly for GLX handling. commit 73f9dec427de71282dccc25fa7760def5f86f3d9 Author: Niels Roest <niels@directfb.org> Date: Mon Mar 30 20:18:48 2009 +0200 [direct] include ARM memcpy routines (big endian only) patch provided by Vince, thanks. commit e3710677b4ee2f3cb7a9d9b9ffc767175c57dfab Author: Niels Roest <niels@directfb.org> Date: Fri Mar 13 16:24:38 2009 +0100 [x11] fix crashes: - glX context destroyed while still being accessed. - avoid double free if XShm is not available: XCreateImage will call free(). - also use "%s" to improve snprintf security. commit 3bd7289c5a136ab3ef420ad8b99fe6744352f24a Author: Niels Roest <niels@directfb.org> Date: Fri Mar 13 14:33:25 2009 +0100 [unichrome] support for accel stretchblit YUV->RGB for CX700/M/2. Thanks to Deng XueFeng for sending in the patch. commit 74c58d4a8ac69f11b09fe7b84d8decf128687746 Author: Niels Roest <niels@directfb.org> Date: Fri Mar 13 14:29:00 2009 +0100 [core] support IDirectFBDisplayLayer::SetSourceRectangle for non-scalable surfaces: change dst size to match source size. documentation: extension and recitifactions. Thanks to Timothy Strelchun for sending in these patches. commit e064e1e3b4bf4cc36e448f850c93a76f008dcbdb Author: Niels Roest <niels@directfb.org> Date: Thu Mar 12 22:07:20 2009 +0100 [conf] added 'include' option, to include config files. This allows grouping configuration and enabling it with one line changed. commit 96bf5bddc2abcaf715476b38a06da6aed2ebfe7b Author: Niels Roest <niels@directfb.org> Date: Thu Mar 12 21:58:42 2009 +0100 [gfx] blending bug fixed in special cases. when using src, and when using and changing dst a third intermediate buffer is needed: unchanged dst. This is now added. Slows down slightly certain non-default use cases due to extra copy: blit blend-one, certain blit source colour keying cases. commit da8ee279cd4852b508a4e0f007f09777fcf47da4 Author: Niels Roest <niels@directfb.org> Date: Thu Mar 12 21:54:31 2009 +0100 [fusion] changes for Fusion 0.8.1 commit 2695ae0d5b7c0adab17dbaaa4eb82c508ae1332e Author: Niels Roest <niels@directfb.org> Date: Tue Jan 20 19:35:10 2009 +0100 [tools] dfbinfo: now shows multiple encoder types correctly commit 5dd30e68aa330bea5598ba2eea0344517ce38c3e Author: Niels Roest <niels@directfb.org> Date: Mon Jan 19 17:42:42 2009 +0100 [zytronic] compiler complaint: changed function order, fix in debug print. commit d9b6eb619fbb490006a9d983cb81c5d0734fd29d Author: Niels Roest <niels@directfb.org> Date: Mon Jan 19 16:14:11 2009 +0100 [surfaces] clean-up local pool on 'leave' and 'destroy' Fixes issue when deallocates are initiated too close to IDirectFB Release. commit b95b785c0162f729893b811519411c80234efcf1 Author: Niels Roest <niels@directfb.org> Date: Mon Jan 12 18:04:31 2009 +0100 [input] correctly read modifiers for load_keymap commit 8f5b61297727e7a9c01e60cc6f2a11ff4f474572 Author: Niels Roest <niels@directfb.org> Date: Fri Jan 9 18:09:56 2009 +0100 [core] typo in debug msg commit d2741208dd0203fe2cc06e7f4cffd13b9f8b2974 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Dec 16 07:53:08 2008 +0100 [v4l] Fixed warning (unused variables). commit 03b93ba6855841b8bc6f038bfa4a6e1ea1e7d4c9 Author: Niels Roest <niels@directfb.org> Date: Wed Nov 26 19:15:22 2008 +0100 [palette] when setting a YUV Palette alpha is not discarded anymore. commit da790bdc9d4a526fc5edefd2f38bd5a35a7d2e88 Author: Niels Roest <niels@directfb.org> Date: Fri Dec 12 11:36:47 2008 +0100 [surface] follow policy changes.. fix forgot DLBM_FRONTONLY handling. commit 3219f75570d4a1b7544a06d02dd143cd4fec4db9 Author: Niels Roest <niels@directfb.org> Date: Fri Dec 12 10:28:09 2008 +0100 [surface] follow policy changes commit f7bf438159e3da4c733d98c1a0e47eee11f50795 Author: Niels Roest <niels@directfb.org> Date: Wed Dec 10 14:12:56 2008 +0100 [keyboard] added setting/loading of keyboard keymaps via IDirectFBInputDevice commit e1fb12da71a5efe61cc9e8055bffa4f673ccd04e Author: Niels Roest <niels@directfb.org> Date: Tue Dec 2 12:25:16 2008 +0100 [layer] rotation: update can be 0, e.g. frontonly-exclusive getsurface. commit f2108ba5c9a0723c4da900002a431f4d74487352 Author: Niels Roest <niels@directfb.org> Date: Mon Dec 1 20:28:27 2008 +0100 [zytronic] added zytronic touch screen driver (input) commit fea6fcf93b52c3a5bc2143577deadc4e469dedb7 Author: Niels Roest <niels@directfb.org> Date: Mon Dec 1 17:33:19 2008 +0100 [sh772x] namespace conformance commit 83f49b880e5d0313ea23bf0fc029cf0752c3160f Author: Niels Roest <niels@directfb.org> Date: Mon Dec 1 16:13:33 2008 +0100 [conf] unused variable commit 6ffed16b3b4820c3c1e069d16a96e1a824dbdfa4 Author: Niels Roest <niels@directfb.org> Date: Mon Dec 1 15:34:21 2008 +0100 [sh772x] changes: - obtain LCD parameters via linux/fbdev - BEU byte swapping removed (not needed with current fbdev/LCDC settings) - JPU temporarily disabled due to conflicts commit 84bceadc7561536e6c81e48d94bc794fceb60fac Merge: 0d5e504 36e96c1 Author: Niels Roest <niels@directfb.org> Date: Mon Dec 1 12:45:58 2008 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 0d5e50498d0aa92c1a208e732dc9b692c15622c4 Author: Niels Roest <niels@directfb.org> Date: Mon Dec 1 12:45:43 2008 +0100 [devmem] fix the displayed-by-dfbdump devmem pool size. The internal size was not broken. commit 36e96c16f3a738fb7bc3c2cd710f455e6cea0e1e Author: Ville Syrjala <syrjala@sci.fi> Date: Mon Dec 1 07:46:22 2008 +0200 surface_pool: Fix debug print commit 2588db1c17a2950fd937ae683fe80bf63006cad5 Author: Ville Syrjala <syrjala@sci.fi> Date: Mon Dec 1 07:33:33 2008 +0200 prealloc_surface_pool: Add CSTF_INTERNAL to types commit 1e4c14889c8d77563dc13f192c8c774bd644f0ff Author: Ville Syrjala <syrjala@sci.fi> Date: Mon Dec 1 07:32:52 2008 +0200 Revert "surface: Clear DSCAPS_SYSTEMONLY for preallocated surfaces" This reverts commit 90cb3c5dd3796a700133216b9ea06509cb8cb8f4. A better fix is to add CSTF_INTERNAL to prealloc_surface_pools's types. commit e2e757030ede203247b4d641002878d353d2eaf6 Author: Ville Syrjala <syrjala@sci.fi> Date: Sat Nov 29 11:11:01 2008 +0200 surface_pool: Show CSTF_PREALLOCATED in the debug output commit 90cb3c5dd3796a700133216b9ea06509cb8cb8f4 Author: Ville Syrjala <syrjala@sci.fi> Date: Thu Nov 27 22:59:07 2008 +0200 surface: Clear DSCAPS_SYSTEMONLY for preallocated surfaces commit 8cd5f5f42306eb86f3ff2dfaa9ab4d9a27648856 Author: Ville Syrjala <syrjala@sci.fi> Date: Tue Nov 18 17:04:56 2008 +0200 directfb.h: Document the blend functions commit 78a3a8262a05b7791999b012fda80bc636eee602 Author: Niels Roest <niels@directfb.org> Date: Thu Nov 27 16:40:48 2008 +0100 [conf] read /proc/self/cmdline if DirectFBInit() does not receive argv/argc. commit a77a88e76123f31b3ee244e006f24d84890bdef5 Author: Niels Roest <niels@directfb.org> Date: Thu Nov 27 11:49:55 2008 +0100 [devmem] fix the displayed-by-dfbdump buffer size for certain formats. The internal size was not broken. commit eb115182c702cee9da8a829bbb376e807f53155a Author: Niels Roest <niels@directfb.org> Date: Tue Nov 25 12:18:28 2008 +0100 [messenger] first do the dependancy counting to avoid "free" when reactions are handled synchronously commit 7920364b887fc7d88aff01acf578ec85064f498e Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sat Nov 15 05:04:28 2008 +0100 [surfaces] Fixed missing initialization of bridge pointer, crashing when no bridge is available. commit e344e3b9199fce5f8301f0c59510f7ebe57ad9fe Author: Niels Roest <niels@directfb.org> Date: Tue Nov 11 19:33:15 2008 +0100 [fusion] skirmish wait argument not taken as msec but usec commit 8594ccf5aa561a0cf1e992c741f942078cdb2101 Author: Ville Syrjala <syrjala@sci.fi> Date: Mon Oct 29 19:51:52 2007 +0200 savage: Make the stream engine code compile Update the stream engine code so it compiles. No idea why it was disabled originally. I still left the layer registration code commented out in case the code is broken. Completely untested due to lack of hardware. commit 17108e4cbb2e57df4bea715d7826961e019326a6 Author: Ville Syrjala <syrjala@sci.fi> Date: Sat Nov 8 21:59:40 2008 +0200 unichrome/cle266: Make the files non-executable commit 29ccb1d4d3fff41f482e8770d5bfc902cab1ca97 Author: Ville Syrjala <syrjala@sci.fi> Date: Sat Nov 8 16:53:32 2008 +0200 unichrome/cle266: Drop useless inline keywords The functions are never inlined since they are defined in another translation unit to the one where they are called. commit b84dad7ba84aec9dd9b68fcbe7e5311a6598d5aa Author: Ville Syrjala <syrjala@sci.fi> Date: Sat Nov 8 16:34:49 2008 +0200 modules: Add some constness commit 370f575d8e95d342a00e65fe03223b30c007de01 Author: Ville Syrjala <syrjala@sci.fi> Date: Sat Nov 8 13:10:27 2008 +0200 Silence compiler warnings commit 93163abf1dc2c29f2735ba38c6ebeb292b5d6ff3 Author: Ville Syrjala <syrjala@sci.fi> Date: Sat Nov 8 14:02:22 2008 +0200 Convert to C99 initializers commit aea3b1e28ea832a1b195a09f101b148dea726da4 Author: Ville Syrjala <syrjala@sci.fi> Date: Sat Nov 8 14:00:50 2008 +0200 core_parts: Fix prototypes and convert to C99 initializers commit d33362717ceef41c79f9013077c27bba76525cfd Author: Ville Syrjala <syrjala@sci.fi> Date: Mon Nov 3 13:52:45 2008 +0200 Check allocation results commit 7306d11c6099e48f6cf54a3123b957cd35359ebd Author: Ville Syrjala <syrjala@sci.fi> Date: Mon Nov 3 00:43:14 2008 +0200 linuxinput: Include linux/input.h before using the defines from it commit e9d481fd6b2dfcc19111cb70c81557791c2ce589 Author: Ville Syrjala <syrjala@sci.fi> Date: Mon Nov 3 01:17:22 2008 +0200 cle266: Linking needs -lm commit 6125bdadb1b6424b86223ccfe3f2d28ca0b7d90f Author: Ville Syrjala <syrjala@sci.fi> Date: Sat Nov 1 19:47:50 2008 +0200 wm/default: Fix DLBM_TILE clipping commit dbf719eeee961bc6924cf170a2c4e119554a19d0 Author: Ville Syrjala <syrjala@sci.fi> Date: Tue Oct 21 16:17:17 2008 +0300 ffmpeg: Follow ffmpeg changes commit e64fd8d193c9bc5f98d61a7d72895c30c0ab1b37 Author: Ville Syrjala <syrjala@sci.fi> Date: Sat Nov 1 17:21:24 2008 +0200 linuxinput: Fix LED handling commit 4656ada2bea19c093114f554c84f212e2ac59ab0 Author: Ville Syrjala <syrjala@sci.fi> Date: Sat Nov 1 17:24:02 2008 +0200 linuxinput: Zero-initialize DFBInputEvents commit 74a10953c8bd35d1c4c84ced0a1a3fc046290a18 Author: Ville Syrjala <syrjala@sci.fi> Date: Sat Nov 1 17:05:56 2008 +0200 vt/keyboard: Move keyboard mode handling to the vt code Move the keyboard XLATE/MEDIUMRAW handling to the vt code. Now there is no need for the linuxinput driver to grab the devices thus allowing other programs to use them concurrently. commit 23f24831132899348d83f5fc7d9ced60685b416d Author: Ville Syrjala <syrjala@sci.fi> Date: Sat Nov 1 15:07:53 2008 +0200 fbdev: Nuke trailing whitespace commit d2cfe5771a35d0448a450e6a3803b48f640828c5 Author: Ville Syrjala <syrjala@sci.fi> Date: Wed Oct 22 01:01:07 2008 +0300 fbdev: Fix pan & zoom functionality commit 23c7e698308036f1bcbaf76aad6405243562b111 Author: Ville Syrjala <syrjala@sci.fi> Date: Wed Oct 22 00:53:24 2008 +0300 fbdev: Cleanups for the panning code commit 866c0ba578aad9340892f2e2780803fdb9db3d10 Author: Ville Syrjala <syrjala@sci.fi> Date: Sat Nov 1 14:49:23 2008 +0200 fbdev_surface_pool: Set the mode when allocating the first buffer The mode change needs to happen when the first buffer is allocated to get the correct pitch from the fb device. After commit 53ad404266ece35e6e6e625ec5d87c6a57c56ee3 the proper buffer index seems to be always 0. commit 60f030e46bdf50bccb6c1c4d132596f94e0fc296 Author: Ville Syrjala <syrjala@sci.fi> Date: Mon Oct 27 16:42:39 2008 +0200 fbdev_surface_pool: Test non-primary layer allocations commit 0c284de9d2507a112e2c5893d4596fd152b498bc Author: Niels Roest <niels@directfb.org> Date: Fri Oct 24 11:21:17 2008 +0200 [modules] fix for static linking (module unload not available then) commit 5a6be0f83ac1f20b635a7c7df23478be1621e367 Merge: 489c4ce 51db5c7 Author: Niels Roest <niels@directfb.org> Date: Wed Oct 22 16:26:31 2008 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB Conflicts: lib/direct/modules.c commit 489c4ce9777b134af8e9fdafcfc1e235ae1e882d Author: Niels Roest <niels@directfb.org> Date: Wed Oct 22 16:03:30 2008 +0200 [modules] add option to specify module dir. You have to specify the base-dir, so the dir that contains the drivers/systems/wm directories commit 51db5c77de51a4ded0f548af1143558f683b74e4 Author: Ville Syrjala <syrjala@sci.fi> Date: Wed Oct 22 00:19:41 2008 +0300 directfbrc.5: Document triple and windows desktop-buffer-mode options. commit 989ce3a6d746c78cee250cc96705564c74e9e7a6 Author: Ville Syrjala <syrjala@sci.fi> Date: Wed Oct 22 00:19:11 2008 +0300 dfbdump: Deal with CSALF_ONEFORALL commit ff6d88ddebbf21e0a295eaecf2d48e77bb0089af Author: Ville Syrjala <syrjala@sci.fi> Date: Wed Oct 22 00:09:11 2008 +0300 v4l: Clean up the oddball coding style in the v4l2 code. commit c9b5bdcdf7ae7646b7aac95fb4fea2aa2b4a138c Author: Ville Syrjala <syrjala@sci.fi> Date: Tue Oct 21 01:13:03 2008 +0300 v4l: Fix v4l2 build. Untested. commit e582ab3c9c004ff73f63deda4bb7f548f069408c Author: Ville Syrjala <syrjala@sci.fi> Date: Tue Oct 21 16:30:51 2008 +0300 matrox: Wrong chroma plane offset was being used with deinterlace blits. commit 66c342071e8d0868961c66f83872c58095ec88a2 Author: Ville Syrjala <syrjala@sci.fi> Date: Tue Oct 21 19:05:28 2008 +0300 Function prototype cleanups. commit e0c3f6926602a840cdfef4078a8c3a2390bd9574 Author: Ville Syrjala <syrjala@sci.fi> Date: Tue Oct 21 19:04:25 2008 +0300 examples: Follow LiTE changes commit e5b7e953853a0eb236e7332d60c7e8a998dcad63 Author: Ville Syrjala <syrjala@sci.fi> Date: Tue Oct 21 16:17:46 2008 +0300 Fix build with LDFLAGS="-Wl,-no-undefined". commit 6eadb8117df4107bc3a083b90fc52d0d66d7bb23 Author: Ville Syrjala <syrjala@sci.fi> Date: Tue Oct 21 04:43:21 2008 +0300 inputdrivers: Fix possible array overruns commit 8777f4a21098e313d4d13128126ff6aeb621a22a Author: Ville Syrjala <syrjala@sci.fi> Date: Tue Oct 21 04:38:25 2008 +0300 linuxinput: Use proper sizes for the bitmaps. commit a07d490cd20e6d596083ef2a1f6e602e65c42c8b Author: Ville Syrjala <syrjala@sci.fi> Date: Tue Oct 21 04:35:53 2008 +0300 linuxinput: Count KEY_M commit f58cf75c5d47294fe8eee2618c5a9bf61080f962 Author: Ville Syrjala <syrjala@sci.fi> Date: Tue Oct 21 04:13:37 2008 +0300 dynapro: Fix warning dynapro.c:124: warning: control reaches end of non-void function commit 3366291eb27389bdf021589e92c9b0c2429ec5f5 Author: Ville Syrjala <syrjala@sci.fi> Date: Tue Oct 21 04:13:05 2008 +0300 omap: Fix warning omap.c:63: warning: no return statement in function returning non-void commit 23c806d2c9e40dd6dc427471468cdc16379acf4b Author: Ville Syrjala <syrjala@sci.fi> Date: Tue Oct 21 04:09:39 2008 +0300 Function prototype cleanups. commit 27159d0ec866412f069844b46cd2830521901a6a Author: Ville Syrjala <syrjala@sci.fi> Date: Tue Oct 21 02:19:28 2008 +0300 Constness cleanups. commit 871226fe1f3e90d63d22fa2f89cd6c4bbc3e8df4 Author: Ville Syrjala <syrjala@sci.fi> Date: Tue Oct 21 01:51:54 2008 +0300 Fix build with LDFLAGS="-Wl,-no-undefined". commit b6a4fa8440d5edbb6db3ecb08d46c2a5e6a20bbf Author: Ville Syrjala <syrjala@sci.fi> Date: Tue Oct 21 01:36:38 2008 +0300 Fix build when srcdir != builddir. commit d60830df6bc8a2116be4bb5fcd7163e0f570f1cb Author: Ville Syrjala <syrjala@sci.fi> Date: Tue Oct 21 01:18:27 2008 +0300 configure: Use -Wno-inline with -fno-inline. commit d0bfced1ef4e48f7b128b3a41e6740aeeb96cc6b Merge: 6db2d85 73aa410 Author: Niels Roest <niels@directfb.org> Date: Tue Oct 21 15:09:23 2008 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 6db2d8546e9df7ba5d2f0667eb3cfb7d68df9874 Author: Niels Roest <niels@directfb.org> Date: Tue Oct 21 15:08:52 2008 +0200 [sh772x] allow revisions of sh7722 and sh7723 to be detected commit e954fecb5ad948d674b5d8d0ca7e543f9e9a9494 Author: Ville Syrjala <syrjala@sci.fi> Date: Tue Oct 21 16:04:00 2008 +0300 configure: Use -Wno-inline with -fno-inline. commit 73aa4100e783ff31ab42b5945af626d2e4abcfba Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sat Oct 18 07:49:40 2008 +0200 [input] In init_devices() use direct_list_foreach_safe() instead of direct_list_foreach(). commit d3a426f0139e0feed50ca854e938e0caaf9acc18 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sat Oct 18 07:48:21 2008 +0200 [input] Use direct_modules_unregister() in destructor of input driver modules. commit 9cc6e2c61e59de7c586255de71a6b2ba4e3d9739 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sat Oct 18 07:47:25 2008 +0200 [direct] Added direct_modules_unregister()...... commit 49175b8aa213e6f980194aecdca99b2a8dc1a590 Merge: 020f6b0 98a7b51 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sat Oct 18 03:37:04 2008 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 020f6b0163e1b0436f4d4e618762b6478471d7a9 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sat Oct 18 03:34:23 2008 +0200 [fusion] Don't return calls with zero serial, avoiding overhead when kernel calls or FCEF_ONEWAY is used. commit 98a7b516d012097951326e01a31ed64404d3240a Merge: 633ac3e 347dda2 Author: Niels Roest <niels@directfb.org> Date: Wed Oct 15 15:47:43 2008 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 633ac3e8a832618d70d993a82931e36350e75529 Author: Niels Roest <niels@directfb.org> Date: Wed Oct 15 15:47:18 2008 +0200 [sh7722] jpegtool.c - fix commit 347dda20f19d56bdda01d3881fa6632142be828a Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Oct 15 11:03:42 2008 +0200 [default wm] Fixed advanced blending with only DSBLIT_BLEND_COLORALPHA being used. commit 3439ef31e02802217e90d38c04a097f7f7c9d9d0 Merge: 14cfb64 487d159 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Oct 15 11:02:09 2008 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 14cfb648fb86c83fb194cf5cd1dfe96b1a5aa57c Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Oct 15 11:01:20 2008 +0200 [default wm] Fixed move_window() for invisible windows which got broke in 1.3.0. commit 487d159f507aa58f0ce6e8b5cf7ff46269340b35 Author: Niels Roest <niels@directfb.org> Date: Tue Oct 14 19:33:28 2008 +0200 [fbdev] use directfbrc for initial screen size, if specified. suggestion and patch by Stefan Lucke. commit 31479007bb3e908b565347727c1b882da115ba95 Author: Niels Roest <niels@directfb.org> Date: Tue Oct 14 18:44:43 2008 +0200 [sh772x] JPEG writeback improvements - correct handling of colour of NV12 and NV16 input in line mode - recorrect not-scaled NV12 and NV16 input (jpeg_writing = 2) - handle odd input sizes - handle error condition, on tmp-storage request failure, properly commit ca876fdf1c93ca003b204cfd723d79cbc1193874 Merge: faaaab8 93351e5 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sat Oct 11 00:42:00 2008 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 93351e5dffa3dfc5d9369b6415e0d0c6e2bcc061 Author: Niels Roest <niels@directfb.org> Date: Fri Oct 10 21:14:51 2008 +0200 [sh772x] jpeg intermediate buffer creation commit cbe8ac53c04c896559bc77f7f0245369f9088dcd Author: Niels Roest <niels@directfb.org> Date: Fri Oct 10 20:49:10 2008 +0200 [gfx] added RGBA4444 support commit af6dbdad1be58e89c0162ed2a8e97f07654ff409 Author: Niels Roest <niels@directfb.org> Date: Thu Oct 9 18:48:21 2008 +0200 [SH772X] adjust makefiles to rename commit 00b952b24fa25cd215747da2603df1fbfd2ae605 Author: Niels Roest <niels@directfb.org> Date: Thu Oct 9 18:42:23 2008 +0200 [SH772X] rename driver commit 290759e3b9f232bda83d569bb819cc5760fdc626 Author: Niels Roest <niels@directfb.org> Date: Thu Oct 9 14:48:00 2008 +0200 [sh772x] added display power on, + other stuff: - include display power-on in sh772x kernel module so we don't need the fb driver from the kernel, current implementation limited to sh7723. - limit pitch alignment to 16 bytes, more currently not needed - extend JPEG encode with tmpphys; will be used to store intermediate between BEU and JPU, to prevent 16-line-chunk-scaling issues. commit cb600d605b500768b89d0a728be37802dcf32cd7 Author: Niels Roest <niels@directfb.org> Date: Wed Oct 8 15:04:09 2008 +0200 [v4l] conform v4l to new surface core architecture commit 5fb69be91e2fbd246cdeaa4f3d4a5ff2a72111ed Author: Niels Roest <niels@directfb.org> Date: Wed Oct 8 12:03:42 2008 +0200 [v4l] v4l sources were not part of distro. fixed. commit 09c24692a7c6e5c72b37b12932d624c6b4916c29 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Oct 2 04:00:19 2008 +0200 [omap] Added omapfb.h to SOURCES. commit faaaab8385e8d164633750a8685ef29667455ff4 Merge: 2454796 009d02a Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Oct 1 02:54:01 2008 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 009d02a3a57af8ebd996bad075dd8458dd88a92d Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Oct 1 02:50:10 2008 +0200 [x11] Remember each GLXContext's drawable and set update flag only if it changed. commit c645f44c97d64e442a49b2b952a0ee9dcfdc8c4b Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Oct 1 01:27:09 2008 +0200 [x11] Manage second GLX context per thread via another surface accessor ID. commit fd133765fc4c3cabe06ef23f7445ce74e1b3d52c Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Oct 1 00:43:55 2008 +0200 [default font] Support premultiplied font formats. commit 9f5d378bbf45c5dcc837b4a25b5abded203ced7e Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Sep 29 18:31:41 2008 +0200 [default wm] Added Meta-R for window rotation. commit 3fc2cda70ab14e3d79891996bac590d905ce1286 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Sep 29 16:37:58 2008 +0200 [sh7722] Fixed wrong number of arguments in JPEG test program. commit 155cd2c8dcee78062d117a1fd3cab88fc50905bd Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Sep 29 15:12:47 2008 +0200 updated again for 1.3.0 commit 375e21f904ae1b17aad9bfeadcd3422b92b19377 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Sep 29 15:11:44 2008 +0200 [options] Set default font format to A8 for new surface hint code to always work. commit 1837deea823d728cab760b3d340470ce2cc592e7 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Sep 29 13:39:45 2008 +0200 updated ChangeLog once more commit e53b0eb0b2906255d95c4b7ac35ac7406311658e Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Sep 29 13:39:12 2008 +0200 [NEWS] Added more news... commit f45abff01200c7dcf090530234f446906909aa12 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Sep 29 13:09:48 2008 +0200 Updated ChangeLog and NEWS for DirectFB 1.3.0! commit 96b8e12ff8436f0bb7d111325085c4377d20ee6e Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Sep 29 11:21:46 2008 +0200 [IDirectFBSurface] Added DFBSurfaceHintFlags for optimized allocation, format selection etc. Added DSDESC_HINTS to DFBSurfaceDescriptionFlags. Added 'hints' to DFBSurfaceDescription. Implemented DSHF_FONT by selecting the configured font format and premultiplication. commit 7296d476f6691dc727782e9ba33fb325f6742ff6 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Sep 29 02:49:25 2008 +0200 [x11] Optimized locking for lock-free case when nothing has changed. commit 4e2d62d344f9e6b7a5fd7686a1cddf25c8e67ebb Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Sep 29 02:26:25 2008 +0200 [x11] Fixed GLX texture corruption by making sure ReleaseTexImageEXT() is called *after* glXMakeContextCurrent() when the pixmap was bound as a texture before, especially from another thread/context. commit 2454796b952bce956351bf5a1d6d289e4509e94a Merge: b530494 ac2a3c2 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Sep 28 23:57:32 2008 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit ac2a3c267652bfaf95867e43ad687c237d06c8be Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Sep 28 23:54:05 2008 +0200 [dispatcher] Use direct_thread_lock()/unlock() in dispatcher and stopping function to fix remaining issues. commit 533e1cb6bfd5974d1f011332eb9926d00031b64b Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Sep 28 23:33:55 2008 +0200 [x11] Use XShmCreatePixmap() and XCopyArea() instead of XShmGet/PutImage() allowing partial transfers in both directions! commit 41d7d3cab148b3e53607597c69dd79bc2125074b Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Sep 28 23:33:19 2008 +0200 [x11] Evil error handling... commit 8eafc86b91340200050bbb0de7c0dabe9c99e269 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Sep 28 23:32:22 2008 +0200 [x11] Fixed remaining crash with expose events that ran into a NULL window. commit 67a367273916fbd4cdba6e46d434e07ee6188346 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Sep 28 23:31:25 2008 +0200 [wm] Lots of useful debug messages. commit 7de055f41796e32dfef59f97f5c4c8b8f7e876e7 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Sep 28 23:30:39 2008 +0200 [core] Call fusion_stop_dispatcher() before destroying pools to fix lots of shutdown issues. commit 744a03d368e5ee3d2b1cf371190a08764c0a29d1 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Sep 28 23:29:45 2008 +0200 [fusion] Added fusion_stop_dispatcher() to be called before destroying pools etc... fixing lots of shutdown issues! commit b530494dd1fcd251e9ad9c114d0bf4f67f28d6a6 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Sep 28 21:26:28 2008 +0200 [util] Added dfb_updates_add_rect(), dfb_updates_deinit() and DFB_UPDATES_ASSERT(). commit 7bcddc09975447dca83e86bbe22d0dcbbd2fb49a Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Sep 28 21:25:38 2008 +0200 [interfaces] Added some debug messages to DirectInterface code. commit e9b0350475504a535f4db6c85a5085403cfaf946 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Sep 28 21:24:47 2008 +0200 [util] Added dfb_updates_get_rectangles() for convenience, doing bounding box trade off etc... commit b9962de77dc15dfe31c4ab51c1ef8b88ea3b6f13 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Sep 28 21:21:41 2008 +0200 [UniQuE] A debug message and a minor safety check. commit 589179f256a2426759b4888b89cb369f7be84a34 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Sep 28 21:20:35 2008 +0200 [UniQuE] Unload foo surface (border tiles) during master shutdown. commit 778d6a7d28e15d25d089a15051dfe1b2e2477270 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Sep 28 21:19:34 2008 +0200 [OpenGL] Don't switch to ARGB fonts if acceleration is disabled. commit f7f22e3df68a0b1e18b5497ed5e233af40c51aae Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Sep 28 14:04:20 2008 +0200 [thread] Added direct_thread_wait() / _notify(), _lock(), _unlock() and _terminate(). commit 82e0198724ff2a4caa301b3cdd89d5bb8760f433 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Sep 28 01:54:36 2008 +0200 [software] Disable MMX functions not supporting rotation (Ostep/Dstep) properly. commit 3e2919e719f3592bd9d2904e1b348c299a5e2168 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Sep 28 01:48:07 2008 +0200 [default wm] Implement stack rotation and window rotation, thanks to Young Hoon for the original patch! commit 8339b0644ac6a2ec1ca31c73a357e048364c4c59 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Sep 28 01:45:38 2008 +0200 [layers] Implement layer rotation using DSCAPS_ROTATED if available, otherwise using rotated window stack. With just a single buffer (frontonly), it always uses rotation of the window stack. Thanks to Young Hoon for the original patch! commit 09bc7acb42ee21eeb053483f99a67f859c668272 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Sep 28 01:44:27 2008 +0200 [dfbdump] Show layer and window rotation. commit b7da6d0e033d85e3ef74e27d15babd73e84db135 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Sep 28 01:43:08 2008 +0200 [IDirectFBWindow] Added SetRotation() for 90, 180 and 270 degree rotation per window. Thanks to Young Hoon for the original patch! commit 6d4e5b8b08c8085215d4b01654641265b0bdeb08 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Sep 28 01:26:36 2008 +0200 [IDirectFBSurface] Added (unimplemented!) DSCAPS_ROTATED to allocate back buffers with width/height swapped. commit 0826c71717a168423395b27405cfa49291f7db75 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Sep 28 01:20:30 2008 +0200 [IDirectFBDisplayLayer] Added GetRotation() to query the layer rotation. commit a42d0243b668376006e673781722bd7f11549857 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Sep 28 01:17:29 2008 +0200 [graphics] Implement proper clipping for rotated blits of 90, 180 or 270 degree. commit b265d72582f5b230bf35676e8c1f83a3f86bd01a Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Sep 28 01:16:08 2008 +0200 [options] Allow '90' and '270' for "layer-rotate" option. commit 8525bb01605913ccefc82963cfd95ee7989f50fa Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Sep 28 01:12:16 2008 +0200 [util] Replaced dfb_back_to_front_copy_180() by dfb_back_to_front_copy_rotation() with extra argument. Thanks to Young Hoon for the original patch! commit 96842fc12394e4a89a66a05f5cf083a5d3441595 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Sep 28 01:05:30 2008 +0200 [IDirectFBSurface] Added DSBLIT_ROTATE90 and DSBLIT_ROTATE270. Thanks to Young Hoon for original patch! commit 44c300ddb9d5d8e003c06eb8d5e49572f40e3df7 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Sep 28 00:59:22 2008 +0200 [util] Added dfb_region_from_rotated(), dfb_rectangle_from_rotated() and dfb_point_from_rotated_region(). commit 55b46effe7f19ef554ba09517e556105fd21ed74 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Sep 28 00:55:07 2008 +0200 [util] Added D_UTIL_SWAP(a,b) to exchange values. commit e1c2174e4aa0519bc8463df2c0d3981096aefc1e Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Sep 26 22:12:20 2008 +0200 [layers] Fixed missing lock on surface structure around dfb_surface_allocation_update() call. commit 66387ba7565804a12be2b102a392f78cb56f38cf Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Sep 26 22:07:21 2008 +0200 [surfaces] Fixed wrong allocations being used for locks due to a copy'n'paste error during last cleanup. commit 0e8877d5706e824b5a2d48b1cdf5e48b24462851 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Sep 26 21:50:21 2008 +0200 ignore commit 2a91a14e8171c374ff712b1605a26a69c108e86e Author: Niels Roest <niels@directfb.org> Date: Thu Sep 25 19:34:40 2008 +0200 [sh772x] for JPEG encoding: horz/vert up/downscaling + offset scaling is without n-line mode, so there are artefacts visible vertically (since there operation is handled in 16-pixel steps) todo: if enough memory is available, perform full-picture malloc and scale in 1 step commit c1e82561ca9ca338fcaf4964d9e6ea54dde0536a Author: Niels Roest <niels@directfb.org> Date: Mon Sep 22 20:06:12 2008 +0200 [sh772x] fix JPEG encoding. n-line mode impossible because destination addresses of VEU cannot be updated intermediately. current implementation generates ints every 16 lines to reprogram VEU. Disadvantage: phase is lost when scaling. (scaling not tested yet) commit 6c32f67dc024d80dd72fe32c9922a21a82248dc2 Author: Nikita Egorov <nikego@geos.varma-el.com> Date: Thu Sep 25 13:52:52 2008 +0400 Set glyph alignment of 8 bytes for all font formats commit 53f333bd8c44a2aabe1062dda6792df288ce3b35 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Sep 25 01:10:20 2008 +0200 [fonts] Fixed alignment on eight byte boundary, thanks to Nikita Egorov for spotting! commit 5fcc55be33005938b2b8c891542ab542bdfbfd56 Author: Niels Roest <niels@directfb.org> Date: Tue Sep 23 12:42:48 2008 +0200 [x11] build fixes for people without GLX commit 11f7f8d45a3b09fb1eb58c57db3dc58066172e65 Author: Nikita Egorov <nikego@geos.varma-el.com> Date: Mon Sep 22 15:41:00 2008 +0400 Don't switch to fill rectangle in DrawLine() if matrix is used. commit cce58cd1c1cce5d0708db3cfd0c8ca1fcb8d43c5 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Sep 22 12:39:18 2008 +0200 [sh772x] Build fix for 1.3.x. commit 255907bd76c9e8af7390944bb87715a2d12bedf1 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sat Sep 20 10:03:59 2008 +0200 [default wm] In window_at_pointer() use dfb_surface_read_buffer() with 1x1 rectangle instead of lock/unlock. commit f13337b3bb9ea83881ebccbd98e2ab2a6912d15f Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sat Sep 20 10:00:30 2008 +0200 [x11] Use new dfb_surface_buffer_lock_deinit() rather than clearing the magic. commit 539cec381cf29413df91e3ec72d88bb2134af81c Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sat Sep 20 09:57:08 2008 +0200 [surfaces] Implemented dfb_surface_buffer_read(), added dfb_surface_buffer_lock_deinit(), moved out format conversion. Added dfb_convert_to_rgb24() and dfb_convert_to_a8(), used for surface dumps to .ppm files. commit d9aaad3f6a8e8ed3cb19ef0afebb8d531057e261 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sat Sep 20 09:41:41 2008 +0200 [UniQuE] Added experimental border event handling in test_foo program to move/raise any window :) Try running: ./test_foo & and gtk-demo Note: Raising windows confuses GDK-DirectFB and moving a window over another has grabbing issues, but this was just a quick test and the solution to these issues is clear ;) commit 05ac679d7d23d59cc20dbea93211c1f43bfbdddd Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sat Sep 20 09:40:07 2008 +0200 [UniQuE] Use dfb_surface_write_buffer() instead of lock/memcpy/unlock for border images (foo). commit 3f2dadcee38044fe6c40d194551db004c093076f Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Sep 19 04:04:48 2008 +0200 [x11] Fixed missing x11types.h in SOURCES definition. commit 6952526a54a4adf7c2e0f43d3a2f47d4a4cfbc5d Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Sep 19 04:03:06 2008 +0200 [sh7722] Fixed EXTRA_DIST. commit 3cdc9e4f2adae5075ab10e8992bb12bdb7b64d1a Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Sep 18 23:41:46 2008 +0200 [testman] Fixed locking. commit 6b258d60b619c26f5483234894513e4272608402 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Sep 18 22:11:55 2008 +0200 [x11] In glxDeallocateBuffer() don't use GetLocalPixmap(), but only direct_hash_lookup(). This avoids creating the pixmap if it did not exist, yet, e.g. no Lock() happened. commit 6e34c52a52e0b0136a50fad63f719c59ee614c84 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Sep 18 21:27:18 2008 +0200 [x11] When update goes directly from XShmImage without copy/convert (single buffer layer), do an XSync()! commit 8cc7a4021cf98db2730b3bf0de4effd1cb98c984 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Sep 18 21:26:50 2008 +0200 [x11] Hotfix missing update queue... commit 2df15476a32f2a795446a4b51e090114b972e4f8 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Sep 18 21:01:02 2008 +0200 [x11] Lookup visual in master where XShmCreateImage is actually called. commit 53ad404266ece35e6e6e625ec5d87c6a57c56ee3 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Sep 18 19:43:30 2008 +0200 [windowstack] Set background mode of new contexts to DLBM_DONTCARE. commit 286730ed5ed1358aae77946ff7c827b94be9b727 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Sep 18 19:10:57 2008 +0200 [thread] Fixed missing magic value in thread structure created for non-direct threads. commit 8e34df9400f6161c1885de710e5df5d64dcd6c98 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Sep 18 19:02:27 2008 +0200 [layers] Fixed unlocking of destroyed skirmish in context destructor. [merged from release_1_2_x] commit cdc9cae71ce7ac43f73ed919d853ff0f471289be Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Sep 18 17:28:44 2008 +0200 [x11] Implemented Surface Pool Bridge for fast transfer between XShmImage and GLX pool. Using XShmPutImage/XShmGetImage instead of using XPutImage/XGetImage speeds up df_andi by more than 100% in my tests. commit 9a65e7235b619396096bc01fcb02b3dffc51ef27 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Sep 18 17:23:56 2008 +0200 [surfaces] Added Surface Pool Bridge[tm] technology to speed up transfer between pools. New API can be implemented to do optimized transfer from one surface pool to another. CheckTransfer() is called to probe each registered CoreSurfacePoolBridge. CoreSurfacePoolTransfer is allocated with one or more rectangles to be transfered. StartTransfer() and FinishTransfer() are used to actually execute the transfer which could be queued, but is synchronous at the moment (Start+Finish). commit b0c0ba9446ca0fe67ab940433b149fc7a1d4fb85 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Sep 18 00:04:38 2008 +0200 [IDirectFBImageProvider_PNG] Use dfb_surface_write_buffer() if possible. commit b737a1bc975555ad1b897975803808f0cfce3dd6 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Sep 18 00:00:29 2008 +0200 [surfaces] Implemented dfb_surface_buffer_write() using Write() on allocation. New algorithm for finding the allocation which to Write() to, using last read allocation or other up to date allocation. Remember last read allocation for better negotiation in case of multiple up to date allocations. commit 0c5e8ec043a25184bd2d501417985fa122ec9596 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Sep 17 23:55:27 2008 +0200 [dfbtest_blit] Added option "-R" to rerender image to surface before every blit (benchmark). commit 73e61e0fd4fb4b0ac69882b6a9c94e1ee061be7b Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Sep 17 21:00:47 2008 +0200 [x11] Move definition of USE_GLX to configure. commit 89b08b7254cd4d56b20b8205a1770aec2b687c49 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Sep 17 20:56:50 2008 +0200 [x11] Fixed another 'missing separator' error in Makefile. commit fde10fcaad76bfd25081936a082eef5223e580af Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Sep 17 20:55:39 2008 +0200 [x11] Fixed 'missing separator' error in Makefile. commit 3a60e628798ca0df33779c4b68c631a50007c060 Merge: dec7005 ab2b4d7 Author: Niels Roest <niels@directfb.org> Date: Wed Sep 17 20:39:26 2008 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit dec70057d72dcf7f0f5a1b62d8fc848ab1ddace8 Author: Niels Roest <niels@directfb.org> Date: Wed Sep 17 20:39:15 2008 +0200 [x11] x11 should not rely on gl.h header file presence. commit ab2b4d7568053c963d15083f798cded3448d1d4a Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Sep 17 20:16:36 2008 +0200 [davinci] Update driver for 1.3.0 changes in surface pools. commit ad2f11641d2a23c00a0917c4060858edc1c73413 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Sep 17 16:11:12 2008 +0200 [davinci] Workaround broken DSP cache invalidation function. commit 8403a7fd6d6d79885aa5e62a38929185b589cf4a Merge: d1b2807 5c71f6f Author: Niels Roest <niels@directfb.org> Date: Wed Sep 17 19:09:06 2008 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit d1b2807efab53fcd30b0cd3c0d5e0a099555b5b0 Author: Niels Roest <niels@directfb.org> Date: Wed Sep 17 19:08:48 2008 +0200 [core] check and handle return value of get_layer_dimension(). Can go wrong with davinci driver without GET_TIMING patches. commit 6d1f4e5ea2166f68270230f779b07203aba581db Author: Niels Roest <niels@directfb.org> Date: Wed Sep 17 19:06:07 2008 +0200 [davinci] param missing in debug print commit 9c2808bf55f36d96326f170057a3c4225c9a50bf Author: Niels Roest <niels@directfb.org> Date: Wed Sep 17 19:05:19 2008 +0200 [x11 input] possible lock at shutdown due to thread trying to kill itself commit 5c71f6f7fb98166c0224e5141e7df6f88fb34aa6 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Sep 17 18:32:50 2008 +0200 [x11] Added missing header from last major cleanup. commit e08c004f94228c022cc78e91b12d9df3f5aa3641 Merge: b67d7df 69ecb59 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Sep 17 18:27:56 2008 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit b67d7df1780848705949b7a8819534079ea4be68 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Sep 17 18:26:03 2008 +0200 [OpenGL] Restructured surface pool and graphics driver, leaving GLX in the system module... Also tried to make multi application working, but it seems that for an X11 Pixmap there can only be one process doing a glXCreatePixmap() which also does not allow the GLXPixmap to be shared :( commit 2b63196cd9e93f492cc1c9058c92cfe8d691a9b8 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Sep 17 18:25:06 2008 +0200 [surfaces] Assert that pitch is != 0 only if virtual or physical address is present. commit 69ecb59725ec375da89ee57218afccf56d8bfdc4 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Sep 17 12:16:49 2008 +0200 [davinci] Raise OSD surface pool priority to allocate in frame buffer rather than /dev/mem. commit e10cb3822ac5d0842a0e489fb30ffdcac0532700 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Sep 17 12:05:43 2008 +0200 [trace] Fixed static build. commit ddae89777f9350ce5a5ff754f5909cc950bd08c5 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Sep 14 16:33:59 2008 +0200 [x11] MAJOR cleanup of system module code. Every slave connects to the server now as well! Separated shared and local parts in the setup to avoid code duplication. It looks like all processes can have their own DirectFB windows and render to them via OpenGL, but putting them on the screen (X window) fails. It seems binding another process' GLXPixmap is not allowed. Hopefully I can just create each process own GLXPixmap wrapper around the real XPixmap... commit ca33e763a6881d36902bf04da0b7b5a376992250 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Sep 14 11:37:44 2008 +0200 [OpenGL] GLX to be precise... full featured GL based acceleration on top of X11 system module! Some changes have been necessary to make this happen... a few at least :) $ df_dok --dfb:mode=800x600 --dump --accelonly ~~~~~~~~~~~~~~~~~~~~~~~~~~| DirectFB 1.3.0 |~~~~~~~~~~~~~~~~~~~~~~~~~~ (c) 2001-2008 The world wide DirectFB Open Source Community (c) 2000-2004 Convergence (integrated media) GmbH ---------------------------------------------------------------- (*) DirectFB/Core: Single Application Core. (2008-09-14 09:06) (*) Direct/Memcpy: Using libc memcpy() (*) GLX/Surfaces: Using visual 0x2e (24bit) and 0x64 (32bit) (*) Direct/Thread: Started 'X11 Input' (29248) [INPUT OTHER/OTHER 0/0] <8388608>... (*) DirectFB/Input: X11 Input 0.1 (directfb.org) (*) DirectFB/Genefx: MMX detected and enabled (*) DirectFB/Graphics: OpenGL Acceleration - GeForce 8800 GTX/PCI/SSE2 0.5 (Denis Oliver Kropp) (*) DirectFB/Core/WM: Default 0.3 (directfb.org) (*) X11/Window: Creating 800x 600 RGB32 window... (*) X11/Display: Using XShm. (*) Direct/Interface: Loaded 'PNG' implementation of 'IDirectFBImageProvider'. (*) Direct/Interface: Loaded 'FT2' implementation of 'IDirectFBFont'. (*) Direct/Interface: Using 'GIF' implementation of 'IDirectFBImageProvider'. Benchmarking 256x256 on 800x580 RGB32 (32bit)... Anti-aliased Text 3.000 secs (*4736.400 KChars/sec) [ 99.6%] Anti-aliased Text (blend) 3.000 secs (*4724.400 KChars/sec) [ 99.3%] Fill Rectangle 4.288 secs (*13269.205 MPixel/sec) [100.0%] Fill Rectangle (blend) 5.495 secs (*6860.110 MPixel/sec) [100.0%] Fill Rectangles [10] 4.614 secs (*13280.485 MPixel/sec) [100.0%] Fill Rectangles [10] (blend) 6.125 secs (*6858.543 MPixel/sec) [100.0%] Fill Triangles 4.841 secs (*13359.001 MPixel/sec) [100.0%] Fill Triangles (blend) 6.565 secs (*6908.482 MPixel/sec) [ 99.8%] Draw Rectangle 3.000 secs (*1206.566 KRects/sec) [ 99.3%] Draw Rectangle (blend) 3.000 secs (*1205.933 KRects/sec) [ 99.3%] Draw Lines [10] 3.000 secs (*4576.000 KLines/sec) [ 99.6%] Draw Lines [10] (blend) 3.000 secs (*4582.333 KLines/sec) [ 99.6%] Fill Spans 3.002 secs (*2021.530 MPixel/sec) [ 99.6%] Fill Spans (blend) 3.001 secs (*2026.571 MPixel/sec) [ 99.3%] Blit 4.867 secs (*9148.378 MPixel/sec) [ 99.5%] Blit 180 4.867 secs (*9167.230 MPixel/sec) [100.0%] Blit with colorizing 4.872 secs (*9133.609 MPixel/sec) [ 99.7%] Blit from 32bit (blend) 5.906 secs (*5886.699 MPixel/sec) [100.0%] Blit from 32bit (blend) with colorizing 5.917 secs (*5869.110 MPixel/sec) [ 99.8%] Stretch Blit 4.677 secs (*11836.563 MPixel/sec) [ 99.7%] http://www.directfb.org/tests/benchmarks/DirectFB_OpenGL_GeForce_8800_GTX/ commit 806763a3e190ec55357175197fb01597bf79c874 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Sep 14 05:35:40 2008 +0200 [call] Added debug messages. commit 29b4f65de808fe56d0315a518a251342157849df Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sat Sep 13 20:53:37 2008 +0200 [options] Fixed pixel format parsing code, first check for exact, then for partial matches. commit 7872de5113e4ca56c281d585d5b164215c276b56 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sat Sep 13 20:49:22 2008 +0200 [graphics] Only have DSRO_MATRIX be mandatory for now. Other flags no longer prohibit acceleration. Worst case was when DSRO_SMOOTH_UP/DOWNSCALE was turned on globally via "smooth-upscale" or "smooth-downscale" runtime option which caused all operations to use software fallbacks, not only StretchBlit()! commit aeb008fe40f57fbad4572c077c0ee529e5890538 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Sep 11 02:41:22 2008 +0200 [generic] Added optimized Bop_argb_blend_alphachannel_one_invsrc_Aop_argb() -> 6x speed commit 7683d221c355d432c62456e40af85dadd5274840 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Sep 10 22:11:03 2008 +0200 [SH7722] Follow device name change in JPEG code, too. commit 0a47e5fecb45cf9cb30ee5bcc897d7a4de369b06 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Sep 10 21:38:14 2008 +0200 ignore commit 898e42cc05c2b306de1f11658a884b5bf79573af Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Sep 10 21:33:30 2008 +0200 [SH7723] Added support for SH7723 to SH7722 driver and kernel module. (*) DirectFB/Graphics: Renesas SH7723 0.9 (Denis & Janine Kropp) (*) DirectFB/Core/WM: SaWMan 0.2 (directfb.org) (*) SaWMan/Config: Parsing config file '/etc/sawmanrc'. (*) SaWMan: Initializing stack 0x432078 for tier 0x431a48, 0x0, layer 0, context 0x431e78 [1]... (*) SaWMan/Init: Layer 0: 800x480, RGB16, options: 1 (*) SaWMan/Init: Border 0: 800x480, RGB16, options: 8 (*) Direct/Interface: Using 'PNG' implementation of 'IDirectFBImageProvider'. (*) Direct/Interface: Using 'FT2' implementation of 'IDirectFBFont'. (*) Direct/Interface: Using 'GIF' implementation of 'IDirectFBImageProvider'. Benchmarking 256x256 on 800x464 RGB16 (16bit)... Fill Rectangle 5.350 secs (* 200.895 MPixel/sec) [ 3.9%] Fill Rectangle (blend) 8.590 secs (* 78.582 MPixel/sec) [ 1.7%] Fill Rectangles [10] 5.226 secs (* 200.646 MPixel/sec) [ 1.1%] Fill Rectangles [10] (blend) 11.699 secs (* 78.425 MPixel/sec) [ 0.3%] Fill Triangles 14.254 secs (* 26.436 MPixel/sec) [ 1.1%] Fill Triangles (blend) 26.657 secs (* 8.727 MPixel/sec) [ 0.4%] Draw Rectangle 3.127 secs (* 30.444 KRects/sec) [ 44.8%] Draw Lines [10] 3.062 secs (* 122.468 KLines/sec) [ 35.9%] Fill Spans 3.013 secs (* 147.907 MPixel/sec) [ 73.4%] Fill Spans (blend) 3.037 secs (* 73.369 MPixel/sec) [ 27.0%] Blit 11.698 secs (* 56.023 MPixel/sec) [ 1.4%] Blit colorkeyed 8.376 secs (* 59.464 MPixel/sec) [ 1.6%] TODO: more acceleration work... commit 19629048a342561cbaa3052eece6d2e75fbc3db2 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Sep 10 13:39:32 2008 +0200 [SH7722] Fixed missing update of rendering destination buffer. commit b9080ea41cc5b711fa91269a0839d9fe5e0f4b35 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Sep 10 13:39:02 2008 +0200 [windows] Set magic value in CoreWindow before calling WM functions. commit 7a005609bc7d15564dd11fe75476e71ba8659d74 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Sep 10 11:07:57 2008 +0200 [SH7722] Fixed software fallback for JPEG decoding to unsupported formats. commit 09affae4b0301cca29b96305b473995d652e427f Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Sep 10 10:38:48 2008 +0200 [trace] Added missing dummies of new lookup functions for non-trace builds. commit 230ff7fdd3a660a19f1b06f664e7ac3f33630524 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Sep 10 10:24:22 2008 +0200 [util] Added exported dfb_pixelformat_names[] and replaced relevant code. commit 6c311c746f706373dd19d043e6c4065c739c864d Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Sep 10 10:22:42 2008 +0200 [mknames] Generate separate declaration of value/name pair structures. commit 3869d4e007c82cfe58d094072dcbb81179e53410 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Sep 10 09:30:32 2008 +0200 [generic] Get rid of YUV tables saving 5k binary size! commit 67a89c7383af3c49d7de0ea78904a82e693b4bf6 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Sep 10 09:05:37 2008 +0200 [header] tab->space commit 1179e5c81de1312064d0c9475389e6c7b9e39e13 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Sep 10 09:04:21 2008 +0200 [SDL] Replaced code in commented section by using dfb_convert_to_rgb16(). commit 392b6dfbd6ff69e54e6f31e81422e2da2e863e20 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Sep 10 09:03:07 2008 +0200 [formats] Fixed many NV12, NV16 and NV21 code areas, mostly for big endian. commit edb133bd9b26baa21c641acaa0e05f2724260109 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Sep 10 08:59:59 2008 +0200 [JPEG] Fix direct decoding to NV16 (no to+from RGB) for little endian. commit feb307b7c28a52ba38353e96a5816cd374909705 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Sep 10 08:59:18 2008 +0200 [formats] Clarify definition of NV12, NV16 and NV21. commit c723856a84d1892eca64c5b7c3227e665a288c4b Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Sep 10 06:46:45 2008 +0200 [dfbtest_blit] Added test program for (Stretch)Blit with an image from file. Options: -h, --help Show this help message -v, --version Print version information -s, --source <pixelformat> Source pixel format -d, --dest <pixelformat> Destination pixel format -r, --resize Set destination from source size -b, --benchmark Enable benchmarking mode commit 391cf2c4c33738c114a40c0ba0edfffcdac24233 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Sep 10 06:45:03 2008 +0200 [generic] Rewrote Dacc_RGB_to_YCbCr_C and Dacc_YCbCr_to_RGB_C using Duff's device with macros. Conversion also supports 4:4:4 by this change, not optimizing for 4:2:x cases. commit 687dd974b9531e71115dbf833ac7ec0c6e3b9bc3 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Sep 10 06:42:51 2008 +0200 [convert] Fix missing parentheses around macro parameters in YCBCR_TO_RGB(). commit ce7dc5e548faef36201be5beb51d1311ef41c78a Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Sep 10 06:35:15 2008 +0200 [convert] Rewrote YCbCr<->RGB conversion routines without lookups which are much more expensive on embedded devices. commit 13425aeb1e3f28e7d595f578047f4dc3f069a5b4 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Sep 10 03:26:18 2008 +0200 [options] New option "[no-]software-trace" to show every stage of the software rendering pipeline. commit 01ab1f314edb281b30913d9295a8571f450eca80 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Sep 10 03:24:30 2008 +0200 [direct] Added file and symbol lookup functions to trace code for external usage. New functions are direct_trace_lookup_file(), direct_trace_lookup_symbol() and a convenience function combining the above called direct_trace_lookup_symbol_at(). commit 59bbf8d99d59a9e6cf706bf4c4ad3f312905e019 Author: Denis Oliver Kropp <dok@debian.(none)> Date: Thu Sep 4 01:02:36 2008 +0900 [README] Added some packages for autofoo... commit a37835f7cddd8920086d0f7aff812937f9c79368 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Aug 24 21:24:06 2008 +0200 [default wm] Fixed crash with DWCAPS_NOFOCUS implementation. commit 47b59c53b7ca42c63b82710fd872081f8e82ed93 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Aug 24 17:10:45 2008 +0200 [default wm] Implemented DWCAPS_NOFOCUS. commit 7ca1f65b1b5b9648c136ad60530199a63ac51648 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Aug 24 17:10:19 2008 +0200 [IDirectFBWindow] Added DWCAPS_NOFOCUS: window will never get focus or receive key events, unless it grabs them. commit df96caeb46881c266cbd871d0ff8ef182e1eb2ff Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sat Aug 23 13:58:10 2008 +0200 [configure] Switch to pkg-config for SDL and FreeType2, thanks to Keith Mok! commit a812539bf6af796fb236762e75982b5d45b87eff Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Aug 22 20:32:30 2008 +0200 [input] Fixed boundary check for axis info array access. commit 09327db9673b220ddcd19aae0681bf9c514b9529 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Aug 22 20:31:31 2008 +0200 [driver] Set max_axis to DIAI_LAST. commit 967af1280ad5d103c086e8cdfa0200e31bf00892 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Aug 22 20:01:45 2008 +0200 [sh7722] Build only for SH4. commit 2b7886ff4e966a3a9a8df499991092058019fc7d Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Aug 22 19:46:45 2008 +0200 [default wm] Use min/max values from absolute axis motion events if present. commit a7b2e45fa92d1914277bd25e44f2ea9a8703dad5 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Aug 22 19:46:05 2008 +0200 [input] Query axis information from driver and put it into events. commit 615d54cfea5becdefd4bd388b7f61b7a9b3dcd3f Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Aug 22 19:41:40 2008 +0200 [IDirectFBInputDevice] Added DIEF_MIN/MAX and min/max to DFBInputEvent, e.g. for axis boundaries. commit 698d68a5c0afbf3e4e5f477c4da8e705d78adae8 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Aug 22 16:44:26 2008 +0200 [input] Added GetAxisInfo() to InputDriverFuncs to query information about one axis. Make use of it in input_driver.h only if driver has defined DFB_INPUTDRIVER_HAS_AXIS_INFO to avoid having to change all input drivers. commit 043cf5674b99087df7ceebe3749edf7f2268b68d Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Aug 22 16:44:10 2008 +0200 [IDirectFBInputDevice] Added DFBInputDeviceAxisInfo(Flags) with DIAIF_ABS_MIN/MAX flags and abs_min/max fields. commit 34b69888474ec5e56b68b32645270b239eca5ca8 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Aug 22 16:45:49 2008 +0200 Define DFB_INPUTDRIVER_HAS_AXIS_INFO and add driver_get_axis_info() returning a virtual min/max of 0 and 65535 for any axis. commit b12044ecd6f738bfa28052fcc8b36c520dffe578 Merge: 6832da9 8d5f445 Author: Niels Roest <niels@directfb.org> Date: Thu Aug 21 17:29:30 2008 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 6832da9ae538d5d062e820782e96114757ed8c3b Author: Niels Roest <niels@directfb.org> Date: Thu Aug 21 17:27:34 2008 +0200 [davinci] In ARGB OSD dithering use task buffer and add missing locks. commit 8d5f44551430c5e4005fd9b60edd27e9f383d00b Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Aug 21 11:34:08 2008 +0200 [sh7722] Fixes for JPEG encoding with conversion, cleanups... commit a29676ac604b3e3f9fa00543330464f77442c9a5 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Aug 21 08:21:34 2008 +0200 [interfaces] Important fix for having multiple interface implementations in one module. commit 1fd35772d8424b4af2861397268b64369d8375ca Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Aug 19 11:22:26 2008 +0200 [subwindows] Implemented sub window focus handling. - subwindows can have focus within toplevel windows (by app) - focus on subwindows restored when toplevel gets focus commit 5b80d5d1bdec3e3334b4f9119d92f1cb3fcbcea1 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Aug 19 11:21:52 2008 +0200 [windows] Added magic value to CoreWindow. commit f59ca1b22920eb491a250d90f90cd89077e906be Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sat Aug 16 02:11:22 2008 +0200 [subwindows] Prevent window association if top level windows differ. commit c401dfb31d6d1e9bfd06d9620170bddc3dc9b026 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sat Aug 16 02:10:11 2008 +0200 [windows] Implemented new option DWOP_FOLLOW_BOUNDS (window association). commit 294a40d71c8173ba2e539721d8988e58ff5c9436 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sat Aug 16 02:08:45 2008 +0200 [IDirectFBWindow] Added DWOP_FOLLOW_BOUNDS to make bounds follow the parent window. commit ca9c9600e0f1a8f1cb243eb7ecf22115c98669ec Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sat Aug 16 01:57:03 2008 +0200 [x11] Fixed new bug with reopening X11 window when layer resizes. commit 567a1f27b7cb7ac85b35d5d4343eb8f022adf170 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sat Aug 16 00:37:42 2008 +0200 [subwindows] Further restacking fixes for enforcement of rules... commit b2611d5352b1548900202cc9418e6e83b4b81ca8 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sat Aug 16 00:36:31 2008 +0200 [dfbtest_window] Implemented selection of individual tests for top/sub window and added option to wait at the end. commit d96570bcdd3d7bd77b232942de39a1aa3c7360bc Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Aug 15 23:02:36 2008 +0200 [subwindows] Implementation and fixes for window association with DWOP_KEEP_ABOVE or DWOP_KEEP_UNDER. commit 0867ccf74888487fdb42ccf05176bb7da9830c83 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Aug 15 23:00:52 2008 +0200 [cleanup] Removed obsolete member in SaWMan struct. commit e0a02568469a1325de9a5c4a3e9447571f390a1b Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Aug 15 22:59:18 2008 +0200 [dfbtest_window] Added options for setting window options and for window association. commit 63c4da3b3a720fd41a59e07c1344614f3956c9eb Merge: 779b31c 0148ec4 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Aug 15 21:00:33 2008 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 779b31c4fbddfc8890d4fb57bbf9ef93ebde62cc Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Aug 15 21:00:04 2008 +0200 [strings] Generate name/value pairs for DFBWindowOptions. commit 0148ec4dacbe599d9b10e0075237e87a8f064578 Author: Niels Roest <niels@directfb.org> Date: Fri Aug 15 20:09:50 2008 +0200 [x11] improve shutdown behaviour of X11 module. Certain race conditions at shutdown prevented, leading to lock or crash. x11input and x11 modules combined into 1. commit 0b090e40b85160ce947d7b931f9a6ece54862d29 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Aug 15 18:54:59 2008 +0200 [interfaces] Fix previous commit for unregistering interfaces, removing the proto type which had the old name. commit af62273b41eab8d66d6ff1cafe1941ef6f7f836d Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Aug 15 18:31:34 2008 +0200 [interfaces] Added DirectUnregisterInterface() and destructor to call it. Added magic value to interface implementation structure and use D_CALLOC/D_FREE. commit 62be82cf860e572f1d244d34ea58569c7dbbb081 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Aug 15 17:52:35 2008 +0200 [debug] Moved debug message before assertions in update_region(). commit 47ec69f0cb945a74269859a91c2b359deb6d0660 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Aug 15 16:40:50 2008 +0200 [dfbtest_window] Added advanced window geometry tests. commit 6f5b6b1eadea8b091822e0714c26a4ebaf581192 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Aug 14 21:31:37 2008 +0200 [subwindow] Conceptual corrections regarding scaling and clipping based on top level. commit a50b8d85755dd39a73610f62fa59d90e48d57a28 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Aug 13 19:17:47 2008 +0200 [swmdump] Print sub window information and indices of all top- and sub windows within global (flat) layout. commit b06e15a6436547a21614a8ed80e3c1c7a46e0f2b Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Aug 13 19:13:56 2008 +0200 [subwindows] Implementation and fixes for sub window stacking. Sub windows stay on top of top level as a consistent group. Restacking among sub windows is fully working via public API. commit f6b440a1b7beb0ccb6984930422c2ae65accb7e3 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Aug 13 19:12:04 2008 +0200 [dfbtest_window] Enhanced testing and logging code. Run most tests on sub window, too. commit 4124b63f7f897408c9c5ef7b62fed029dd62a64e Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Aug 13 19:08:55 2008 +0200 [dfbmaster] Added very simple dedicated master for safety, stability or enhanced testing pleasure. commit 4a3d91bc149d25a6dfaf77b58418d86295033ae1 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Aug 13 06:14:49 2008 +0200 [default wm] Build fix for previous commit that reduces recursion. commit 305e546d90e74cf0c707da1568a703453ff0da0e Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Aug 13 06:07:59 2008 +0200 [inputonly] Different fixes and optimizations for input only windows. Improved single window detection to allow input only windows which are being ignored as long as they don't have a window border enabled. Removed bad assertion about window->surface in resize_window() and set_window_bounds(). commit 4596df5e093d5b054f38780577a5fb02252792e5 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Aug 13 06:05:55 2008 +0200 [default wm] Make sure window has a surface before restoring its size when disabling scaling. commit efb4e64a74157b65458ed4c4e297ab3a2b307fca Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Aug 13 06:05:02 2008 +0200 [strings] Generate name/value pairs for DFBWindowCapabilities. commit e27b49141e988748b059f1672a6d98a3baf02389 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Aug 13 06:04:07 2008 +0200 [dfbtest_window] New option to pass window caps for top or sub window. Fixes for input only windows, e.g. don't try to grab surface :) commit d276fd154d6c9d6836dcd1715683772535f298a4 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Aug 13 05:11:58 2008 +0200 [cursor] Fixed crash in cursor state machine coping with deactivated tiers now. When a tier is not active, its surface has no buffers at all, e.g. when no window is there. commit 09e88afabf364e1afd87d9a4d632403213bca936 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Aug 13 05:08:55 2008 +0200 [subwindows] Extended SAWMAN_VISIBLE_WINDOW by new SAWMAN_HIDDEN_WINDOW used for top level if present. Hiding the top level window hides sub windows as well now, even hiding the layer if no other window is there. commit 6b6803f94de9da390c32e029211d8c10aba1113e Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Aug 13 05:07:11 2008 +0200 [x11] Implemented primaryRemoveRegion() with a new call to destroy the X11 window. Also cleaned up name of window creation call (set_video_mode -> create_window). commit e66998a2459aca790752a7511eab41239112c372 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Aug 13 05:06:20 2008 +0200 [dfbtest_window] Added test that hides the top level window and shows it again. commit 603158aaa73dbf713cf1b66692ec179c6668f8ce Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Aug 13 04:27:31 2008 +0200 [subwindows] Destroy all sub windows first in window destruction code. commit fcb4bd03e2dda669f8c221d236a3828af50f58f7 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Aug 13 04:24:46 2008 +0200 [dfbtest_window] Added more options, window destroy test and proper cleanup. Added -p / --pos for top level position and added a sub window version of each top level option. New test at the end destroys the top level window. Remember top level (if created) and sub window and release them before exit. commit 862665562fbc04318126979cb4d679586a749480 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Aug 13 03:57:17 2008 +0200 [subwindows] Fixes for clipped sub windows and other opaque windows with a border (bounds) bigger than the destination area. commit 00eaadb0be8a14541cf675aa71fb1b6c9ee50b64 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Aug 13 03:30:33 2008 +0200 [subwindows] Fixed update issues in sub windows when moving top level windows. Also optimized wind_of_change() and wind_of_showing() to avoid most of the recursive calls. commit 285b2ccbbcb41c5e6655edd7ebb1974a6bb89cf9 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Aug 13 03:27:54 2008 +0200 [default wm] Avoid most of the recursive calls of wind_of_change(). commit ebfdb3cf9d20b43475ad9375e028e965ae2cc7e6 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Aug 13 00:55:38 2008 +0200 [x11] Fixed race condition and X error when switching resolution quickly. commit d48bbee1a8acae34b4105cf9a9ed3a716075be9d Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Aug 12 14:33:44 2008 +0200 [subwindows] Initial sub window support with relative bounds (moved, scaled etc. with top level)... commit 3cf6015d2ae08b236637e7d0c51ed94396ab5c94 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Aug 12 14:30:50 2008 +0200 [version] SaWMan 1.3.0 for DirectFB 1.3.0 commit d934bdd21fb0ca42e86e5c7e0c2c146fa2e1c820 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Aug 12 14:25:28 2008 +0200 [x11] More X locking and checks for input thread exit... still not satisfied... commit da6fcf72c6b101f8890a1d08d513eda67935343c Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Aug 12 14:23:19 2008 +0200 [dfbtest_window] Added new program for testing window and sub window features :) Tests done right now: - create top level - create sub window - move top level - scale top level commit d1072e7e22013eb0a12f997950499da0b5d2b5eb Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Aug 12 14:18:11 2008 +0200 [IDirectFBWindow] Initial checkin of sub window support (one level only for DirectFB 1.4)... Added DWCAPS_SUBWINDOW, DWDESC_TOPLEVEL_ID and "toplevel_id" to DFBWindowDescription. Manage ref to top level window and vector of sub windows in window core, but leave scaling, translation and clipping of sub window bounds based on top level bounds to the WM module. Cleaned up IDirectFBWindow method order... commit 0ad26c8f57494bca399f09133e04bef17f9f0521 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Aug 12 14:15:54 2008 +0200 [windows] Added lock and ref around dfb_wm_close_stack() in dfb_wm_close_all_stacks(), added context magic and lock assertions everywhere! commit 535061197082f993d05f9dd28c3b231cfdf49423 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Aug 12 14:14:46 2008 +0200 [windows] Added missing locks around direct dfb_wm_... calls... commit e9ba4041cea208c442d6a5d0b1f0a5fd9a46fb1f Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Aug 12 14:13:37 2008 +0200 [layers] Added magic vaue to CoreLayerContext structure, improved debug messages. commit 9422d85f922a740ec06a0f5e0955a9eaf419e194 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Aug 12 14:08:37 2008 +0200 [version] 1.3.0 :-) commit 78e2fa94a71390eb9a7a7c8bd66c89b7acecf5b1 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Aug 12 11:16:14 2008 +0200 [draw] Call backup clip region consistently "old_clip" to avoid further errors. commit f0c5faadeac83a1806b272dbea67dba94c8eb0b7 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Aug 12 11:10:29 2008 +0200 [draw] Fixed copy'n'paste bug in restoring the clip after drawing a window. The clip wasn't restored at all! Drawing the background for example failed! commit 85f0417c8392b37ec9543e64e1a1c3a2d2f5703d Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Aug 12 10:56:35 2008 +0200 [layers] Added debug message to print context being returned by dfb_layer_get_active_context(). commit 21067461e719feaafbb404dfd0fe18f61ac01138 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Aug 12 10:47:03 2008 +0200 [IDirectFBSurface_Window] Added missing layer context locking around dfb_wm_get_insets() in IDirectFBSurface_Window_Construct(). commit 43cc1713fd9dee2e6c8f9d65ef0d6192187b6a37 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Aug 12 10:20:27 2008 +0200 [layers] Fixed failing context lock assertion in dfb_wm_close_stack() by locking in context destructor. commit b00124a5811ba90ca84dab646d42ef8f6a5b184f Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Aug 12 10:15:21 2008 +0200 [fusion] Fixed single app skirmish lock counting (copy'n'paste bug). commit a21e4cd136e7b293eb3c2d2f4b8e1426db8b195f Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Aug 12 08:27:39 2008 +0200 [windows] Avoid recursive dfb_wm_close_stack() caused by SaWMan's CloseStack() unref on the layer region. This issue happens only in single app build, where the layer region constructor gets called synchronously and destroys the window stack structure before the dfb_wm_close_stack() has finished. Fixed by calling CloseStack() at the end dfb_wm_close_stack(), moving the list removal and flag clearing before the call and freeing the stack data in dfb_windowstack_destroy() or recurring dfb_wm_init_stack(). commit b15eb23d6e53f9bb1638575f97e1a6c31a8ef690 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Aug 8 16:39:50 2008 +0200 updated TODO commit 550bb3a859161a6ce613dfebebe8b0c86b5701b3 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Aug 8 16:00:31 2008 +0200 updated ChangeLog commit 8881c385160ebb1fbf20093755866c1f29b1993f Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Aug 8 15:59:01 2008 +0200 Updated NEWS for 1.2.1 release commit 3a7f7c9872db39a131bfec3be411568ecaa356d0 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Aug 8 15:56:00 2008 +0200 [keyboard] Only become active if FBDev or DevMem is used to avoid grabbing keyboard from X11 for example. commit 7a34de0dd8584cc4c5bc4ab20288099e1c535177 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Aug 8 15:47:42 2008 +0200 [fbdev] Update surface manager code from X11 virtual physical testing pool. commit c450bca736be7850a064ae3071d560a948fdcd5e Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Aug 8 15:47:05 2008 +0200 [devmem] Update surface manager code from X11 virtual physical testing pool. commit 5de1c0424fdd7a08288f071cd2e891a87c78b70e Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Aug 8 14:59:18 2008 +0200 [x11] Set buffer lock offset in fallback mode to satisfy assumption in surface core. commit dca79d97500dab35ff3a6c407b6a9c191bdeec44 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Aug 8 14:58:15 2008 +0200 [surfaces] Cleanup buffer initialization and reset with two new convenience functions. commit 11703ae62d1e7246dd55d755b8b1a742c047cae4 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Aug 8 11:34:04 2008 +0200 [IDirectFBSurface] Fix Lock() on layer surfaces with system memory back buffer. This reverts commit 4cc82baddbc3a9849c2ff6c4979a65bcfb6ba96b and fixes GetFramebufferOffset() properly by not adding CSAF_GPU_READ in Lock(), but checking if there's a physical address provided by the surface pool via the buffer lock in GetFramebufferOffset(). commit 79332a26310c7b03abe059c08b1a0d087f7ed14b Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Aug 8 11:33:36 2008 +0200 [dfblayer] Add testing Lock() with read/write, read only or write only. commit 56a7aefda6b61c18167574a564defeb5c6058c3d Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Jul 29 05:44:41 2008 +0200 [sh7722] Build fix (link against libdirectfb for dfb_pixelformat_name). commit 435ca9a063582bbafe07563b0c1d3d9c4044268d Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Jul 29 05:37:54 2008 +0200 [sh7722] JPEG encoding, code moved into library, JPEG lock and buffer allocation in kernel commit aa8fd4aa6d4261979900a3c51a4aa5ff926e3e09 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Jul 29 04:35:01 2008 +0200 [IDirectFBImageProvider] Added simple WriteBack() method for encoding surface data. commit 871bc2ac72d15c1cb2f8f702e268e2774d7b2b0e Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Jul 29 04:34:36 2008 +0200 [options] Fixed warning. commit db4030c985b3b824c0986b95a4ec9d92325f7cd0 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Jul 29 00:26:56 2008 +0200 [x11] Return accelerator as set in config. commit 62c8ed26e0585926c7d9ce16e8c8bba02ad3d356 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Jul 25 16:56:56 2008 +0200 [config] Allocate palette on demand saving 16kB of the 60kB allocated until after DirectFBCreate(). commit 99f4fd47a12f26d8ddae00101b354563ea863ca1 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Jul 25 16:42:12 2008 +0200 [options] Added "keep-accumulators = <limit>" to allow freeing of accumulators above the limit. Setting -1 never frees accumulators until the state is destroyed (previous behaviour). The default is 1024 which already means up to 16kB are kept! commit 9c09c56afb9c3b2d491d27ab4ac292d13d997fdd Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Jul 25 16:06:41 2008 +0200 [surface] Use fusion_ref_set_name() to show the same info as with the skirmish. TODO: Update information on both when surface is reconfigured! commit c326ef6b5556111a870d4cce2b66f41401185999 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Jul 25 16:06:04 2008 +0200 [fusion] Added fusion_ref_set_name(), e.g. for better debug information on object references. commit b180da246613406fec27abbe2139fed2cafbedf1 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Jul 25 16:00:48 2008 +0200 [options] New option "warn=<event:params>" to print warnings on surface/window creation or surface buffer allocations. Example: warn = allocate-buffer:300x300 Prints a warning for every surface buffer allocation made with both width and height of 300 or above. commit 8ecdb9f6b99ef01e220f41e3ce2bed8c317c8091 Merge: 902e932 ba310f8 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Jul 24 00:40:24 2008 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/extras/DiVine commit 902e932ccf9fed3e6227ed5358d814797933efaa Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Jul 24 00:39:13 2008 +0200 [spooky] Send text or special keys via "t" and "T". t Entering text <ms> <Text to enter> t0 directfb.org T Special characters/keys <ms> {b|d|r|Cx} T3 CuClbbr a e e Cl (left) c l t Cr (right) k Cu (up) Cd (down) commit 4abe47f51b2164e37632566dd300e7f69548ff9c Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Jul 23 15:53:22 2008 +0200 [x11] Build fix. commit 5730f838a7ac3b39b5e83e3bc7cea197fac513ed Merge: 701aa94 d9461ad Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Jul 23 15:51:47 2008 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit d9461ad5e8e46a5d0f8f1279f214bce64c9bfb0b Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Jul 23 15:28:23 2008 +0200 [x11] Build fix. commit b815d1b7adb82c9791fc31e546a8e3e8bbbfd73a Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Jul 23 15:24:47 2008 +0200 [version] Also increase binary age (don't think compatibility is broken). commit 701aa94e931d85cd18b0b5ff47a32beeb1472fec Merge: f00bc9f 10fc3aa Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Jul 23 14:59:27 2008 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit f00bc9fc3a4febd48b159f6534068552917a8610 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Jul 23 11:05:29 2008 +0200 [x11] Enhance surface manager to find the best matching group of allocations to muck out. This is the first time multiple smaller allocations can be mucked out for a bigger one. The code that determines these allocations is still O(1) and finds the best matching group within all possible combinations. commit 3a607bdc5cae5e0766b4962794741b7476db496e Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Jul 23 11:03:46 2008 +0200 [surfaces] Fixes for mucking out multiple allocations. Cleanups. commit 97727598045878dba91d7f61d3bb77d9acf61b3f Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Jul 21 18:17:16 2008 +0200 [x11] Enhancements to surface manager code and fixes for old behaviour (without virtual physical surface pool). Extend dfb_surfacemanager_displace() to check policies, reimplement toleration code and take free space before and after an occupied chunk into account. Cleanup dfb_surfacemanager_allocate() to only check for free chunks. Always initialize x11(Shm)Image surface pool, regardless of virtual physical surface pool being enabled. Never fail in x11TestConfig() if virtual physical surface pool is not enabled, but use Fusion shared memory allocations as a fallback (previous behaviour). Update allocation size from chunk length which is usually bigger (at least 16 bytes of safety area). commit 29ab6ef9f3d1e978d99a6523b429398e8df8edf1 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Jul 21 18:07:07 2008 +0200 [surfaces] Enhanced backup strategy when mucking out allocations. First check if any of the existing allocations is up to date, otherwise try to update one of the existing allocations. Enforce same order of joining pools as of initializing them. Fixed invalid 'buffer->written' allocation pointer when using "thrifty-surface-buffers" option. Fixed wrong order of joining surface pools in slaves. Other fixes and enhanced debugging output. commit 10fc3aa44ee4c79f06c87a44aecd51a027f6fed5 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Jul 21 18:00:21 2008 +0200 [misc] Bumped version to 1.2.1 and did forgotten increase of the core ABI. commit 01b57b96155cbcb512218dca1a7997866fb3e0ae Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Jul 21 13:35:05 2008 +0200 [x11] XShm fixes and new virtual physical surface pool for development and testing. Specifying 'video-length = <bytes>' option will create a shared memory block of that size and initialize a surface pool with a surface manager supporting the new MuckOut() call. Changed x11(Shm)Image pool to only allow allocations for supported visuals (no fallback shared memory allocations) when the new option is used. Return accelerator ID 51 for testing with the virtual acceleration (currently called vmware). Make usage of XShmQueryVersion() to check for XShm support. Other cleanups and fixes. commit 03c500eea0451a8164090f86f5ff9ae1a529aeeb Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Jul 21 13:33:24 2008 +0200 [surfaces] Implemented strategy for surface allocations when pools are out of memory. Extended dfb_surface_pools_negotiate() to return a list of capable pools order by priority including pools out of memory at the end of the list. Added MuckOut() to the surface pool API to tag all allocations for removal to free up memory for a new allocation. If not provided by the pool, a fallback implementation will do the job, but that's not implemented yet. Added dfb_surface_pool_displace() to muck out and backup allocations and do the new allocation. Moved allocate_buffer() from surface buffer to surface pool code as dfb_surface_pools_allocate() with extended negotiation using a list of possible pools and with ability to muck out allocations. Changed static update_allocation() to exported dfb_surface_allocation_update(). Added dfb_surface_trylock() for a fusion_skirmish_swoop() on the surface lock. Call dfb_surface_lock() and dfb_surface_unlock() in surface_destructor(). Moved surface core initialization before system module to have generic pools always at the same position (with the same pool IDs). Keep an ordered list of surface pool IDs based on priority. Have a pointer to a backup pool in every pool which is set to the shared memory surface pool by default. commit 5ffb341a6f716bfc900bd722317dd63451911e0b Merge: c148939 d5bda88 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Jul 21 13:32:34 2008 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit c148939c7c01ffc6f4491dc7fb9339180c9350af Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Jul 21 12:57:00 2008 +0200 [surfaces] Use convenience functions where possible, e.g. dfb_surface_lock_buffer() instead of dfb_surface_get_buffer() and dfb_surface_buffer_lock() etc. commit d5bda88808477881fa5fc58f9684aa1bd0867d83 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Jul 21 12:57:00 2008 +0200 [surfaces] Use convenience functions where possible, e.g. dfb_surface_lock_buffer() instead of dfb_surface_get_buffer() and dfb_surface_buffer_lock() etc. commit 0c9a7dca0bd288479c773191435042b6853e273f Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Jul 21 12:56:08 2008 +0200 [windows] Shutdown fixes in the window management and new flags for the state of the stack. Added CoreWindowStackFlags with CWSF_INITIALIZED and CWSF_ACTIVATED to CoreWindowStack. In dfb_wm_close_all_stacks() simply call dfb_wm_close_stack() for any stack with CWSF_INITIALIZED set. The previous code did only half of it, just clearing context->stack pointer and clearing the magic value resulting in the notification handler for the background image accessing a stack structure without magic. In dfb_wm_close_stack() first deactivate the stack if CWSF_ACTIVATED is set. Safe state handling in dfb_wm_set_active(). Moved magic value set/clear from wm.c to windowstack.c where the structure is allocated and freed. Check return value of dfb_wm_init_stack(). commit c32441475ff21fbbae477129310a9d594a7cb72d Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Jul 20 15:13:21 2008 +0200 [x11] Output ARGB when depth is 32, support AYUV input (layer format). commit 38d4b138168b56330c54f3bb92673f5017444f6b Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Jul 20 15:03:15 2008 +0200 [dfbdump] Show capacity in pool info (with "-p") and only dump shared or explicitly specified surfaces to avoid crashes. commit c2bea38a0855e8c7e050e693a4e36705026bc92a Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Jul 20 15:00:08 2008 +0200 [convert] Added conversion to RGB555 and from AYUV (added to all conversion functions). commit cc328caa46510e5b0e185edbb17bd732b40a3d8a Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Jul 20 14:59:26 2008 +0200 [surfaces] A bit more debug when locking buffers. commit c319b6a969a064a83e7e7da308daaca7fb1f4866 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Jul 20 14:58:31 2008 +0200 [virtual2d] Fixed copy'n'paste bug in virtual driver. commit edaf0352f0a90ef68ef0b571fb1fe52abb5907df Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Jul 20 14:57:39 2008 +0200 [surfaces] Cleanup complex assertions, no CORE_SURFACE_ALLOCATION_ASSERT within CORE_SURFACE_BUFFER_LOCK_ASSERT, only D_ASSERTs. commit 95d25625adbd57ac04dd5a04f42a2b3d1056fd52 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Jul 20 01:06:48 2008 +0200 [layers] Fix failing assertion due to recent code cleanup. commit 123d8d07824ab4112350d763bb21ababb5b343fb Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Jul 20 01:05:28 2008 +0200 [fusion] Clear object list (pointer to NULL) after cleanup for safety. commit d52e27ac0165199dc90987bba232474b31bf6385 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Jul 20 01:02:17 2008 +0200 [fusion] Print warning for FUSION_CALL_RETURN if caller could not receive result due to a signal. commit f7eee07eac4bf0cf6ca96ac03c77b7c447b32e74 Author: Denis Oliver Kropp <dok@vm.directfb.home> Date: Tue Nov 21 04:56:02 2028 +0100 [x11] Fixed bytes per pixel and pitch calculation for fallback XCreateImage() when no XShm is available. commit e766efa2b9cac28d76fc014774bb9f28e15df70e Author: Denis Oliver Kropp <dok@vm.directfb.home> Date: Tue Nov 21 04:55:54 2028 +0100 [x11] Take first matching visual for each format instead of last and handle RGB32 and ARGB separately (depth 24 and 32). commit 84059022f5d1bcaf685b38d6a5009230c663d652 Author: Denis Oliver Kropp <dok@vm.directfb.home> Date: Tue Nov 21 04:55:37 2028 +0100 [fusion] Fixed dead lock with references in single app mode. fusion_ref_zero_lock() no longer leaves the mutex locked. Turned 'waiting' into 'locked' to keep size for binary compatibility. commit a39849d8bb11301ec3d5c2420b026f7dbaa0e5a7 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sat Jul 19 04:52:11 2008 +0200 [devmem] Partially reverted cleanup of surface manager code. The workaround for the surface manager creation happening before graphics driver initialization with possible dfb_gfxcard_reserve_memory() calls is still required. commit ba310f84cae3dd472d3835ce6768eff703622841 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Jul 15 23:22:16 2008 +0200 updated README a bit commit c043f85d09973f6930d5078abf17bb1f990f15a6 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Jul 15 23:22:06 2008 +0200 fixed version detection commit 51b54cda16866ab6fe0a790aa97cf479b6aced2f Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Jul 15 04:11:41 2008 +0200 generated ChangeLog commit e52c61d05bdf853e41117905e7db9462df67b317 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Jul 15 04:07:48 2008 +0200 some spooky test files commit ab9f065ac9b725b423831e29048f55b5df98855b Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Jul 15 04:03:11 2008 +0200 0.4.0 commit 120b1dbeb9094eb4151818f4c63502f890d0c41e Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Jul 15 04:03:00 2008 +0200 ignore commit 931803e47332c4ccb82c2643354fe2c6f83afc0b Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Jul 15 04:02:02 2008 +0200 Spooky - the friendly ghost doing input for you commit 6355a9fee6ce6efe32c7b96d0079dc5e082cfde4 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Jul 15 03:57:49 2008 +0200 added license commit 811ee7208e30cf72d98e44cbc7a672eb589a6337 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Jul 14 02:45:07 2008 +0200 [IDirectFBSurface] Added MakeSubSurface() to make this surface a sub surface or adjust the rectangle of this sub surface. commit dac4a5fe8c43205ca9854f48183134325e8897c8 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Jul 13 16:28:43 2008 +0200 updated once more commit 7cb19857f5e3feb6d6daf43bffbc52ce28ddd2ff Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Jul 13 16:28:06 2008 +0200 1.2.0 commit 7bbab526840d15886dbdbe62ab8691f9b40df1e2 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Jul 13 16:25:25 2008 +0200 [IDirectFB] Don't check for input device caps in CreateEventBuffer_Callback() which are checked already. This also fixes missing events from devices without caps. commit 14ddb08b822effda0884155353d30ec8f65c890d Author: Denis Oliver Kropp <dok@vm.directfb.home> Date: Sun Jul 13 15:55:30 2008 +0200 [x11] Don't use XShm for offscreen surfaces, but always use Fusion SHM. Other cleanups and input thread cancellation fixes. commit bf9272493b021d4b4b4b32d81b5306e667a10e2a Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Jul 13 13:34:14 2008 +0200 [x11] Make visual info just debug messages, better error message on XOpenDisplay() failure. commit 02779f1f765085f6e54c517593f9fd9c5567255d Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Jul 13 13:33:39 2008 +0200 [core] Call dfb_wm_close_all_stacks() only if already initialized. commit 2c111d0071809171482554f412ea43bdc3ad9740 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Jul 11 17:02:06 2008 +0200 [util] Optimized dfb_updates_add() incl. usage of dfb_region_region_extends() to combine adjacent regions. commit ae3258c3c457a12de52b59ed515d5513e915fb71 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Jul 11 17:00:03 2008 +0200 [util] Added dfb_region_region_extends() returning true if both regions' number of pixels added equals to number of pixels of their bounding box. commit b4102221ad64904f414bc90464b02a2df6f444bf Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Jul 10 01:25:08 2008 +0200 [input] If a device has no caps at all, let it match with any caps being requested. commit 1f5c911d6fb78100b8558180244582b13351bd7d Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Jul 10 01:07:36 2008 +0200 [option] New runtime option "thread-priority-scale=<100th>" to apply a scaling factor on thread type based priorities. commit 6fa78c7366430c3259007b45d9d4d7df6989061e Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Jul 10 00:56:10 2008 +0200 [sawman] Added missing direct_list_remove() in wm_close_stack(). commit 5a0efaa2c12ba5eb260401e552718de71b07e475 Merge: 111cd2d 568cff6 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Jul 10 00:14:43 2008 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 111cd2dba120b89c05206ca7656c253dfe94f1fb Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Jul 10 00:14:09 2008 +0200 [core] Only suspend the input core during shutdown if it has been initialized already. commit 568cff642107feb98c8a9b4ad3e057745811058a Merge: a6dcfee 7490602 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Jul 10 00:13:05 2008 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit a6dcfee1f13b9cfccf5c71114714cc175411c154 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Jul 10 00:01:36 2008 +0200 [wm] Keep a list of window stacks, added dfb_wm_close_all_stacks() called early during core shutdown. Fixes shutdown misbehaviour. Added D_MAGIC_ASSERT() for CoreWindowStack functions. commit 16afac667b5927bba5637fbb5d71983a8e4ad09c Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Jul 9 23:54:54 2008 +0200 [interfaces] Turn error from missing interface directories into a debug message. commit 7490602e83e5e3b6a9af0aa90fa151f60e4e1920 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Jul 9 20:42:39 2008 +0200 [nvidia] Indicate CCF_RENDEROPTS (render options support). commit 01558be062fbbf0c210382f80f7cda34a31e5783 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Jul 9 20:42:23 2008 +0200 [radeon] Indicate CCF_RENDEROPTS (render options support). commit 930bdad51885bc118bda98cab5655ab926b1459d Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Jul 9 20:41:54 2008 +0200 [sh7722] Indicate CCF_RENDEROPTS (render options support). commit d12c253cbac831940334f5fcbccc8eddd3e505c3 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Jul 9 20:40:31 2008 +0200 [graphics] Added CCF_RENDEROPTS that needs to be set by the driver to allow acceleration when != DSRO_NONE. commit 4491f78d48bf268e72b9aebedeb2cfac14199727 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Jul 9 20:28:31 2008 +0200 [vnc] Builds, runs again, but looks wrong... commit f990c1afe695d188d086851902147ac80b996ffc Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Jul 9 20:27:39 2008 +0200 [layers] Check if region surface is system only and avoid using CSAF_GPU_READ which would fail. commit 3f09498bd5a57e33334242cd6c187b288c55b53e Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Jul 9 19:25:30 2008 +0200 [sdl] Small fix using mod_hw instead of modified. commit 406e279d55aeb22009dd5e8ebb7b5ef7bc099ff0 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Jul 9 18:33:29 2008 +0200 [CirrusLogic] New EP9xx driver, thanks to Brian Austin! commit 56279c0acf016858a180fa4bbd405df53bb39b88 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Jul 9 07:28:31 2008 +0200 [test] Added reinitialization test program. commit d697b7310b3bddb4c649f437f8b0ac0c02ca2ff9 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Jul 9 06:53:15 2008 +0200 [mem] Doh! ...doh! .....Dooooh! Actual realloc() was missing in runtime-disabled debug mode. commit 8d262f21b2eb83dda14f73370ea53c62f4ec2122 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Jul 8 20:15:27 2008 +0200 [gfxutil] Changed dfb_convert_to_*() functions from static inline to non-inline. commit 9cd095ba55897a2431c9e07b7da4c72c1e82ac86 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Jul 8 20:11:09 2008 +0200 [x11] Added missing check of layer pixel format based on conversion routines available. commit 2298104d1af5ea8736e75287e77ddc4db9731ad3 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Jul 8 19:50:57 2008 +0200 [linux_input] Thanks to Phil Endecott for adding F13 to F24 support! commit 32adbf9ba07da09927e84c7bc5c973b131d5b176 Merge: eaea0e3 ef9efd7 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Jul 8 19:31:13 2008 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit eaea0e34702b7bcb8839b6df0397cbe313d4dd7f Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Jul 8 19:30:32 2008 +0200 [pixelformats] This patch adds BGR555 as a new pixel format, thanks to GARDET Guillaume! commit ef9efd7e9179cb7bb3a1528437aa752831e7c781 Merge: 22c876f c8255c8 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Jul 8 14:34:31 2008 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit c8255c8d85f608c5e6a4573689e993530c17004d Merge: d00dbd4 701bf91 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Jul 8 14:34:22 2008 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit d00dbd4512f9caf29e0768cc33e0e10a66adb2ce Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Jul 8 12:52:38 2008 +0200 [IDirectFBFont] Bug fixes in GetStringBreak(), thanks to Keith Mok! 1.) The ret_next_line is not initialized, so if the initial string is too long without delimiter, "if (*ret_next_line == NULL)" will not run. 2.) If the initial string is too long without delimiter, the return string should be minus one character since the width had already longer than the input width. Should keep the width within input width unless only one character. 3.) The return length should not minus one when whole string is within input width, otherwise one character is cropped. commit 22c876fcc30d48920ebe47856cff79c889b11165 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Jul 8 11:54:22 2008 +0200 [windows] Fixed missing return value. commit 0c90ba1bd190da49b9e957dea0820e4c17962315 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Jul 8 11:54:06 2008 +0200 [layers] Fixed warning in non-debug mode. commit 89bb501307b4904cf3c45f24a09c3da3e286b196 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Jul 8 11:53:00 2008 +0200 [IDirectFBVideoProvider] Fixed copy'n'paste(?) bug in SetStreamAttributes() argument. The argument was DFBStreamDescription, but obviously should be DFBStreamAttributes. commit 701bf9100f84f44b894661799b455e67c4fd2158 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Jul 7 10:33:48 2008 +0200 [fbdev] Ignore panning errors as before. commit 80d913df4165389dc06767548420813784f6052f Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Jun 30 15:32:17 2008 +0200 [davinci] Added local task buffer for preparing a list of commands and send at once. This avoids overhead due to uncached task control structure being accessed for every task that is added. A new function will emit all tasks at once using memcpy() that allows write combining on the uncached area. Changed all 2D rendering to use new functions for preparing tasks reducing CPU load in DrawString(), FillSpans() etc. Benchmarking 256x256 on 800x580 ARGB (32bit)... Anti-aliased Text 3.085 secs (* 208.881 KChars/sec) [ 87.9%] Anti-aliased Text (blend) 3.084 secs (* 208.949 KChars/sec) [ 89.6%] Fill Rectangle 27.189 secs (* 44.351 MPixel/sec) [ 2.5%] Fill Rectangle (blend) 27.334 secs (* 44.355 MPixel/sec) [ 2.3%] Fill Rectangles [10] 28.063 secs (* 44.371 MPixel/sec) [ 0.8%] Fill Rectangles [10] (blend) 28.065 secs (* 44.367 MPixel/sec) [ 0.6%] Fill Spans 3.115 secs (* 35.766 MPixel/sec) [ 25.4%] Fill Spans (blend) 3.117 secs (* 35.743 MPixel/sec) [ 20.9%] Blit 40.124 secs (* 28.910 MPixel/sec) [ 1.6%] Blit colorkeyed 36.324 secs (* 32.295 MPixel/sec) [ 2.0%] Blit from 32bit (blend) 38.073 secs (* 30.639 MPixel/sec) [ 1.9%] Blit from 32bit (blend) with colorizing 38.065 secs (* 30.646 MPixel/sec) [ 2.2%] Stretch Blit 105.843 secs (* 16.893 MPixel/sec) [ 0.6%] commit 19699fb58779a3a46f53a9820b4b5c68ad21c734 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Jun 30 15:30:01 2008 +0200 [davinci] Set address back from 0x86000000 to 0x8e000000 for using the uncached window at 0x8f000000. The address wraps around when 128MB are available instead of 256MB. commit 028288dcd22009d2060755256cd857579592692e Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Jun 30 15:10:18 2008 +0200 [layers] Added CLRCF_FREEZE for dfb_layer_region_set_configuration() to set CLRSF_FROZEN. Changes are not applied until dfb_layer_region_flip_update() is called. commit bd8749232bd22df253a3e99c02a230f54f12e089 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Jun 24 16:49:32 2008 +0200 [davinci] Fixed timeout detection in DAVINCI_IOCTL_WAIT_LOW. - reduced polling frequency from 1/HZ sec to 1/50 sec with an allowed total of almost one second while still running the same command (DSP stuck) - or timeout immediately (after 1/50 sec) if idle counter changed (DSP felt idle) - enhanced queue dump on timeout - disabled user space write combine on control structure (just one member written) commit 1640375755e5bab96a21be1a697fb65c18b4e5a3 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Jun 24 05:09:45 2008 +0200 [davinci] Added scaling support to video layer using the Davinci Resizer. Surface buffers must be allocated in devmem as the fb memory of the layer is used to store the resized data. Applications can set source and destination rectangles as with other scaled layers, but a Flip() is always required to show updates even in a single buffer mode. Minor fixes and cleanups. commit 7f861b88953fd1d064acb77ada8d51fd2a44fa75 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Jun 24 03:54:58 2008 +0200 [davinci] Commented out davinci_c64x_write_back_all() in EngineSync() which is still not working properly anyhow. commit 20ce5efe7bbc98b0c3e89570c42d641a31cd44e3 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Jun 24 03:43:07 2008 +0200 added fixme note commit 20716634b6bd361d1851111c9a771618cea8a722 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Jun 24 03:31:59 2008 +0200 [devmem] Minor cleanup removing the unneeded heap offset adjustment. commit f48943cf555b72f249d3f75a94390bc5ea4c38b7 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Jun 22 02:57:31 2008 +0200 [convert] Removed D_CONST_FUNC from dfb_pixel_to_color() and dfb_pixel_from_color(). commit 059a4fdad664c60ce8c2e50d32b1ef265c981e12 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Jun 22 02:56:35 2008 +0200 [surfaces] Fixed return type of dfb_surface_lock/unlock() for C++. commit 857c82cd4563e12ca50e57110108245d1e920149 Merge: 4ed64ec 399266a Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Jun 22 02:16:45 2008 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 4ed64ec5d5ce68a02f526459d8e7d3cfea7d40cd Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Jun 22 02:16:09 2008 +0200 [IDirectFBSurface] Extended debugging messages, mostly coordinates of rendering operations. commit f8cbbf52d7e4bc9e8d1c5f3e7041d362ef267182 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Jun 22 02:14:40 2008 +0200 [util] Added DFB_RECTANGLES_DEBUG_AT() to dump one or more rectangles. commit 1e48f64765f02e403d29a74970d7e500a9ba806e Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sun Jun 22 02:13:54 2008 +0200 [IDirectFBWindow] Added basic debug message to each method. commit 399266add735534c4c2722726332b04f8f0be830 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sat Jun 21 14:22:27 2008 +0200 [davinci] Moved call to set buffer start address to videoUpdateRegion(). Also made videoSetRegion() very lightweight, e.g. when only the surface is changed. commit ea47bd8c24e4c8b260cc8c3a676551cf385d74a8 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sat Jun 21 12:04:40 2008 +0200 [IDirectFBSurface] Optimized DrawLines() to use rectangle filling if all lines are horizontal/vertical. This allows hardware acceleration to be used, e.g. in GTK+ using gdk_directfb_draw_segments() a lot with only horizontal and vertical lines for widgets. commit b00372c5f6af1a749c1e13bb95fe9552c0e45318 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sat Jun 21 03:22:19 2008 +0200 [davinci] Replaced all hard coded addressing of 32MB DSP working area by DAVINCI_C64X_MEM. DAVINCI_C64X_MEM is defined in <linux/c64x.h> to be 0x86000000 if not defined from outside. FIXME: We could save probably most of the 32MB... commit 2f5c21a288e4111ecd079a68f9f63d647b5436a5 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sat Jun 21 03:19:18 2008 +0200 [graphics] Removed dfb_gfxcard_sync() call from slave leaving procedure. commit fea27e5d2e5e359658cbcb182805c6eba8e98531 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sat Jun 21 03:14:36 2008 +0200 [IDirectFB] Added sanity limit of 20480x20480 to CreateSurface(). This way further calculations like 20480*20480*4 still work and buffer allocations can be made (rather rejected) as there's no wrap around with 31 or 32 bit numbers. commit 884c9d9e1a2f8a5aa33e5d0a29be87505be7389e Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sat Jun 21 03:06:45 2008 +0200 [keyboard] Make driver usable without fbdev/vt just for the sake of a keymap. If the FBDev system module is not used, e.g. using DevMem system module, try opening /dev/tty0 just to be able to register a keyboard device with a keymap. GTK+-DirectFB still does not work without it... commit 2d2eb9803277ab5f8f749374b37a73a7fbb788a1 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Jun 20 11:38:55 2008 +0200 [generic] Dacc_premultiply_color_alpha() also needs Cacc.a to be set, thanks to Mandy Wu for spotting! When only DSBLIT_SRC_PREMULTCOLOR was used, the Cacc.RGB.a value was not set at all. This was only done in conjunction with DSBLIT_BLEND_COLORALPHA or DSBLIT_COLORIZE. commit b1ff8418ed52127a7735b610b723934957c6cef5 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Jun 20 11:19:54 2008 +0200 [davinci] Added lots of debug messages to 2D acceleration, set StretchBlit() hook statically. As there's no other implementation than for 32 bit at the moment, assign the function pointer for StretchBlit once during driver initialization to save (very minimal) overhead. commit 706d0542ecfe318a99d75a881ea5baddf457c356 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Jun 20 11:16:55 2008 +0200 [davinci] Allow external definition of DAVINCI_C64X_IDLE_MAX for c64xdump tool. commit 29700e4d2a04f213710dae7c10e759ff36622a98 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Jun 20 11:16:27 2008 +0200 [util] Added DFB_COLORKEY_VALS(). commit b1f15d73e55225c656ca5f2a208202b11fa2930c Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Jun 20 11:15:30 2008 +0200 [layers] Enhanced debugging output for layer regions. commit 9dff083726ddefb6d773697af1958e3070cc850c Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Jun 20 11:14:38 2008 +0200 [layers] Added DFB_CORE_LAYER_REGION_CONFIG_DEBUG_AT() to dump a configuration. commit 99a2fea3f71be631629d6ddc921ff79c9d364f8b Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri Jun 20 11:13:41 2008 +0200 [IDirectFBSurface_Layer] Moved interface data structure definition to header file. commit eec017753d1e32ccf6c6f1ecebfdaeca9ee0b8cb Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Jun 16 09:19:01 2008 +0200 [davinci] Update allocations during Lock(). commit 08d636baa4399f63d78b1e96127855b55d20c27f Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Jun 16 09:18:02 2008 +0200 [davinci] Updated kernel module. commit 432c828da55b829adff0dca888d519c42c3e6aef Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Jun 16 09:07:23 2008 +0200 [davinci] Build libdavinci_c64x.la and install headers. commit e456cdc058546a19d405d18ab88f9dabbdd568b7 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Jun 16 09:04:14 2008 +0200 [tslib] Include <string.h>. commit d261c76eb8c8a53bc8e2132f6b8905b58a01340d Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sat Jun 14 10:10:07 2008 +0200 [davinci] Use FBIO_GET_TIMING to query screen size. commit 87943754c47067a2d88ea791d3144607792315bb Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Jun 12 09:34:07 2008 +0200 [davinci] Remove sizeof() from ioctl definitions. Thanks to Eric Nelson! commit 7c1d09bb5e1e76d69af33af2e14ac4418485d7bb Merge: ef6be22 1c605ad Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Jun 12 09:16:42 2008 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit ef6be22899e343dfa84e3df822b43a8544c7adcc Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Jun 12 09:15:19 2008 +0200 [convert] Added dfb_pixel_from_color() for full ARGB version of dfb_color_to_pixel(). The latter is still there for compatibility, but calling dfb_pixel_from_color() with alpha = 0. commit 65c355244ce1a2e00197a1113ef1a420a1029c68 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Thu Jun 12 09:12:00 2008 +0200 [davinci] Temporary workaround for getting the screen size. Thanks to Eric Nelson! commit 1c605ade7e377ff3cdcea67669692e7530a9cf1e Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Jun 11 23:57:19 2008 +0200 [davinci] Use KCPPFLAGS and set CROSS_COMPILE_PREFIX. commit 62e92a111de85dc720521bef7388b8aa94d791a7 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed Jun 11 04:14:07 2008 +0200 [options] Added "[no-]cursor-updates" to never show a cursor, but still handle it. commit efab271d361fa8981416180347bc94d020801b09 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Jun 10 11:31:25 2008 +0200 [x11] Fixed double wheel events by discarding ButtonUps. commit 94e9fc75aa7cc83eea759f7fb00e0ec0c9aa5b88 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Jun 9 21:15:54 2008 +0200 [IDirectFBSurface] Don't build hierarchy of sub surfaces if start-stop is not used. commit 0752af54638978b49045817a30e9e473a9b29f20 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Jun 9 19:16:15 2008 +0200 fixed png filename commit b9cf490de2d1522743aedc961cc041f6cb5c7033 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Jun 9 19:15:50 2008 +0200 0.8.1 commit 4c213c323291807a4750c445a28c479f160fe5af Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Jun 9 19:15:43 2008 +0200 fixed png filename commit 3042ba6f57d1b8010446d214f513e2942e677ed9 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Jun 9 19:13:53 2008 +0200 forgot to update generated docs commit b4ae2995a779515a7ce6727960c99c26be516b10 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Jun 9 19:05:04 2008 +0200 0.8.0 commit 1f30e1440f9cdc97b0e908dc8faa3bc2c85659c1 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Jun 9 18:54:47 2008 +0200 1.2.0-rc1 commit a0e8738cf7636e77b171b4bc92aed3453c4254f6 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Jun 9 18:54:18 2008 +0200 [ISaWMan] Fixed warnings. commit 44c85a885e88fce2ed43a0bb5dcb7a8095ff82b0 Merge: a420a6c e554901 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Jun 9 02:44:39 2008 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit a420a6c70c056e8dfb88d64c51d737fe0ea74381 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Jun 9 02:41:57 2008 +0200 [list] Remove check on element in direct_list_contains_element_EXPENSIVE() used for debugging. When checking for existence in a list, avoid crashes due to already freed elements being passed in as a pointer and checked for existence in a list. commit e554901f69e726397f29c8480a71ed28d70a530a Author: Denis Oliver Kropp <dok@headway.(none)> Date: Thu Jun 5 09:32:20 2008 +0200 This patches teaches directfb-config about SYSROOT and removes -L/usr/X11R6/lib Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de> commit c59be091ecbd83bfcc1535c934bbaf1305b5feac Author: Denis Oliver Kropp <dok@headway.(none)> Date: Wed Jun 4 23:00:39 2008 +0200 [dgiff] Revival of the DGIFF (DirectFB Glyph Image File Format). Thanks to Vaclav Slavik! commit 28207ee35af6157032ca3059fc723ec2eefd757a Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue Jun 3 11:08:07 2008 +0200 [gendoc] Adjusted page top and added better logo image. commit 483c9a336355c9bdbfa12ac6329bd39e583d2438 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Jun 2 21:10:01 2008 +0200 [NEWS] Updated for 1.2.0-rc1. commit 4e7313e6e15d9a00203a864532b43618460a1683 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Jun 2 11:12:11 2008 +0200 [x11] Use XNextEvent() again instead of usleep() based polling after fixes. Pull up to 100 events per round, i.e. until accumulated motion events are flushed and thread exit status is checked. Send ClientMessage to wake up thread from blocking XNextEvent(). NOTE: Assuming XNextEvent() is thread safe by itself and does not require to use XLock/UnlockDisplay(), because using it blocks all other threads while XNextEvent() is blocking... commit c040e8b5baa2b748b08efb7b6cf8bdcfe4b9ef82 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Jun 2 10:31:35 2008 +0200 [x11] Missed one Xlib actor site not enclosed by XLock/UnlockDisplay(). commit ab863f2ab71453bdc1a1574bb862a7891d3c5d00 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Jun 2 10:18:07 2008 +0200 [IDirectFBSurface_Layer] Added debug domain IDirectFBSurfaceL with messages as in IDirectFBSurfaceW. commit c64fe7d7aa06114cc91b005f5b9045e57995ef45 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Jun 2 10:17:20 2008 +0200 [surface_core] Changed debug domain name from Core/Surface to Core/SurfaceCore. commit c54118cc9ed7eae4a6df417a8c9613a07fc0dc3e Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Jun 2 10:15:42 2008 +0200 [x11] Fixed threading issues using XLock/UnlockDisplay(), reduced invisible 16x16 cursor to 1x1, minor cleanups. commit f59e9e8d861ca7156ff1d0ffd2104290da608efe Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon Jun 2 08:22:42 2008 +0200 [IDirectFBVideoProvider] Applied patch from Daniel Laird adding buffer threshold control/notifications. Thanks! commit 18552ace2ccfd852fac90016844cd30027b432aa Author: Denis Oliver Kropp <dok@shark.directfb.home> Date: Sun Jun 1 15:03:11 2008 +0200 [fbdev] The big fix[tm] Still not working again is support for virtual resolutions with panning, not double/triple buffering which works. commit ba01767fcdaa91b00ae739e82ca270c5f810b74f Author: Denis Oliver Kropp <dok@shark.directfb.home> Date: Sat May 31 18:13:08 2008 +0200 [copyright] Update copyright headers. commit 3b52479e932f1ba951778283fee10351903b2350 Author: Denis Oliver Kropp <dok@shark.directfb.home> Date: Sat May 31 18:08:26 2008 +0200 1.2.0-rc1 commit 504fcd5fa51fb67bcd8f2eb0dfea59cebb7f8875 Merge: e02436f 5b83790 Author: Denis Oliver Kropp <dok@shark.directfb.home> Date: Sat May 31 17:36:43 2008 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit e02436f38eb1bee6e9312ee3a4ffaeeb76d681a6 Author: Denis Oliver Kropp <dok@shark.directfb.home> Date: Sat May 31 17:26:22 2008 +0200 [interfaces] Fixed assignments of invalid pointer type. AddRef/Release return DirectResult now. commit ebca2537c452aac57fae113c1359051620b0c3bf Author: Denis Oliver Kropp <dok@shark.directfb.home> Date: Sat May 31 17:20:34 2008 +0200 [clip] Fixed bogus gcc-4.1 warning. commit 5b837903a083655800970fcbfee7dfe6a5e28310 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sat May 31 16:28:08 2008 +0200 [dfbdump] Show sum of buffers' "locked" value. commit 2dd15de3123d80105b06bc11a605cf0db3f902a7 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sat May 31 16:05:26 2008 +0200 [README] Elaborate requirements, use Debian package names. commit 0d395ea7a4618dace405c9bc66909bc5d0450b9d Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri May 30 13:48:47 2008 +0200 [SDL] Fix mode switching/surface creation, having working accelerated SDL backend again. commit 0f05533015beea8847bcc56c6188a02f96ae0dd4 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri May 30 13:47:59 2008 +0200 [surface] Commented out annoying assumption for now. commit 466ed22edd49a2c7b56bed971308591537d9a968 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri May 30 12:30:35 2008 +0200 [Makefile] Fixed some include paths. commit 108343b6031dfef4b9d58ffe7ad306a430d58c30 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Fri May 30 12:25:58 2008 +0200 ignore commit a08511ae755464e93f05fd66bb6da6a0320f240c Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed May 28 08:15:38 2008 +0200 ignore all SlickEdit project/workspace files commit 703f622980d497b85541c4501ceea2844c9050ee Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed May 28 08:12:59 2008 +0200 Revert "[input] Patch to reopen console if zero length byte is read" Fails in the usual case, but works when run through strace. This reverts commit cb9e767d7a829801a53952e3a34eb770fd8bfff4. commit c2c776002794e6793867ed9a2138ab02915a73cd Merge: 9c357f6 c291ee5 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue May 27 08:13:04 2008 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 9c357f658c967d8b93d90c39cff691a8bcaddc06 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue May 27 08:12:45 2008 +0200 [graphics] Added dfb_gfxcard_get_primary(). commit c291ee57abd3d9149e9f3a8ed4a82e4ee69a9f0e Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed May 21 00:16:42 2008 +0200 [davinci] Allow layers up to 1920x1080 instead of the bogus limit I added before. The original patch did not include any limit at all. commit 0ac0d24980d2f2d4b1d1a238d78f29658c23197d Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue May 20 19:15:24 2008 +0200 [davinci] build fix commit 575de8b0d56bd26a0e4191d99a25f360d865cd01 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue May 20 19:10:50 2008 +0200 [davinci] More changes for HD support, thanks to Eric Nelson! commit 1384d02151c248dba0a200ad73c624a7e56b5255 Merge: 82fa12f c65ed1d Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue May 20 18:44:53 2008 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 82fa12f125e41619ed772b02ac39fa149eab2a83 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Tue May 20 18:41:58 2008 +0200 [davinci] Patch from Eric Nelson to support HD OSD planes. commit c65ed1da33a374047a62d62310c6ab971b5a9ccc Author: Claudio Ciccani <klan@directfb.org> Date: Tue May 20 12:04:04 2008 +0200 [radeon] Implemented DSBLIT_SRC_PREMULTIPLY (R100/R200 only). commit 8eeb64fc9564d804e01548659f5807049b54afa8 Merge: cb9e767 449e86d Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sat May 17 23:36:19 2008 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit cb9e767d7a829801a53952e3a34eb770fd8bfff4 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Sat May 17 23:15:31 2008 +0200 [input] Patch to reopen console if zero length byte is read As reported by John Hughes on http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=462626, Splashy is a small boot splash program that starts from initramfs during early boot on Linux. While Splashy is running, the contents of root (/) gets umounted and cleaned up loosing access to the devices when the system started. Using the following patch, when libdirectfb detects zero length reads, it attempts to reopen the console (possibly from a newly mounted root tree). This was the same solution that was suggested to us by Dennis a few months ago. John arrived to the same conclusion independently (and submitted a patch!) commit 449e86d519e98cd1d189ac07e97229841250ebe6 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Wed May 14 07:04:34 2008 +0200 [options] New runtime option "quiet=<type>" to disable only certain message types. Thanks to Niels Roest! [merged from b2007ph1] commit 991d8ff7d13d1ad84cc33d1390a962b6bb63d4c6 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon May 5 01:02:31 2008 +0200 [tests] Smooth indexed -> ARGB scaling test. commit b79c72198361748528f7ff0e6426784a8647bed9 Author: Denis Oliver Kropp <dok@cyto.(none)> Date: Mon May 5 00:47:23 2008 +0200 [generic] Fixed dumb mistake in premultiplication of alpha during smooth scaling. commit 749f21a25614a01cce60804792af9ddba6a7fb5f Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 27 14:00:44 2008 +0200 [generic] Allow DSBLIT_SRC_PREMULTIPLY while scaling from indexed to alpha formats. Scaling an image which has alpha values != 255 (non-premultiplied) now produces premultiplied output (smooth scaling only). Support for non-indexed sources still needs to be added. commit ff8d4e51c6d09efef9448d1dd282f8225ba7dcb5 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Apr 17 15:38:06 2008 +0200 [radeon] Follow changes. commit 5e81db40d3dc93b7f467336e872656a4ba2b9680 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Apr 17 15:36:44 2008 +0200 Entering version 1.2. commit 34356075fe7910e6974c8528deac5eb6c2797919 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Apr 17 15:35:44 2008 +0200 IDirectFBSurface API changes. Added IDirectFBSurface::FillTriangles(). IDirectFBSurface::SetMatrix() takes a 3x3 matrix. commit e0f615d069d267bcd6e1e6c2bb62ce8ff23d246b Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Fri Apr 11 19:17:30 2008 +0200 [davinci] Work around missing alpha plane pitch setting (when differing from RGB plane). The DSP function needs to be extended to fix it properly. commit 4c1b8080a3e2b1abb55428b8b668332d2f93d2ae Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Fri Apr 11 18:10:27 2008 +0200 [davinci] In c64xdump do 4 instead of 10 updates/sec and switch to automatic idle_max. You should measure your idle_max once with an idle system and set the IDLE_MAX macro accordingly. commit ff8d40c4520de2dfe140da777166d5b9993abc6e Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Fri Apr 11 18:00:50 2008 +0200 [davinci] Fix double error message. commit dd272a04d4f9ed177fbcbe67e6f0329d71554380 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Fri Apr 11 17:58:40 2008 +0200 [davinci] Further DSP interface updates and cleanups. commit e648a4d07251a7d1c3ca5db13ea6c35f1b433b5f Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Fri Apr 11 17:57:31 2008 +0200 [davinci] Added small tool for showing DSP status. commit 1d67f2e5451fbbebe5ea5ab75bbd3c98073c456f Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Fri Apr 11 17:51:54 2008 +0200 ignore commit 3d9890e79aa10c9e00f4b710ae3189e94bcd182d Merge: 9dd3fd8 468b12e Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Fri Apr 11 17:39:30 2008 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 9dd3fd82fb5c3bbe382e915923bd5265f01f4bde Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Fri Apr 11 17:39:19 2008 +0200 [davinci] Task handling fixes. commit 468b12e10db3d55d918a7c254ea9e720efb273ff Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Fri Apr 11 16:34:37 2008 +0200 [IDirectFB] Added more debug messages to IDirectFB::CreateSurface(). commit 21cebe19e4db44858bf457da535971f588683fac Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Fri Apr 11 16:33:57 2008 +0200 [davinci] Fixed kernel module for more recent kernels. commit da483de031e5b603ddf3e53ce81839424408435b Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Fri Apr 11 16:32:38 2008 +0200 [davinci] Suppress errors of custom ioctls for now. commit b18878562fb8f8b14bcfac77e9a4d4e81b9dcdb2 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Fri Apr 11 16:31:49 2008 +0200 [davinci] Allow explicit driver usage without probing by setting accelerator id to 6400. system = devmem accelerator = 6400 video-phys = 86000000 video-length = 8388608 commit ebb40f5c738f359d645ab6ee8db049ea3079bd58 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Fri Apr 11 16:30:04 2008 +0200 [davinci] Fixed double error message. commit 9edf2a0a09b7c6fa0ceffd380975d66fb496ea9b Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Fri Apr 11 16:29:44 2008 +0200 [davinci] Set default kernel source location to be "linux-davinci-2.6" next to "DirectFB". commit 243705777c7b280e61de721433bafb136ee93022 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Fri Apr 11 16:29:01 2008 +0200 [configure] Fixed typo in X11 detection. commit e78501238b28f6bb318b89532743b91cece1c5b3 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Wed Mar 19 14:08:29 2008 +0100 [util] Added DFB_TRIANGLE_VALS(t) commit c469e1004ed4544fd7e2896c1fe3e83d04b8063e Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Mon Mar 17 19:54:06 2008 +0100 [docs] Changes to gendoc.pl to fix missing character after newline. Other changes: - Ignore redeclarations of interfaces (no double items in index) - Warn about interface definitions without a declaration (not indexed) - Indention... commit c386f912febdf7ca7b7d264e701ab98a9d65fb26 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Mon Mar 17 15:35:50 2008 +0100 warmer... commit ef99d0b6c3f93856fc4b081ab16d52bf94356415 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Mon Mar 17 15:35:23 2008 +0100 warmer... commit f54336078634111ab486d374ecdf6b10e4c9a754 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Mon Mar 17 15:29:14 2008 +0100 [docs] Newest version of gendoc.pl commit 0cb0ee1e14df31876a18c133e36e91545bc07aa6 Author: Denis Oliver Kropp <dok@headway.(none)> Date: Mon Mar 17 15:08:55 2008 +0100 [coma] Update documentation of Coma. commit 1ecb363cf04a8047afaadb90835f20e9270c3bb7 Author: Denis Oliver Kropp <dok@headway.(none)> Date: Mon Mar 17 15:00:14 2008 +0100 ignore commit becaa3e3533b1dbb2f9faa94c0cb3acea49fc98c Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sun Mar 16 18:35:00 2008 +0100 [docs] Made color equal on most systems (RGB16 did differ before). commit bb71cad3e17fb8f9a068ffa94e66473186c4e3e7 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Fri Mar 14 02:13:34 2008 +0100 [docs] Update version. commit 7c9ecf02111a2edbb79b322b76ff038dae428e00 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Mar 11 18:03:00 2008 +0100 Converted a D_INFO() to D_DEBUG(). commit 6cc35d5d1d0bc2a1a5129aa7e0f6c312d0e2aada Author: Ville Syrjala <syrjala@sci.fi> Date: Tue Mar 11 02:41:07 2008 +0200 surface core: Fix a potential problem with deallocating buffers. dfb_surface_buffer_lock() walks the buffer allocations with fusion_vector_foreach (alloc, i, buffer->allocs) and if it doesn't find a suitable allocation it will allocate one. It then tests alloc against NULL in the error paths to determine if the allocation was performed. If there are only unsuitable allocations alloc will not be NULL even though a new allocation was made. So use other means to keep track if allocation was made. In the name of keeping the code more readable give dfb_surface_buffer_write() the same treatment even though it's not actually necessary there. commit db3a591846f12c1b284a71e2d2346c45d94a85a0 Author: Ville Syrjala <syrjala@sci.fi> Date: Mon Sep 17 22:21:52 2007 +0300 Don't access FusionVector members directly. Surface core seems to test FusionVector::elements against NULL to determine if the vector is empty. That won't work when the vector has contained some data but has since become empty (since elements is not deallocated/set to NULL). AFAICS that could happen eg. when dfb_surface_buffer_write() would do the first allocation and update_allocation() would then fail which would lead to deallocation in the error path. The next dfb_surface_buffer_write() would then fail to detect that there are no allocations and would not try to make a new allocation. There are several other places where FusionVector members are accessed directly. AFAICS nothing that could cause bugs but I decided to clean them up at the same time. commit 9f693ab58d17a4a3cb235956a2b754d0122dc2b2 Author: Ville Syrjala <syrjala@sci.fi> Date: Tue Mar 11 18:11:04 2008 +0200 dfbinfo: Show min/max keycodes. commit cb71d1da5ac1f31d70404de4bfcf62cd62faf2f0 Author: Ville Syrjala <syrjala@sci.fi> Date: Tue Mar 11 18:12:51 2008 +0200 fbdev: Eliminate floats. commit 45db5ded04afcaa4a015efd9670d57f2fe5f4eac Author: Ville Syrjala <syrjala@sci.fi> Date: Tue Mar 11 18:12:40 2008 +0200 fbdev: Use CLAMP(). commit 9a3abe8781628d994f7ecf7bab3b49b61d259834 Author: Ville Syrjala <syrjala@sci.fi> Date: Tue Mar 11 18:14:47 2008 +0200 jpeg: Use #ifdef WORDS_BIGENDIAN instead of #if WORDS_BIGENDIAN commit 8fb406a598703b0bd2c099f063f04aaac9bd53c7 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Mar 11 12:24:46 2008 +0100 Added CoreSoundDevice::HandleFork(), called upon fork() to free/duplicate local resources. commit 552ab7a4ce5829b3f81254002b516617d3656419 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Mar 11 12:21:59 2008 +0100 [fusion] Added fusion_world_get_fork_action() and fusion_world_set_fork_callback(). fusion_world_set_fork_callback() allows to register a callback called during the different states of fork() (prepare, parent, child) and before the actual fork action is performed. Useful to free local resources when fork action is FFA_CLOSE. commit 886be63179ed680f52ba30577bc6ceb7eedf8be6 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Thu Mar 6 17:08:26 2008 +0100 [docs] Fixed reference to SetSourceMask(). commit 21b1fc5ea634cc19257f27318a60c2476a50bfa5 Merge: 3542cd5 6fafbc2 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Thu Mar 6 17:06:48 2008 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/FusionSound commit 3542cd53447105986a0b0d3ce00a5801b2ff485a Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Thu Mar 6 17:06:40 2008 +0100 [fsdump] Dump running playbacks. commit 3bd7cf172c17edb17794b6942790bbc4fa50dbe7 Author: Ville Syrjala <syrjala@sci.fi> Date: Thu Mar 6 12:33:32 2008 +0200 fbdev: Initialize primary layer config width and height primaryInitLayer() forgot to initialize the config width and height that were passed to dfb_fbdev_set_mode(). Also memset() the config to 0 for good measure. commit a4968c5e842271b9e37edda1fe2e4f7585d2e385 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Mar 3 18:33:34 2008 +0100 Added support for affine transformations to dfb_gfxcard_draw_string(). Actually this is done by using gStretchBlit. Direct glyph transformation (done by the font provider) would be better. commit dd3f1f2cc6b9b5066c68f0cf8b9ade53ca50091f Author: Claudio Ciccani <klan@directfb.org> Date: Mon Mar 3 18:30:58 2008 +0100 [radeon] Emit transformed rectangle using TRIANGLE_LIST instead of TRIANGLE_FAN. Because of vertex buffering, TRIANGLE_FAN leds to incorrect result when drawing multiple rectangles. commit 5ffa438d0872695bcac73f48fbe3856416d47202 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Mar 2 15:57:23 2008 +0100 Started implementing affine transformations in software. Also fixed incorrect clipping when DSRO_MATRIX is set. commit bfad60cbd3269aa33ea360aad843bb266046ad88 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Mar 2 15:55:42 2008 +0100 Implemented triangle clipping. commit e5448dff452407df4d1d28acb402650c0e75f8f4 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Mar 2 15:55:01 2008 +0100 Added dfb_line_segment_intersect(). Gets the intersection point between a line and segment within the given segment. commit 5081997bbf0e59d2f4a70148f37e1d2acc267504 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Mar 2 13:27:07 2008 +0100 [nvidia] Fixed buggy vertices formation in TextureTriangles. commit 01d772a3741b5865ad4758d98bb3f1d82cb278cf Author: Claudio Ciccani <klan@directfb.org> Date: Fri Feb 29 16:15:01 2008 +0100 [direct] Fixed a prototype. commit 6fafbc22f5ca7b8f94ccf3da1511526d28c23d7c Author: Claudio Ciccani <klan@directfb.org> Date: Fri Feb 29 16:09:07 2008 +0100 Fixed types conversion. commit 73cd5a4f3c578bf0d8d9d5f16fac5a72aa628d56 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Feb 29 15:25:00 2008 +0100 [nvidia] Cleanup overlay code. Enbale using NV12 (requires NV30 or newer). commit 83d555be5f3f22be050e854d9c132277c3edc57c Author: Claudio Ciccani <klan@directfb.org> Date: Fri Feb 29 15:23:28 2008 +0100 [nvidia] In case of unsupported arch (NV40), skip objects and fifo setup. commit 833c07e4ca02a14c0125c581d3354522c27ffc4c Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Thu Feb 28 14:56:34 2008 +0100 [fusionsound] Follow API changes, removing remaining dependencies on <directfb.h>. commit 86a2154aff2498eedfa6f6e4df15a052b378ab33 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Thu Feb 28 14:55:42 2008 +0100 [fusiondale] Follow API changes, removing remaining dependencies on <directfb.h>. commit 8733e1234604897b6045f743da379d9904bfafb9 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Thu Feb 28 14:54:36 2008 +0100 [sawman] Build fixes (DirectResult). commit 72e8be27b38ad21d9e55819d2c6bbdee25630798 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Thu Feb 28 14:53:48 2008 +0100 [dfbdump] Build fix. commit 5997403179ffb774e40cd7ad9c0313025e077dbf Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Thu Feb 28 13:36:17 2008 +0100 [fusion] Fix multi app core build. commit c89ee26379d95b7297c4b419efbf44221bc2f180 Merge: 16d886a 14b09af Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Wed Feb 27 04:25:03 2008 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 16d886addf8386d5c8e0a268d33cdba5d9845828 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Wed Feb 27 04:24:49 2008 +0100 [DirectResult] Added extensible result codes and made other fixes to ban <directfb.h> from libdirect and others. Made DirectResult the primary type for result codes. Added D_RESULT_TYPE_BASE, D_RESULT_TYPE_MAX and D_RESULT_TYPE_IS for extended result codes. Changed most of DFB_ codes to be assigned the corresponding DR_ code. Three DirectFB specific codes remain, after DFB__RESULT_OFFSET defined as D_RESULT_TYPE_BASE('D','F','B'). Added DirectEnumerationResult. Moved DECLARE_INTERFACE and DEFINE_INTERFACE to <direct/interface.h>. NOTE: Need type changes of all AddRef/Release implementations from return type DFBResult to DirectResult! No more inclusion of <directfb.h> outside of DirectFB! commit 14b09af2a288f71f90dee1cfd508033969e55e42 Merge: 8fb7df8 ca24167 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Feb 26 19:07:01 2008 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 8fb7df82d8ee14859b809c49f00350808df407c8 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Feb 26 18:58:59 2008 +0100 NVIDIA: Implemented affine transformations. commit ca241672be0b4bd9bdd92629d2d96e3e83f581c7 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Feb 26 17:13:01 2008 +0100 [docs] Fixed broken interface description, only IDirectFB had one. commit f7ccd7f82883f6bc4ced497c795bb3acc7582798 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Feb 26 17:06:17 2008 +0100 [swmdump] Fixed missing update region index. commit 2d934900ae4ef394bafb3b26d1415acda5966477 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Feb 26 16:41:45 2008 +0100 [tests] Fixed warning due to a stupid mixup of void/char. commit 055a18e3d069a86b01aa8081ba769075279d2c3a Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Feb 26 16:28:05 2008 +0100 [docs] Fixed missing new argument to gendoc.pl call. commit 774d0b4c86bf1ebe75c356f9162c014ea2c91b91 Merge: 3d9759e b933f4a Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Feb 26 16:25:52 2008 +0100 Merge branch 'master' of ssh://directfb.org/git/directfb/core/DirectFB commit 3d9759ef23e517557d3a475df5cb66aa50de07e2 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Feb 26 16:15:53 2008 +0100 [docs] Improved generated documentation to include more and look better. commit 4b6b14ef9e9422d88c5de5dcbfba015d9cefb827 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Feb 26 16:21:12 2008 +0100 [util] Added macro to determine the first set bit of a 32 bit constant at compile time. commit 60f1b19e2aef15ba1a4c5bb47970b4ec1543ac5e Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sat Feb 23 16:48:03 2008 +0100 [surface] Allow second string (prefix) in Dump() to be NULL to dump without numbering. commit 5b44b2ae2082d5a1bae07370b1e84f8bef978ade Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Feb 26 12:19:10 2008 +0100 [swmdump] Show more information. commit 946c13662d9630d9ee7d47c89d2ae4256d114d28 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Feb 26 11:29:10 2008 +0100 [swmdump] Show region state flags. commit 1fba8f677e9b9a846c842f4ffb30bf6fe6bcbe34 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Feb 26 13:27:17 2008 +0100 [reconfig] Avoid reading from client buffer when only the destination on screen has changed. (merged from b2007ph1) commit 8ad9c0deca32960ef9d9f8ba060466bc5dcbf230 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Feb 26 11:33:56 2008 +0100 [geometry] Fixes for following geometry of parents. commit 066bfaae37442f2b1edbd48f985b9cd3775b20b8 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Feb 26 11:33:23 2008 +0100 [reconfig] Fixes for color keying. (merged from b2007ph1) commit b933f4a4bb38a00b770ec8241f3df46ca003303d Author: Claudio Ciccani <klan@directfb.org> Date: Mon Feb 25 17:40:22 2008 +0100 RADEON: Implemented DSPF_DSTALPHA/INVDSTALPHA for A8. commit 21b739036416c96de21db34ae5395970bec19aeb Author: Claudio Ciccani <klan@directfb.org> Date: Sun Feb 24 21:24:40 2008 +0100 Specify that alphablend must be enabled for antialiasing. commit c8060ca4e611716e46e0c9f2577db28d17f52a2c Author: Claudio Ciccani <klan@directfb.org> Date: Sun Feb 24 21:23:41 2008 +0100 RADEON: Implemented antialiasing (R100 and R200 only). Fixed conversion+blend with A8 destination. Use LINE primitive for transformed DrawRectangle. Use POINT primitive for 1x1 rectangles. commit b417724db62384eba84c481c6c7f670f4347a295 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Fri Feb 22 21:08:59 2008 +0100 [surface core] Hotfix failing assumption that flags would still be set when unlocking. While locking the surface and managing interlocks, only clear access flags when the buffer has not been locked before. Probably we should have an allocation lock counter. But it needs to be protected anyhow, e.g. using FusionRef, but I'd like to avoid overhead and instead add an allocation manager per Fusionee. This one would just have one FusionRef, e.g. as a FusionObject, and a list of locked allocations. The destructor handles them all. Another important job for the local allocation manager would be to remember allocations that have been attached to locally, e.g. mapped, and require to be detached by everyone when destroyed. The XShmImages in the X11 backend are currently only shmat()ed by slave processes :-P commit 7decf9233c0c0b753bad72ace4959862e4d53027 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Fri Feb 22 21:43:31 2008 +0100 [deinit] Fix crashes during shutdown by suspending the input core before shutting down anything. The input core is shutdown almost at last. Lots of shutdown happens before, which could collide with input threads doing fancy stuff like handling expose events :) With this change the input core is suspended before any other shutdown. This closes all input threads to avoid crashes or other misbehaviour. Made the input core allow shutdown during suspended state. Added debug messages, assertions... commit 4f957b6ccbe0f108c448dad7572c885d34b94e2c Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Fri Feb 22 20:37:46 2008 +0100 [deinit] Fix deinitialization order in IDirectFB_Destruct(). This fixes an assertion happening when drop_window() enables the cursor of the context that has been destroyed (unrefed) just before. commit 09c35c9c27783cceb3446079dd8b67fc63c866c5 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Feb 21 18:45:50 2008 +0100 Added missing definition of DATADIR. commit 942c98ba5385060a4dcb9f3d9e88f90354370563 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Wed Feb 20 15:12:58 2008 +0100 [tests] oops, forgot the source. commit ac760580de6bcaf0b8087d7949c161bfd64a96a7 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Wed Feb 20 01:12:00 2008 +0100 [x11] Bring in line with 1.0 features, expose handler, format conversion, shm, smp... commit 2bb6bfccfd7d35d0fa299f6829456e1970ca49b9 Merge: 4d12462 aec6c55 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Wed Feb 20 00:14:37 2008 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 4d12462cf000758748bc808d469121251c1dca97 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Wed Feb 20 00:14:27 2008 +0100 [software] Have two stages of software fallback warnings. If software fallbacks are disabled, just print a brief message as before, otherwise print a detailed message in the specific functions. commit 287af30cd2679d70a8a97016b9090156aeec9ae6 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Feb 19 23:58:37 2008 +0100 [surfac core] Added more debug and an assumption with a FIXME. commit 3a4fa3fd9f3629e90e7b5dd7ad7456d78da1280e Merge: 469f5f9 6f7ffd5 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Feb 19 23:47:19 2008 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/extras/SaWMan commit 469f5f9984b95bdf5e45afa89afc55cb16c7d998 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Feb 19 23:47:14 2008 +0100 [API] Follow API change in Fusion, removing const from fusion_skirmish_lock_count() argument. commit aec6c554d8fa99f72edaa1b9819740a6dfdf8c78 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Feb 19 23:31:44 2008 +0100 [tools] Added dfbinspector as a small C app. commit f9137c2e57b78e6a1d28ae27a3d70a4b400238ae Merge: f648447 25fbe5a Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Feb 19 23:23:47 2008 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit f64844754cab020c11e88b210329372e15ac67c2 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Feb 19 23:23:36 2008 +0100 [fusion] Implemented lock counter in single app Fusion. commit 4b245174e0253343a43ec1e8a4bf786c534bfa0f Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Feb 19 23:22:38 2008 +0100 [threads] Added debug messages. commit 69465c68c3fa3cdfbb64f5f3a328562b91b9ce77 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Feb 19 23:21:55 2008 +0100 [graphics/font] Fixed state handling bug causing wrong acceleration masks. Added special graphics state debug messages in domain "Core/GfxState". Added separate blittingflags member to the font as the one in the state will be modified. commit f8f0dd1051fe514b23fc419289e584e0e68759ac Author: Claudio Ciccani <klan@directfb.org> Date: Tue Feb 19 18:18:01 2008 +0100 Revert previous change. commit d71d8a0f6d2e6c74f0c6172a7068501c5d2aba96 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Feb 19 18:07:11 2008 +0100 [core] Late increase of ABI version after adding pool size to the description. commit ee0a49e338a8c712e2c67357b319189c2df0bc9f Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Feb 19 18:04:13 2008 +0100 [tests] Small restructuring, new test writing data retrieved from an URL to stdout. commit 25fbe5a187e3b9a9e910985ee57e0cf2668ea876 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Feb 19 15:29:55 2008 +0100 [fusion] Support resume of interrupted wait on a skirmish. commit da996c99b1686f91ae6829388f188d60a64b1883 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Feb 19 15:20:41 2008 +0100 [mem] Fixed allocation debugging always being used when available. commit 875dea04fe7291afa8cb53206ded0d6c4ebb5b68 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Feb 19 14:57:59 2008 +0100 Test skirmish wait timeout. commit 94479dccd2d9f11ff44f4fca658be9f56b53fe9a Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sun Feb 17 16:24:36 2008 +0100 [surface core] Added CORE_SURFACE_BUFFER_LOCK_ASSERT(lock) and CORE_SURFACE_ALLOCATION_ASSERT(lock). These two macros are consisting of assertions for all they could check. commit 03e4ee39816a3179f6013e9eabfd9a63a948627d Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sun Feb 17 16:19:54 2008 +0100 [fbdev] Added DSPF_ARGB6666 to formats checked at depth 24. commit 85c5b5961d0f98a42d39f2158bce91ba3531b299 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sun Feb 17 16:17:50 2008 +0100 [surface pools] added size field to description for pools with a defined maximum. commit 86ce96319e81052b0ee8e60401ccc6a19a379a33 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sun Feb 17 16:16:04 2008 +0100 ignore commit 77919e759c7f1cc3738f07fe0419d4b94970b348 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sun Feb 17 16:14:22 2008 +0100 [config] strip off "lt-" at the beginning of a program name. commit 3d990fb0db67ecad211f2314cc56ff0f6afeb555 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sat Feb 16 16:25:18 2008 +0100 [configure] Added option "--enable-trace" to add "-finstrument-functions -fno-inline" for traces. Also changed DIRECT_FORCE_DEBUG to DIRECT_ENABLE_DEBUG which only gives warnings and continues without debugging if it's not supported by the libdirect build (without debug support). commit 6b258bfce63df2888fcc75eef618970472ee4a3b Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sat Feb 16 06:09:17 2008 +0100 [coma] Fixed debug message. commit 6c1b3debcc7870cbf2f44d3cac1e307afdae2386 Merge: 5d99976 6d04654 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sat Feb 16 06:06:10 2008 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/libs/FusionDale commit 93d6dc2d2fd5dad1fe84d9829c6f9c08c6c7fecb Author: Claudio Ciccani <klan@directfb.org> Date: Thu Feb 14 18:40:16 2008 +0100 Ported radeonfb patch to linux-2.6.22. commit 9eba76a734d6937932c11a764a1c215999d93848 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Feb 14 18:38:45 2008 +0100 RADEON: Implemented affine transformation (all cards) and source masking (R100/R200 only). Switched to version 1.1.2. commit 6d046546fb227408843ac50aaaa62e55cc010067 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Thu Feb 14 10:10:07 2008 +0100 CONFIG: Remove obsolete code duplication and add proper chaining calls. Note: we're calling libfusion AND libdirect config, while libfusion config already did the call to it if it could not find an option for itself. I'm keeping it here now, because I'm tending to prefer removal of libfusion's call to libdirect config, nothing to not discuss :) commit 363ed44bc254fcb9e353ff319fd1cf0ad48d2e97 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Thu Feb 14 09:06:22 2008 +0100 CONFIG: Added option "coma-shmpool-size=<kb>" to set the maximum size of each component manager's shared memory pool used for application allocation requests via IComa::Allocate(), TLSHM (Thread Local SHM) via IComa::GetLocal() and Coma itself... commit e64f23f7425322d9514a84166f0bb07f232f6301 Merge: d8114d4 974cc71 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Mon Feb 11 23:36:43 2008 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 974cc710f1bd92707278a6622bfa7ea14f68c43d Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Mon Feb 11 23:35:58 2008 +0100 SH7722: Remove a temporary printf and two commented out. commit 99bc47070b386fbd2df4731711ccd2364f262bf8 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Mon Feb 11 23:29:40 2008 +0100 SH7722: Implemented DSBLIT_SRC_MASK_ALPHA, cleaned up and optimized state handling. commit fe25a2d4bbbecc4abfa474098d9e0d3bca4ae2cd Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Mon Feb 11 23:26:30 2008 +0100 RENDER: Added IDirectFBSurface::SetSourceMask() - yes, a third blitting operand :) Added DSBLIT_SRC_MASK_ALPHA to modulate source alpha channel with alpha channel from source mask. Added DSBLIT_SRC_MASK_COLOR to modulate source color channels with color channels from source mask. Added IDirectFBSurface::SetSourceMask() with a surface argument plus x/y offset and flags. Added DFBSurfaceMaskFlags with DSMF_STENCIL to make x/y offset absolute and always start at a fixed position in the mask, otherwise x/y from the Blit() are added. Implemented interface and core code for the new API, adding some new core functions and flags, mostly state handling, e.g. dfb_state_set_source_mask(). Added DFB_POINT_EQUAL(a,b). Added DFXL_ALL_DRAW and DFXL_ALL_BLIT. Did some cleanup... commit 63a5ee545b5d96616b4cdd1115a35bab28175b4d Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Mon Feb 11 23:14:44 2008 +0100 CLOCK: Moving includes solved a build issue here. commit d16c5807c105abf2dd7f8894b1bdf4f27a86fe87 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Mon Feb 11 23:12:07 2008 +0100 SH7722: Use RGB16 in LCD buffer again. NV16 did flicker. commit d8114d40845168aa563ad572bbe864c22ea34eb7 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Mon Feb 11 20:24:44 2008 +0100 UTIL: Added dfb_window_event_type_name(). commit d8a553e91627ee463f418add72fad91bec14e64f Merge: 1865d5f 0438a90 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Mon Feb 11 16:31:28 2008 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/FusionSound commit 0438a90dcd4940c825c2d8b2771a1f4b7648fec6 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Feb 11 12:40:23 2008 +0100 ChangeLog for 1.1.1. commit f0756e05f019f0b01549b586ad6064dc438d95c8 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Feb 11 12:39:54 2008 +0100 NEWS for 1.1.1 commit 4f1de5ecd83b25b7cea5d777780b5e33774151c5 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sun Feb 10 17:50:03 2008 +0100 GENDOC: Preserve preceding spaces and line breaks in comments, e.g. to use <pre>. commit 70f7977c9812df8276c520f3dccb80f2e12b0bca Merge: 35b3ba2 4d7dec6 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sun Feb 10 13:12:37 2008 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 4d7dec6d68edbeeb085e5c59b716a16677dd640c Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sun Feb 10 11:38:46 2008 +0100 SH7722: Implemented XOR for drawing and blitting. Version 0.8 now. commit 1865d5fb771c897a631489326f9fe79334fdaee8 Merge: 6092b36 ca8c24f Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Fri Feb 8 08:30:27 2008 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/FusionSound commit ca8c24fe67c145a08c66f06196b85e24a1733b55 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Feb 6 15:35:54 2008 +0100 [cdda] Fixed snprintf() related vulnerability. commit 8fb841bc5b60e104fbc046df10b725be2ae6b7aa Author: Claudio Ciccani <klan@directfb.org> Date: Tue Feb 5 11:26:42 2008 +0100 Fixed bug in wave driver (returning DFB_TRUE instead of DFB_OK). commit 35b3ba298131e69328240593195757ef4fce8b87 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sat Feb 2 17:35:25 2008 +0100 [DirectLog] The default/fallback instance is no longer allocated dynamically, but still initialized on demand. commit f3e472e86198b5c32d3899f5ec7dbe9df1235f9e Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sat Feb 2 17:32:14 2008 +0100 EVENTBUFFER: Don't allow posting of universal events bigger than DFBEvent. This avoids crashes when GetEvent() has been called with just a DFBEvent as a buffer. Sometimes you don't know. Added missing newlines to debug messages. commit 6092b36ddd4df1ae18d5bba83796237692092b13 Merge: ceb1db1 db89071 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sat Feb 2 05:39:21 2008 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/FusionSound commit 880a47b5212c1f17e796e7b622d8ddf7a7667de5 Author: Ville Syrjala <syrjala@sci.fi> Date: Wed Jan 30 13:22:51 2008 +0200 fbdev: Don't pan at all when it's not supported by the device commit 170dd0cfeb4d46dd914a701c1a33e035d7262358 Author: Ville Syrjala <syrjala@sci.fi> Date: Wed Jan 30 22:44:18 2008 +0200 direct/thread.h needs direct/conf.h commit db89071284762296713f9f7fb7526de0000c9c8f Author: Ville Syrjala <syrjala@sci.fi> Date: Wed Jan 30 22:36:04 2008 +0200 Set ACLOCAL_AMFLAGS commit 757c514732e32509792981535e9c604904a366e2 Author: Ville Syrjala <syrjala@sci.fi> Date: Wed Jan 30 18:10:23 2008 +0200 Fix build and install problems when srcdir != builddir. commit f1cebac5624730a3e2fb47c7346e682f4a255bda Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jan 30 14:58:07 2008 +0100 [fsplay] Set volume/pitch unit to 1/32. Display volume/pitch status when changed. commit 83e19250da6ec5d6e93896b858fdefd48f8be396 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jan 30 12:27:47 2008 +0100 [providers] Fixed issue where playback->status = FINISHED but PlayTo() resets it to STOP before checking whether stream needs to be rewinded. commit fd9f114f38a5eb9c8dd1cfec6fadfc6fa4f69e14 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jan 30 11:44:11 2008 +0100 Check for libtimidity al least version 0.1.0. commit ed62a4a5e830dbdabb6004bd91d8d6a244d6b39d Author: Claudio Ciccani <klan@directfb.org> Date: Tue Jan 29 12:35:58 2008 +0100 TESTS: Reset the fork action to FFA_CLOSE after forking. commit f576123a36f4a6ef0b8854e0095242db3f23e79a Author: Claudio Ciccani <klan@directfb.org> Date: Tue Jan 29 12:31:18 2008 +0100 BUILTIN-FUSION: Stop other threads from killing fusion_skirmish_wait() when timeout is expired. commit 0bba7d29e2a61d475bee10178515c5261c479de8 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Jan 29 12:26:51 2008 +0100 FUSION: Finally solved the master-forks problem. This is done by adding a reference counter to FusionWorldShared, increased by the master on fork(). Shared memory gets deinitialized only when the counter reaches 0. commit ee0bf45f5718670cb5e63029c9bf208ee6d647e1 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Jan 29 11:55:28 2008 +0100 [fsplay] Initialize media->tracks. commit ceb1db1f58abfe713cf32303b781fa46686c656c Merge: d4afa46 c936c8f Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Jan 29 10:49:58 2008 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/FusionSound commit ab4530bdbb9a1d75e4cf82940ecb8d1cca4a7e2a Merge: 1c7c5c6 c80e5c7 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Mon Jan 28 22:34:54 2008 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 1c7c5c609b23c53299e1844308a72b2c036aa634 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Mon Jan 28 22:30:16 2008 +0100 DAVINCI: Real IRQ based synchronization, optimization for opaque filled rectangles. Added C64X_FLAG_INTERRUPT to get an interrupt when the command is finished. Function zero is NOP now, e.g. to generate an interrupt at the end of the queue, without setting the interrupt generation bit in already queued commands. davinci_c64x_wait_low() no longer does a usleep() leading to big performance loss, when it's called often with almost nothing on the queue. If synchronization needs to be done, it queues a NOP with Interrupt flag and calls C64X_IOCTL_WAIT_LOW to wait inside the kernel for the end of the queue, and continue without a huge latency. Because blended rectangles are much faster, use the blending function on DSP also for non-blended filling if possible, i.e. alpha = 0xff. Updated tests. Cleanups. commit c80e5c712943c5774396f10479dd046eb64a290d Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jan 28 21:45:53 2008 +0100 DIRECT-STREAM: Fixed HTTP Content-Type parsing (mimetype might be followed by a charset). commit c936c8fb14c74723d8b255073eacc53cf3d8fff5 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jan 28 21:42:42 2008 +0100 [fsplay] Prevent endless loops. commit 5bfd43d1225d9776df22c29401effce2966460f6 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jan 28 21:30:53 2008 +0100 [fsplay] Allow switching to the previous media, too. Do not wait on the stream if playback was paused. commit 7052c4abc0f11cd63910f3eb2d4763f7ccd87701 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jan 28 19:08:24 2008 +0100 [fsplay] Supports switching to the previous track. Seek to percentual position by pressing [0-9]. commit 15b5becec7622df789aca4fa4570577d83014577 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jan 28 19:06:13 2008 +0100 [playlist] Release the previous provider when the track changes. commit 4408008851703d8f9db5cdd207466e14f57e1e1b Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jan 28 17:32:21 2008 +0100 [fplay] Completely removed usage of atexit() and signal(). commit d3ab632bc8ce1a02bde12e321a9b13acd87b1fe6 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jan 28 17:30:31 2008 +0100 [providers] Avoid locking when destroying the interface. commit 062c6b8b9580a0e92ec78d844d404711c9d629ac Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jan 28 16:35:38 2008 +0100 [fsplay] Temporarily reset the pitch to 1 to stop a paused playback. Do not handle SIGTERM. commit d4afa461b8cf24045e91cfe0baca7c1b13435170 Merge: 8d66d68 cfff303 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Mon Jan 28 12:55:16 2008 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/FusionSound commit cfff303f38a6fbd1a148531ec22f35645ece0fe6 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jan 28 12:32:01 2008 +0100 Entering development version 1.1.1. Added IFusionSoundMusicProvider::WaitStatus(), waits until playback reaches the specified status. commit 07d58e6e6bb9b682d9054514a5dfe6189dc4e78a Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jan 27 21:36:32 2008 +0100 [music_loader] Accidentally forced the number of channels to 6. commit b21d9a1ec2124844cb693176a044563619afa34a Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jan 27 15:08:57 2008 +0100 Fixed a bug that, on SIGINT, caused fsplay to jump to the next track instead of quitting. commit 7c429ff6e2291a3eaeea442a4c52ee1ec893f907 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jan 27 13:41:35 2008 +0100 Changed build options --enable-<music provider> to --with-<music provider>. commit c2af500f347b5aff38da0df69be0bc623a24af03 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jan 27 13:27:18 2008 +0100 [timidity] Set the status to FMSTATE_STOP when buffer callback returns FMBCR_BREAK. commit 3fcd30fe3be72dc4020cecc7f9df67c991f8c0ba Author: Claudio Ciccani <klan@directfb.org> Date: Sat Jan 26 21:47:48 2008 +0100 [playlist] Skip xml comments. commit 0d6b66d81e4f90a064615f7bd9a03bb01bd62ca1 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Jan 26 21:47:03 2008 +0100 [vorbis] Return the amount of read data in "size" units in ov_read_callback(). commit b1b63fcbd622c3475aafdf687e1161d97b8e1139 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Jan 26 21:45:12 2008 +0100 Return 0 seconds in the default implementation of GetPos() and GetLength(). commit 795349950f61c1d4ea4c0a5a8ad562b863429a40 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Jan 26 19:52:11 2008 +0100 Rewritten the Timidity provider using the last libtimidity (http://timidity.sf.net). Removed internal copy of the old libtimidity. commit ca5930190cfd5911be09305bd56b0de90fb7ac70 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Jan 26 13:36:00 2008 +0100 [playlist] Dropped .rpm extension (might be a RedHat package instead of a RealPlayer playlist). commit e36b34847dbffddb4ec3b796018d707b14801320 Merge: 7e032d9 be5597c Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sat Jan 26 12:53:00 2008 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 7e032d95f71442b42c821e874a26099112f4917b Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sat Jan 26 12:29:37 2008 +0100 MODULES: Use standard syntax for initialization of struct members in headers. Thanks to Daniel J. Laird! commit e443b848e3459bb8cfd23f891cf8a51f57f4e1f9 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sat Jan 26 12:26:43 2008 +0100 INPUT: Fix debug message in core. commit 174f6fa683d4bbb141fd3230723b1df49d845b6a Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sat Jan 26 09:02:16 2008 +0100 More info in configure output. commit 6f7ffd5c1802f0efde909c1880c519c0d0e60abb Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sat Jan 26 08:09:14 2008 +0100 ignore commit be5597c601f6364c35b7bea554d25560e36353f6 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sat Jan 26 07:18:01 2008 +0100 THREAD: Added options to set default priority, policy and stack size for threads. Initialize attributes before creating the thread. commit 4a4c6496109cf818378a2ddc012b1275f13e403d Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Mon Jan 14 15:12:29 2008 +0100 CONFIG: Added option "surface-shmpool-size=<kb>" to set the size of the shared memory pool used for shared system memory surfaces. [merged from b2007ph1] commit 013c22b1f07d75bb26c03b02ca12d98bf854e16d Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sat Jan 26 05:22:16 2008 +0100 Changed SaWMan's shmpool max size from 16MB to 1MB. Also follow fusion_config->debugshm. commit 51fae4dfc66435339dd74e69b1dd33cde56cf396 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Jan 25 23:27:34 2008 +0100 [playlist] Add ASX and XSPF support. Download the whole playlist before parsing. commit 5d999767a6ae49fdd563368ac174b3e8aa8dd622 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Jan 22 08:11:09 2008 +0100 IComaComponent: Added Activate() which has to be called after initialization. Calls to GetComponent() returned when CreateComponent() was returning, but will block now until Activate() is called. This way the component can be initialized without calls already being executed. commit 8d66d6853f70a095aa46703d98dd3723598b2022 Merge: e9d96f2 27cf09a Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Jan 22 07:46:39 2008 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/FusionSound commit 997a1146eced4503c96794d06d6c9496a0cf13c5 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Jan 22 07:13:31 2008 +0100 ignore commit cc014b4447eafc2505e9b2f55b73b6ad7fb0695a Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Jan 22 06:57:52 2008 +0100 IDirectFBVideoProvider: New events and SetAudioDelay(). Thanks to Daniel J Laird! commit e9d96f21d4a0780ed79bdcbe0d25ef2c01ee5a7d Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Jan 22 00:06:32 2008 +0100 Don't dismiss the skirmish if fusion_skirmish_wait() fails. Only when DFB_OK is returned, the lock is still held. commit ec7a8323889e06379220d92bbe68a1a51bf6f867 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jan 21 14:41:05 2008 +0100 BUILTIN-FUSION: Flush pending signals before re-acquiring the lock in fusion_skirmish_wait(). commit 27cf09ac26f81da077933c818a329fa2512db372 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jan 21 12:51:37 2008 +0100 [drivers] Enable Close-On-Exec flag on file descriptors. commit c70c5be3d94c2268ba4fc1e5056759a876b29dc8 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jan 20 15:17:20 2008 +0100 [wave] On suspend, close the output file only if it is not a fifo. commit 6f0112d0cf0aea5b52e75322443f4d7c7911a1eb Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jan 20 15:16:31 2008 +0100 [alsa] Autodetect the pcm device name according to the channelmode. commit 56b7cc135472e60424b990a050cf64c9e656e9f6 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jan 20 12:21:02 2008 +0100 [music-providers] Limit the returned number of channels to FS_MAX_CHANNELS. [ffmpeg] Added AAC to the list of supported formats. commit 854d2e57da95b97826e70fd066dfb4c4d3fb1173 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Jan 18 22:27:06 2008 +0100 Welcome 1.1.0. commit 7fbdc4a63c9e2b3a9c400bc9ce93bdfef71414c9 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Jan 18 21:51:33 2008 +0100 [module] Added support for remote sessions and fixed a memory leak. commit 8e1ce1bdd1e1cbc57be4c90fe466efbd8abffa98 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Jan 18 21:37:57 2008 +0100 Link voodoo modules to libfusionsound. commit 9127366d361ae524411f4f496ab0e79cb5d8b802 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Jan 18 21:21:36 2008 +0100 [ffmpeg] Fixed incorrect timestamp computation. Also added ac3 to the list of supported formats. commit 2272d793c7cb186099db122e096a1364a3dd6620 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Jan 18 21:18:26 2008 +0100 [dpack] Avoid confusing conditions in the codec documentation. commit 0321bd2d2a81c4a73d22a7cfdcc3daccd888a883 Merge: f763b52 14b96b6 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Fri Jan 18 20:13:00 2008 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit f763b520dc525c1f6b7fa6ddf6a60a5efdb657a8 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Fri Jan 18 20:12:50 2008 +0100 IMAGEPROVIDER: Include <string.h>. commit d75283cb1f634d843e460dfff988f1bc3c9951ff Author: Claudio Ciccani <klan@directfb.org> Date: Fri Jan 18 19:57:35 2008 +0100 Preparing NEWS for FusionSound-1.1.0. commit 189d2c13379121f9842468ce2d7ed00cb68a269c Author: Claudio Ciccani <klan@directfb.org> Date: Fri Jan 18 19:35:13 2008 +0100 Revert version to 1.1.0. Forgot that the last released version was 1.0.0. commit 7477b9858f6731ee9cf55b75c2b6e86d569e348b Author: Claudio Ciccani <klan@directfb.org> Date: Fri Jan 18 16:30:01 2008 +0100 [dpack] Added support for channel coupling (can increase compression by 20%). commit 14b96b6a9019a296011db914eac5b666e93dace7 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Fri Jan 18 12:06:08 2008 +0100 DAVINCI: Better support for blended FillRectangle(), cleanups... commit 47f96d20c850a931b1f0d8a98561d84127e19a22 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Jan 17 12:46:38 2008 +0100 [ffmpeg] When packet timestamp isn't available, compute the current time using the packet length. commit 49187cec00f9e14b075610aeef8f4b49eb9df82f Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jan 16 23:14:07 2008 +0100 Updated manual page. commit e48c8cb3a42ad2de5be7c998615620b293ec97c9 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jan 16 23:04:39 2008 +0100 Removed duplicate options from help string. commit f4c4660b5ba83e1ab1e32cd3a6e6bc9179bc43f6 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jan 16 22:08:24 2008 +0100 [fsplay] Added keybindings to control the playback speed. Fixed also a bug that prevented the player from automatically quitting at the end of playback when running in quiet mode. commit 99dc8e1f4279b2ef477985c113678a7e7972293c Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jan 16 19:39:14 2008 +0100 [fsproxy] Added some options: --help, --version and --keep-alive. commit 40c63fa4d23d9e5e48770d8cd8a1bd1fd1475e8b Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jan 16 19:15:10 2008 +0100 [dpack] Split large blocks in packets of 576 frames (+1-5% compression). commit 98aa455e505dd68f4fe3f4f7d1a3b7c201964d9c Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jan 16 19:12:42 2008 +0100 [ffmpeg] Fixed S16 -> S32 conversion. commit 90085abff150f8384a54d5a9f77980828159d4b0 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jan 16 19:04:38 2008 +0100 [ffmpeg] Free the previous packet after seeking and before returning from the thread. commit 0af6058669bff179bcade2d33e952006c6977d37 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jan 16 18:41:47 2008 +0100 Modified the decoding loop to make it work with FLAC. commit 059e7d5e61a50752d66983b050efb86d280e5d72 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Wed Jan 16 16:49:58 2008 +0100 JPEG: Fix broken merge (merged but not ported). aea0bea25384584c6f30e2967d369be8116a6a5d JPEG: Implemented directly loading to NV16 surfaces staying in YCbCr space. commit 58c282e03f7cd2cdffdad2015bd55812422723d9 Merge: 783ce73 3fbbd91 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Wed Jan 16 16:45:37 2008 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 418d9ea78a622183c72f412e1d8a0f2713f55701 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jan 16 15:36:19 2008 +0100 Fixed a thread safety issue in set_master_volume()/get_master_volume(). Also silenced some warnings. commit 4906dcd76103197e74523237f87caf4442448514 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jan 16 15:23:27 2008 +0100 Fixed bug in av_read_callback(). The buffer position was not advanced upon successful reading. commit 5a952bf5ce527652b4dc274247d610b561447f44 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jan 16 15:19:37 2008 +0100 Provided a fread() compatible behavior to ov_read_callback(). This is done by clearing the remaining part of the buffer when the requested amount of data was not completely provided. commit 3fbbd911976ac59ce37c366631bce63d85da6a09 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Wed Jan 16 12:46:47 2008 +0100 SURFACE: Support NV16 in dfb_surface_dump() and so IDirectFBSurface::Dump(). [merged from old-surface-core-1.1] commit aea0bea25384584c6f30e2967d369be8116a6a5d Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Wed Jan 16 12:45:16 2008 +0100 JPEG: Implemented directly loading to NV16 surfaces staying in YCbCr space. No offsets, clipping or scaling supported. In my test (df_dok --load-image wood_andi.jpg) NV16 had a 34% advantage over RGB16 with this change. It has been the other way around before. [merged from old-surface-core-1.1] commit 783ce73133ade984952daa169180246cb15dd986 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Jan 15 23:18:52 2008 +0100 DAVINCI: StretchBlit() fix, FillRectangle() blended, progress on the caching front and more work behind the DVA (DirectFB Accelerated Video) scenes. commit 9c07e574535db5d86ef11bda0bbe7a18e2a2f306 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Jan 15 23:04:57 2008 +0100 CONFIG: Added option "[no-]software-warn" to show warnings when doing/dropping software operations. No longer print a warning when software fallbacks are disabled. Use the new option! commit aa1f5ffc61fcb99a2e64ad9750fcc1e666f73595 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Jan 15 23:03:50 2008 +0100 Cleanup .gitignore files. commit c4db0e64f9a5b830f0173d81c0011d13cd98dece Author: Claudio Ciccani <klan@directfb.org> Date: Tue Jan 15 17:50:00 2008 +0100 Avoid getting/setting the master volume when the device is suspended. commit 57273ac48d530aa2da6075a44cc24427497d97d4 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Jan 15 15:16:42 2008 +0100 Oops, there was an error in the documentation. commit 2e124adf8f054a2021b93bafdf1550318ae97f2e Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Jan 15 13:23:10 2008 +0100 Added missing "int n". commit 5d6d2a89d90233297a5f3f0b468ea80bd4d86334 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Jan 15 12:47:55 2008 +0100 HEADER: Don't define inline conversion functions due to void* arithmetic if C++ is used. commit 213517ebfa140ac3a2d6ece256c4ec96b3906712 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Jan 15 12:38:15 2008 +0100 DFBFX: Fixed copy'n'paste bug. commit 4d72b6c01ee44dfeb97f0dc0fb99ca3acfe1d4a4 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Jan 15 12:37:51 2008 +0100 HEADERS: C++ fixes. commit 227714c8df8e6f58591f2a3b111a188c983b412b Author: Claudio Ciccani <klan@directfb.org> Date: Tue Jan 15 10:32:02 2008 +0100 This could really be the 1.2.0, but actually is 1.1.1. commit f5f632350e8e2a154b14f73ddeba84f5f6943f47 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Jan 15 10:30:56 2008 +0100 Added options "[no]-dma" and "remote-compression=(none|dpack)". commit 238e960605332f146aa9a510d1009468adc23a9a Author: Claudio Ciccani <klan@directfb.org> Date: Tue Jan 15 10:29:41 2008 +0100 Here comes Voodoo Sound! Implements all FusionSound methods and supports compression. commit 67b1b556935a9ad5b9dd024fbb474546396da0d0 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Jan 15 10:20:48 2008 +0100 Do not limit buffer length to 10s. commit bc962d0fe5622746e4a26510a28cff010202724f Author: Claudio Ciccani <klan@directfb.org> Date: Tue Jan 15 10:19:23 2008 +0100 Follow API changes. Fixed mono/stereo to dolby conversion. commit 027ebf47dfd53320199997b8d58ff2ab15805b57 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Jan 15 10:17:42 2008 +0100 Advancing FusionSound API. Main API -------- Added IFusionSound::GetLocalVolume()/SetLocalVolume() to set a local volume level applying to the playbacks created by the process. Added IFusionSound::Suspend()/Resume() to suspend/resume fusionsound. Added IFusionSoundStream::Access()/Commit(), implementing direct memory access to the ring buffer. Modified behaviour of IFusionSoundMusicProvider::GetBufferDescription(), the length refers to the whole track now. Internal API ------------ Implemented Direct Memory Access to the output device. CoreDevice::Write() is replaced by CoreDevice::GetBuffer()/CommitBuffer(). Actually real DMA is only supported by the ALSA driver. Added CoreDevice::Suspend()/Resume(). fs_device_initialize() takes a CoreSoundDeviceConfig as argument, now. Added fs_core_set_local_volume/get_local_volume() and fs_core_suspend/resume(). Removed fs_core_start(). Fixed Mono/Stereo to Dolby conversion: previously fusionsound was simply ignoring the center channel, causing the output signal to be moved to the left (indeed, center=0 means left and center=1 means right). commit 97b0f17f3265f08e2fe938099d59291d21c07c48 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Jan 15 10:05:03 2008 +0100 Added option -d, --depth to force output format depth. commit 18b15a9003153b4c9e604888f080a8a2cd2df666 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Jan 15 08:29:11 2008 +0100 [builtin-fusion] Cleanup socket directory and shm files on exit. Return DFB_FUSION instead of DFB_DEAD if the recipient is unreachable. commit 3f726505d53b68f4f506fe30b39436b3adac848a Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sun Jan 13 14:11:09 2008 +0100 SH7722: Step back to RGB as default input color space until we can switch dynamically and maybe automatically. This means all Inputs (3 Layers) and Windows on MultiWindow Layer (4th) can be (A)RGB, only Input 1 can be configured to NV12/NV16... Many cleanups, new macros etc. commit 6abd2846eebb06a1744fbc9515f95237b8587b04 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sun Jan 13 11:02:05 2008 +0100 Cleaned up LCD Buffer Setup Code. A variable for selecting between RGB16 and NV16 is in the code. Clear LCD Buffer after allocation with black using memset, one for RGB16 and two for NV16. commit 890f8bb71477aaba7d2621cdc6605863cb4b3018 Merge: 0eca8a2 bd08a3e Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Thu Jan 10 04:25:41 2008 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 0eca8a246c4ed8df3f5b1b94ce2067b559f27eaa Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Thu Jan 10 04:25:33 2008 +0100 INPUT: Added dfb_input_event_type_name() and event debug at Core/Input/Evt. commit ef3dcdaf776d204519dd171adf9292db57da8813 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Thu Jan 10 04:24:40 2008 +0100 DEFAULTWM: Combine multiple x and/or y motion events before sending events or updating the cursor. This is a better way as opposed to have the driver do the work, otherwise there was too much cursor acceleration in such a case. commit d63edceff38d3ba40dad7588faf04b83f689c632 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Thu Jan 10 04:16:23 2008 +0100 LINUX-INPUT: Set DIEF_FOLLOW on all events known not to be the last. commit a37b95f3d6a7dd1c3723244a08e23081f9e818d1 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Thu Jan 10 04:03:56 2008 +0100 CORE: A bit late ABI++ after last clipping feature in gfxcard.c. commit bd08a3e3edb113a9f360e6ac73c432c15d1d92b6 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Wed Jan 9 23:38:32 2008 +0100 DAVINCI: Fixed sub directory used by wrapper Makefile.kernel. commit d699b968396c9c8e494b2cf06eff74718f7abe9f Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Wed Jan 9 10:54:12 2008 +0100 CONFIG: Don't enable mouse motion compression at input drivers by default. commit 47658336e8fb38f259af9d60e110671c07769ed0 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Wed Jan 9 10:52:36 2008 +0100 IDirectFBImageProvider: Don't fail if PeekData() is not supported, same behaviour as video providers... Thanks to Daniel J Laird! I also added clearing the context struct for safety, especially regarding the header data which might not be read in completely. commit f9dfac2d159229fd57fcebb6ba87b15b79c7c6d8 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Wed Jan 9 06:17:28 2008 +0100 DIRECT: Move default log instantiation into DirectLog code. commit e5d3a344e30efbf5f0fd8ac6741155cdf2bdf788 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Wed Jan 9 06:15:06 2008 +0100 DAVINCI: Added experimental ioctl similar to the flip ioctl, just testing, could not find the original flip ioctl so far. Arguments are: - byte offset from frame buffer device base OR a physical address - optional target sync count when to show the frame - returns sync count of actual setting or 0 if pending commit 54bbd5beb8e324fd9c38357b5f2cc0836404fee3 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Wed Jan 9 05:22:15 2008 +0100 DAVINCI: Fixed recently broken blend and new colorize. commit bc2506ff29f855df43af096758c065c98784f289 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Wed Jan 9 05:21:36 2008 +0100 DAVINCI: Minor cleanup. commit 64ecce22f31da6f88dc140ad6177c7fdc8f6e89e Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Wed Jan 9 01:30:03 2008 +0100 DAVINCI: Added colorizing support to blend functions. No additional cycles in DSP :) commit 484b3777238cf2b49c5d4fc51e66016eba21a5b7 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Jan 8 12:30:58 2008 +0100 DIRECT: Fixed missing declaration of debug functions when debug support is enabled, but no debug active. commit 7a15814e056c9411b7269eb5c6649cd43521b71a Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Jan 8 07:08:42 2008 +0100 DAVINCI: Fixed incomplete header file update. commit cb1a784ac6ce868176a98ec71dc02c27726d6c9b Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Jan 8 07:01:58 2008 +0100 DAVINCI: More acceleration (StretchBlit for ARGB, ARGB/RGB32->RGB16 conversion) and fixes. Added properly clipped (phases!) StretchBlit() for ARGB and RGB32 without any blitting flags. Added ARGB/RGB32 conversion to RGB16 without any flags (currently writing alpha data to scratch area). Fixed color calculation for filling/drawing to UYVY. Moved write back from EngineSync() to EmitCommands() as there's no guarantee for EngineSync() to be called :( More tests for DSP internal MPEG2 functions. Only run DSP test code if C64X_TEST is exported. commit 45b8a0975257cdcee16b92dc161107754b2c02f9 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Jan 8 06:36:10 2008 +0100 DAVINCI: Added davinci_c64x_write_back_all() after davinci_c64x_dither_argb() for OSD updates. commit 88e33559fe7521794f37fabfe1103a23ae6d3ea1 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Jan 8 06:28:28 2008 +0100 DIRECT: Fixed 'log-file' and 'log-udp' option. commit 322f0fe1dd9aeb538e675a4137a5c80e8668fa9c Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Jan 8 06:20:53 2008 +0100 FONTS: Added minimum glyph alignment of 8 bytes. commit fd3a4151a9b9e0ec8fe94d93d06da364e04a3013 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Jan 8 06:16:24 2008 +0100 GFXCORE: Added mask of clipped functions to internal CardCapabilities (gfx drivers). Instead of providing clipping for none or for all functions (CCF_CLIPPING) a driver can set individual functions to be hardware clipped, e.g. DFXL_STRETCHBLIT where clipping is crucial. commit 2c7096c217f15136cf9e5e3a4f36709fb1fc55fe Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Jan 8 06:02:53 2008 +0100 LAYERS: Only sync with accelerator in dfb_layer_region_flip_update() when DSFLIP_PIPELINE is not set. commit df15f4ba6ad4d7dd964d61b85ea3b651168ceb1a Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Jan 8 06:00:39 2008 +0100 GENERIC: Print blend funcs in warning caused by 'no-software'. commit 5b2fb854ee2a57408059778d1bdd88e063d085a6 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Jan 8 05:59:41 2008 +0100 Added option "-ds" for dumping surfaces. commit 98f761d339c6cd7e6f8c37e3e32b2f617eec8013 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Thu Jan 3 21:09:11 2008 +0100 SH7722: Use VEU for scaling and format conversion of JPEG decoded data (line buffer mode). Support 4:2:0 and 4:2:2 to - NV12 - NV16 - RGB16 - RGB24 - RGB32 Allocate two line buffers (2560x16 pixels). Let JPU decode into line buffers. Each line buffer (16 lines) will be converted by VEU to destination surface. CPU, JPU and VEU can work in parallel (loading coded data to reload buffer 0/1, decoding data to line buffer 0/1, converting from line buffer 0/1 to destination). Conversion is enable using one the new flags: SH7722_JPEG_FLAG_CONVERT. Less overhead for smaller JPEGs. Only request further reloads if data is available, i.e. if any GetData() returns less than SH7722_JPEG_RELOAD_SIZE, clear SH7722_JPEG_FLAG_RELOAD. Cleanups. commit 93136ba54a7b7d0ce835526e5e9c5a12e2aaab56 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Thu Jan 3 20:40:46 2008 +0100 DEBUG: Cleanup header. commit 04a16a088f0b8af2754109e9e949359401a83a82 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Thu Jan 3 11:01:39 2008 +0100 MPEG2: Removed MPEG2 I-Frame Imageprovider. Patch by Daniel J Laird - daniel.j.laird _ nxp.c0m commit 32673352738ecfb030181fc689e8a537a205bd29 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Thu Jan 3 10:51:13 2008 +0100 ignore commit c23c88c7f76e9f7a2ffa12a0d87979f8bea8a8b7 Merge: ff62e5a 0825352 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Thu Jan 3 10:04:33 2008 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit ff62e5a349bd043152ff014f767456be7fc8dfce Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Thu Jan 3 10:04:23 2008 +0100 SH//22: Kernel based state machine for less overhead and latencies. After filling the first reload buffer, execution enters the kernel which starts the decoder and only returns to user space for - end of decoding - error in decoding - less than two buffers loaded or in use (reload) commit 6b54439ba5f9c613f6f20f3105cffb2ecfb3f044 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jan 2 14:22:54 2008 +0100 Added option -q, --quiet. Avoid deinitializing fusionsound from a signal handler. commit 0825352a4de6e3d8abaf41a6105ceaa5df43b518 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jan 2 14:20:21 2008 +0100 [builtin-fusion] Replaced usage of getpid() by direct_gettid(). commit 561c4a9099115bdf921c2b5ea7d95e8c4cb45fa7 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jan 2 12:49:19 2008 +0100 Handle option [no-]thread_block_signals in direct_config_set(). commit a5d3346339b9fe3197fb216447e42c87b7fe19f8 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jan 2 11:45:14 2008 +0100 Check whether mount point is writable in find_tmpfs(). commit 7818ff8c8b5578de135c61389c43f87ff7e1747b Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jan 2 11:37:35 2008 +0100 Include directfb_util.h (defines dfb_pixelformat_name()). commit 3a36cc5ae838fb012a0d63943f92dde5244359b6 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Fri Dec 28 23:27:51 2007 +0100 fbdev: Fixed missing include. commit 69f61b2cc7b4b22f490895953a8b58454398096c Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Fri Dec 28 23:25:48 2007 +0100 IDirectFBInputBuffer: I thought I built this code already... commit 2a41f52a00240644a49f65dfb6f7e02b21210c4e Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Fri Dec 28 23:25:14 2007 +0100 libdirect: Fixed warnings. commit a01254eb17bad26ac6025e56f701aa09fc3a6dc4 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Fri Dec 28 23:16:52 2007 +0100 Fix for C++. commit 19f3486f6b14a573dc6c9d1ffd43f5edb270ddbd Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Wed Dec 26 04:08:07 2007 +0100 SH7722: JPEG enhancements - Decode header in Construct() - Utilize reload buffers properly (fill one while hw reads the other) - Support NV12 and NV16 (4:2:0 and 4:2:2 images) - Added locking for JPU usage commit 8f1ac453e7bc13b78ad8ac87a3ed6e680c6954f8 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Wed Dec 26 04:00:57 2007 +0100 DEBUG: Missed one line in last commit (adding debug messages). commit f23610b51e7d099bd129afa4a9b802133316dc99 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Mon Dec 24 04:28:23 2007 +0100 DEBUG: Further cleanup of debugging code. New minimal debug mode to support D_DEBUG_AT, D_ASSERT and D_ASSUME when debug support is disabled, but DIRECT_ENABLE_DEBUG or DIRECT_FORCE_DEBUG have been defined. No domain filters, just formatted output (all or nothing). commit f3fdc7435788346515d993651abc3640d05d4db6 Merge: 75dd9d7 3afd652 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Mon Dec 24 02:45:51 2007 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 75dd9d767f1e0a0317c251aafe257a00e58ee697 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Mon Dec 24 02:45:29 2007 +0100 LINUX-INPUT: Fix redefinitions by moving up kernel headers. commit 3afd652d8be162b15ec2fbfd6921af95f48de763 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sun Dec 23 16:11:30 2007 +0100 SH7722: Experimental JPEG decoding (first working version) and other enhancements and fixes. Changed the LCD buffer from RGB16 to NV16 to improve image quality with same amount of data. BEU generates YCbCr 4:2:2 content, LCDC converts and sends RGB18 data to the display (at least on AP325). Switched BEU to YCbCr input by default, thus allowing only the first layer to be (A)RGB. Implemented LUT8 support for the third layer. Added lock for BEU code called for different layers. Automatic parent input system selection and other fixes, allowing to run df_fire on third and df_dok with alpha channel on first layer. Fixed byte swapping issues, e.g. no more swapping between BEU and LCDC, correct swapping of BEU input depending on number of bytes per pixel. Added experimental first working version of hardware JPEG decoding: /* * FIRST WORKING VERSION [tm] * * Almost user space based only. To NOT USE usleep() & friends and loose throughput (sleep) or * CPU resources (busyloop), I added an ioctl that waits for the next interrupt to occur. * * With a 128x128 image (23k coded data) being loaded in a loop, this temporary mechanism is * achieving almost the same throughput as a busyloop, but with only half the CPU load. * * TODO * - prefetch image info with a state machine used by Construct(), GetSurfaceDescription() and RenderTo(). * - utilize both reload buffers properly (pipelining) * - implement clipping, scaling and format conversion via VEU (needs line buffer mode) * - add locking and/or move more code into the kernel module (multiple contexts with queueing?) */ Kernel Module - Added SH7722GFX_IOCTL_WAIT_JPEG to wait for the next interrupt. - Added JPU IRQ handler: save interrupt status in shared memory, clear interrupt and wake up waiter. commit 65040dc9d34566454f94be4d1b1f47f57dd9a7c0 Merge: 1c82251 5a3d3e3 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sun Dec 23 13:22:13 2007 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 1c82251e77e13038ee4c4c94401efef8361165e9 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sun Dec 23 13:22:03 2007 +0100 DEBUG: Added "[no-]fatal-break", d_debug_at() and direct_debug_at_always(). The new runtime option was added to enable/disable the trap in D_BREAK(). Even without debug support (but text) in libdirect, changing one D_DEBUG_AT() to d_debug_at() - which is a single shortcut in my SlickEdit - will bypass the check for the domain or any debug macros and directly print out the message. The new function direct_debug_at_always() is called by the new d_debug_at() macro unless text support is completely disabled, e.g. configured with "--disable-text". Added static inline debug_domain_vprintf() to clean up debug message printing code a bit and optimize it, saving two intermediate printfs, one for "%s:" (domain name) and the other for the final format string. Domain less D_DEBUG() messages are using the same format/function now (domain "- - "). commit fa5937bedd463cf6ffdc8c84376e3da3de956563 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sun Dec 23 08:03:27 2007 +0100 FREEDOM: FusionSound does not require DirectFB anymore. libdirect and libfusion are enough to use FusionSound now. Use SYSCONFDIR and call direct/fusion_config_set() as a fallback for fs_config_set(). Cleanups. commit 4188893f40f3aee78ceeca7b4363571965f14fbe Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sun Dec 23 07:33:00 2007 +0100 EXAMPLES: Fixed usleep(0). commit 5a3d3e31a74db36395cdeba13a4fed83198fb1f5 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sun Dec 23 06:58:48 2007 +0100 CONFIGURE: Show $SYSCONFDIR in summary. commit 154f272eb2173a41f5a2289e3e92c019ac47a6d9 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sun Dec 23 06:58:10 2007 +0100 DIRECT: Added MODULEDIR to direct.pc, until this becomes configurable for each package. commit 81316724cab757636ac25361ceba312f86cc733f Author: Marc Kleine-Budde <mkl@pengutronix.de> Date: Fri Dec 21 09:50:08 2007 +0100 add AC_SUBST(LD) to configure.in $(LD) is used in Makefile.am, but when using libtool $(LD) sems not to substituted automatically. This patch adds the missing AC_SUBST(). Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de> Signed-off-by: Denis Oliver Kropp <dok@pengutronix.de> commit f683452e5227b1cd4934b700b0a79c24d71060f6 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Mon Dec 17 18:13:14 2007 +0100 Fix unconditional use of SA_SIGINFO, thanks to Samuel Thibault! commit 5551b51ff8dfb0b4f4c5cf287a34ec20d5247b1b Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Mon Dec 17 18:10:02 2007 +0100 MAKE: Clean autogenerated header files on distclean, thanks to Tobias Grimm (now really). commit 84cde36d56107d8f66184597ff5b135677833fd9 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Mon Dec 17 18:07:42 2007 +0100 Install HTML docs, thanks to Guillem Jover! commit 60e5be4e3122cdc219898caaac92d61be8806e60 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sat Dec 15 19:01:54 2007 +0100 BUILD-OPTIONS: Set smooth scaling to 'no' if software rendering already is. commit dbb7b400a84b1579a9e6193eed59f3a5bfbaedfe Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sat Dec 15 18:56:20 2007 +0100 BUILD-OPTIONS: Added "--without-software" to save 100k+ binary size if really not needed. commit d30a1839d517612fdfbd806f206517375193a2ff Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sat Dec 15 18:33:51 2007 +0100 DIRECT: Fixed warnings for building with DIRECT_BUILD_TEXT set to 0. commit 3e6f6e2be975a9abee6d2d9321917192fbcb13b0 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sat Dec 15 16:38:49 2007 +0100 Generated ChangeLog for 1.1.1. commit c3a7068532972d18feaf0efd82aef2db04bd96d7 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sat Dec 15 16:31:05 2007 +0100 Updated NEWS for 1.1.1. commit d361c4dc7adb7b255655d31574f282348695d65d Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sat Dec 15 16:25:15 2007 +0100 Do not use PAGE_SIZE at all on Linux, thanks to Guillem Jover. commit a206e44a9a7067f2deec0e09323b4176f51268b4 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sat Dec 15 16:24:52 2007 +0100 Use <type> instead of __<type>, thanks to Guillem Jover. commit a27f1df63f3718d3ebcc2ede5cbf10b758a2ebea Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sat Dec 15 16:24:16 2007 +0100 Add missing libsysfs when statically linking, thanks to Guillem Jover. commit 793e98018bb03505a74b906830e4e375fabc63de Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sat Dec 15 16:23:52 2007 +0100 Do not leak private labraries for dynamic, thanks to Guillem Jover. commit e6490162e1938988e4149b2a4e2946cbc3eb0b6d Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sat Dec 15 14:21:27 2007 +0100 RUNTIME-OPTIONS: Added "[no-]autoflip-window" to automatically flip non-flipping windowed primary surfaces. Previously, the default was to automatically Flip() in a thread. Now it's not. commit 9a8e201d180d2b170e1d3b01180b538aac796d4d Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sat Dec 15 14:08:51 2007 +0100 BUILD-OPTIONS: Added "--with-smooth-scaling", turned off by default to avoid 100k+ binary size increase. commit 220dc9c20ed8aad4437b14df62ee9cc518bd9621 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sat Dec 15 13:47:37 2007 +0100 SOFTWARE-RENDER: Added missing header files in Makefile.am. commit 004fde4d425b936a8496be90f263f6156c1e4103 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sat Dec 15 13:47:06 2007 +0100 DAVINCI: Added missing kernel module Makefiles. commit 5e3e18881b83c0ded4296523eb585d02928a33fb Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Thu Nov 29 13:53:34 2007 +0100 IDIRECTFBDISPLAYLAYER: Pass down resource id (DWDESC_RESOURCE_ID) in CreateWindow(). commit 33f6701408c0790cd1341b5ee5a664d438a63dde Author: Claudio Ciccani <klan@directfb.org> Date: Tue Dec 11 19:36:29 2007 +0100 Optimized pixel premultiplication. commit 6cffc100034190a068b4fa2efb67ab96e01fbdfd Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sun Dec 9 22:17:18 2007 +0100 SURFACE-CORE: Added CSALF_VOLATILE and CSALF_PREALLOCATED. Reimplemented "thrifty-surface-buffers". The "thrifty-surface-buffers" option is implemented by iterating through all allocations at the end of an update_allocation() and deallocate all other allocations, unless they have the CSALF_PREALLOCATED flag. In the latter case it would not be a benefit, but the disadvantage of losing an allocation that is still up to date and would probably be faster (CPU read) than others. => The 'preallocated' surface pool sets CSALF_PREALLOCATED upon allocation. Another flag CSALF_VOLATILE has been introduced. In case of a write access to one allocation, any other allocation is deallocated if it has the flag. This is independent of the "thrifty-surface-buffers" option. => The 'local', 'shared' and 'preallocated' surface pools set CSALF_VOLATILE upon allocation. That means the preallocated surface buffers are kept as long as they're still up to date with other allocations (copies of them), e.g. an image resource loaded into accelerator memory, never written to, but read from by GPU as well as CPU. As soon as one of the allocations has been written to, the preallocated buffer becomes useless, if we cannot write back to it (which we don't as there's not yet a way to specify read/write permissions when creating preallocated surfaces). commit f33f1333a34f92faeadbd1c604506de81d499edd Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sun Dec 9 15:02:38 2007 +0100 DAVINCI: Use D_PERROR() if FBIO_GET_TIMING fails. commit 0c40638344664973b66e1760edede0a812fd796b Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sun Dec 9 14:55:56 2007 +0100 DAVINCI: Revert header changes made to fix build on newer kernels. Instead workaround it without changing the resulting ioctl number. commit b037a96795eb528ac451047eae2cd39ff295b758 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sun Dec 9 10:27:57 2007 +0100 SH7722: Fixed debug build. commit a58ecc1c555a181957af2bc78a37f0b3da3b541c Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sun Dec 9 10:27:32 2007 +0100 UNICHROME: Fixed a warning. commit 443a095ed4ab72aa1bf735b28e2e086312f279bc Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sun Dec 9 10:27:01 2007 +0100 DAVINCI: Build fixes. commit b1b8bed6448c8d06d819a2319e7caf566cd5a766 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sun Dec 9 10:15:52 2007 +0100 DAVINCI: Removed junk from Makefile. commit 89d526030502850095cdb611b43ce1011a15413e Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sun Dec 9 10:06:14 2007 +0100 DAVINCI: Hardware acceleration using the DSP with a special firmware and kernel module. The DSP runs an ~8k firmware (in L1 cache) and provides different functions. These are called by writing a command packet into the 512k command queue in memory. Each function can have up to seven 32 bit arguments, up to eight flags and a sub function index of 8 bit. There's a low and high priority queue, but only one is implemented at the moment. The idea is that the high priority queue can preempt the low priority queue at any time when a command is added. The low priority queue can only continue when the high priority queue is empty. There are no interrupts from DSP nor to it so far. Waiting for a free queue entry or for an empty queue uses usleep() at the moment, but it's working quite well. An interrupt handler and a few ioctls() should be added. Text rendering is just white at the moment. Blended rectangle filling will be implemented. Graphics Layer updates from ARGB to RGB16/A3 (dithered) planes are done by the DSP, very fast. We're mainly working on MPEG2 at the moment... Benchmarking with 256x256 in 16bit mode... (16bit) Fill Rectangle 20.936 secs (* 59.788 MPixel/sec) [ 7.4%] Fill Rectangles [10] 23.168 secs (* 61.383 MPixel/sec) [ 0.3%] Fill Spans 3.136 secs (* 45.975 MPixel/sec) [ 1.2%] Blit 25.328 secs (* 48.127 MPixel/sec) [ 9.0%] Blit colorkeyed 25.542 secs (* 47.724 MPixel/sec) [ 8.8%] Benchmarking with 256x256 in 24bit mode... (32bit) Anti-aliased Text 3.020 secs (* 138.278 KChars/sec) [ 99.3%] Anti-aliased Text (blend) 3.040 secs (* 139.736 KChars/sec) [ 99.3%] Fill Rectangle 31.360 secs (* 37.825 MPixel/sec) [ 4.7%] Fill Rectangles [10] 32.120 secs (* 37.950 MPixel/sec) [ 0.1%] Fill Spans 3.270 secs (* 32.066 MPixel/sec) [ 0.9%] Blit 39.580 secs (* 29.307 MPixel/sec) [ 5.3%] Blit colorkeyed 35.560 secs (* 32.989 MPixel/sec) [ 6.0%] Blit with colorizing 39.600 secs (* 29.292 MPixel/sec) [ 5.7%] Blit from 32bit (blend) 36.960 secs (* 31.562 MPixel/sec) [ 6.0%] Blit from 32bit (blend) with colorizing 36.960 secs (* 31.562 MPixel/sec) [ 6.3%] commit 6f65946fe5387834ec996e8ba7426237337bc1cd Merge: b840827 c426dac Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sun Dec 9 06:12:25 2007 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit b840827a900828b5c17d66ca279da0d3f319ef20 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sun Dec 9 06:11:02 2007 +0100 FUSION-SHM: Added "ramfs" to possible types during mount point probing. commit 83ae918134e0c4a696f6a43f2d3903da5caff42b Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sun Dec 9 06:08:41 2007 +0100 DEBUG: Added checks if debug support is disabled. If DIRECT_ENABLE_DEBUG is defined, silently undefine it. If DIRECT_FORCE_DEBUG is define, show a warning and undefine it. commit d05a59cd5d36e679e1bda42bfd15522dbe2c4c97 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Fri Dec 7 21:35:00 2007 +0100 COMA: Added ComaNotificationFlags with CNF_DEALLOC_ARG for convenience. Most dispatch callbacks just deallocate the notification data (arg). The new flag will save a lot of code. commit d50cad49eb2bbfbbf0e685e5d3c4d2e23b3ade9c Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Fri Dec 7 19:27:06 2007 +0100 COMA: Fixed copy'n'paste error in generic call generating macros. commit c426dace42831c7a2fb96801d00e86fcd2d8223b Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Thu Dec 6 16:53:39 2007 +0100 GRAPHICS: Skip prechecking clip in FillRectangles() if DSRO_MATRIX is used. Other functions are also affected, but not fixed. commit 32ed166b03bf2d0dc33fb65562788b1e3e22eceb Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Thu Dec 6 14:05:28 2007 +0100 SH7722: Implemented DSRO_ANTIALIAS for all drawing operations. The hardware provides "anti-aliased" lines by drawing a line with doubled pixel width (minor axis). This should be drawn with a transparency factor. Finally the original line is drawn on top of this. For filled rectangles and triangles, only the double width line is drawn and then the shape is filled. Fixed off-by-one in rectangle outlines. commit 992ed320a16aa7c804873aab95a9acdf0617849c Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Thu Dec 6 13:30:08 2007 +0100 API: Added DSRO_ANTIALIAS to enable anti-aliasing for edges, lines... commit 9285afb3671ffab0048fdf2308be5db08621a95b Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Thu Dec 6 13:29:18 2007 +0100 FONT: Fixed "no-font-premult" option. commit 35ccb45aecdebd6b7f3d5993967fa38777a561e0 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Wed Dec 5 16:31:24 2007 +0100 SH7722: Need to transform coordinates in DrawRectangle() and DrawLine() in software. commit 4814087e8b95e4710c031a3b049c1af80a5d671e Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Wed Dec 5 16:30:20 2007 +0100 IDirectFBSurface: Changed matrix entities from u32 to s32. commit 60e32cc311099ddc56b75ddc16cd7e170de17948 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Wed Dec 5 15:25:40 2007 +0100 IDirectFBSurface: Set render options temporarily to DSRO_NONE in Clear(). commit 8e283719a15f726558df0c8a962f7f77b4ae7075 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Wed Dec 5 13:46:19 2007 +0100 FUSION: Fixed warning about unused pGroupInfo. commit f0b84341906c5033c1b33c3311a39a972bdba4f4 Merge: f00efe8 127ec41 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Wed Dec 5 13:34:54 2007 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit f00efe82b5f1c01f9b27201432835093651d824a Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Wed Dec 5 13:34:47 2007 +0100 SH7722: Implemented 3x2 transformation for drawing and blitting. Use hardware 3x2 matrix to implement DSRO_MATRIX. Cleanups. Flush cache in ISR, not every EmitCommands(). commit 07208f80501755476cd50e2b1d31da6bc82eff7c Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Wed Dec 5 13:32:27 2007 +0100 IDirectFBSurface: Added 3x2 transformation for all drawing and blitting. Added render option DSRO_MATRIX and IDirectFBSurface::SetMatrix(). The matrix consists of 3x2 fixed point 16.16 values. The order in the array is from left to right and from top to bottom. All drawing and blitting will be transformed: X' = X * v0 + Y * v1 + v2 Y' = X * v3 + Y * v4 + v5 commit 127ec410b49e105163fca186e3335c8d9fe2490d Author: Claudio Ciccani <klan@directfb.org> Date: Sun Dec 2 14:26:06 2007 +0100 BULTIN-FUSION: chown() the sockets directory according to "shmfile-group". commit 9347510b5210fad8d9eb3c5bef2393257a6882ed Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sun Dec 2 09:13:01 2007 +0100 SOFTWARE-RENDER: Fast RGB32/ARGB to RGB16 conversion (little endian). commit 130dbc483c09c858eb27988fa9a50720810336ae Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sun Dec 2 08:59:25 2007 +0100 TSLIB-INPUT: Check the device in $TSLIB_TSDEVICE when guessing (no option given). commit 51a848f4bcbb454b0579758d26719f38791f7d81 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sun Dec 2 08:57:29 2007 +0100 LINUX-INPUT: Ignore input devices matching the TSLIB_TSDEVICE environment variable. commit 2b5aad59838538682ab06dc405ed37a49d386e59 Merge: 5241ef1 63a2d8e Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sun Dec 2 08:25:45 2007 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 5241ef1027caac77535253f72bdb70a2c4add454 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sun Dec 2 08:25:14 2007 +0100 WM-DEFAULT: Added WM key combo <Meta>-<F12> to redraw the whole window stack. commit 63a2d8e8363adc7acc8dd78e9b9e784652dbb421 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Dec 1 15:56:26 2007 +0100 [Builting Fusion] Moved socket directory from "/tmp/fusion.#" to "/tmp/.fusion-#". Change socket ownership according to shmfile group. Speed up fusion_call_execute(FCEF_ONEWAY) by not creating a new socket. commit fb5a9c5cac676c51c04bc340c7921ef17fa8d5f4 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Dec 1 15:52:18 2007 +0100 (Pre)Parse shmfile group in fusion_config_set(). commit 333b038f55b5c6e62ca8e827b490b9e7c62cfcfe Author: Claudio Ciccani <klan@directfb.org> Date: Sat Dec 1 13:00:26 2007 +0100 Avoid stopping and restarting playback when destination stream/buffer is the same as the previous one and playback is already running. commit 9fa548c28b76a667c3425f603695e365f92b8483 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Dec 1 12:37:29 2007 +0100 [Builtin Fusion] Enable sleeping in fusion_property_lease()/purchase(). commit f50e96923f50c9430d33e8e3d2b979b74803d99c Author: Claudio Ciccani <klan@directfb.org> Date: Sat Dec 1 12:36:10 2007 +0100 [Builtin Fusion] Fail in fusion_skirmish_notify() if playback was destroyed. Sleep for at least 10ms in fusion_skirmish_prevail(). commit a37f0aeb4d50f48b9b06fb55c9062fef95988b05 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Dec 1 12:32:57 2007 +0100 Removed redundant locks in fs_core_add_playback()/remove_playback(). commit b5898ff1d5c8d01ab6fd8e8872d4edc9d98c9685 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Fri Nov 30 15:10:03 2007 +0100 DIRECT: Use direct_log_lock()/unlock() to ensure stack traces are one contiguous block. commit 084bc400befc0c03a115deaca1e196b25217c4f5 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Fri Nov 30 15:08:34 2007 +0100 DIRECT: Added direct_log_lock()/unlock() for ensuring multiple prints are not mixed with others. commit 93befe97085f492be31534e019f4417863755334 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Fri Nov 30 15:07:34 2007 +0100 DIRECT: Create default log object. commit 96869c86a02a9cf99a4ac5170a4c49fd316eab25 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Wed Nov 21 10:30:33 2007 +0100 SH7722: Added missing Makefile and .gitignore file. commit 94bd42fab1a1c3dd30df8bd9fb7567f9d9b731e4 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Wed Nov 21 02:56:10 2007 +0100 Fixed warnings and added more safety in generic rasterizer about blend functions being array indices. commit 0d04944ae20ebed62ca0fa3b53b316e64c83581e Merge: 5bb065a 0b83ac2 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Wed Nov 21 02:22:25 2007 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 5bb065a3469a4a2479d35f54a6dd5ae3605e29e0 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Wed Nov 21 02:22:14 2007 +0100 API: Added DSBF_UNKNOWN for mknames.sh's sake. commit afb035127e738f3cb94cab19485d32a9239b702a Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Wed Nov 21 02:19:49 2007 +0100 MKNAMES: Reverted change that made mknames.sh output '0' instead of the identifier for it. C++ doesn't like it and it's too bad for working around enums without a null identifier. commit 0b83ac212dd46f69fd75adf180e951695a61d07c Author: Claudio Ciccani <klan@directfb.org> Date: Tue Nov 20 19:05:49 2007 +0100 [Builtin Fusion] Implemented fusion_reactor_set_dispatch_callback(). commit 3a86b35b9222eb987744a5737366b9ecc430c138 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Nov 20 12:44:45 2007 +0100 CONF: Fixed warning in config_values_parse(), check for D_STRDUP() result with D_OOM() in case of failure. commit a00d8d052a042c0abdce48d3d86444bcdbe039d6 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Nov 20 03:52:04 2007 +0100 GFXCORE: When resetting the 'checked' flags also reset the same in 'accel' flags. commit 7d693457a0019c1d85ca2d774502a1f20495408f Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Nov 20 02:06:54 2007 +0100 MKNAMES: Made it output '0' instead of an identifier for termination. commit 9b2a22be5939de079fc6a216b4cf5c8321abc8dc Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Nov 20 02:05:03 2007 +0100 DFBFX: Added more options: source, destination, color, srcblend, dstblend. commit c8a35841d38b650bb999973b4621365bb86b6356 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Nov 20 02:03:57 2007 +0100 MKNAMES: Moved mknames.sh to the 'tools' top level sub directory. Made it output '0' instead of an identifier for termination. Added DFBSurfaceBlendFlags. commit eff7d38d602c8b6a518b20b0a40d72586b521837 Merge: abe3853 77e2a1c Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Nov 20 00:01:16 2007 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit abe3853c06859b53185df2fe54f871c52024687c Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Tue Nov 20 00:01:09 2007 +0100 Fixed warning. commit eb6ff8047767596810182123a07f43b43c511ef0 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Nov 19 16:02:35 2007 +0100 Execute START call in ONEWAY mode. commit 77e2a1cabccad357cb3b3be58efe37e244137b72 Merge: 0de9e90 beba5ac Author: Claudio Ciccani <klan@directfb.org> Date: Mon Nov 19 16:01:15 2007 +0100 Merge branch 'master' of git+ssh://directfb.org/git/directfb/core/DirectFB commit 0de9e90ad729bef0141e4d7e4ecea36500b67c2c Author: Claudio Ciccani <klan@directfb.org> Date: Mon Nov 19 15:59:41 2007 +0100 [Builtin Fusion] Honor FCEF_ONEWAY in fusion_call_execute(). Execute ref watcher with the FCEF_ONEWAY flag. Avoid blocking in _fusion_check_locals(): instead of removing dead references while iterating the list of fusionees, build a local list of references that must be removed and process them later. commit beba5ac47474e45b821362444fb31978a7183e17 Merge: 51a97f4 d7b6ca4 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Mon Nov 19 15:51:15 2007 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 51a97f42b4a0c3c62a7fd064c02aca0c5d3e4c35 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Mon Nov 19 15:50:45 2007 +0100 DIRECT: Call DEFINE_INTERFACE() for IAny properly, i.e. with a comma at least. commit 48b9685723c6058317805148b6623e3f8a1b47b3 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Nov 19 12:05:46 2007 +0100 Define "attribute_deprecated=;" only for ffmpeg music provider. commit d7b6ca4e98a40932517e6a166bb2f4d5c28ecf79 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sun Nov 18 11:17:34 2007 +0100 DFBFX: Provide two example states, the new premultiplied font rendering and the old broken (for dstalpha) one. commit ea07fe7128ee5f482e8705c7c19c078d6abf068f Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sun Nov 18 02:42:31 2007 +0100 fx is replaced by dfbfx and gets installed. Documented code. Ongoing command line parsing... commit 289295be51a0077e11e7ef0e72fe650363395df9 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sat Nov 17 21:18:59 2007 +0100 VERSION: 1.1.1 (same binary age) commit 409d3389070a147f06b4cc3159724161e718e2ed Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sat Nov 17 20:58:47 2007 +0100 RC: Moved new 'linux_input_grab' member in the DFBConfig structure to the end for binary compatibility with DirectFB 1.1.0 release. commit 78ddc0e97b871b16b774c67f27ca6a9f33c4a4ee Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Thu Nov 15 22:14:55 2007 +0100 Call fusion_reactor_set_name() to use the component name rather than just "Component". commit ead6a6ec3b703f146e5507b8c1e7f486549eaef0 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Wed Oct 24 22:38:04 2007 +0200 Added "[no-]force-slave" option. Handle "[no-]sighandler" in fusiondalerc, too. commit 6f9aec1af1844463fc64193330de3b6c246874d2 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sat Nov 17 19:49:11 2007 +0100 Fixed type issues (at least with 2.6.24-rc3) by moving <asm/types.h> further up. commit 975798d0b0977408000c42fc8892b8294835f344 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sat Nov 17 19:41:19 2007 +0100 Output "Fusion Kernel Device" flag in configure output. Also print a warning at the end if builtin Fusion is used. commit 0ee6ee9619117e87f278d18078c51cdb20f5db8a Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sat Nov 17 17:26:21 2007 +0100 Fixed warnings. commit f793e0660c552e0eea66d05507b5754749af5699 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sat Nov 17 15:36:57 2007 +0100 Fix format issues because of varying u64 definitions, use "%llu" again and cast to unsigned long long. commit 34406baa244ed31c37ce3bbd8b96832f2eba3e05 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Thu Nov 15 18:01:56 2007 +0100 Fixed warnings. commit fc2a43d08af2352c2a7e1cd18e486229139ee55e Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sat Nov 17 15:25:13 2007 +0100 Added "-dl" or "--dumplayer" for dumping the front buffer of each active contexts' primary region. commit df4b2cbde8a6d2d76f3b2be1eb7cdcd74f72fbc6 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sat Nov 17 15:09:19 2007 +0100 Added convenience function dfb_surface_dump_buffer(). commit 6c44ce8cf2aa9292972cd8ee8c485082e227576e Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sat Nov 17 09:13:40 2007 +0100 Added "[no-]thread-block-signals" and cleaned up config code. Moved direct and fusion option parsing into direct_config_set() and fusion_config_set(). Call these from higher level config code. Added direct_config_usage and fusion_config_usage and use it the same way. commit af67337836291ae86a98e3c916de51b45ecb4d0a Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sat Nov 17 09:11:14 2007 +0100 Fixed debug message. commit 8b7d1920aa554559299847e58a8812f78dfc6f68 Merge: 4cc82ba c678f5c Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sat Nov 17 09:09:56 2007 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 4cc82baddbc3a9849c2ff6c4979a65bcfb6ba96b Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sat Nov 17 08:22:55 2007 +0100 Fixed GetFramebufferOffset() by adding CSAF_GPU_READ when Lock() is called on a DSCAPS_VIDEOONLY surface. commit c678f5c042b60b2dd2e00fe0945711ade703451a Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Thu Oct 18 15:57:41 2007 +0200 Added debug and error messsages to dfb_layer_context_set_configuration(). commit ba7c645417dd2d7c72a87f18dff2509031ab99ef Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Thu Nov 15 22:13:39 2007 +0100 Added fusion_reactor_set_name() to change the name of a reactor after its creation. commit 8427e5add8addf5a66098fbd667f70031c434670 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Thu Nov 15 18:57:36 2007 +0100 Added "Core/GraphicsOps" debug domain with a message per graphics operation. commit 6eef50dacf42907e53e7b236ce4393753dd27a74 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Thu Nov 15 18:09:49 2007 +0100 When switching to an indexed layer format, use dfb_surface_init_palette() if no palette exists already. commit f05de1d313d84e5f1e989b30c4e8605e79b2a0b2 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Thu Nov 15 17:17:25 2007 +0100 Moved surface palette creation from dfb_surface_create() into new dfb_surface_init_palette(). commit 237efd2ec9cd30fada65d9437d05f2ce121a313b Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Thu Oct 18 15:57:41 2007 +0200 Added debug and error messsages to dfb_layer_context_set_configuration(). commit 01536af1b96f7212d4c55566caea1c9c8984ba68 Merge: 619d813 7fb1cb2 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sat Nov 17 08:18:30 2007 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 619d813b9a6568e027140e20306f06aac221d87a Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sat Nov 17 08:16:24 2007 +0100 Use SO_REUSEADDR in case of multicast. commit 2db6868519f1b6d764f2149261522621900b1501 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Fri Nov 16 16:01:48 2007 +0100 Check for windows being inserted, not only if they are (would be) visible. Fixed associated window handling in sawman_showing_window(), no longer needed to climb up to the top level. Use global window IDs, not only within each layer. More debug messages. Cleanups. commit 33b7ed80770e52f3f95ec86d827891a87bad8e0f Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Fri Nov 16 15:56:26 2007 +0100 Added swmdump tool for debugging SaWMan. commit 6d0d3640c5cdfe3ad6c06838fbe399cd2bbc31ee Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Thu Nov 15 19:03:34 2007 +0100 Notify application manager about new tier size if previous mode was single. This fixes the window bounds and borders when switching to border only mode. commit 7fb1cb229068b9ebf9e9b5f7bb5ff68b0dbc9261 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Nov 15 10:46:03 2007 +0100 Added new URI fd:/<fileno>. Used to create a DirectStream from an already opened file descriptor. commit d5c44b9f46505792d65cafc91479662248b3dcd6 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Nov 7 14:57:52 2007 +0100 [Builtin Fusion] Check for dead property purchaser, too. commit 428a5be29271ba1098c5d2253225c7306d0f999a Author: Claudio Ciccani <klan@directfb.org> Date: Wed Nov 7 14:56:26 2007 +0100 [Builtin Fusion] In fusion_ref_zerolock(): check local references before entering the loop. commit 1b2b598b8c6c8d45d01618ce4ca85583268694b5 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Nov 6 10:13:28 2007 +0100 Sleep for 10 usec in WaitVSync loop. commit 115593ea26f6e960ad7e75291cae1d4d500e2bbd Author: Claudio Ciccani <klan@directfb.org> Date: Mon Nov 5 12:31:38 2007 +0100 Fixed thread safety issue in add_playback()/remove_playback(). If there aren't active playbacks, do not usleep() in the sound thread, use fusion_skirmish_wait() instead. commit f5bbbf1e7c3ec13d9eb24e0fb50ede1415f45ea1 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Nov 5 12:26:57 2007 +0100 [Builtin Fusion] Use fusion_skirmish_wait() instead of usleep() in fusion_ref_zerolock(). commit e1805a4018dccbdc5749c867fa962e14e3449e84 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Nov 4 12:55:03 2007 +0100 Added a couple of videoprovider events: - DVPET_FINISHED, sent when playback is finished - DVPET_SURFACECHANGE, sent when size/format change commit b84e090292684cf1f9d60ea35d0c506c8cb9ce2c Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Fri Nov 2 14:40:52 2007 +0100 Added missing DSCCAPS_VSYNC flag to indicate support for WaitForSync(). commit 4fcb711d661e3d9b8541b08eb3c043c2df759c60 Merge: ef9942b 2022577 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Fri Nov 2 14:10:20 2007 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit ef9942b04dd30e05683e106095def32087699a97 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Fri Nov 2 14:06:47 2007 +0100 Added patch for davincifb to support triple buffering on OSD. commit 20225771508792b4511550d83e3af4ad9c697309 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Fri Nov 2 13:33:21 2007 +0100 Set driver vendor for TI Davinci. commit 5b2d53ba81a83ab7d2d89d29aec251622ed6f9b8 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Fri Nov 2 12:25:28 2007 +0100 Added TI Davinci driver. Supports OSD and Video with positioning, color key, opacity and alpha channel. The driver uses the devmem system and opens all frame buffer devices itself. This is required for extended ioctls like setting the OSD position, but also to support alpha channels which are stored in a different frame buffer device. In case of ARGB for the OSD, the alpha channel (3 bit!) is dithered during conversion. Implemented surface pools for OSD and Video layer. This enables direct usage of the frame buffers in case of RGB16 for OSD and UYVY for Video. commit 8528a2076e3c3639a025f1a02fb2ca4aa107b30f Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Fri Nov 2 11:04:19 2007 +0100 Fixed allocation size for planar formats in FBDev Surface Pool. commit 32897684d0b6f6bcda0c1056ea1783853b01cb58 Merge: 7816a30 e906b75 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Wed Oct 31 10:46:05 2007 +0100 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 7816a304a37a5dc8be620ce59d6877e50814e9be Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Wed Oct 31 10:45:08 2007 +0100 Moved IDirectFBDataBuffer_File_data to header file. commit e906b757451e61d18eaec42f9c5e7f69c1ab6a68 Author: Ville Syrjala <syrjala@sci.fi> Date: Mon Oct 29 20:27:52 2007 +0200 Fix a pointer buglet. The pfetch pointer was compared/set instead of the value to which it pointed. commit 5b8a374d114f86814ce8fdfcd514319e477584c5 Author: Ville Syrjala <syrjala@sci.fi> Date: Mon Oct 29 20:18:37 2007 +0200 Build the nvidia driver with gfxdrivers=all. commit 36c7777b9440c9b9b6117672e4193df1dfb45d9c Author: Ville Syrjala <syrjala@sci.fi> Date: Mon Oct 29 20:17:55 2007 +0200 Port unichrome to the new surface core. Only compile tested. commit e77bf93bfbc450f756c07316b36ec08549223450 Author: Ville Syrjala <syrjala@sci.fi> Date: Mon Oct 29 20:17:40 2007 +0200 Port tdfx to the new surface core. Only compile tested. commit 42e7d212b311b7a1452e102b43c80e86bbcab264 Author: Ville Syrjala <syrjala@sci.fi> Date: Mon Oct 29 20:17:28 2007 +0200 Port sis315 to the new surface core. Only compile tested. commit 093134120e7f66773c30565679ac944c7f117ca8 Author: Ville Syrjala <syrjala@sci.fi> Date: Mon Oct 29 20:17:06 2007 +0200 Port savage to the new surface core. Only compile tested. commit 50558df00a6ca857c942ded9ab1334dd508db5ab Author: Ville Syrjala <syrjala@sci.fi> Date: Mon Oct 29 20:16:43 2007 +0200 Port nsc to the new surface core. Only compile tested. commit a21757e38bef58948b2863ba07e2d3fed276af1e Author: Ville Syrjala <syrjala@sci.fi> Date: Mon Oct 29 20:16:25 2007 +0200 Port neomagic to the new surface core. Only compile tested. commit 71bbcc90bdf32dab81d9341d2874b4b7acd44991 Author: Ville Syrjala <syrjala@sci.fi> Date: Mon Oct 29 20:14:57 2007 +0200 Port i830 to the new surface core. Only compile tested. commit 12c5dbb1675ca5fdfecd26dbc308da595f6f0ad3 Author: Ville Syrjala <syrjala@sci.fi> Date: Mon Oct 29 20:14:39 2007 +0200 Port i810 to the new surface core. Only compile tested. commit 4cb0627e7b8a71d51dbe21a038ed00fd7191312a Author: Ville Syrjala <syrjala@sci.fi> Date: Mon Oct 29 20:14:24 2007 +0200 Port cyber5k to the new surface core. Only compile tested. commit 030a19a4dc8764b85b2801773e8d06c87e2ada99 Author: Ville Syrjala <syrjala@sci.fi> Date: Mon Oct 29 20:14:11 2007 +0200 Port cle266 to the new surface core. Only compile tested. commit 7775f860ff39b818f8fc0a8af918907a1e245421 Author: Ville Syrjala <syrjala@sci.fi> Date: Mon Oct 29 20:13:53 2007 +0200 Port ati128 to the new surface core. Only compile tested. commit 963e73a8dfcec4a3475110b06745f7c05e15ccab Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Thu Oct 25 16:47:31 2007 +0200 Reallocate layer region surfaces on context activation. commit 0dbccefb4af1e271453276f0755da329626fca29 Merge: 19683c1 6ffb80f Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Thu Oct 25 13:32:23 2007 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 19683c1e1ea3de951c6cd4ae0e2ecfec259d6847 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Thu Oct 25 13:32:15 2007 +0200 Join multicast group if family is AF_INET and IN_MULTICAST is true. Use bind() instead of connect() for receiving UDP data. commit 63a6b1d2473749508cdd68e703d4ec6e5b9f48d5 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Wed Oct 24 22:31:42 2007 +0200 Fixed doc generator. commit 6ffb80f98c2190616509207ab3c4710380fb9e64 Merge: bfaf34f 57e5c3e Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sat Oct 20 15:51:06 2007 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit bfaf34f83b2594a2d37b0703aeb69ef56d8ea442 Author: Denis Oliver Kropp <dok@shizo.directfb.home> Date: Sat Oct 20 15:50:02 2007 +0200 Changed assertion into a check, in case of a failure, unrealize_region() can be called with the surface not being locked. commit e787612adfcc055556da9b25fcb68aa706aee347 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Thu Oct 18 22:19:01 2007 +0200 Use SNDCTL_DSP_GETOSPACE during initialization to print a message with the max output delay. commit 57e5c3e8988bf7b3136cb3a03a769c2c08aab054 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Thu Oct 18 15:58:01 2007 +0200 Added debug message to dfb_surface_reconfig(). commit fba8b289dd576989fdf9a18a71581ce5616ae232 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Thu Oct 18 15:57:41 2007 +0200 Added debug and error messsages to dfb_layer_context_set_configuration(). commit cd7de487a687f380b2b2f479d409af68f84f18ac Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Thu Oct 18 15:55:00 2007 +0200 Temporarily set layer position to 0,0 (only in config, not hw) to avoid configuration failures if layer is not allowed to cross screen borders. commit fcb10e2f939a01dd9252880b74de0193ed7014b7 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Thu Oct 18 15:50:13 2007 +0200 If alpha is zero, still check for RGB when looking up the index. commit f7f19ef7afcacc60a4aa814d753ec19f697d49e1 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Thu Oct 18 15:51:58 2007 +0200 Fixed parsing of border-focus-color and border-unfocused-color. commit ea54438c8e3c9c5fcf6de40d7370a68af2a4b16e Author: Claudio Ciccani <klan@directfb.org> Date: Thu Oct 18 14:47:10 2007 +0200 Do not start the sound mixer thread on initialization but when the first playback is created (this is done by calling fs_core_start() from fs_playback_create()). commit 00cd519370f7866a2b656bb6cbfc27dcd7431f6f Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Wed Oct 17 13:33:52 2007 +0200 Check for FSSDF_CHANNELMODE instead of FSBDF_CHANNELMODE. Fixes bogus invalid argument errors. commit d6985e88eb3de5ae9f32e2f7480086aaba14a873 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Oct 15 08:47:32 2007 +0200 Sleep 2ms when read returns 0, to avoid CPU hogging. Thanks to Luis Mondesi lemsx1 gmail. commit c014ff7cc57a76e4f44074bf9d2b18b41bfd87d2 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Sun Oct 14 18:55:37 2007 +0200 Reset single_mode and single_window during deactivation to fix crash after reactivation. commit bcd261d167587a87db3a6377836e74a24f3193a2 Merge: 40f5795 50297fc Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Sun Oct 14 18:27:57 2007 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 40f579579ff6a7a15ab919ac765398062a898dd7 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Sun Oct 14 18:27:48 2007 +0200 Fixed alignment issues by applying VOODOO_MSG_ALIGN() on each message block. commit b5ce8fca87d885269239aefb42e8e33e33677410 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Sun Oct 14 18:26:56 2007 +0200 Initialize libdirect in DirectFBCreate() already. commit 50297fc3e1655ded4717d5fb6db9cf3e5646d41c Merge: 6a364bd 0c58770 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Sun Oct 14 17:37:57 2007 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 6a364bd5196d3de87a92c731eedf76a96d6bf8e0 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Sun Oct 14 17:37:41 2007 +0200 Implemented some more requestor/dispatcher methods. commit 0c587702a603fe93a96009a983b2350d9e839c0f Author: Claudio Ciccani <klan@directfb.org> Date: Sun Oct 14 17:31:19 2007 +0200 Fixed possible deadlock in IDirectFBDataBuffer_File_WaitForDataWithTimeout(). commit 1c8ef7b8b6970d6e91294dc15b08b304a110b6a4 Merge: eb2825d a8f1402 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Oct 14 16:11:02 2007 +0200 Merge branch 'master' of git+ssh://directfb.org/git/directfb/core/DirectFB commit eb2825d945fd2f9893f6acbf83d52166b36cedf5 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Oct 14 16:10:32 2007 +0200 usleep(0) -> usleep(1) commit a8f1402edb9b21acab4344af00760528400e1a4c Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Sun Oct 14 16:09:30 2007 +0200 Workaround redefinition of SIZEOF_LONG in FT2 headers. commit 6a9128fdb0187ec7c9a99bb6b88c6c369eaa49a6 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Oct 14 14:44:25 2007 +0200 [builtin-fusion] SHMPool: - Return DFB_NOSHAREDMEMORY if reaquested allocation exceeds the maximum address of the pool. Ref: - Added _fusion_ref_change() (implements fusion_ref_up/down()) - When local references must be dropped, do not modify the FusionRef directly, use _fusion_ref_change() instead. Skirmish: - When fusion_skirmish_wait() gets called with a timeout value, check whether the timeout expired *before* sleeping. commit e7013382411000d9cdf18ee667c796702136bad2 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Sat Oct 13 21:25:46 2007 +0200 Added new header. commit 6f03a48298bff9c406c45def6b94079055b3eeef Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Sat Oct 13 21:25:08 2007 +0200 Added four macros for defining generic and unoptimized convenience calls. Each of these macros either for IN, OUT, IN+OUT or no args. IComa::GetLocal() and direct_memcpy() is used depending on the case. commit 6134725a4b5149bbbd85728bb782ab843e33fb23 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Sat Oct 13 21:06:57 2007 +0200 Forgot to mention multiple component managers. commit ba84e3970fdc287e7c35a19991e727da7e928a67 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Sat Oct 13 21:04:18 2007 +0200 Describing Coma... commit e4aa2c38668e503844131c37ba389c5427df687c Merge: 351a23a 8266479 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Sat Oct 13 20:51:33 2007 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/libs/FusionDale commit 351a23af896d1231ea24ed99dcdfa599e616cb6e Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Sat Oct 13 20:51:20 2007 +0200 0.1.2 commit 930e805fb031c9927a1a4f9a06dce11d0e43596d Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Sat Oct 13 14:54:22 2007 +0200 API change in IComaComponent::InitNotifications() and InitListeners(). Added context pointer argument which is registered with the listener or notification dispatch callback if its entry in the array contains a NULL context pointer. Made array arguments const. These two changes allow definition of static const tables of notification dispatch callbacks where the context is only known during runtime and is the same for all of these. commit 82664798f618a683e9c9c866aeaae156cb4abe65 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Oct 13 11:33:02 2007 +0200 Fixed failing assertion in fd_messenger_event_dispatch() (direct_list_remove called on a list that might be empty). commit 6850da1757bc6b8a32859ed131b7289317f1e87c Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Sat Oct 13 01:00:40 2007 +0200 Translate characters to indices in IDirectFBFont::GetKerning(). commit c9b7af8de0e78c7fd9978bd9f85ca686a30adf5f Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Fri Oct 12 20:48:15 2007 +0200 More fixes, especially for unscaled or clipped regions. Cleanup... commit e7f2fd5ff297cd459be3d7227899c42dbf67426f Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Fri Oct 12 20:46:15 2007 +0200 The source rectangle 'rect' argument to dfb_gfx_copy() and dfb_gfx_copy_to() is const now. commit 00a94f55d4426d12dae777526484648d6862ee14 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Fri Oct 12 07:54:38 2007 +0200 In GetSurface() for exclusive single buffer layer call dfb_layer_region_flip_update() after clearing the surface. commit f36a7bb02b3952119a87aa3b432193327d92e389 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Fri Oct 12 07:12:21 2007 +0200 Check for DWOP_ALPHACHANNEL and use DLOP_ALPHACHANNEL (single window mode). commit a173c1c3db63e8c8dd8e1b1774874b7fa8b3687e Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Fri Oct 12 02:14:27 2007 +0200 Added "[no-]show-empty", init default borders, center unscalable layers. Using "show-empty" makes SaWMan show the layer even if no window is visible. Default borders (red/grey) are configured with thickness of 4. To disable borders, use "border-thickness = 0". Fix bug with reactivation of SaWMan's layer context's, e.g. when an exclusive context is returned from. In standard mode, center layers that cannot be scaled. Previously, it just tried to scale the layer to fullscreen. commit 57434dd0d7b9c562e4132adc763c25579a9b35d6 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Thu Oct 11 13:05:39 2007 +0200 No longer use dfb_layer_region_activate/deactivate(), but CLRSF_FROZEN. Startup with inactive tiers to match unrealized region. Before switching to single mode, border mode or standard set the region state flag CLRSF_FROZEN. When no more windows are displayed turn off the region with dfb_layer_region_disable(). commit 335edcfa0fbd603608099d492e27a97ed2f7a235 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Wed Oct 10 22:03:29 2007 +0200 Added SAWMAN_DUMP_TIER_FRAMES which can be defined to let SaWMan dump the tier surface content to "/tier_xxxxx.ppm/pgm" after each time it is updated. commit 679e5510d9925411e8b3f457da653788151dad53 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Wed Oct 10 11:53:11 2007 +0200 Fixed global reference counting for parent windows and processes, for cleanup of resources in proper order when killing an application. commit ee7b5a24f01b0f77e5f4520e84a54759f7505175 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Fri Oct 12 00:55:25 2007 +0200 Clear stacking class flags before parsing layer-stacking option. commit 049c9c93bb574aed8b8927b507610965472b0503 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Fri Oct 12 00:46:11 2007 +0200 Added "no-init-layer [= <id>]" option to disable initialization of layers. Primary layer is initialized by default, use this option to avoid that. commit a9c1a7d8192c7730445c24ca096675834d8aaf41 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Fri Oct 12 00:32:28 2007 +0200 Set default stacking classes for primary layer. This fixes the need to set "layer-stacking" in the directfbrc. commit fc1df58d400bf9e3845024a198b1920b075ceb12 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Fri Oct 12 00:06:28 2007 +0200 Made unrealize in disable/deactivate depend on CLRSF_REALIZED. commit 116096a84f8453d34544c0bc0e1b42acc32c87a7 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Fri Oct 12 00:00:27 2007 +0200 Fix debug build. commit 1f6003afb2d2549b98b411a4c7d1e5ddab20d2c9 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Thu Oct 11 13:00:57 2007 +0200 Implemented defered region realization by adding CLRSF_FROZEN which is set initially on every region that is created. As long as CLRSF_FROZEN is set, all SetRegion() calls to the driver (and buffer allocations due to it) are simply discarded. Only when dfb_layer_region_flip_update() is called and the region is enabled and active, the flag is removed and the region is either realized or the config is just set if it was already/still realized. That means from a driver's point of view: AddRegion(), SetRegion() and either FlipRegion() or UpdateRegion() are called in a row for the first time, with a buffer that is already initialized with the proper content. However, the driver should still not show the region in SetRegion(), but in FlipRegion() or UpdateRegion(). This is because between the SetRegion() and the FlipRegion() call, the locked buffer changes to the correct one (only for multi buffer modes). NOTE: This needs more testing, especially single buffered exclusive contexts where the application might never call dfb_layer_region_flip_update(). commit df154b87b4cf7f7dc2707ae9f31201c3497cf02f Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Thu Oct 11 12:01:34 2007 +0200 Ignore files. commit e3e13042b565b5efddb50aaf1f1bca2b91045073 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Tue Oct 9 03:46:06 2007 +0200 Made argument to fusion_skirmish_lock_count() const. Added unimplemented fusion_skirmish_lock_count() for single app. commit d66b65773339c5476bf4b601f79fbf95a4ac920b Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Thu Oct 11 23:25:15 2007 +0200 Support debug domains in debug option. commit 6e753d283215db8743876880d3871c0dd9a02bf5 Merge: 3a39545 cc5cff7 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Thu Oct 11 16:08:02 2007 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 3a395457e642b41f9718716f2116734f4d454859 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Thu Oct 11 16:07:54 2007 +0200 Added dfb_gfxcard_get_driver_data(). commit e403a46bfd5380cdb11902c85ecb42c5bed8de60 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Tue Oct 9 04:21:53 2007 +0200 Fixed missing/dead locking. Added ISaWManManager::Lock()/Unlock(). Added FUSION_SKIRMISH_ASSERT all over the place which fails if the lock is not held. Added internal locking where it was missing. Application managers must call Lock()/Unlock() before accessing SaWMan data structures or calling ISaWManManager methods. This all only works with the new lock transfer implementation, otherwise a dead lock between SaWMan and application manager will occur. commit 75f9be9a8d2e7835f427c3f990ebc2770fd19061 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Oct 8 10:59:36 2007 +0200 Build fixes for debug mode. commit 1495a6a9355d2285526426a4df334147e89a906e Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Oct 8 10:56:32 2007 +0200 Better use !SAWMAN_TRANSLUCENT_WINDOW(window) instead of just !(window->config.options & DWOP_COLORKEYING) when checking whether a window covers the whole screen without other windows visible beneath (single mode). commit 50b54c9b6936975ea8a8c32ed6926966b419a16b Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Sun Oct 7 20:55:15 2007 +0200 Added ISaWManManager::ProcessUpdates() for calling outside SaWMan context. So far only leaving a callback in SaWMan context processed updates. commit 24f0755cf5688e9ee0ccd587c371a670fd0e456f Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Sun Oct 7 20:18:29 2007 +0200 Don't assume the parent's position (bounds). commit 85815ceb022971e1bf630271c541a6a4b576bcbe Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Sun Oct 7 19:58:40 2007 +0200 Throw away software scaling code and use standard StretchBlit() with DSRO_SMOOTH_UP/DOWNSCALE and DSBLIT_COLORKEY_PROTECT. commit cc5cff7ca6637a32ffe06c4880befc7df68a4a4b Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Oct 8 23:37:22 2007 +0200 Make DFIFF fast for the standard case again (60->483 MPixel/sec). Added support for sub surfaces with proper clipping/offset. Check for unscaled and unclipped loading without format conversion and just use dfb_surface_write_buffer(). commit 94106005540286080edcfb0eeebd0fb5ed42e2a7 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Oct 8 23:34:50 2007 +0200 Added convenience functions dfb_surface_read/write_buffer(). commit 1e264d5a0e6348d901cbd476bae94118487255f3 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Oct 8 11:16:28 2007 +0200 Fixed missing error return in IDirectFB_CreateDataBuffer(). commit 7c570d664d212eef5210c4c1025c30031c60c6ed Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Oct 8 11:15:50 2007 +0200 Improved debug messages in thread code. Added "Direct/Thread/Init" domain to watch creation, wait, startup, initialization, notification ... commit 0bd6594f819cec774a43c203da4e147d980e1bbb Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Sun Oct 7 19:55:40 2007 +0200 Big smooth scaler restructuring and cleanup. Added DSBLIT_COLORKEY_PROTECT to prohibit writing the color that the destination surface uses as a source color key. This is used internally at the moment. Removed messages from non-debug mode. commit e5d3101bcb67bacb8a8772f222729dc4dc692b3a Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Thu Oct 4 10:35:32 2007 +0200 Made smooth scaling support source rectangles not starting at 0,0. commit bbc638f3392549718d3047209a8b20d57ec3ac0d Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Oct 8 11:58:40 2007 +0200 Fixed illness in processing read data in serial driver and fixed error path. (2) commit 3df393e8ec53c54af2ba94e7cb3b59aae299028b Merge: 82e1d70 a047bd9 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Oct 8 11:55:02 2007 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 82e1d70612cd58f2d3cded4c7baf60ae3d5432e5 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Oct 8 11:54:47 2007 +0200 Fixed illness in processing read data in serial driver and fixed error path. commit a047bd9c0bf9e6a2852915d8d32b4a9c5c03dd7f Author: Claudio Ciccani <klan@directfb.org> Date: Mon Oct 8 11:42:59 2007 +0200 Check for dead local references in fusion_ref_zero_lock()/trylock(). commit 18cac729a47d2cbe637d78d90441e7305be063b5 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Oct 8 11:20:29 2007 +0200 Fixed lock+reconfig bug: fail when trying to reconfig a locked surface. commit 7c861f6d153e428cc649f47671b8e7b164d36f80 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Oct 8 11:18:28 2007 +0200 Fixed missing DSCAPS_SHARED. commit 5532c78bba32e1c5c3dc54894b1d4825cd6b6290 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Fri Oct 5 12:36:55 2007 +0200 Added dfb_convert_to_uyvy() and dfb_convert_to_yuy2(), only copy supported yet. commit c57cc4e28da2726ba185babfb7b14f8a9fc1c552 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Fri Oct 5 12:36:15 2007 +0200 Made DisplayLayerFuncs const when being passed or used. commit 05525befa49b2ef2239e536854380e3e1b962011 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Thu Oct 4 23:10:58 2007 +0200 Added dfb_convert_to_a4() and added RGB32/ARGB support to dfb_convert_to_rgb16(). commit 33d8c704ad09eecd37e034a3127880ddc48467a3 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Thu Oct 4 17:33:31 2007 +0200 Added CORE_TI_CMEM. commit da5c817392e3caa2ad225f2dc3305cc6beb594a0 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Thu Oct 4 17:29:52 2007 +0200 Refuse to set non-shared surfaces as a background image for a window stack. commit 20aa428fc8bdf482a22b5267460c0cd8eb6a5fb8 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Thu Oct 4 17:29:09 2007 +0200 Added DSCAPS_SHARED for creating shared surfaces, not using local (malloced) memory pool. commit ef26fc5c15468c17cd417a954e10c01a01f391e9 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Thu Oct 4 13:54:36 2007 +0200 Fix usage of hardcoded /dev/mem while the error message was already using DEV_MEM macro. commit 5754b68d8c62e9a1e1e3116f583011f25a9e2432 Merge: 303e4c7 d95d532 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Thu Oct 4 13:51:56 2007 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 303e4c7da3ba3c23b8f02cd908a6a3a793d175a7 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Thu Oct 4 13:51:01 2007 +0200 Fix redefinition of MIN by including <sys/param.h> earlier. commit de20d5e0b57e2210261e33a7f5317ee1ea72020b Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Thu Oct 4 13:50:13 2007 +0200 Fix surface pool name in DevMem system. commit 7ab218745a0fbac3c9a19c3a84d81eef5ac9f6be Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Thu Oct 4 13:49:14 2007 +0200 Fix redefinition of HAVE_STDLIB_H in jconf.h by undefing it before including jpeglib.h as last. commit 27244343fe85aefc8614650e4f4aeccd25a52370 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Thu Oct 4 13:48:01 2007 +0200 Use new avcodec_decode_audio2(). commit d95d5329e34b012f8a247ffa1a18ed9fbf39c79e Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Wed Oct 3 00:49:53 2007 +0200 Added mutex and condition for thread initialization and revert recent priority initialization via pthread_attr_t. No more DIRECT_THREAD_WAIT_CREATE. No more sched_yield(). commit 0dd046043497678a3f344f80b263d4bf842a8793 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Oct 2 18:39:36 2007 +0200 Enable using premultiplied ARGB4444, too. commit 4853800fe95c1a19988adcf9a7e9f896402012a5 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Oct 2 18:37:41 2007 +0200 Instead of emitting vertices instantly, store them in a buffer that is submitted on EmitCommands() (this way DrawString() is about 45% faster with my 9200SE). R100/R200: Dropped some blend functions when destination format is A8 ((INV)DEST alpha never worked because A8 isn't really supported as dest format). R300: Implemented BLEND_COLORALPHA, COLORIZE, PREMULTCOLOR with some limitations (source must be premultiplied and COLORALPHA+ALPHABLEND isn't supported at all). Switch to version 1.1 commit 4f6cb22908fba1fbb48f51f44583d98b19f0965a Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Sun Sep 30 16:30:18 2007 +0200 Added SAWMAN_NO_LAYER_DST_WINDOW which can be defined to prohibit layers not covering the whole screen. Fix none->standard transition. commit 6ea307c5653b694eda56a372effed342ea8e36d6 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Sun Sep 30 15:58:59 2007 +0200 Only update the whole screen if update is bigger than 3/5 of it if also the buffer mode is backvideo or triple (really swapping). commit 4ad84d63cdf29742f8ec8e3726b7e30c9beff773 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Fri Sep 21 16:12:56 2007 +0200 Initialize scheduling priority & co right away via pthread_attr_t. commit ccc93136dca12401b76319b702ffc6e092a6304d Merge: c2bf08b 93b4878 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Sun Sep 30 13:30:24 2007 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/extras/SaWMan commit c2bf08b3bbd731195a0e7c501632a0d2cc6551fc Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Sun Sep 30 13:30:17 2007 +0200 Don't attempt hw layer scaling in single window mode if not supported, but fall back to standard mode. commit 93b48789788c47eebbd3745ef9f0cf5ce68cb3c8 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Sun Sep 30 11:49:31 2007 +0200 Reset single_window to NULL when hiding the layer to have the surface buffers recreated during configuration. commit 10cc8e482accc24404dc1c8d4e916a14baed57d9 Author: Ville Syrjala <syrjala@sci.fi> Date: Thu Sep 27 22:04:35 2007 +0300 Add linux-input-devices and tslib-devices options These options can be used to specify a list of devices to use. If these are specified the normal probing using standard device names is not performed. commit b53b207b93669649942cadb75d5e5caaf7f526ba Author: Ville Syrjala <syrjala@sci.fi> Date: Thu Sep 27 14:58:58 2007 +0300 Add a new option [no-]linux-input-grab. [no-]linux-input-grab will control whether linux_input will grab the devices. This is useful in cases where multiple processes want to receive input events. commit 5cf85082ae56fa9879aaa1dad6cc086fda054501 Author: Ville Syrjala <syrjala@sci.fi> Date: Thu Sep 27 22:15:55 2007 +0300 Fix compilation with zlib. commit 66b4caaaa4986adba29e7d3303bee9c713dc46a0 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Thu Sep 27 19:53:30 2007 +0200 Added missing call to sawman_update_geometry() in testman. commit c4692d94256e865070eb0db37c15dd0896fa1557 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Thu Sep 27 19:32:10 2007 +0200 Fixed DevMem system for multi app. commit 39b0732e068f847bdaf155d654a81f08f6c44585 Merge: 42751b9 ec8f05e Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Tue Sep 25 14:06:36 2007 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/extras/SaWMan commit 42751b932a52857e374261bb1eb235f301a6067b Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Tue Sep 25 14:06:25 2007 +0200 Fix assertion and colorkeying problem with LUT8 on RGB16. commit b76f7b0606f4d338d8766a878fa4026b1c282023 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Tue Sep 25 13:30:27 2007 +0200 Implemented DSBLIT_BLEND_COLORALPHA on SH7722. Does not work in conjunction with DSBLIT_BLEND_ALPHACHANNEL, yet :( commit f46381f1dba1685bd892458fa0b406c4fd91c392 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Tue Sep 25 12:49:59 2007 +0200 Added ClanBomber2 at 800x600 with 48 fps and 46% load to SH7722 README. commit 43547a4e959cbd966b1699b9d08b477a9e109e15 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Tue Sep 25 12:48:14 2007 +0200 Clip SH7722 layer (only width/height yet, x/y set to 0 if <0). commit 2cc3f22838977ab1208dd57a835ecf0dc74a588e Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Tue Sep 25 12:20:14 2007 +0200 Updated SH7722 README. commit f30b7d2d05e3bd917ce89497a21cce32834ac018 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Tue Sep 25 12:19:07 2007 +0200 Accelerate DSBLIT_COLORIZE on SH7722 only for font surfaces! Check for CSTF_FONT :) commit c5717d0b436c850182e0a3e7cada34b90520c33e Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Tue Sep 25 12:09:22 2007 +0200 Implemented DrawString() for SH7722. It's using color change frmo 0xffffff to the text color, i.e. any other colorizing blit with non-white pixels is not correct at the moment. Anti-aliased Text 3.056 secs (* 98.952 KChars/sec) [ 46%] commit 3e057e7fe1bbcfc092ada83a29ce86d26e2c55b5 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Tue Sep 25 12:06:19 2007 +0200 Added option "[no-]font-premult" for premultiplication in case of ARGB glyph images. Default is enabled. commit 8388ad4feff94e7a4515426e846acc33e80a5347 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Tue Sep 25 10:49:07 2007 +0200 Updated SH7722 results in README. commit 1c35ccc706ca693c06a3d16ffc8b90c7d918740d Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Tue Sep 25 10:32:28 2007 +0200 Implemented DSBLIT_ROTATE180 for SH7722. commit ec118fe86657723aec9688e7322d9b3d715384a5 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Tue Sep 25 10:26:49 2007 +0200 Don't use page flipping, but blitting, if rotation is active. commit 52df55b9879869764908b214fe532624b1fefddc Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Tue Sep 25 09:35:59 2007 +0200 Implemented triangle filling on SH7722. Indicate hardware clipping, other minor cleanup. Benchmarking with 256x256 in 16bit mode... (16bit) CPU load Fill Rectangle 5.736 secs (* 69.694 MPixel/sec) [ 3%] Fill Rectangle (blend) 11.576 secs (* 22.079 MPixel/sec) [ 1%] Fill Triangles 4.175 secs (* 62.004 MPixel/sec) [ 6%] Fill Triangles (blend) 8.134 secs (* 21.754 MPixel/sec) [ 2%] (*) SH7722/BLT: 37 starts, 37 done, 37 interrupts, 9 wait_idle, 11 wait_next, 16 idle (*) SH7722/BLT: 351922 words, 9511 words/start, 21995 words/idle, 2 starts/idle commit 3e5797b41f93a7a02be20f21585fc3fe59304e46 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Fri Sep 21 18:40:04 2007 +0200 more ignores commit bb9fefe9a4bf702d5acf2c323f7ea28f6e464e0c Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Fri Sep 21 14:32:57 2007 +0200 Removed "Benchmarking with..." line in case study. commit cc3a850db1456c41c934a7d1d7e460b34b75ded5 Merge: 495b733 f573fb7 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Fri Sep 21 14:27:53 2007 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 495b733dce6dc8089cb2a3e2957f95d1c2bf80ad Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Fri Sep 21 06:04:29 2007 +0200 Added 127.79 BogoMIPS to the figure, yeah that's true, just 127.79 and only 14% CPU load with df_andi running 800x480 at 28.1 fps :) commit f9601806b03aa9d7ad111a27c8c4e6c8ad71456b Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Fri Sep 21 06:00:28 2007 +0200 Fixed DrawRectangle() for 1xN and Nx1 cases. commit ec8f05ef2830a70e8c71c9f32440b4f1ed6f248f Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Fri Sep 21 05:39:33 2007 +0200 Color keying fixes in reconfiguration, especially for indexed formats. commit f573fb781400ca68129261ee014b64f825c429f8 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Fri Sep 21 05:17:13 2007 +0200 Added dfb_surface_buffer_dump() implementation. commit 44be56c9d7c8e9ada5115c99ea971751b8683f81 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Fri Sep 21 05:11:10 2007 +0200 Fixed missing color key flags when only index is set via config file. commit 88789f729eabcd0e7393e8281afe353da3d7582b Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Fri Sep 21 05:00:57 2007 +0200 Added gitignore file. commit 7ba48e5ab16a044d8c6966224fdd76ac992b3d72 Merge: 3952674 9066689 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Fri Sep 21 04:58:23 2007 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 9066689be79d9498b04a5c7009a90a8ef88bfe08 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Fri Sep 21 03:42:25 2007 +0200 Renesas SH7722 graphics driver ============================== This driver supports the SH7722 SoC from Renesas Solutions Corp. controlling - LCDC (LCD Controller) for display - BEU (Blit Engine Unit) for blending of planes - TDG (2D Graphics) for accelerated operations It's using a kernel device called sh7722gfx which mainly does interrupt handling. The 2D Graphics unit supports display lists in RAM and reads them via DMA. These lists consist of double word entries, first word designates a register, second word contains the data to write. Once a list has been completely processed, the hardware generates an interrupt to start the next list. The kernel module allocates a ring buffer for usage as a display list. The user space prepares a block of commands and puts it into the ring buffer. If the hardware is idle, it's started directly from user space. When a DMA completion interrupt is received, the next block of commands is started from kernel space. If the hardware is still running the previous block, new commands are appended to the next one. The driver is designed to run without any locking or system calls. Only a few interrupts happen over time depending on the operations. The hardware is not getting idle, while commands are being sent to keep it busy. There's just a minimal gap which is the interrupt handler setting the new start address and kicking the hardware again. To build the kernel module use "make -f Makefile.kernel". You might want to set the variables KERNEL_SOURCE, KERNEL_BUILD (if != KERNEL_SOURCE), KERNEL_VERSION and DESTDIR. To run the driver you need the DevMem system module using the directfbrc.sh7722 file (renamed to directfbrc in $prefix/etc). Performance (as of 2007-09-20, multi app) ----------------------------------------- Benchmarking with 256x256 in 16bit mode... (16bit) CPU load Anti-aliased Text 3.020 secs ( 41.721 KChars/sec) [100%] Anti-aliased Text (blend) 3.328 secs ( 10.817 KChars/sec) [100%] Fill Rectangle 5.549 secs (* 69.681 MPixel/sec) [ 3%] Fill Rectangle (blend) 11.873 secs (* 22.079 MPixel/sec) [ 1%] Fill Rectangles [10] 9.384 secs (* 69.838 MPixel/sec) [ 0%] Fill Rectangles [10] (blend) 14.836 secs (* 22.086 MPixel/sec) [ 0%] Fill Triangles 3.024 secs (+ 50.929 MPixel/sec) [ 40%] Fill Triangles (blend) 3.064 secs (+ 20.319 MPixel/sec) [ 8%] Draw Rectangle 3.284 secs (* 6.942 KRects/sec) [ 26%] Draw Rectangle (blend) 3.302 secs (* 6.268 KRects/sec) [ 25%] Draw Lines [10] 3.238 secs (* 28.103 KLines/sec) [ 20%] Draw Lines [10] (blend) 3.198 secs (* 27.829 KLines/sec) [ 19%] Fill Spans 3.092 secs (* 61.466 MPixel/sec) [ 33%] Fill Spans (blend) 3.094 secs (* 21.181 MPixel/sec) [ 11%] Blit 10.436 secs (* 30.143 MPixel/sec) [ 2%] Blit colorkeyed 9.333 secs (* 32.301 MPixel/sec) [ 2%] Blit destination colorkeyed 3.763 secs ( 6.966 MPixel/sec) [ 99%] Blit with format conversion 13.369 secs (* 22.549 MPixel/sec) [ 1%] Blit with colorizing 4.419 secs ( 2.966 MPixel/sec) [100%] Blit from 32bit (blend) 21.973 secs (* 13.123 MPixel/sec) [ 1%] Blit from 32bit (blend) with colorizing 5.129 secs ( 1.277 MPixel/sec) [100%] Stretch Blit 10.271 secs (* 33.463 MPixel/sec) [ 3%] Stretch Blit colorkeyed 7.895 secs (* 35.159 MPixel/sec) [ 3%] (*) SH7722/BLT: 940 starts, 940 done, 940 interrupts, 43 wait_idle, 780 wait_next, 89 idle (*) SH7722/BLT: 24700744 words, 26277 words/start, 277536 words/idle, 10 starts/idle * = accelerated + = half way accelerated Statistics ---------- The statistics at the end are more valuable when looking at one case at a time: Fill Rectangle 5.834 secs (* 69.647 MPixel/sec) [ 4%] (*) SH7722/BLT: 16 starts, 16 done, 16 interrupts, 4 wait_idle, 2 wait_next, 11 idle (*) SH7722/BLT: 74840 words, 4677 words/start, 6803 words/idle, 1 starts/idle This means that while the FillRectangle() benchmark was running, the hardware didn't get idle, which is obvious when running the benchmark for just 10 ms: Benchmarking with 256x256 in 16bit mode... (16bit) Fill Rectangle 0.191 secs (* 68.624 MPixel/sec) [ 10%] (*) SH7722/BLT: 13 starts, 13 done, 13 interrupts, 4 wait_idle, 0 wait_next, 11 idle (*) SH7722/BLT: 2840 words, 218 words/start, 258 words/idle, 1 starts/idle See? The same number of times becoming idle, but a few less interrupts. Don't worry about the 191 ms the benchmark needed to complete, after 10 ms of stuffing the display list, we need to wait until the hardware is done before measuring the time it took and calculating the result. Here's FillSpans() which as opposed to FillRectangle() does a lot of small commands: Fill Spans 3.028 secs (* 61.467 MPixel/sec) [ 34%] (*) SH7722/BLT: 245 starts, 245 done, 245 interrupts, 3 wait_idle, 185 wait_next, 22 idle (*) SH7722/BLT: 5828128 words, 23788 words/start, 264914 words/idle, 11 starts/idle Example kernel log (debug mode) ------------------------------- 0.549.014 - sh7722_reset : Resetting hardware... 0.549.046 - sh7722_reset : Initializing shared area... 0.549.748 - sh7722_reset : Clearing interrupts... 0.549.770 - sh7722_reset : Ready ( idle, hw 0- 0, next 0- 0, invalid, HC 0000000, INT 000000) 0.568.700 - sh7722_wait : Waiting..... (running, hw 0- 54, next 56- 56, invalid, HC 1010111, INT 000000) 0.573.339 - sh7722_tdg_irq : -Interrupt (running, hw 0- 54, next 56- 56, invalid, HC 0000000, INT 100100) 0.573.397 - sh7722_tdg_irq : '-> Idle. (running, hw 0- 54, next 56- 56, invalid, HC 0000000, INT 000000) 0.573.480 - sh7722_wait : ........done ( idle, hw 0- 54, next 56- 56, invalid, HC 0000000, INT 000000) 0.583.575 - sh7722_wait : Waiting..... (running, hw 56- 78, next 80- 80, invalid, HC 1010111, INT 000000) 0.588.414 - sh7722_tdg_irq : -Interrupt (running, hw 56- 78, next 80- 80, invalid, HC 0000000, INT 100100) 0.588.470 - sh7722_tdg_irq : '-> Idle. (running, hw 56- 78, next 80- 80, invalid, HC 0000000, INT 000000) 0.588.544 - sh7722_wait : ........done ( idle, hw 56- 78, next 80- 80, invalid, HC 0000000, INT 000000) 0.601.336 - sh7722_tdg_irq : -Interrupt (running, hw 80- 102, next 104- 104, invalid, HC 0000000, INT 100100) 0.601.420 - sh7722_tdg_irq : '-> Idle. (running, hw 80- 102, next 104- 104, invalid, HC 0000000, INT 000000) 0.700.117 - sh7722_tdg_irq : -Interrupt (running, hw 104- 124, next 128- 128, invalid, HC 0000000, INT 100100) 0.700.205 - sh7722_tdg_irq : '-> Idle. (running, hw 104- 124, next 128- 128, invalid, HC 0000000, INT 000000) 3.115.419 - sh7722_tdg_irq : -Interrupt (running, hw 128- 220, next 224- 224, invalid, HC 0000000, INT 100100) 3.115.506 - sh7722_tdg_irq : '-> Idle. (running, hw 128- 220, next 224- 224, invalid, HC 0000000, INT 000000) 3.151.700 - sh7722_tdg_irq : -Interrupt (running, hw 224- 324, next 328- 328, invalid, HC 0000000, INT 100100) 3.151.788 - sh7722_tdg_irq : '-> Idle. (running, hw 224- 324, next 328- 328, invalid, HC 0000000, INT 000000) 3.159.160 - sh7722_wait : Waiting..... (running, hw 328- 444, next 448-12994, valid, HC 1010111, INT 000100) 3.161.783 - sh7722_tdg_irq : -Interrupt (running, hw 328- 444, next 448-12994, valid, HC 0000000, INT 100100) 3.161.839 - sh7722_tdg_irq : '-> Start! (running, hw 448-12994, next 12996-12996, invalid, HC 0000000, INT 000000) 4.316.367 - sh7722_tdg_irq : -Interrupt (running, hw 448-12994, next 12996-12996, invalid, HC 0000000, INT 100100) 4.316.434 - sh7722_tdg_irq : '-> Idle. (running, hw 448-12994, next 12996-12996, invalid, HC 0000000, INT 000000) 4.316.505 - sh7722_wait : ........done ( idle, hw 448-12994, next 12996-12996, invalid, HC 0000000, INT 000000) commit f7c9d102b178c355582992ad7a3ec22466f19649 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Fri Sep 21 02:19:55 2007 +0200 Added direct_page_align(). commit b9e6eafc18de87413cd0de7b6204c4d2c803bb3f Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Fri Sep 21 01:34:26 2007 +0200 Use sysconf() if PAGE_SIZE is not defined, though we were able to include <asm/page.h>. commit 0925df1ae92832eaebd4698352ce1a80165823fe Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Fri Sep 21 01:18:46 2007 +0200 Fix missing fusion_shm_enum_pools() for single app core. commit 9043fb3df3c07554875a21b2391de41971202678 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Thu Sep 20 14:23:37 2007 +0200 Ignore object files. commit a98732d61c03a7dd34cf2f53ef6839a56a4d8244 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Thu Sep 20 13:28:12 2007 +0200 Make bound_windows a DirectLink like usual, fixes aliasing warnings. commit a019e74d2cc65f3273467b94b1e28d919e4a0b1e Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Thu Sep 20 13:27:16 2007 +0200 Fixed warning. commit ff601e69189cce0b6465e57bd112829498bfa64e Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Thu Sep 20 13:26:43 2007 +0200 Fixed uninitialized warnings. commit 7373e87d2cc9fc60c3658334577bf65fbbffedc1 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Sep 19 18:30:34 2007 +0200 Removed 'HACK FIXME_SC_2 ALLOCATE/SETMODE TWIST' (commit cf4de7cf3677a6252d667342f425f99d8d232043) in primarySetRegion(): it was causing DirectFB to not restore the previous video mode when an application exits from fullscreen mode. commit 3952674f9c7940ce0c3ef24e0702ab5693679403 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Wed Sep 19 08:54:30 2007 +0200 Added debug message to dfb_layer_set_src_colorkey(). commit 6cf19f1e3a3d13cff8b518b0a92de44502fd87c6 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Sep 10 13:42:29 2007 +0200 Deallocate layer region surface buffers if the region is being unrealized. commit c971f839f93c867f17e45264d000572e87f1782a Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Sep 10 13:41:57 2007 +0200 Added resource_id to DFBWindowDescription and DWDESC_RESOURCE_ID to specify the resource id to use for window surface creation, rather than using the window id for that. commit ecc8106c6d2ec79b61181e8c8817d0c1848b030e Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Wed Sep 19 08:53:14 2007 +0200 Fix background color index support. commit e8f3b4b3cbadf5222d256e63a7f7a1e767e41238 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Wed Sep 19 08:47:08 2007 +0200 Added debug messages for colorkeyed windows and background clear. commit e27e3b4ad222f0fcba15d191449d76c0469049ed Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Wed Sep 19 08:46:27 2007 +0200 Use dfb_layer_context_test_configuration() in layer reconfiguration. Added SAWMAN_NO_LAYER_DOWNSCALE that can be defined. commit 91ac268d51ffbecb59dbdff49b8e32cabb2a6ebd Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Wed Sep 19 08:46:16 2007 +0200 Fixed updating background of input only windows. commit ea8b81988bad68f38bb791d3ab2f1c0d61185bd6 Author: Ville Syrjala <syrjala@sci.fi> Date: Mon Sep 17 22:34:34 2007 +0300 Add TI OMAP gfxdriver. No video layer or other fancy stuff yet. Enough to run XDirectFB on the Nokia N800 though. commit 024c436d75e8936cb11b974ce8df58cbffc3eab5 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Tue Sep 18 21:35:34 2007 +0200 If no mixer is showing the layer, use the first one which would support it. Still not the best solution. commit 3e2627a67eca033b8032ee0fad1a116d4b0d3c53 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Sep 17 12:59:44 2007 +0200 Just warn if SNDCTL_DSP_PROFILE fails. commit 05c2b9f22bc829ddb925ef6c3b144b003b31a973 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Sep 17 03:30:01 2007 +0200 Fix crash in shutdown of /dev/mem system. commit f7df7fbc8548593fd7e930b7e8ffcdc2ed763b21 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Sep 17 03:00:05 2007 +0200 Finalize /dev/mem system for new surface core. - Implement surface pool using surface manager. - Added local/shared system data. - Added configure.in and Makefile.am parts. - Cleanups. commit 0982b02735b76e636d840cffa02a3e8643e18d43 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Sun Sep 16 22:18:39 2007 +0200 Added LUT8 -> ARGB4444 smooth scaling. commit 1317af26ea1fb28a762b331f65df566053050e93 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Fri Sep 7 14:57:16 2007 +0200 Commented out auto center. commit aa723971a08ecad42dd4ee8cd8a1d4c15fc8ba99 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Fri Sep 7 14:56:53 2007 +0200 Fixed wheel direction. commit b38b87a729837f719b11706196e56fcbb49b315b Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Fri Sep 7 14:17:45 2007 +0200 Fixed warnings. commit 9e37f4d7fd4f96237ba3d6c58cda63be74f46b73 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Fri Sep 7 12:52:52 2007 +0200 Build fixes for Voodoo and Unique on new surface core. commit 91a28279e8490ba47e217cf038dfe4fb879a86b2 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Fri Sep 7 12:52:23 2007 +0200 Follow API change in DirectHash. commit 8c04bfefec14ac83e7cb191b7a17e76973f8b8c2 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Sep 7 11:09:57 2007 +0200 Print an alert message when using builtin implementation of fusion. commit d5023923233e4823077255a922492fe97a9f1f37 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Sep 7 11:08:08 2007 +0200 Always free resources allocated in builtin implementation of fusion_skirmish_wait(), either if the skirmish was destroyed. commit a4c8aedf8fc09ded54f40c9194cefbc818b9ba23 Merge: 6978e3e ace1b81 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Wed Sep 5 08:18:16 2007 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 6978e3ef0dbdec1c9963d24c16e963413d437eb0 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Wed Sep 5 08:17:27 2007 +0200 Build fixes. commit ace1b81011cf8c1dd45413786217b729fe19053c Author: Kieran Bingham <kbingham@mpc-data.co.uk> Date: Tue Sep 4 22:02:58 2007 +0300 Fix SetMode / Panning Bug When a graphics driver has its own primary layer hooks implementation, and then defers to fbdev for primarySetRegion(), dfb_fbdev_set_mode() is called unnecessarily. The original implementation in DFB1.0.0 would only call dfb_fbdev_set_mode() if a flag indicated a change, however now that dfb_fbdev_set_mode() is in the default case of a switch statement, it is always called regardless. This has the side effect of resetting the panning, when features implemented in the graphics driver are called such as setting opacity. commit c788839b5b00ad278687d52efac2391f357ca76c Author: Claudio Ciccani <klan@directfb.org> Date: Sun Sep 2 11:39:58 2007 +0200 Builtin Multi: provided a REAL implementation of fusion_skirmish_wait/notify(). commit d08e95b65d460c92a8cf4a866fc0bcb85ab1dce8 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Sat Sep 1 19:27:53 2007 +0200 Added capabilities for display layer sources. Added DFBDisplayLayerSourceCaps featuring DDLSCAPS_SURFACE. Check source capabilities if present when determining whether to allocate a surface for a layer region. This allows to add layer sources in addition to DLSID_SURFACE that have a surface without using DLCAPS_SURFACE which enables surfaces for all sources. commit 256ec4d9e47d2de09b16f01134973055a9a0854a Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Sat Sep 1 17:02:02 2007 +0200 Added GetMixerState() to screen driver API and dfb_screen_get_layer_dimension() to be used instead of the deprecated dfb_screen_get_screen_size(). New function looks up mixer belonging to layer and queries its state containing the coordinate space for layers. Use it in layer core to center layers or calculate pixel coordinates from normalized values. commit ec79ff33dbcc966976835d6120dd9da8cdc63405 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Aug 29 12:09:20 2007 +0200 Fixed texture uploading: use the current surface lock instead of locking again. Replaced state->modified by state->mod_hw. Disabled some features not working with the new surface core, including: - Host to Video memory blits - Support for planar formats (YV12/I420) in the overlay commit 9efecb66c19893b50778b5b357f736a37863b861 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Aug 28 23:01:10 2007 +0200 Applied patch by Ben Combee, fixes a thread safety issue in IFusionSoundStream::Drop(). commit 1bce6d23d76a03e13928bc4ba158a96e4c351c5e Author: Ville Syrjala <syrjala@sci.fi> Date: Tue Aug 28 22:42:32 2007 +0300 Fix directfbrc location in the manual page. Document the actual directfbrc location in the manual page. This requires expansion of $sysconfdir so borrow the AS_AC_EXPAND m4 macro from GStreamer. commit 4a88acc6bd41abbf4ae4d3ce4a5e3bdd52fdc4ad Author: Ville Syrjala <syrjala@sci.fi> Date: Tue Aug 28 21:23:46 2007 +0300 Revert "Flush the read cache only when a CPU read access is requested." This reverts commit fd596f8f4c906d78ebbf1d710448aaef01cfb208. If a CPU write access is requested but nothing is actually written to the framebuffer the hardware will not flush the cache. The next CPU read access will fail to explicitly flush since the GPU write flag has already been cleared. So simply flush the read cache even on CPU write access. commit fa91e6aa920614a7ddebc6c62cb94d6e0621164d Author: Claudio Ciccani <klan@directfb.org> Date: Tue Aug 28 15:43:54 2007 +0200 Updated manual page. commit 6b1838e17f456fed965547a33542f5447bc51513 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Aug 28 15:43:21 2007 +0200 Install a cleanup handler for deinit checking. Added option [no-]deinit-check. commit 7e57933a7a375c357d5f2c398768f674c24edbf7 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Aug 28 15:41:14 2007 +0200 Added direct_cleanup_handler_{add/remove} to install a cleanup handler called upon exit. commit 0d9188ce2911c3aba09f9c4a5ea174ef7f9d2b33 Author: Ville Syrjala <syrjala@sci.fi> Date: Mon Aug 27 23:13:22 2007 +0300 Avoid unnecessary dfb_gfxcard_sync(). Avoid waiting for idle accelerator twice by clearing the GPU read access flag when handling GPU write access. commit 22ac13e66da5409ff1b0b28bb6477aa144f9955d Author: Ville Syrjala <syrjala@sci.fi> Date: Mon Aug 27 23:10:45 2007 +0300 Fix CPU read/write access confusion. CPU read access after GPU read does not need any handling. CPU write after a GPU read needs a sync. Flushing the texture cache is not needed. commit fd596f8f4c906d78ebbf1d710448aaef01cfb208 Author: Ville Syrjala <syrjala@sci.fi> Date: Mon Aug 27 23:06:42 2007 +0300 Flush the read cache only when a CPU read access is requested. commit be631ba93675435d95d109c7bf360a3dab3a04b6 Author: Ville Syrjala <syrjala@sci.fi> Date: Mon Aug 27 22:38:37 2007 +0300 Silence a compiler warning. commit 59657b0dd2d5bb525ec1a78944c0823f9270d4ef Author: Ville Syrjala <syrjala@sci.fi> Date: Mon Aug 27 22:01:51 2007 +0300 Constify linux_input.c. commit 38488b8c3b2807c4a1fbb102b95421243241ffbe Author: Ville Syrjala <syrjala@sci.fi> Date: Mon Aug 27 21:47:45 2007 +0300 Boolify linux_input.c. commit f7a5d10bb03ad28b28155c21a30ac7eac97f5bd5 Author: Ville Syrjala <syrjala@sci.fi> Date: Mon Aug 27 21:24:24 2007 +0300 s/ati/ati128 commit 2e263c6205c676f4c61ef5148b9a5c1730a2b3a3 Author: Ville Syrjala <syrjala@sci.fi> Date: Sun Aug 26 17:38:06 2007 +0300 Sort inputdrivers alphabetically. commit debca9536998c6d1a4bfc32a889eb73589926a53 Author: Ville Syrjala <syrjala@sci.fi> Date: Sun Aug 26 17:25:12 2007 +0300 Sort gfxdrivers alphabetically. commit 722f2b9c2149213e3041aaeeb7f2a83457d012d9 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Aug 27 22:28:10 2007 +0200 Builds again. commit 127de279f23cf21f6dcf285acb824121a5b5b7d6 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Aug 27 21:01:52 2007 +0200 Fixed build on big endian machines. commit 06179dc659519dc65d97550ce0faf0b87e354447 Merge: 82812b3 32d3d68 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Aug 27 16:03:09 2007 +0200 Merge branch 'master' of git+ssh://directfb.org/git/directfb/core/DirectFB commit 82812b37302a179ab2f89f0eb77338d6b88391b3 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Aug 27 16:02:19 2007 +0200 Moved FUSION_ID_MASTER definition to types.h. commit 2e471ac056932e00beec91c3c7ee4df57d7bdce5 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Aug 27 14:13:33 2007 +0200 Fixed format warning. commit 96a376e6423d009012a0670fd886a7166d685a83 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Aug 27 14:07:50 2007 +0200 obsolete commit ee7bf9380494125aa7ce82be551938bacec5d193 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Aug 27 13:56:21 2007 +0200 Fixed 6 to 3 channels conversion. commit 32d3d681fbaf27118fbbd1f60bb9038a9d29c2f0 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Aug 27 13:08:13 2007 +0200 updated commit 434fab3f9c28b0873148259a02d64684dd57dd49 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Aug 27 13:06:58 2007 +0200 Fixed single app core built. commit 3f41c5eee57bbb711707bef261900cc19e394e62 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Aug 27 11:58:16 2007 +0200 Added runtime option [no-]dither (off by default), replacing build option. commit 1c7e7614fa1ac1d5702afd794d5905f65ba67b7e Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Aug 27 11:36:08 2007 +0200 Moved call to dfb_core_activate() after call to dfb_wm_post_init(). Consistent with 1.0 branch now. commit c41515f07dc5e448672cebd4bac6e4599dabfde6 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Aug 27 11:18:08 2007 +0200 Updated for 1.1.0 commit 99639a9097562f2486fe556953fd073b8857acc4 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Sun Aug 26 21:47:37 2007 +0200 Check for 1.1.0. commit f5ea36044fa5c6f8c1e8539127a65a31d64ee5e6 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Aug 23 12:29:37 2007 +0200 Added a ffmpeg based music provider supporting wma, real audio and flac. commit 0e28392dfbed46411336f1622c993286e79dd0d7 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Aug 20 12:02:39 2007 +0200 Another fix for single mode with multiple layers. commit aeb0dd82542f2db8000a826addbbcf34b56b983c Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Aug 20 11:31:40 2007 +0200 Fixed leaving single mode when window is removed. commit 39f973733678671986cdb0c4d46806dc3217df9b Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Aug 20 10:21:18 2007 +0200 More info and error. commit 5d3daaf93f240abe1433bf976251a9e27b40b890 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Aug 20 10:19:10 2007 +0200 Use a Skirmish to synchronize slaves with the master's post core initialization. The new function dfb_core_activate() will allow other processes to join. commit 2c863355342f471cfdc44c051cab3bf1de4a3491 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Wed Aug 15 19:56:33 2007 +0200 Debug and error messages for window creation. commit 9871bba44cfea47ba1fac4e2bb9322746f482b80 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Wed Aug 15 19:56:05 2007 +0200 Compatibility and warning for drivers still using state->modified. Every SetState() call will be made with modified = SMF_ALL. Afterwards the value is checked (warn if changed) and reset to 0. commit d5a01a4ca067b75dfbc5f153e998ca12faa1036a Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Wed Aug 15 19:54:27 2007 +0200 Idea is to have a Flip() with multiple regions passed in. commit 9d0eef142b53d54f64bf6d47a4bdd6f70d188961 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Wed Aug 15 16:50:56 2007 +0200 New Surface Core commit 4d65f87a41b2a4a3b7ac2ce42a13dd3cf017290b Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Wed Aug 15 16:15:20 2007 +0200 Don't print any error at all if pool negotiation fails. Enhanced debug messages. Added TODO about preallocated surfaces. commit db9161c5edf9d6bd494d902f35c744b39c066910 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Wed Aug 15 13:57:23 2007 +0200 Fixed uninitialized result in dfb_fbdev_pan(). commit 3be32aaf85a40fa7d46ce5f91ceb839716a3da8c Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Wed Aug 15 13:54:26 2007 +0200 Fixed unitialized values in scaling code. commit 05ea285c5f963fecf80eff262b8b71c08e550fad Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Wed Aug 15 13:08:15 2007 +0200 Fix warnings and indention. commit d96503f371880bc0c5a3d7d9ee346d05e5c24734 Merge: 4abe5ca 29dd8f3 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Wed Aug 15 13:01:57 2007 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 4abe5cae85d57d66593967c3f19047995cb33f76 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Wed Aug 15 13:01:46 2007 +0200 Fix warnings. commit 898cbe97a80c88bf082805f39d49535ce27e5672 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Wed Aug 15 13:01:28 2007 +0200 Calculate binary version from micro-binary age. commit 23079760c28d2e228da8829782071474b99a6de5 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Tue Aug 14 20:20:48 2007 +0200 Format fixes in Voodoo. commit 29dd8f3790d6ace7ed534c4d52d0328fa0703ff2 Author: Mike Crowe <mac@mcrowe.com> Date: Wed Aug 15 00:34:46 2007 +0300 Fix potential SEGV in linux_input I've managed to provoke a segfault in DirectFB by unplugging a USB input device. linux_input_EventThread divides the result of reading from the input device by sizeof(levt) prior to checking for error. Because the type of sizeof may be unsigned the int result of read is promoted to unsigned prior to the division. This means that a read error will cause readlen to contain a number larger than the size of the array causing the following loop to exceed its bounds. This patch defers the division until the value is known to be positive. commit f52c0c4236a0571e7f7fd550202343ca23239b7a Author: Ville Syrjala <syrjala@sci.fi> Date: Mon Aug 13 22:18:29 2007 +0300 Silence some automake warnings. commit 1223551c76cb94e1ceadad0439f7ffa88cf9170c Author: Ville Syrjala <syrjala@sci.fi> Date: Tue Aug 14 23:53:03 2007 +0300 Reset besvcnt to 0 prior to disabling the backend scaler. Sometimes the BES would not turn off with just BESCTL. It seems besvcnt not being programmed to zero has something to do with it since resetting BESGLOBCTL before BESCTL seems to help. commit 310477a4caf88878df38365bce8cd9f629a05097 Author: Ville Syrjala <syrjala@sci.fi> Date: Mon Aug 13 22:13:15 2007 +0300 Port mach64 to the new surface core. commit 1b097dd4188819b828a7542ef6e9efe1e51a27b6 Author: Ville Syrjala <syrjala@sci.fi> Date: Tue Aug 14 09:33:45 2007 +0300 Port matrox to the new surface core. commit 125aa35304d9b125b67c2a683a5bdf447eb24285 Author: Denis Oliver Kropp <dok@halblang.zion.home> Date: Mon Aug 13 18:50:04 2007 -0700 Fusion 7.0: Messages are aligned on a 4 byte boundary now. commit 7d5bd536ae8efb0bdacc064d99c0537d9af09812 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Aug 13 18:07:44 2007 +0200 Rearrange locks to avoid dead locks in certain circumstances. commit 2089ff70b727b8bdbab33f3b03d62a246d506543 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Aug 13 17:37:23 2007 +0200 Added universal resource id (unsigned long) that belongs to each surface, e.g. the layer id or window id. General purpose surfaces can be given an id by using the new flag DSDESC_RESOURCE_ID and setting the resource_id field. Fixed surface allocation for additional layers. Next to the flag CSTF_LAYER the resource id belonging to the surface needs to be DLID_PRIMARY. commit cd465ade0d737ef4a1e8bce2fc9d798fb83ea91d Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Aug 13 16:20:40 2007 +0200 Do FBIOPAN_DISPLAY ioctls directly. commit 061313442046a44af3dd64cb74670f6b392bf102 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Aug 13 16:07:36 2007 +0200 Fix transfer of errno from master to slaves when doing ioctls. commit 6a0e6404c77a6f11d4bfc946b2d4e5ac0fe553b1 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Aug 13 02:36:48 2007 +0200 Fix 64bit implementations of RGB32 source and destination color keying. commit 7184b00ffe01756f9a025e9f3bafd79ccdc4edc3 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Aug 13 02:20:04 2007 +0200 Disable SDL backend by default, enable X11 backend by default. Support 15 and 16 bit depth server (RGB555 and RGB16). commit 152474391fd2046e80d1a84dddb870d033402b99 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Aug 13 02:03:33 2007 +0200 Revived DSCAPS_STATIC_ALLOC, but not tested. commit 8c01aa7a757623ee5777499cec4b665207080234 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Aug 13 01:41:09 2007 +0200 Negotiation prefers up to date buffers, e.g. do not update the system memory from the video memory allocation, but use the video memory allocation directly. Debug messages, minor cleanup. commit 297b67d655325fd61514b77945dcb973b57a3d5a Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Aug 13 01:38:10 2007 +0200 Fix includes. commit 1511f1934cc84c7e8b7beb4beda581ecd5f3cf47 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Aug 13 01:33:07 2007 +0200 Added -lm to timidity module. commit ea82f19b16079ebd112103a748f0b5230f075361 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Aug 13 01:01:10 2007 +0200 Build fixes. commit cf4de7cf3677a6252d667342f425f99d8d232043 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Sun Aug 12 22:11:26 2007 +0200 MERGE of branch surface_core into master! The new surface core is stable enough, still not completely implemented and tested, but I can run my working environment. See TODO for next action items. commit a15f8905412f4966980baf0808c0a268cc7c0437 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Sat Aug 11 15:16:36 2007 +0200 Fix WAVE loader format chunk read length in example code. Thanks to Carolyn Wales! cswales . gmail com. commit 02e75aff72362c4a1f299da068f9e18c868fe48c Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Fri Aug 10 19:18:16 2007 +0200 Hotfix single app build. commit ddc79a29d3ba9546559d1610b6ff7510b0a7431a Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Fri Aug 10 02:27:07 2007 +0200 Fix potential dead lock in dfb_layer_context_get_primary_region(). commit 73a8dc87fa1a833b10f672b9910cb2f586a3a8d8 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Fri Aug 10 02:26:01 2007 +0200 Fix potential dead lock in layer context initialization. commit f2d1bc51c8ed5db5e0e151b056913f9d2762323a Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Fri Aug 10 02:24:42 2007 +0200 Added fusion_reactor_set_lock_only() which does not lock and use it in fusion_object_set_lock() as this is called during object initialization. commit 50fee612fadaa3a9534cff99a136192c767e0139 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Fri Aug 10 02:19:10 2007 +0200 Fix lock order in fusion_shm_pool_destroy(). commit 13f42cb5535512e47e4a54835f7c60e75c260dbd Merge: c0802f7 77b5640 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Tue Aug 7 21:31:07 2007 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit c0802f7058b32509ac003c0c7e111e124ccb3c1b Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Tue Aug 7 21:28:30 2007 +0200 Fix size_t printf format. commit d0b8625e24c1520b917c85aedd365e47fe2eb9cb Author: Claudio Ciccani <klan@directfb.org> Date: Tue Aug 7 16:39:15 2007 +0200 Fixed first frame detection for MP3s encoded at high bitrate (> 200Kb/s). Fixed failing assertion in direct_stream_read() caused by attempt to read 0 bytes. Set default buffersize to 100ms. commit 77b564072b8b4afc5aca9107f1ba075f4acf8a98 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Tue Aug 7 11:49:22 2007 +0200 Fix size_t/sizeof format correctly with "%zu". commit 7295da6c9aa8143e526a21f86ce6598a6003d901 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Aug 7 11:34:07 2007 +0200 Removed volatile keyword from structures. Added some asm() code raising memory barrier in critical points. commit 6f8cd393c54849a1e029de68e16c8d30fe70f6fd Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Aug 6 13:14:26 2007 +0200 Follow API change in DirectHash. commit d1c7a2c7836029dfa2dce24ba507a3f9e7fca7d8 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Aug 6 13:13:18 2007 +0200 Added direct_serial_check() returning true if the target serial is not higher. commit bcab4383e5eff57aba0e76b0f99b0568ee883082 Merge: 4eb2645 0bfa945 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Aug 6 13:11:41 2007 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 4eb2645d17dc3126b02b03a79da3ba16805d1aa3 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Aug 6 13:07:54 2007 +0200 Changed DirectHash's u32 key to be unsigned long. This allows to use pointers. commit da845ee055ef3a40b2da05ff602b3ad85d668c63 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Thu Aug 2 14:30:25 2007 +0200 Lookup RGB values from indexed window color key. Use dfb_pixel_to_color() instead of hardcoded RGB16 decoding when setting an RGB window color key for the layer. commit 0bfa945e3aee20759afabd9fd6041a58bfbeab70 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Thu Aug 2 14:27:41 2007 +0200 Added dfb_pixel_to_color( format, pixel, ret_color ) using proper expansion. commit 8d8f437ae06cbbe13adcc38726b2b1817eb1bda4 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Thu Aug 2 14:03:18 2007 +0200 Fixed warnings. commit e88e7a81ffbf05a40c0eb180986c42caa3c6e045 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Thu Aug 2 00:34:34 2007 +0200 Added generic /dev/mem based system module. There's no screen or layer registered, a graphics driver is required. Added options for the module: video-phys=<hexaddress> Physical start of video memory video-length=<bytes> Length of video memory mmio-phys=<hexaddress> Physical start of MMIO area mmio-length=<bytes> Length of MMIO area accelerator=<id> Accelerator ID selecting graphics driver commit 8ec0f1c3759f6200883c8ca3f0837a12643223d9 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Wed Aug 1 22:47:12 2007 +0200 Print an error and return if no layers are available. commit 1e3143ddaab9a6deee8d0abf2fce3b808a059889 Merge: e5b17bb 781d713 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Wed Aug 1 22:43:41 2007 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit e5b17bbbe91c4db3c38e06337196b2f6a1d74ff1 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Wed Aug 1 22:35:53 2007 +0200 Readded "%.nm" as an alternative to "nm-n.%". commit 590b7b5f2e2f1b9d718897f7e1d000773e07ee74 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Wed Aug 1 10:18:45 2007 +0200 Fix locking when grabbing unselected keys. commit 781d713b48d87485a6809d771be7f4c3f052a5a3 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Sun Jul 29 14:25:42 2007 +0200 Fixed different bugs/crashes in the scaling code. Added RGB32 smooth scaling. commit 774c84357f99c8119df9303a871980767c56dbb5 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Wed Jul 25 15:23:08 2007 +0200 Fixed warnings. commit 3a3577147d1f1185906d64abdeb34997e3e1ff68 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Wed Jul 25 15:08:39 2007 +0200 Follow DFBColorKey change in layer API. commit 94c59f30479ffacc3aaa3aa04fe3048141caa542 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Wed Jul 25 13:27:56 2007 +0200 Added copyright footer. commit 313623224d91258e3fdbee90da2ba6ee447b48c8 Merge: 19461c2 2e28cc7 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Wed Jul 25 13:27:29 2007 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 19461c27471d602daa21ebe2360fce028d82699a Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Wed Jul 25 13:27:24 2007 +0200 Added direct_list_foreach_reverse(). commit 015e747bf514f7f3dc1fdd72912fbd9d06b5ddb2 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Wed Jul 25 11:55:25 2007 +0200 Follow core API change for layer color keying and use the window color key as the index argument. Applications can create an indexed window and SaWMan will use proper color keying (by index) when switching to single window mode. commit 2e28cc7ff1127118e136fd5f5a83b44ff5da2761 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Wed Jul 25 11:51:52 2007 +0200 Added option "layer-src-key-index". Added DFBColorKey which is binary compatible with DFBColor for RGB, but has an 8 bit color index instead of the alpha value. Use DFBColorKey instead of DFBColor in the CoreLayerRegionConfig. Added index argument to core layer configuration functions. commit ef5307232961a0ec19e87ec70ab77885742011a6 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Mon Jul 23 13:29:54 2007 +0200 Update scaling code with new templates. Added head/tail code to simple scaler. commit 7e6800088fa0c087164cf530d9ac2cf161609997 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Wed Jul 18 21:16:20 2007 +0200 Few more debug messages. commit 6863d69d88569a690909c4767a1687bdf3c08b2d Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Mon Jul 23 13:19:58 2007 +0200 Added source color keying and destination color key protection in 16 bit scaling template. commit 85b80ad3917d3de1cc2a8d69d27cf4b44895610d Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Mon Jul 23 13:20:17 2007 +0200 Fix warnings. commit c98eadab4c446c28a19852d39ffb227b9b3c0bb6 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Mon Jul 23 13:22:32 2007 +0200 Don't bail out with other system modules if LINUX_INPUT_USE_FBDEV is not set. commit f65acb0fd1a06f3b694d25273b7531ab1d97c982 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Wed Jul 18 20:36:19 2007 +0200 Added debug messages. commit 73f20c57998159710eeb609e166122b10581cb24 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Wed Jul 18 20:36:01 2007 +0200 Raise max number of shm pools to 16. commit e646e913f313952d20cdadcb3c024d3450ebaf90 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Wed Jul 18 20:20:01 2007 +0200 Use window's palette in single window mode. commit ec4e5ed6e363b3793d8e90e6fbadd4c4ed6ded3f Merge: aed1290 8f28528 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Tue Jul 17 01:09:06 2007 +0200 Merge branch 'master' of ssh+git://git.directfb.org/git/directfb/core/DirectFB commit aed1290039fd229db3e735b84e9947ef1175cb45 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Tue Jul 17 01:08:47 2007 +0200 Added direct_list_foreach_reverse(). commit 8f285284dd14c5c0bb53d85ba3b9fded5c7fd635 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Tue Jul 17 00:57:30 2007 +0200 build fixed commit 4f0f00961139e9c59ab97efd6fa87216fce83a9f Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Mon Jul 16 18:44:15 2007 +0200 HD extensions, thanks to Daniel J Laird! commit 826d7ae1aea550a7cf8312848f26d8111232d609 Merge: cc04f11 fd6854f Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Mon Jul 16 10:27:16 2007 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit cc04f11f830991c812f77a9e9261a1fb5dd96203 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Mon Jul 16 10:22:05 2007 +0200 Extended video provider capabilities, thanks to Daniel J Laird! commit fd6854fe1b77bf3a9621b098c82f4c36ed2a96c5 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Jul 12 12:36:08 2007 +0200 Declare some structs 'volatile' to prevent bad assumptions by the compiler. Provided 'builtin-multi' end 'single' implementations of fusion_skirmish_wait() and fusion_skirmish_notify(). Check for a dead owner in FusionProperty too. commit d9f96a4daa43683e17bb5b90f453a2be762e169b Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Tue Jul 10 16:47:15 2007 +0200 Provide the original timestamps from the X events. Use DIEF_FOLLOW for x/y motion. commit 7633e99995f0d90d3edd825d71a5e12b2bede278 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Tue Jul 10 16:30:49 2007 +0200 Work around a strange issue where XNextEvent() blocks on the last event until a newer one is received. Any X expert who can explain the error to me? commit 74e90cb10a2627fb58aaca2593105c31fd795537 Merge: ad16899 ddc3298 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Tue Jul 10 15:51:12 2007 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit ad16899fd45e40fd17d45a9f14afe7aabbf8afc8 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Tue Jul 10 15:50:38 2007 +0200 Added true keymap support to X11 input driver. Read the X11 keymap entries properly and translate to identifier and symbols. Only send key code in events. X KeySym to DFBInputDeviceKeySymbol translation might not be complete for everyone. commit ddc3298c0a0665ba0041b1877ebf8c66752fb67d Author: Claudio Ciccani <klan@directfb.org> Date: Tue Jul 10 12:11:19 2007 +0200 Implemented DSBLIT_ROTATE180. commit 1cd3b70ca91715b396c1d361db1647d4e0e38c66 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Jul 10 11:25:51 2007 +0200 Override umask when making directories and sockets. commit 17132f3fceee231bdd3196b1d3451d6872447b71 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Jul 9 22:05:09 2007 +0200 Fix 3/4 byte issue for partial updates. commit b96e94467bf956a33c11605ef485d8ab47da0936 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Jul 9 21:50:57 2007 +0200 Use an ShmImage with twice the height of the output. Alternate between bottom and top image and do XSync() BEFORE doing the next XShmPutImage(). Only call XShmPutImage() for the updated region. Removed XFlush() call. Runs nicely on dual core now. commit d468b0e68105d494c7799f54feb933887c48f379 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Jul 9 21:09:09 2007 +0200 Minor optimization in 555->565. commit 5d77a01e94016f979f373bc5ccf21b80b26dc5c6 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Jul 9 21:07:24 2007 +0200 Support conversion from 32 to 16 bit. commit f6d5eda0164895d2be6c55355f871a81587f064f Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Jul 9 21:05:04 2007 +0200 Added dfb_convert_to_rgb32(). Support 32 bit (depth 24) displays in SDL and X11 backend. commit b8649c8cae7eb9db2f8f2bfb8ed29c0dc8e5f7a8 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Jul 9 20:32:07 2007 +0200 Added dfb_convert_to_rgb16(). Use it in SDL system. Cleaned up X11 system a bit and made it use dfb_convert_to_rgb16(). commit 4e96b36727571ee0c70fe620d178b4c8b318ef99 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Jul 9 15:45:51 2007 +0200 Added IDirectFBDisplayLayer::SetRotation(). Added option "-R <degree>" to dfblayer. commit 121e8a229f4be2909bdbde8e7be2520a1d090d33 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Jul 9 15:09:15 2007 +0200 Added dfb_gfx_back_to_front_copy_180(). Added runtime option "layer-rotate = <degree>" with 0 and 180 supported. Try it with desktop-buffer-mode=backsystem until graphics drivers support the flag. I'm committing this with my screen content rotated by 180 degree but not the screen itself. Typing and reading is fine, but editing text, especiallusing y del/backspace, is horrible. commit 7c6330ce36593169e5e740b2bd98ad81c230b461 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Jul 9 14:40:57 2007 +0200 Added DSBLIT_ROTATE180 with a basic software implementation. commit 1f73f307dbcd5272ebad51a78c9c652c4b638f14 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Mon Jul 9 13:00:45 2007 +0200 Finalized ARGB4444 smooth scaling support. commit d8276f7799e60009650e28888e9fcbc024bb7253 Merge: 977ec21 2b48aaa Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Sat Jul 7 21:17:28 2007 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/DirectFB commit 658e0104170c31c9f9976cde84c47da9cf57f643 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Fri Jul 6 15:43:24 2007 +0200 Added border-[un]focused-color-index<n> options. commit 2b48aaa07cbcfe1d2bea3182ffcbaf02269729f6 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Fri Jul 6 15:27:22 2007 +0200 Added multifunctional color configuration function dfb_state_set_color_or_index(). Always tries to set both color and index. If color index is -1, color is used and searched in palette of destination surface if present. If color index is valid the color is looked up in palette if present. Added option "layer-bg-color-index = n". commit 0c01366a6f5b37a1dd00b513e6c62b1056b910b8 Merge: 14ba567 098b862 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Fri Jul 6 14:40:23 2007 +0200 Merge branch 'master' of ssh+git://git.directfb.org/git/directfb/core/DirectFB commit 14ba567e3b00d273f063d0e97f64f00e02aa756c Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Fri Jul 6 14:38:51 2007 +0200 no-force-slave commit 977ec21feffd47b27e365e594e0e66c27f342c25 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Fri Jul 6 13:31:36 2007 +0200 Big progress on the scaling front. commit d8d9f23b914c07c3e69680980c4425beeae92634 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Thu Jul 5 23:31:40 2007 +0200 Added support for ARGB4444, RGB444 and NV16 on a 16 bit RGB16 SDL window. commit 098b862938c4f577879059f6e0c8e4a17049a45f Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jul 2 12:03:11 2007 +0200 Added FusionLeave, a message sent from a slave in emergency mode to notify the master that local refs belonging to the sender must be removed. commit 0a2f0b3af5a3f0e0f498e47d55c4d5ddb610242b Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jul 2 11:57:19 2007 +0200 Forgot a newline. commit 4160d212709952ae06316a54474e46810b3d8492 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jul 1 17:19:43 2007 +0200 Actually fail if a parent window for the newly created one was specified. commit a5040250b5523b7d0e2464690d158d604517d335 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jul 1 16:03:33 2007 +0200 Use fprintf() instead of direct_log_printf() to print config_usage. commit e206b97ff745eb58824b0eb91997c49eb44adbe5 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Jun 30 14:56:42 2007 +0200 dfb_surface_reformat() no longer fails immediatly if the surface is locked, instead it waits for 3 loops before doing it. commit 0f7dd53285a56bbf38a02b82b47a7f2ee85a1f09 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Jun 30 14:54:52 2007 +0200 When using the builtin IPC implementation, chose a pool allocation base address that won't collide with those used by other worlds, i.e. the pool base of world N starts 128M after the pool baseof world N-1. As a consequence of this the maximum amount of shared memory allocatable by a world is limited to 128M. commit dcf2a2b7089fd02105f68bba5da3130c1d72f42c Author: Claudio Ciccani <klan@directfb.org> Date: Fri Jun 29 14:48:28 2007 +0200 Added a new Fusion/IPC implementation using standard system calls: - Skirmish gets implemented by using sched_yield()+usleep, exactly like linuxthreads does with pthread mutexes, but it's also capable of automatically unlocking whether the owner process died without doing it. - Property works like Skirmish, but it doesn't sleep and it doesn't check for a dead owner. - Dispatching and co. make use of raw unix sockets: there is a local address specific to each fusionee (/tmp/fusion.@WORLD_INDEX@/@HEX_FUSION_ID@) and each call (/tmp/fusion.@WORLD_INDEX@/call.@HEX_CALL_ID@.@HEX_CALL_SERIAL@), and messages are sent directly from the generator to the socket of the listeners. From a network point of view, this is similar to UDP Multicast (e.g. conference or meeting). The new implementation gets build when --enable-bulti is specified but no usable linux/fusion.h was found (however you can edit fusion/build.h to force building it). commit 21bb8adc7377b8a5be57e9e1a092513ed8cb0da6 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Jun 29 14:31:18 2007 +0200 Open log file with mode 0664. Automatically flush stderr. commit 90a53ee2da89805844cd364c52379089d16acc80 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Jun 29 14:30:00 2007 +0200 Added direct_sched_yield(). commit 8f02626a2434d6fd3fbfd14331c72b1450620c62 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Wed Jun 27 00:15:53 2007 +0200 Fix 64 bit symbol address parsing in trace code. Fix missing target directory for nm-n files. commit beab80191a61967d5b1a75e9a468f11265f40d15 Author: Ville Syrjala <syrjala@sci.fi> Date: Fri Jun 22 10:45:15 2007 +0300 Also make sure fix.ypanstep is not zero before using it. commit 51ed2fb28f1728869795a8f3cd8664745030faf8 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Jun 21 10:35:09 2007 +0200 Reset software volume to FSF_ONE when setting hardware volume succeeds. commit 6447b0f8ae8ad7212a8a74e9596f5c19870f7a48 Author: Ville Syrjala <syrjala@sci.fi> Date: Wed Jun 20 23:12:37 2007 +0300 Make sure fix.xpanstep is not zero before using it. commit ca3b5ce00d2bbd371705c94b50e9826166de23a0 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jun 20 17:38:26 2007 +0200 Added IFusionSound::GetMasterVolume()/SetMasterVolume(): change the hardware/global volume level. Added fsvolume, small utility to change the master volume. commit f7d9c1880473fdcc9f5f5d86400a30526f12a26c Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jun 20 17:31:12 2007 +0200 Removed a TODO (multichannel). commit da50bb89855497db778d4fe5c8c951d3a74fb07b Author: Ville Syrjala <syrjala@sci.fi> Date: Sun Jun 17 13:25:24 2007 +0300 Eliminate libsysfs dependency from i2c detection. Recent changes in sysfs layout broke the i2c detection. Fix the problem and remove the dependency on libsysfs. Use of libsysfs is no longer recommended by the kernel developers. commit 1a0ac5594506b71189346be53e84615f09820ac8 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Fri Jun 15 16:19:45 2007 +0200 Thanks to Daniel Laird for Video Provider Events! commit cc6acb333a99d0e1f05721d953eb0b731f3fdca9 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Fri Jun 15 13:15:05 2007 +0200 Support any color key for protection, not hard coded, but taken from layer configuration. commit c5d3112266a519a9e95257dde65611a5a0b57cf8 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Fri Jun 15 13:13:30 2007 +0200 Fixed focus border updates. commit 66d8693e2b45db7c26c7d22c70781dce2e2fdbab Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Mon Jun 4 13:39:01 2007 +0200 Implemented StartDrawing/StopDrawing() for states. When a surface is being rendered to, its graphics state is set to DRAWING. Upon Flip() the state is flushed. Each sub surface interface has a reference to its parent and a list of its children. The new mechanism needs to be enabled via "startstop" option. StartDrawing/StopDrawing() can be implemented by the graphics driver. e.g. to keep track dirty surfaces and defer flipping if it would reveal other's drawing. commit b630f7539003e04a21d6d7e44023461ecf0e2143 Author: Ben Combee <bcombee@www.directfb.org> Date: Fri Jun 15 05:01:59 2007 +0200 Add --raw option to directfb-csource to allow encoding data files in headers via git-CVS emulator commit 6987c883a18be767085d55e22638520a7d80fbc6 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Tue Jun 12 19:39:30 2007 +0200 Eek, disable smooth scaling until code supports big endian as well. commit 58c1d37bad0e6dc50db4cac3d650caf6bb07722d Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Tue Jun 12 19:34:23 2007 +0200 Fix hi/lo mixup for big/little endian in 32 bit wise 16 bit color keying code. commit c0142f6bf506d09449cdf9d2ca0250dcb05cf7fc Merge: 14f3aef 8bba6d9 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Tue Jun 12 18:57:41 2007 +0200 Merge branch 'master' of ssh+git://git.directfb.org/git/directfb/core/DirectFB commit 1659642bd98dc0706ddf2a29960b983e4568d031 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Tue Jun 12 18:55:08 2007 +0200 More fixes. commit 14f3aef4d4d9fc3f075209a9543b1022f8588493 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Tue Jun 12 17:52:39 2007 +0200 Added layer palette initialization via "layer-palette-<n> = <hexcolor>" option. commit 97c631660fe977d6d8bb5d4ddf86e1ca1d4e8001 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Tue Jun 12 17:49:43 2007 +0200 If no alignment is specified (0), default to 8 bytes offset and pitch alignment. To disable alignment, simply set to 1. commit c0c6850fd1b904a8c2c829c6d42db7d888024b41 Merge: 94508ec 60a20bc Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Tue Jun 12 17:46:19 2007 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/extras/SaWMan commit 94508ec295ff4010c5f687ce53649d5d07d27174 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Tue Jun 12 17:45:27 2007 +0200 Different fixes for reconfiguration and window association. commit 8bba6d96df16e3cd11445995cb6704676151e7c3 Author: Ville Syrjala <syrjala@sci.fi> Date: Sat Jun 2 22:19:14 2007 +0300 Check fbdev pan/wrap capabilities for double/triple buffering. commit 68d8b7ac45293dfc1b03e984a7e5a7b183382313 Author: Ville Syrjala <syrjala@sci.fi> Date: Mon Jun 11 00:58:09 2007 +0300 Fix fbdev_ioctl_call_handler() return value. commit fa628067a16af972a70cec416ce7b88f9c1bda5f Author: Ville Syrjala <syrjala@sci.fi> Date: Sat Jun 2 22:05:18 2007 +0300 More uses for D_ARRAY_SIZE(). commit aba1f2a73f4870e1bfc0384a06e49c2acb66d884 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Jun 8 15:08:39 2007 +0200 Use a preallocated surface to render the image (this should fix support for destinations that are premultiplied, separated, and co.). commit 60a20bca7b2311bca58d19b2b19f6ce0c1bd540c Author: Claudio Ciccani <klan@directfb.org> Date: Fri Jun 8 12:27:44 2007 +0200 Added missing sawman_config.{c,h}. commit 262b19a3c5e66e6f6f08428c42a3632c7d08f264 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Thu Jun 7 13:30:07 2007 +0200 Allow components without any notification. commit e50afa513f85d85b713c1a2f671456c4c5bc30cc Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Mon Jun 4 20:24:24 2007 +0200 Use sysconfdir. commit b85ffbb494236d90539d95daceb435051b5c3db5 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Mon Jun 4 20:22:11 2007 +0200 Missing files. Use sysconfdir. commit 00a47324bb5988fbc5d368f4730a1fc9ab935636 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Sun Jun 3 19:08:39 2007 +0200 Removed bogus assert. commit d44cb34fa00fede36e757238f02be6e953855c5a Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Sun Jun 3 18:32:59 2007 +0200 Use sysconfdir. commit 69cf22cc7a65ee4251e5d98f505e473490f35536 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Sat Jun 2 21:46:07 2007 +0200 Added YUV palette support. CorePalette has a second array for YUV entries. Added IDirectFBPalette::SetEntriesYUV(), GetEntriesYUV() and FindBestMatchYUV(). Either of the APIs can be used, both arrays are kept synchronized. Drivers can choose. commit 9c484e1679bdfa922d90d1d5feebc6b0106fdf89 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Sat Jun 2 21:43:34 2007 +0200 ARGB4444_TO_RGB32(pixel) commit 92eb83fc571dc67d8994c58cb7b8efb18ad32b2f Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Sat Jun 2 09:27:45 2007 +0200 Fixed _fusion_reactor_process_message()'s usage of FUSION_REACTOR_DETACH. commit b1037357aacd70152895826c4b7ed48ea192a1ce Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Fri Jun 1 11:54:40 2007 +0200 Single app core build fixes. commit e7707823f76e08ab19d05801aea72ea9841e9c35 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Fri Jun 1 10:09:59 2007 +0200 Enter Coma commit 40bb22a6fa39999074cb5d8b635ab6353c66f23d Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Fri Jun 1 09:55:46 2007 +0200 Added timeout to fusion_skirmish_wait(), 0 means unlimited. commit 046a0e7d28aa71ea0a362b23ad6a466f09b7dc98 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Fri Jun 1 08:57:58 2007 +0200 Some fixes and a temporary dead lock hack. commit 7710046b47d95673e57e2ec14d56ec735756e5d0 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Thu May 31 17:27:30 2007 +0200 Fix reconfiguration issues with latest border only code. Follow StartDesktop -> PostInit change. commit 269df8137fd06a51f4b388432bc8e395265bd1fa Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Thu May 31 17:24:47 2007 +0200 Replaced dfb_wm_start_desktop() by dfb_wm_post_init(). Removed StartDesktop which had no context pointers from WM API and added PostInit with proper context pointers. commit f6710f10cbbdfc28052d984a60da11b62ee457ea Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Thu May 31 15:04:21 2007 +0200 Add more debug. Cleanup a bit. commit de607f49c7de8ea6994e29abe203e9deb30d8957 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Thu May 31 14:19:08 2007 +0200 Debug messages, geometry update fix, associated window update fix. commit 23e75723ddddbd3188a58de468c253b980b8aa37 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Wed May 30 18:10:07 2007 +0200 New sawmanrc. Better window border configuration. Adapt to layer resolutions. Reconfigure layer for border only mode if possible. Handle parent window lookup and DWOP_KEEP_ABOVE/UNDER. commit 988f0e78899cd5b88983f3460436740c45f12f39 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Wed May 30 18:07:55 2007 +0200 Added DWOP_KEEP_ABOVE and DWOP_KEEP_UNDER. commit ee262b3fca03b5aafefbd789b698181dd732f619 Merge: 41e5c47 0d71e41 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Wed May 30 10:01:58 2007 +0200 Merge branch 'master' of ssh+git://git.directfb.org/git/directfb/core/DirectFB commit 41e5c4767107a8cd965617c680ad2c8cd3d9f498 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Wed May 30 09:58:51 2007 +0200 Export dfb_config_parse_pixelformat(). commit f6d0fcae535e8b3600063a20e3743c23ed34ea7b Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Wed May 30 01:07:31 2007 +0200 Dispatch SwitchFocus() via AppMan. commit ca781aef8987938422d957a6c88323f5a3be0ed0 Merge: 314f74e 3700cf9 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Wed May 30 00:18:07 2007 +0200 Merge branch 'master' of git+ssh://git.directfb.org/git/directfb/core/FusionSound commit 314f74e9399a1bc5b18da7995b83e2a725a979e1 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Wed May 30 00:17:34 2007 +0200 Follow API changes. commit 0e4f6ef90d97513f48d01fac5eb6a24ed708f229 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Tue May 29 23:23:26 2007 +0200 Follow FusionCall API changes. commit 0e9eba57d87a1e8d0f446de2daa65fc84617e879 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Tue May 29 23:21:30 2007 +0200 Extend list of custom keys. commit 0d71e415412bbb21e6bed49bd41e32d421b254ca Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Tue May 29 23:10:23 2007 +0200 Fixes for grayscale PNGs. commit 67350f49d39c9c168575384279b1a92484c6e6f7 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Tue May 29 22:52:08 2007 +0200 Added DFFA_FIXEDCLIP that can be used in addition to fixed advance and cuts off glyphs if they are wider than that. commit bbbd47a34281d756218e6decea0a61844c0a97ea Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Tue May 29 22:50:28 2007 +0200 Use direct_list_foreach_safe() for links as well. commit d25b01b3a74021ba4ecf56219695c3251f4ea76f Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Tue May 29 22:48:16 2007 +0200 Check for NULL type earlier. commit dde7fa2a3bef0143334450641a5c11d524f75337 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Tue May 29 22:47:40 2007 +0200 Added "[no-]madv-remove" to get around the auto detection. commit 1f312b1091a5ef85089f685dfd0fcd7c56ada8ea Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Tue May 29 22:47:11 2007 +0200 Added DFB_INCOMPLETE to stringification. commit c90cd950116b20eb4dcdd0e60352cc91f8df0467 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Tue May 29 22:45:26 2007 +0200 Avoid "unused warning" if debug domains are declared, but not used. commit fb76d8e75e86a194e5b03a377950a33380c79850 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Tue May 29 22:44:03 2007 +0200 Added DFB_INCOMPLETE and return it from image providers if rendering has been aborted by the render callback. commit 8218b2a254a0fd4705fc47af35d0be41d73cd19c Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Tue May 29 22:36:26 2007 +0200 Image providers et al can access memory of memory based data buffers directly now. commit 8e185ff671d3cd745e66c443c8a658e5d82e9936 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Tue May 29 22:35:13 2007 +0200 Use CSLF_FORCE to lock a surface for software StretchBlit(). Check CSLF_FORCE when locking "video-low" surface buffers for CPU access and pull buffer into system memory if set. commit 8646db00b0c5cc7df8fc6430fd8a26660dc7c62a Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Tue May 29 22:29:22 2007 +0200 Cast to ulong, not u32, to align pointers. commit 8fc54bcffcdb1dae57a878e1b9b735b336713170 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Tue May 29 22:24:59 2007 +0200 Added IDirectFBSurface::SetRenderOptions() as a new state element, but not mandatory for graphics drivers. At the moment it's used by the software driver to choose smooth or standard scaling. Added smooth up/down scaling for RGB16. Added "smooth-upscale" and "smooth-downscale" options to choose a default. commit 52bb513a1d63912bf67d28caebd97f5b2d888475 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Tue May 29 22:16:37 2007 +0200 New option "surface-sentinel" to enable surface sentinels at the end of chunks in video memory. commit 464e40e8feb90ead4eab2168252f644d71fb53f1 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Tue May 29 22:07:58 2007 +0200 List buffers in video memory if "-s" is passed. commit 48e8de5a110010b4656fc402edf0b18ffa518090 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Tue May 29 22:06:08 2007 +0200 Explicit shutdown order of core parts and pools. commit 8a8141d41681cacbed1eb667ad88ba07d842a660 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Tue May 29 22:01:55 2007 +0200 Use a FusionRef as a lock counter. commit 7982b09b68f45182d2b98ead917f8c9a831da31a Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Mon May 28 22:52:58 2007 +0200 Added missing <sys/types.h> include. commit 0496e6e3a38e01aa5b0fc07472a60776de9d0ffd Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Mon May 28 22:08:17 2007 +0200 Added direct_thread_get_tid(). commit 1a80a3bad8b8cbba34f8004fb67759b878483c5c Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Mon May 28 22:08:34 2007 +0200 Added fusion_dispatcher_tid(). commit eea7bfaf9bc0cad1660ed6dea4989c1774f08564 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Mon May 28 19:49:49 2007 +0200 Added fusion_skirmish_wait() and fusion_skirmish_notify(). When you hold the lock you can wait until you get notified, where others can get the lock while you're waiting. At the moment it requires the notifier to acquire the lock. commit a5f613e79af04a098f03b0d9614b9e2fbfe5f0ff Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Mon May 28 18:08:52 2007 +0200 API break! Support destructor context pointer. Added "ctx" argument to fusion_object_pool_create(). Added "ctx" argument to FusionObjectDestructor. commit 5984bb10163cff00318939c01251e9f5c3acd196 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Mon May 28 17:06:04 2007 +0200 Keeps API compatibility. Added fusion_reactor_attach/dispatch_channel() with the older calls using channel zero. commit 626ad855b335426e44da22f52a70f1c82a6a266b Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Mon May 28 14:33:51 2007 +0200 Removed call_arg option from dispatch callback. It will be used for something else. commit 4ba4f45f8db7e8b7a6145562e0ebfb9d08b3ed10 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Mon May 28 11:48:18 2007 +0200 Follow FusionCall API changes. commit 259d8890d3103da98c31b39499f6ee22930da9fa Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Mon May 28 10:46:00 2007 +0200 API break! Changed call handler function type. +typedef enum { + FCHR_RETURN, + FCHR_RETAIN +} FusionCallHandlerResult; + +typedef FusionCallHandlerResult (*FusionCallHandler) (int caller, /* fusion id of the caller */ + int call_arg, /* optional call parameter */ + void *call_ptr, /* optional call parameter */ + void *ctx, /* optional handler context */ + unsigned int serial, + int *ret_val ); The return value defines the library's behaviour after exiting from the handler. To return a value immediately, write to *ret_val and return FCHR_RETURN. If you want to make a call later on to fusion_call_return() yourself, use FCHR_RETAIN. The new serial value allows to have more than one call pending while calls can be returned in any order. The caller is still blocked on its single call, of course. +DirectResult fusion_call_return ( FusionCall *call, + unsigned int serial, + int val ); commit 04d8bd665987909eb07b37e77f51ff2361dc172a Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Mon May 28 10:36:00 2007 +0200 Additionally check if SOPATH is defined when checking for DFB_DYNAMIC_LINKING to do a strange workaround which was needed at some point, but I don't remember and plan to remove this. commit e1d40d341a808bdd9112a4fad06f69bd58b5f14b Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Sun May 27 12:05:45 2007 +0200 Added fusion_reactor_set_dispatch_callback() with a test. commit 98020fc92d03026bde70772bfe01634b8bce9e3b Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Sun May 27 12:05:27 2007 +0200 Fix zero FusionID in forked process by entering the world after reopening it. commit 4b253a59842f91db228924d579423594258e0950 Author: Claudio Ciccani <klan@directfb.org> Date: Sun May 27 10:07:44 2007 +0200 Removed limit of 8x8 surfaces: apparently it comes from the Rage128 driver but it doesn't apply to Radeon(s). commit 8a1f12ee0e8273a36db3b8825edc5cf56fb2f3bc Author: Ville Syrjala <syrjala@sci.fi> Date: Wed May 23 23:16:08 2007 +0300 matrox: Add RGB444 and RGB555 support. commit e467eba04f4776ada3c95888b094cde04876f87d Author: Ville Syrjala <syrjala@sci.fi> Date: Wed May 23 22:23:36 2007 +0300 mach64: Add RGB444 and RGB555 support. commit dfb1d44c61e614974725b48470a3920092d5b1eb Author: Ville Syrjala <syrjala@sci.fi> Date: Wed May 23 22:30:29 2007 +0300 Plug a memory leak in the PNG image provider. Thanks to Eugene Everson. commit f33776a36ad561d40ede15bb565f91468f05007c Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Tue May 22 22:50:13 2007 +0200 Fix code that controls single/double buffer window creation for primary surfaces in windowed mode. If DSCAPS_FLIPPING is set, it uses one buffer which already requires a Flip due to the window. Only if DOUBLE is set explicitly, create two buffers. commit c91b87c6cab9e6071b9d7fe7cce0d3399acb2e18 Author: Claudio Ciccani <klan@directfb.org> Date: Tue May 22 17:54:17 2007 +0200 Reverted default border mode to CLAMP_LAST. commit d7321670f349c6495b222d35c9bf9d4af2090e14 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Tue May 22 14:23:09 2007 +0200 Version 1.1.0 commit 1822b835b992367da001d2c4292b0f3c15ee72fa Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Tue May 22 13:02:12 2007 +0200 Added advanced window geometry for positioning and scaling of windows relative to their own bounds, with ability derive from parent geometry. DFBWindowGeometryMode: DWGM_DEFAULT, DWGM_FOLLOW, DWGM_RECTANGLE, DWGM_LOCATION. DFBWindowGeometry: mode, rectangle, location. IDirectFBWindow::SetSrcGeometry() and IDirectFBWindow::SetDstGeometry(). Added generic dfb_window_set_config() for simplifying core code and moving config handling into interfaces. commit d82a8e129b09a38e6cc8f966bdd6e2baf2709303 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Tue May 22 12:49:55 2007 +0200 New layer configuration system, staying compatible with older options: init-layer=<id> Initialize layer with ID (following layer- options apply) layer-size=<width>x<height> Set the pixel resolution layer-format=<pixelformat> Set the pixel format layer-depth=<pixeldepth> Set the pixel depth layer-buffer-mode=(auto|triple|backvideo|backsystem|frontonly|windows) layer-bg-none Disable background clear layer-bg-color=AARRGGBB Use background color (hex) layer-bg-image=<filename> Use background image layer-bg-tile=<filename> Use tiled background image layer-src-key=AARRGGBB Enable color keying (hex) commit cd983756cf48cc5adc54eeaf17a5ca606c4ec4fb Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Tue May 22 12:34:42 2007 +0200 igittigit commit 8f5294201ad2e15c566563dfd544816bef601378 Author: Claudio Ciccani <klan@directfb.org> Date: Mon May 21 21:16:44 2007 +0200 Set texture border mode to CLAMP_TO_BORDER when using TextureTriangles() (for compatibility with Xrender/Cairo). commit 05b15944eb91f14a7dacdc37fc6eed13e3e2983a Author: Claudio Ciccani <klan@directfb.org> Date: Sat May 19 10:44:12 2007 +0200 RGB555 support. commit 3700cf9465749797b947d26829c5827e25d1b93c Author: Ville Syrjala <syrjala@sci.fi> Date: Fri May 18 18:33:15 2007 +0300 Make it build when $(top_builddir) != $(top_srcdir). commit 358b96365c78914004ccca17c9e1d8f5e995dadf Author: Ben Combee <bcombee@www.directfb.org> Date: Thu May 17 05:05:42 2007 +0200 memset argument order was backwards, so never cleared context structure via git-CVS emulator commit f6bf7224557c99dc2a374b04955ac7eafee4ed2d Author: Claudio Ciccani <klan@directfb.org> Date: Wed May 16 10:45:40 2007 +0200 When waiting on conditions, install a cleanup handler that automatically unlocks the mutex. This way calls can be safely canceled. commit 98bdbfe23b83eb299dfe23eae1b3588956842940 Author: Claudio Ciccani <klan@directfb.org> Date: Tue May 15 21:33:03 2007 +0200 By default, if the master must exit and there are still slaves playing, the master forks and waits until all playbacks are finished before quitting (yes, this was the original behaviour but it didn't work previously). Added option [no-]wait to specify whether or not the master must wait the slaves (in the latter case, slaves will be terminated). Require DirectFB 1.1.0. commit 0ab0c8406252846113496a0ed4fcc75f6eccdde5 Author: Claudio Ciccani <klan@directfb.org> Date: Tue May 15 21:24:28 2007 +0200 Workaround to make forked processes work with fusion: if the master forks, release shared memory only when the child exits. commit 130e091f281f290d10a7117a0bb6c512e611bf82 Author: Claudio Ciccani <klan@directfb.org> Date: Mon May 14 17:26:33 2007 +0200 Support RGB555 and RGB444. commit 4edc1b1e122742d9b764ef92de97b4cbed014356 Author: Claudio Ciccani <klan@directfb.org> Date: Mon May 14 14:59:43 2007 +0200 Optimizations again. commit 6dccd0b712e9e8aef9e8acbf786231a0e02fe951 Author: Claudio Ciccani <klan@directfb.org> Date: Sun May 13 19:17:51 2007 +0200 Fixed previous commit (missing some switches). commit 7b95216119505437aee894b15a76ee065405f822 Author: Claudio Ciccani <klan@directfb.org> Date: Sun May 13 19:12:59 2007 +0200 Added support for RGB555. commit 175996969fa3d1c159d81f3d297691ea78e98b03 Author: Claudio Ciccani <klan@directfb.org> Date: Sun May 13 18:49:23 2007 +0200 Made DisableAcceleration( DFXL_DRAWSTRING ) work. commit a949dea3a711e26bd16bdaf1b60e7a66f675a57e Author: Claudio Ciccani <klan@directfb.org> Date: Sun May 13 17:27:07 2007 +0200 Still optimizations. commit 79dba40188d55587dee815b29fbc8aecd72d6b6b Author: Claudio Ciccani <klan@directfb.org> Date: Sun May 13 16:28:02 2007 +0200 Optimizations. commit 7dfb4e14a2235945e4fbe1f54e722f925a521591 Author: Claudio Ciccani <klan@directfb.org> Date: Sun May 13 15:27:07 2007 +0200 Optimizations and cleanup. commit 6f1c7ee42abeb6c341bf294d4da8fa74f9d1e62e Author: Claudio Ciccani <klan@directfb.org> Date: Sun May 13 11:25:51 2007 +0200 Fixed support for premultiplied surfaces. Dropped down blits from system memory on the NV20 (crashes on Xbox). commit 9ec1db705c33ebd629c7587a1efbbf68f498d10a Author: Claudio Ciccani <klan@directfb.org> Date: Sat May 12 18:02:42 2007 +0200 Added missing files/extensions. commit 5fe0eb2028056a5b9c48c1769ae221564f4255cc Author: Claudio Ciccani <klan@directfb.org> Date: Sat May 12 18:00:37 2007 +0200 Updated man page. commit 34ef97bc9bb83274177c66313f0dda4a7193ed0a Author: Claudio Ciccani <klan@directfb.org> Date: Sat May 12 18:00:00 2007 +0200 Provided a way to define the channels configuration. Introduced a field in stream and buffer descriptions that define the channels configuration (see FSChannelMode). When set, this field overrides the 'channels' field. Replaced internal references to generic channels by appropriate FSChannelMode(s). Added options "channelmode" to define the channels configuration of the output device. Moved downmixing levels stuff to CorePlayback (set via fs_playback_set_downmix()). commit 38f61527f931b5546e8115e4573864a8df792558 Author: Claudio Ciccani <klan@directfb.org> Date: Fri May 11 16:24:04 2007 +0200 Moved .cvsignore(s) to .gitignore(s). commit 6921daf02774cbc84477a958851e24a8abb3f4d4 Author: Claudio Ciccani <klan@directfb.org> Date: Fri May 11 16:21:07 2007 +0200 Follow changes (i.e. implemeted support for multichannel streams). commit 86303c2748bea56e5854810b641c51dee5e3c2de Author: Claudio Ciccani <klan@directfb.org> Date: Fri May 11 16:15:26 2007 +0200 FusionSound 1.1.0 is here and plays in Dolby Surround! Implemented support for up to 6 channels (Surround 5.1) sources (see the header for better explanation of the channels mapping). If you only need support for mono/stereo sources, you can pass --disable-multichannel to configure to avoid building the new code (thus saving space and memory). Added IFusionSoundPlayback::SetDownmixLevels() to set the downmixing levels of the center and rear channels (in case the output device only supports mono/stereo). Added fusionsound_limits.h, containing some definitions about mixing limitations. commit c5423422782ebfa49afa772cce8a336941523147 Author: Claudio Ciccani <klan@directfb.org> Date: Fri May 11 15:25:21 2007 +0200 Allocate IFusionSoundPlayback upon first call to GetPlayback() and return the same interface upon subsequent calls. commit 02856c9dd91e5cd22c0f3a3184949d27656972b5 Author: Claudio Ciccani <klan@directfb.org> Date: Fri May 11 15:20:19 2007 +0200 Clamp volume level between 0 and 64. commit 23313448989e463c670a066ec9b296ef0b275644 Author: Claudio Ciccani <klan@directfb.org> Date: Fri May 11 15:17:59 2007 +0200 Fixed a memory leak. commit f2bb375b2c3a51d2a98ca1c66e49e5af0092f223 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Thu May 10 21:53:25 2007 +0200 really builds now commit 999d224fa73fef30ce3f06d75f0c6d94b3a11637 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Thu May 10 21:51:26 2007 +0200 another build fix commit d43af68e75bf308ab1692514ec624ffec686ee3e Author: Denis Oliver Kropp <dok@shizo.pixelworks.com> Date: Thu May 10 21:16:42 2007 +0200 Fix build. commit 6bab6bb6fbb7da5dcca3ddd4da9d44224e2495dc Author: Denis Oliver Kropp <dok@shizo.pixelworks.com> Date: Thu May 10 21:14:51 2007 +0200 Use fixed script. commit d6ec7e5f66faec146df5c279ab6f2e0a66acce13 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Tue May 8 22:58:44 2007 +0200 Added DWDESC_OPTIONS and DWDESC_STACKING to give initial values in the DFBWindowDescription using the new fields 'options' and 'stacking'. Added DWDESC_PARENT to DFBWindowDescriptionFlags and 'parent_id' to DFBWindowDescription. This can be used to associate a window to another, but it's up to the WM to implement it. In SaWMan this makes the window cover exactly the area of the parent window including scaling if needed. Associated windows do not get focus or events themselves, but their parent. Added IDirectFBWindow::SetKeySelection() that selects a mode for filtering keys while being focused. The selection defines whether all, none or a specific set (list) of keys is selected. Added DFBWindowKeySelection featuring DWKS_ALL, DWKS_NONE and DWKS_LIST. Added IDirectFBWindow::GrabUnselectedKeys() and UngrabUnselectedKeys() to have a key collector window receiving all keys that the focused window did not select. Added DFBWindowEventFlags featuring DWEF_RETURNED so far, which means that the event has been returned, i.e. has not been consumed by the original recipient. The DFBWindowEvent field 'flags' has also been added. Simplified internal dfb_layer_context_create_window() and dfb_window_create() and replaced dfb_window_*grab*() by dfb_window_change_grab(). Changed IDirectFB::CreateSurface() behaviour: For primary surfaces in windowed mode, only create a window with two buffers if DSCAPS_DOUBLE is set, but not DSCAPS_FLIPPING. Added DWDESC_PARENT to DFBWindowDescriptionFlags and 'parent_id' to DFBWindowDescription. This can be used to associate a window to another, but it's up to the WM to implement it. In SaWMan this makes the window cover exactly the area of the parent window including scaling if needed. commit 1fa85033db594e51e811307775ceaa4b1eee882a Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Tue May 8 19:46:09 2007 +0200 Only use FBDev systme module data in linux input driver if system is built. commit 24b48dad33f667887addf612238f446012f05b54 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Tue May 8 17:52:13 2007 +0200 gcc 2.95 fixes commit d22702f8fb2b31fd67e6586022a7b00bee5625b3 Author: Denis Oliver Kropp <dok@shizo.zion.home> Date: Tue May 8 17:37:06 2007 +0200 Sorted format_strings[]. commit 33bf1df595d7392e626cc30bcdd531dbc7173b16 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Tue May 8 17:21:56 2007 +0200 RGB444 and RGB555, thanks to Daniel J Laird! commit bbc5ef93f0fb97e7a9df9bf29c5b04d6cff5d890 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Tue May 8 16:51:50 2007 +0200 gcc-2.95 fix commit 5bd55fa674304859b9dade0849ec0cc6cfb708d3 Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Tue May 8 16:48:07 2007 +0200 Removed obsolete warning. commit 692d8f9ffa334f41b28bd27c81e7daaf50da40ea Author: Denis Oliver Kropp <dok@shizo.(none)> Date: Tue May 8 16:06:31 2007 +0200 1.1.0 commit 2797c2cc4b15e0e94b9dbab6221f9c536b175ac5 Author: Ville Syrjala <syrjala@sci.fi> Date: Tue May 8 03:01:31 2007 +0300 Pan the layer to follow the mouse cursor (aka. virtual resolution). commit 6cde04843dfdbe77b09bc4bc5b56305140b6687c Author: Ville Syrjala <syrjala@sci.fi> Date: Tue May 8 02:59:18 2007 +0300 Add source rectangle support to fbdev layer. commit 9d6fa50384abdce554d4ae54d548865f74b9f2f1 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Apr 24 17:11:58 2007 +0200 Fixed a segfault when freeing reactor nodes. commit 6904ef61213633cbbc3b789bbe8fcdca4c2ff87c Author: Claudio Ciccani <klan@directfb.org> Date: Mon Apr 23 19:03:29 2007 +0200 Clarified some aspects about the behaviour of IDirectFBWindow::Bind(). commit f7abc96cc2fcee72fd35e7ec4220f05a389b9fd4 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Apr 23 16:45:32 2007 +0200 Implemented IDirectFBWindow::Bind()/Unbind(). :) The change is backward and binary compatible. commit 4aa9a059ed311a92fed5dca69378b2dd5a16815e Author: Claudio Ciccani <klan@directfb.org> Date: Tue Apr 17 18:41:41 2007 +0200 1.0.0. commit 6235bb2f8ec2fde3671accba01cac90067b9ee61 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Apr 17 18:41:07 2007 +0200 Preparing NEWS for 1.0.0. commit 78e24d7ab5197281129cf8880a9824d546b71781 Author: Denis Oliver Kropp <dok@headway.(none)> Date: Tue Apr 17 02:36:09 2007 -0700 Publish FusionDale commit 42d04df0a5b75dee771be7e3929434ec6279ab7a Author: Ville Syrjala <syrjala@sci.fi> Date: Mon Apr 16 01:51:40 2007 +0300 Use D_ARRAY_SIZE() macro where appropriate. commit 2735a9544c999369a5000324dbdd550c7c276268 Author: Ville Syrjala <syrjala@sci.fi> Date: Sun Apr 8 02:09:39 2007 +0300 Use D_ARRAY_SIZE() macro where appropriate. commit 47d97462a08240236683b4cc3aa77c66bd8ca241 Author: Ville Syrjala <syrjala@sci.fi> Date: Thu Apr 12 02:49:39 2007 +0300 Fix evdev ioctl() parameters. commit aef06762b6459bac15ddf2b47e6fcc9231064f6c Author: Claudio Ciccani <klan@directfb.org> Date: Sun Apr 15 14:28:40 2007 +0200 Improved noise shaping filter's precision. commit a7d95847288c8c490c4ea4d60e973e2838e5ac2c Author: Denis Oliver Kropp <dok@shizo.localdomain> Date: Wed Apr 11 16:13:42 2007 +0200 Previously, in dfb_thread_destroy() if a thread is neither detached not joined, it was just canceled and the struct was freed, magic cleared etc. To avoid an assertion in the cleanup handler of the thread, detach it before canceling, don't free its struct etc. commit db515696b39af71bea30e09d2fd48a1040addd0b Author: Denis Oliver Kropp <dok@shizo.localdomain> Date: Wed Apr 11 16:04:37 2007 +0200 Misc debug messages. commit 6299a9a345d38f9b94e6b82d415dbd4554745e15 Author: Denis Oliver Kropp <dok@shizo.localdomain> Date: Wed Apr 11 16:02:01 2007 +0200 Fix copy'n'paste error that caused values to be freed if keys should be. commit f76465a11cd72af4dfbbe48f1ed9ec4abc67b045 Author: Denis Oliver Kropp <dok@shizo.localdomain> Date: Wed Apr 11 16:00:12 2007 +0200 Fix (un)locking. commit 58d2e6aa149cbc3c7ac62e858d86c87cad4a7edb Author: Claudio Ciccani <klan@directfb.org> Date: Fri Apr 6 12:45:04 2007 +0200 Added option --without-tools. Option --enable-examples changed to --without-examples. commit 578301e97942c9d1abd242b95470e2b4c298ff71 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Apr 6 12:44:09 2007 +0200 Added fsplay, a command line player. commit e286be1d7ff4149e6ee6b710e6f26d9077182a95 Author: Denis Oliver Kropp <dok@shizo.localdomain> Date: Mon Apr 2 09:31:33 2007 +0200 Fixed false assertions... commit 7796a5e3a8b1235f1e78fae540837198858acbcd Author: Denis Oliver Kropp <dok@shizo.localdomain> Date: Sun Apr 1 15:32:40 2007 +0200 Validate clip in dfb_state_update() also if destination was just set manually, not via dfb_state_set_destination(). commit d44db9c74b717ae9b7edb51cfd684dc4b88d5c15 Author: Denis Oliver Kropp <dok@shizo.localdomain> Date: Sat Mar 31 16:36:06 2007 +0200 Thanks to Thanks to sridewa #sridewa gmail.com#! commit 2645d66bd67746e970741839f9d4ec11a9c2c5a6 Author: Denis Oliver Kropp <dok@shizo.localdomain> Date: Wed Mar 28 12:07:42 2007 +0200 Clear header structure before (partially) filling it, to avoid leaking data from stack into file. Turn on memory allocation debugging. commit c569762cef58f40fbee123fd5b7ddbd64a813a07 Author: Denis Oliver Kropp <dok@shizo.localdomain> Date: Sat Mar 24 22:35:31 2007 +0100 Added missing pthread_rwlock_destroy(). commit 330450df944b491bef4d0c49f8567f8f3cc41be9 Author: Denis Oliver Kropp <dok@shizo.localdomain> Date: Sat Mar 24 12:25:11 2007 +0100 Fix general dead lock problem with reactors. - Replace mutex by read/write lock. - Write lock during attach/detach() - Read lock during dispatch() - Only remove reactions from node if write lock is held. - Don't link reactions into the node, but allocate an extra link structure, to avoid accessing foreign and probably deallocated memory. - In dispatch() if reaction returns RS_REMOVE, just mark the link as dead and don't write to reaction structure, which might be deallocated by the reaction handler. - More changes, even more details... commit fcc80bc32ebf455329130d648e70336e3f3d9b5a Author: Denis Oliver Kropp <dok@shizo.localdomain> Date: Fri Mar 23 16:21:44 2007 +0100 Use FusionHash for arena fields. Avoids multiple fields with the same name and just replaces the value. Should also be a faster for arenas with more than three or four fields. Minor code cleanup in lock_arena(). Added debug domain and messages. commit 7711a22301ebf93904fb3997cba09f5b5e6fe7e8 Author: Denis Oliver Kropp <dok@shizo.localdomain> Date: Fri Mar 23 16:18:02 2007 +0100 Added fusion_hash_set_autofree() to enable/disable automatic freeing of values and/or keys. commit 3663b176f629e2487bc32095dc3c3a9591a1f681 Author: Denis Oliver Kropp <dok@shizo.localdomain> Date: Fri Mar 23 16:11:41 2007 +0100 Reinitialize entries in static pool array properly. Added debug domain and messages to SHMALLOC and friends. commit 0a6c3fd384db48d679f274b31f21fb03db08812e Author: Denis Oliver Kropp <dok@shizo.localdomain> Date: Fri Mar 23 15:54:42 2007 +0100 Fix typo in error message. commit c3b24b2df174cdb029d50485c9aed75a62555736 Author: Denis Oliver Kropp <dok@www.directfb.org> Date: Fri Mar 23 15:46:30 2007 +0100 Close file descriptor of shared memory files and be happy with just the static mmap() and the filename for using truncate() instead of ftruncate(). via git-CVS emulator commit d3a576aef5806c82576abdd8ec936dd0f6832d29 Author: Denis Oliver Kropp <dok@www.directfb.org> Date: Fri Mar 23 15:40:11 2007 +0100 Added direct_thread_detach() and direct_thread_is_detached(). Use pthread cleanup to free the DirectThread structure etc. via git-CVS emulator commit 3fcc94f1f0964fc19d5e228ba4df8a67d1501090 Author: Denis Oliver Kropp <dok@www.directfb.org> Date: Fri Mar 23 15:03:59 2007 +0100 Fix ARGB on RGB16 blending. Use Duff's Device and optimize for 0% and 100% opaque. via git-CVS emulator commit 5d50439bb5f55778968d70a4dc6bc3ee823a9e2e Author: Claudio Ciccani <klan@directfb.org> Date: Fri Mar 23 10:51:46 2007 +0100 Round samples when dithering is disabled. commit 8ce787dedf27a17394b73e94a9e0c832593b3260 Author: Denis Oliver Kropp <dok@www.directfb.org> Date: Thu Mar 22 11:31:20 2007 +0100 Fixed RGB24 to RGB16 conversion. via git-CVS emulator commit ec93993bf0de912cbc3aeb7c86e9eaccdd4858d1 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Mar 21 17:18:51 2007 +0100 Fixed DirectFB version check. commit 848cfefef00b738d736ceac287001da1141de9a5 Author: Denis Oliver Kropp <dok@www.directfb.org> Date: Wed Mar 21 00:36:28 2007 +0100 Use setjmp() before having libpng trying the longjmp(). This avoids the unwanted abort(). via git-CVS emulator commit 0bf930d71514a028d931d4ea425a98607791e4e3 Author: Ville Syrjala <syrjala@sci.fi> Date: Tue Mar 20 20:10:22 2007 +0200 Handle suspend. commit 22779946a4f70a31f8d79be3bac96b635ad5d338 Author: Denis Oliver Kropp <dok@www.directfb.org> Date: Tue Mar 20 18:30:21 2007 +0100 Test via git-CVS emulator commit d2038767ceaab5c746d73c2ff31d753a632f9bd3 Author: Denis Oliver Kropp <dok@shizo.localdomain> Date: Tue Mar 20 18:18:55 2007 +0100 test commit e1d02c08381e753e2c15106f492f166fe0c525c6 Author: Denis Oliver Kropp <dok@shizo.localdomain> Date: Tue Mar 20 18:16:27 2007 +0100 test commit 0c7afb4c46387e001cebc9bd68a085965f1d2f29 Author: Denis Oliver Kropp <dok@shizo.localdomain> Date: Tue Mar 20 18:12:25 2007 +0100 test commit 175927a7e63be7d6e111fa1677fb88f12704ca6b Author: Denis Oliver Kropp <dok@shizo.localdomain> Date: Tue Mar 20 18:10:08 2007 +0100 Test commit c70d1312b75d47991e9aeab733aa98b645e67ff7 Author: Denis Oliver Kropp <dok@shizo.localdomain> Date: Tue Mar 20 18:02:47 2007 +0100 test commit 70f47b5508245a501487fe194d3149d6a924b014 Author: Denis Oliver Kropp <dok@shizo.localdomain> Date: Tue Mar 20 17:52:43 2007 +0100 Test commit f511fe426936a2131835d7efc7c48fb33b372f88 Author: Denis Oliver Kropp <dok@www.directfb.org> Date: Tue Mar 20 17:43:58 2007 +0100 Test via git-CVS emulator commit 8f03a4f0485a1f1160b014fcc7ac4357b46189fa Author: Denis Oliver Kropp <dok@www.directfb.org> Date: Tue Mar 20 17:42:24 2007 +0100 Test via git-CVS emulator commit bd60a241b6a71be7f7649d8531b7be10a4e77c65 Author: Denis Oliver Kropp <dok@www.directfb.org> Date: Tue Mar 20 17:40:36 2007 +0100 Test via git-CVS emulator commit ddb706580c35327cabdaeae85850c0287694ca16 Author: Denis Oliver Kropp <dok@www.directfb.org> Date: Tue Mar 20 17:38:47 2007 +0100 Test via git-CVS emulator commit 5132c7082d36e19ade81cc9b2fc6874947dd125b Author: Denis Oliver Kropp <dok@www.directfb.org> Date: Tue Mar 20 17:34:33 2007 +0100 Test via git-CVS emulator commit 7750c66985bc64958e10055245d662777f61b6e6 Author: Denis Oliver Kropp <dok@shizo.localdomain> Date: Sat Mar 17 00:02:28 2007 +0100 Revert to old format. commit e9816ab77ae45884c2920125e38b43c2be82c4fe Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Mar 12 08:59:59 2007 +0000 Applied patch from Rolf Ahrenberg to support automake 1.10, thanks! commit c18cc7f9f51b330679ff1e38deaa9a6844671681 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Mar 10 14:20:49 2007 +0000 Cleanup. commit 63d3cc97c69a2b82ef1d5d119f0ccc677e105c43 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Mar 9 14:53:38 2007 +0000 Update the "pending" parameter from Write() instead of FillBuffer(). commit 4912a5b0d9cedf7a7a32dc6f23a97c712a06b37d Author: Claudio Ciccani <klan@directfb.org> Date: Fri Mar 9 14:52:04 2007 +0000 Finally fixed the garbage-with-large-output-buffer problem: repeat last sample instead of interpolating with "dirty" data. commit be496f6044188236a2b52859f3d0cccabb96dd4b Author: Mark Adams <marka@directfb.org> Date: Wed Mar 7 10:39:49 2007 +0000 Fix blitting of planar surfaces (YV12/I420) when a source rectangle is used or the source and destination surfaces are different sizes. commit 5993d8e0eb9ca3efa8d087a1e73c167f5b16edfa Author: Claudio Ciccani <klan@directfb.org> Date: Wed Mar 7 09:55:42 2007 +0000 When upsampling buffer's data, repeat last sample instead of wrapping at the end. commit 1030f53f3ffc035993a8788e2d74916c3adffe06 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Mar 5 16:24:36 2007 +0000 Fixed two assertions about volume level. commit 0ee28dabe3ef06e0040ef37f5759aa6ada140417 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Mar 5 15:07:08 2007 +0000 Enable using Tremor (Ogg/Vorbis integer decoder). Good for embedded devices. commit e7d1e212ec250cd9f8ae43fc2c79b904f6208278 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 4 01:05:28 2007 +0000 hotfix commit 9c687254b2690a14aa5faa3b1a916d305ab688a5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 4 00:01:11 2007 +0000 1.0.0 commit 8fbcdaeb947cd5fac4d09e3a76ce2a5322210586 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 3 23:08:04 2007 +0000 updated commit affa1214d3097c2834a4407e98e71c908751fbf8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 3 22:46:13 2007 +0000 1.0.0 commit b595995119c8fa9fca93c278cc3c90a837f44546 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 3 21:53:44 2007 +0000 Fix type punn-ishment. commit e46da95536009730b0d26c8462f0c322efd918df Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 3 20:53:51 2007 +0000 Updated copyright information. commit f873d6cc66e68df4056c36e9a42fe0f5377a264c Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 3 20:06:47 2007 +0000 | =======================| DirectFB 1.0.0-rc5 |======================= | (c) 2001-2007 The DirectFB Organization (directfb.org) | (c) 2000-2004 Convergence (integrated media) GmbH | ---------------------------------------------------------------- comments? commit 5dea556e582cc510cad0556df3247b4a6438faf7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 3 19:57:30 2007 +0000 Thanks to Ben Combee for adding DIEF_FOLLOW support to SDL Input! commit d6440af4b9a9538dbf1a2c5f32fa5b2022f93bd6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 3 19:35:03 2007 +0000 ignore commit 67852690cb18711f2605bcc9e523c8f43e53ca64 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 3 19:33:34 2007 +0000 Use local memory (D_MALLOC instead of SHMALLOC) if pool is NULL. commit 273e33c9f02e985865526b2713acf4d036fadd95 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 3 19:32:17 2007 +0000 typo commit 503d5a698258c79d3813687e158eb2d024750597 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 3 19:23:34 2007 +0000 Ready for 1.0.0-rc1? commit dfa3823993fff2282fa22d304ba74581f3f6ad11 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 3 19:23:04 2007 +0000 Skip unknown chunks before data. commit 78e6f0d83458c51eeb3fd28b7b390d9389870b83 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 3 19:00:51 2007 +0000 Wuah... commit cc3d63c517ca7f1573f1b5c9f35302995fb5df6b Author: Claudio Ciccani <klan@directfb.org> Date: Sat Mar 3 17:18:32 2007 +0000 Dowmix stereo to mono before converting to output format and round samples before conversion. commit 00c190cf7f9c5b0fc67832c2ebe3cf1e93aa1595 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Mar 3 13:55:36 2007 +0000 Fixed conversion to S24 mono. commit db8a2db9657b9629e9c4df7a3ae21ac8e8461a88 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 3 11:01:46 2007 +0000 align output commit 1a563fcbba64619b2f2a6def77c59a433740d9f5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 2 20:39:29 2007 +0000 Updated. TODOs for 1.0.0 added, feel free to extend this list :) commit 8f9e8cac1c4836bceef7355309d0fc326cad559a Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 2 20:14:44 2007 +0000 New option "vt-num=<num>" to use given VT instead of current/new one. commit 2db3166fb667897a7cb838fc64b0cb2deec6fe88 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 2 19:51:01 2007 +0000 RC5 commit 490e2a5924847cc6a06c177eb1bcbc48bac5bebb Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 2 19:48:20 2007 +0000 Implemented 1 and 2 bit indexed PNG support. commit 7bf75e3cc78a0b358f863efea7fe10138fc43230 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 2 17:44:44 2007 +0000 Show creator of references. commit 726c8080023f4b62093f82002ea1b53ef6c25f73 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Mar 2 10:54:36 2007 +0000 Allow adjusting the volume level by pressing v/V. commit f288f1b5d6270bc0be245383013c6035aeb3cde8 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Mar 2 10:52:54 2007 +0000 Clamp floats before outputting them. commit c3d599f8b31bd9afe856b94223f0933142c42e58 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 24 21:12:23 2007 +0000 Don't abort if an unsupported option is found, but give a fat warning. commit c39131aa31bcc2bf1b3920a02ab414744e61342f Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 24 20:59:57 2007 +0000 Don't deallocate locked buffers on suspend. commit 280e77614e48406f14df21e7a52f81dea35981e0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 24 20:54:56 2007 +0000 Free previous string when shmfile-group is overridden. Don't set a default group. commit bc86cf3350fed27d8f5a4d2381a3af3bab99d6c3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 24 20:47:10 2007 +0000 typo :( commit c5d20401633e1c9385366320af1966c1fb00ef3c Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 24 20:45:29 2007 +0000 Surface manager always deallocates all auto video instances when suspending. This has the nice side effect of free space being defragmented after resume :) Added option "[no-]thrifty-surface-buffers" to free sysmem instance on xfer to video memory. commit 606aeb4bb55672bd5f51932cf1b06ca5f3b10f1a Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 24 20:23:18 2007 +0000 Added fast RGB24 to RGB16 conversion (little endian only). commit a4fc36250c63e5f0e79b19d0ddd9ae74d3e57654 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 24 20:13:28 2007 +0000 Added keypad equal support. commit e841d7c455b9bfce6be4c0a2b2e2d4251f4817be Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 24 20:07:47 2007 +0000 New option "shmfile-group=<groupname>" to set the group that owns shared memory files. commit 78a849cf6a1f4b1d8e1503c3a6d6ce3c06af9e78 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 24 19:59:51 2007 +0000 This patch adds '--with-message-size=SIZE' to allow fusion messages up to SIZE bytes (default is 1024). commit b50ddd5b53d12900ee837afa7a69942e0e1334c0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 24 19:56:29 2007 +0000 This patch sets FD_CLOEXEC on the frame buffer device file descriptor. commit d6a296f82431342e75627b33e8064048223db751 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 24 19:49:56 2007 +0000 Don't notify WM if cursor opacity didn't actually change. commit 26eac7159fc79e061b4a712b5b3d614de4a8ecc4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 24 19:48:54 2007 +0000 This fixes unconditional access to conditionally allocated data, thanks to Ben Combee! commit cf8d109b1d6c23c9761d370a1d2d1e924b6e5f1d Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 24 19:44:46 2007 +0000 Added dfb_gfxcard_get_device_data(). commit ab497c32f62c4e0e7c1df7396fdabf7169013ea1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 24 19:40:33 2007 +0000 Improved robustness of VT switching, e.g. for rapidly switching back and forth. commit 5ed9b956381cbeeea463e2bac37fcee88682de7f Author: Claudio Ciccani <klan@directfb.org> Date: Fri Feb 23 16:10:46 2007 +0000 Finally found the way to embed MPEG streams within the RMF container. Dropped down RTSP seekability (never worked fine). commit 3feaf1b18b056ee74ef9c5b8dd19ad6f3c48ddb4 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Feb 21 13:40:29 2007 +0000 Updated ChangeLog. commit d3c25a9867c5f8f0bd0320ed955c8c9b7151b6cf Author: Claudio Ciccani <klan@directfb.org> Date: Wed Feb 21 13:39:12 2007 +0000 Preparing NEWS for 1.0.0. commit 2d5280cc904164befb1cccb8348b68d11a995e50 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Feb 21 13:34:29 2007 +0000 Replaced a __u8 by u8. commit 0253831e77c81ff7cf46b59f56a849b1338507a5 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Feb 21 11:05:21 2007 +0000 Another (binary compatible) API change: added DVSTATE_BUFFERING. commit d509284597c31a63110af68fe789390d7b642e3c Author: Claudio Ciccani <klan@directfb.org> Date: Tue Feb 20 10:59:01 2007 +0000 Update the amount of pending frames while filling the buffer. Include the amount of pending frames in the presentation delay. commit 2ccee69b334a0509eb930943d5794e6515be9e6b Author: Claudio Ciccani <klan@directfb.org> Date: Mon Feb 19 10:54:31 2007 +0000 Alway read the requested amount in ov_read_callback(). Ignore the return value of ov_halfrate() when we are not halrating. commit eb74353ea7231d866077f2ee4fd7e1e09f5063ba Author: Claudio Ciccani <klan@directfb.org> Date: Fri Feb 16 13:23:37 2007 +0000 Some updates to IFusionSoundPlayback's summary. commit d3befbd61e334bce24443777832131dc279a7378 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Feb 16 11:38:42 2007 +0000 Moved fsmaster to tools/. commit d379cf41563c518f9d9b970bd71a28b3d6924aa1 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Feb 14 11:44:03 2007 +0000 Added a signal handler for SIGTERM. Register signal handlers after FusionSoundCreate(). commit 5a0e53efcc60ec5e29650fdce1d87e67b02ece1e Author: Claudio Ciccani <klan@directfb.org> Date: Wed Feb 14 11:42:18 2007 +0000 Fixed bug in fs_buffer_mixto(): must return DFB_BUFFEREMPTY either when the amount of max_samples is equal to the amount of remaining samples. commit 849793ca93fd3e42aff8c8edae70ed65136fb40b Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 13 20:05:42 2007 +0000 oops, here it is commit 985827f0b278ef0290d8938b111989b5cec3c743 Author: Marcel Siegert <mws@directfb.org> Date: Tue Feb 13 19:52:07 2007 +0000 removed dfbplay from examples Makefile.am for now reason: source is not present this fixed compiling again commit 3c874dfc37339b36317df0786e30066220de9c56 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Feb 13 14:22:03 2007 +0000 Display information about buffer's channels/format/samplerate/size. commit a45fe955acb8399c6e4eeac244526d0e8721ed05 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Feb 13 12:04:41 2007 +0000 Added options quiet, [no-]debug, [no-]trace (for simplicity). commit 80e57f1aff9341b7309326af948d7cccd1575c33 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Feb 13 12:02:12 2007 +0000 Unload unused modules. commit de13da49e490546f3eb98f5e290aaa40f02753bc Author: Claudio Ciccani <klan@directfb.org> Date: Tue Feb 13 12:01:13 2007 +0000 Fixed static build of libfusionsound. commit 8fdd817d7dc63c0123118ef4498a7e801139c506 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Feb 12 15:18:44 2007 +0000 Do not fail if frequency is higher than 48KHz. commit d94a3f78842d4191944fbfa2f3d9d0c1a51a46c2 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Feb 12 15:17:12 2007 +0000 Samplerate must be at least 100Hz. commit 41502e7d6ed67d0217a851e0c4764c54b672dca8 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Feb 12 15:16:13 2007 +0000 Prevent division by 0. commit 7aa14cb3a8f94872ad61fd97a14b5e62599696a1 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Feb 12 15:14:56 2007 +0000 Definitively improved the noise shaping filter: using the following 5 coefficients FIR filter { 2.0, -2.125, 1.85, -1.39, 0.69 }, about all noise gets pushed over 20KHz, with a sensitive reduction in the 1KHz-4Khz band and around 12KHz. commit 919995193f17be8c217f7ece366ff867903eb0f8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Feb 12 11:55:35 2007 +0000 Just another test app. commit d09ae5fe3c1b18e79c0aee654b2f860b1d5f775c Author: Claudio Ciccani <klan@directfb.org> Date: Sun Feb 11 17:35:41 2007 +0000 Still improvements in the noise shaping filter: using the 3rd order FIR filter {1.75, -1.5, 0.75}, far from perfection but of course better than the previous one {1.0, -0.5, 0.5}. commit 32e5459170f2a9e4ef9f8dfb7d441ccbe03c9379 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 10 23:22:10 2007 +0000 Thanks to Philip Jägenstedt :philipj 0pera c0m: for fixing the H3600 check! commit ef71f772307be4c3d8e67a70c655c735bee40f34 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Feb 9 15:17:36 2007 +0000 Fixed error in the noise shaping code: error from previous sample must not be computed in the error of current sample. commit 255c93750d1b2d4c17c51ab4aee803edc4c4cb33 Author: Mark Adams <marka@directfb.org> Date: Fri Feb 9 14:57:03 2007 +0000 Attempt to fix problems with redefinition of s64, u64 types. commit d113ba23bedf936ad37115d1f83b3dc0be99fee4 Author: Mark Adams <marka@directfb.org> Date: Fri Feb 9 12:16:54 2007 +0000 Attempt to fix problems with redefinition of s64, u64 types. commit 66d84298ec6153da512be376b7394602171701c5 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Feb 9 11:32:15 2007 +0000 Converted old dfb types to new types. commit 0f9dba3ec48936254dce328cd91772e53099aca7 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Feb 9 11:24:12 2007 +0000 Do not rely on default samplerate and sampleformat. commit c4af9f4480ad738e8e4b943b7f8d19b89c6beb64 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Feb 9 11:23:00 2007 +0000 Changed a coefficient in the noise shaping function (1/4 * E(x(n-2)) -> 1/8 * E(x(n-2))). commit 807ce0aff857ac99042ddd08005ea925e2193459 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 9 01:44:20 2007 +0000 The uncommitten... commit 316c86de52c8fdfe686dadd12e5aef95718954df Author: Claudio Ciccani <klan@directfb.org> Date: Thu Feb 8 11:36:50 2007 +0000 Improved noise shaping filter, using the following function: y(n) = x(n) + 1/2 * E(x(n-1)) - 1/4 * E(x(n-2)) + 1/8 * E(x(n-3)) + dither. commit eafaa77fd598efb2e8cdd3111ef8a142e87af1ff Author: Ville Syrjala <syrjala@directfb.org> Date: Wed Feb 7 22:45:43 2007 +0000 Including linux/unistd.h appears to be unnecessary. commit 86839415a9060f69e654031d4a2d37676d718191 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Feb 7 13:47:18 2007 +0000 Flush output stream after seeking. Do not retain the DirectStream, simply duplicate the file descriptor. commit c83f606a8db678eca009570a1e4a17469515b5f9 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Feb 7 11:00:17 2007 +0000 Flush output stream after seeking. commit 5be9331bdd01c55b6d24c7e314033f092df68479 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Feb 7 10:59:12 2007 +0000 Support FMCAPS_HALFRATE. commit 8ea9eeaaae6b7778d1de5f9096c080e5cb54f017 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Feb 7 10:57:14 2007 +0000 Added FMCAPS_HALFRATE, meaning that the music provider supports decoding samples at half original rate (this doesn't imply resampling). commit 12a5f5a7f4983122a6189a21e36c73e67c4faed2 Author: Ville Syrjala <syrjala@directfb.org> Date: Tue Feb 6 21:27:12 2007 +0000 Don't try to read() if select() returned with EINTR. commit ba381d1cc20bce277041ee9fee27e1e0a20609df Author: Ville Syrjala <syrjala@directfb.org> Date: Tue Feb 6 21:21:20 2007 +0000 Make CODING_STYLE actually follow it's own recommendations ;) commit 13a840994684a8975fa3316da05ac26b4a2dbe76 Author: Mark Adams <marka@directfb.org> Date: Tue Feb 6 14:46:00 2007 +0000 Fix video layer flicker when layer is positioned partially off screen. Also improve positioning accuracy in this situation (but with a little more masking at the screen edge). commit ce317ccfd3201acffaf34965e9ebd044aeb842f9 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Feb 6 14:16:44 2007 +0000 Fixed wrong float noise computation. commit ffe20aa9b7dfec6a9bab3c4d6c79a79c8d923107 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Feb 6 11:27:11 2007 +0000 Removed "(noise shaping)" from the description of enable-dithering option (actually noise shaping is not support when ieee-floats are enabled). commit 38f877b9daad7faee247f50eb6eb2f4b06386190 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Feb 6 11:24:09 2007 +0000 Avoid using ifusionsound_singleton (might be NULL). commit 6d5fcfc841f1394e8ab8a799447993398fca9dd7 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Feb 6 11:22:45 2007 +0000 Implemented simple float dithering (without noise shaping). commit b82c237a827fa1b5a8a0c60bc73210aceffa1b74 Author: Ville Syrjala <syrjala@directfb.org> Date: Mon Feb 5 21:50:14 2007 +0000 Add a configure check for struct input_absinfo. commit f073a67357b69159ac4fa91e9a483b607833036f Author: Claudio Ciccani <klan@directfb.org> Date: Mon Feb 5 14:23:06 2007 +0000 Updated ChangeLog. commit 5187c71413079757ce9c7c9d30f6cc006d1f69ce Author: Claudio Ciccani <klan@directfb.org> Date: Mon Feb 5 14:21:03 2007 +0000 Mark the release as 1.0.0. commit 53cdfad98f6f811967278eb45eb9b4ba3796a89f Author: Claudio Ciccani <klan@directfb.org> Date: Mon Feb 5 14:19:46 2007 +0000 Refresh after 20ms. commit 514b57febb2baa90183604fb9ef296ecf3a9ef1a Author: Claudio Ciccani <klan@directfb.org> Date: Mon Feb 5 14:18:48 2007 +0000 Use a 10ms buffer by default. commit e1d91ec615fee7e0df6e7c9a8838e9c54a8ec75d Author: Claudio Ciccani <klan@directfb.org> Date: Mon Feb 5 14:15:17 2007 +0000 Always output S32. commit 2e37da3d5cecf4d403ac94123c85f6cf929b866f Author: Claudio Ciccani <klan@directfb.org> Date: Mon Feb 5 14:13:55 2007 +0000 Dither channels separately using a per-channel profile. commit 7ea7063ac7a1270d554a3c3ca0c90b0e82f3d7c1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Feb 5 11:48:52 2007 +0000 Many thanks to Vaclav Slavik for these many fixes :-) * Previously, the process attached itself to a new controlling TTY only if vt_switch option was on. This patch changes it to always (unless VT handling is completely disabled, of course) attach the process to the TTY being used by the app as the new controlling TTY. This is because we always need some controlling TTY, without it, there could be SIGHUP/SIGCONT signals (see e.g. my post about re-adding setpgid() call). Note that the patch moves TIOCSCTTY call outside of "if vt-switch" branch, but completely removes TIOCNOTTY - - that's because the latter is not needed, setsid() already detached the process from controlling TTY. So "vt-switch" now only controls "physical" change of the currently active console. * /dev/tty? files are opened with O_NOCTTY. Linux kernel has a feature that if a process without controlling TTY opens a TTY device, it's made its controlling TTY, unless you use O_NOCTTY, so this change ensure that we only attach to the desired TTY explicitly using TIOCSCTTY. * Moved TIOCSCTTY before KBSETMODE use, otherwise non-root users get EPERM from KBSETMODE ioctl(), because you can't do that operation on anything other than your controlling TTY normally. * Removed setpgid() calls, because they interfered with setsid() later and weren't really necessary now that other cTTY problems were fixed. Ditto for the removed dfb_vt_detach() call (I couldn't find any information about why it was there in the first place, but everything works without it as far as I can tell). commit 9877d86f4fad5442ccf8fe23817006bf43abde26 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Feb 4 18:40:13 2007 +0000 Added option --enable-dithering to enable Dithering/NoiseShaping (disabled by default). commit ee9a7bb21ce19aae708013619671967b0c54d21e Author: Claudio Ciccani <klan@directfb.org> Date: Sun Feb 4 18:38:35 2007 +0000 Implemented Noise Shaping (i.e dithering + re-shaping of noise frequency contour). commit 1f63064d4fa2ef81f1388a852277ff66c416dafb Author: Claudio Ciccani <klan@directfb.org> Date: Sat Feb 3 11:54:58 2007 +0000 Avoid cutting away the last pixel of a planar yuv row. commit 791deae029aff9a4c98ce8ea5625fd011e770330 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Feb 3 11:40:44 2007 +0000 Distribute autogen.sh. commit 121d7ca0a14569dbc971865fdf3356cc76c3a004 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Feb 3 11:36:33 2007 +0000 Changed my email address. commit 90bf0a5075d84286580525889e0a61ff064c8e0d Author: Claudio Ciccani <klan@directfb.org> Date: Sat Feb 3 11:35:45 2007 +0000 Distribute autogen.sh. commit ee4b38e032cc2a33a39162b3d6c01c1cedb41748 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Feb 3 11:29:56 2007 +0000 Updated ChangeLog. commit e83cc57ed68f395f853d15315b6eb41be508144e Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 2 23:10:43 2007 +0000 Add new lines to work around nested structs being taken by the doc generator. commit 9b6adef55f98057851bae46976684b897370fc16 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 2 22:02:20 2007 +0000 distfix commit 0f8c79fd83bd76454cf7e7ef274b2cb89d3cea9c Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 2 20:46:45 2007 +0000 IDirectFBSurface::GetFramebufferOffset() commit aabaccffbbf917b27210fa1d4eb18978b42c2f63 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 2 20:43:08 2007 +0000 Update for 1.0.0 and some test stuff I had lying around. commit 00ad661e60b8a4de0ac3b9ae44b635ea4576d94c Author: Claudio Ciccani <klan@directfb.org> Date: Fri Feb 2 18:30:41 2007 +0000 Display my new email address (the old one may not work in future). commit 457416e9dfa037cb4a3a6421bfe080ee9c8bc876 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Feb 2 11:33:06 2007 +0000 Allow changing playback direction. commit 9e358224eb9e255813078d921f79bf1c135fad07 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Feb 2 11:32:07 2007 +0000 Using 14 fractal bits for pitch is safe. commit c74fc17a518a0f2fb4ec43162b4c549616fb0aeb Author: Claudio Ciccani <klan@directfb.org> Date: Fri Feb 2 11:31:05 2007 +0000 Specify that FSSF_FLOAT is in native endian, too. commit b548b38e012ca1011a4a016b2931278dee5a431a Author: Mark Adams <marka@directfb.org> Date: Thu Feb 1 18:42:44 2007 +0000 Allow for improved timing of video layer flips when the FIELD_PARITY option is in use. The improvement is only possible if the kernel framebuffer supports it. If not, we do the best we can but occasional glitches may occur under high processor load. commit 4d67918ac011ee7c709c2c8f176f1cf50e55b194 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Feb 1 14:10:43 2007 +0000 Set the type of the mixer thread to DTT_OUTPUT instead of DTT_CRITICAL, otherwise the mixer thread slows down the fusion dispatching process. commit 6e58560e933385547d874949b9e04413e86ba3fa Author: Claudio Ciccani <klan@directfb.org> Date: Thu Feb 1 14:08:43 2007 +0000 Giant optimizations: - avoid premultipling volume by linear weight - use a faster averaging function (twice faster than before). commit d4da40ccc89846fa9807234b13393876ac51ef8d Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 30 23:40:57 2007 +0000 Minor update. commit ff8e4b3ae1ee6bd2a666e0313588aec1d1d7ddea Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 30 21:36:59 2007 +0000 dist fixes commit eba4be905ea8b8daac2bd80b045175bdf6f9d878 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 30 21:17:52 2007 +0000 "This is SaWMan... Checkout the README to avoid being sliced through!" commit 306ce2e41a956929786d43cd5120c55119c13fb4 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Jan 30 10:46:49 2007 +0000 Plan to add a compressed sample format (maybe ADPCM). commit 314556ca4e598b4da894105cd8fdcd70f488f9b2 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Jan 30 10:44:31 2007 +0000 Fixed buffer's length limit (should be 0x07ffffff, not 0x0fffffff). commit 833344e2caa02f416446e6e8ad45a08d162ee1be Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 29 20:28:50 2007 +0000 updated for RC3 commit b87c1df32781e8159ff6b9dee04e1a28ff1137e2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 29 20:27:21 2007 +0000 Argh, reading the NEWS I recognized I forgot to change the ambiguous fusion_reactor_sync() into fusion_reactor_direct() to make it more clear: Specify whether local message handlers (reactions) should be called directly. commit 944d33a8ccb6a17eba06c165de0cfcea5ceb78ef Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jan 29 17:30:47 2007 +0000 Added convenience definitions FS_PITCH_BITS, FS_PITCH_ONE. commit bddb52854e01fe4305086c10194ca260e2d8ddaf Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 29 15:47:57 2007 +0000 updated commit 24dd922846c057011e5211da25ece3124dd973fc Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jan 29 15:29:07 2007 +0000 Follow changes. commit abf828ca085ac50b53b4c19686dd1496080cbc86 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jan 29 15:20:47 2007 +0000 Increased the number of fractal bits used for the pitch to 12 (higher precision). commit 893c2306f14b7d2644ea0d8357cf534a21dab4fe Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jan 29 13:29:26 2007 +0000 Always output data in little-endian byte order. commit 7fc028281627c9469b233a7c2f3563434f9aeb98 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jan 29 11:23:52 2007 +0000 Added fs_core_device_config() to get the actual device configuration. Refer to device configuration (instead of config) to set the default parameters during buffer/stream creation. commit a320f608b4a70929ee9746b282d82c6b62d357b6 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jan 29 11:19:52 2007 +0000 Samplerate defaults to 48000 now. commit b84e681eec9b7d3db308c77d4059ee2f9a1ece8c Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jan 29 11:18:31 2007 +0000 Redefined FS_SOUND_DEVICE_INFO_NAME_LENGTH to 96 (instead of 256). commit d60c89ecf9cfe07a605657bc16ac8ea0718daabb Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 29 04:13:29 2007 +0000 We should "Support vga16, i.e. add DSPF_LUT4." commit 4b923dfec340950ebd29acd6f52fb2d59d758220 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 29 01:00:45 2007 +0000 In drivers including <fbdev/fbdev.h> do that before <dfb_types.h> gets in. commit d55bc774043e5ece1d6c2b1efd85bcfe975ac5ce Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 29 01:00:01 2007 +0000 Include <asm/types.h> before <dfb_types.h> is included somehow. This works around the 64bit type clash between <asm/types.h> and <stdint.h> (used by dfb_types.h). Any help for proper fixes or some explanation would be appreciated! commit 6d6a481e8b42f3a60c01e09061082773ec172b0e Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jan 28 21:24:44 2007 +0000 In dfb_gfxcard_reserve_memory() show sizes in warning about too less memory, also align the requested size according to byte offset alignment or warn if that's not specified, yet. commit 6428590ce4a688bc0ecc8441bd03e0bbdc74c2d0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jan 27 18:03:23 2007 +0000 Fix fusion_sync() timeout during XDirectFB shutdown. Apart from other small changes, fusion_sync() returns DFB_OK in case the select() call was interrupted (EINTR). Continuously sent signals could have cause these timeouts, but I don't know if and why they would be there. It's still a hot fix, as it could be that the call is interrupted with data available, couldn't it? A proper solution could be to support fsync(fusion_fd), but what about the timeout? commit ba6b67234d44eea9c580bf8e9f919f67b670a6d7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jan 27 15:23:48 2007 +0000 Further minimize impact of a shutdown issue which only seems to happen with XDirectFB, e.g. on Ctrl-Alt-BackSpace. The problem is that waiting for the dispatcher to process pending messages fails, or at least the detection is broken whether there are any pending messages. Only call fusion_sync() if the pool that is to be destroyed has objects. commit b8bc3b706492a4dabca1b5801c534fc192351598 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 26 23:32:24 2007 +0000 Added -lm for sin(). commit 16f4e0f72494d8479e1c867066c8ab86b137c06a Author: Ville Syrjala <syrjala@directfb.org> Date: Fri Jan 26 08:24:38 2007 +0000 Revert the previous AiRGB change. Not sure what I was thinking... commit ad60e033b6c3b35a3e05f9468386ed297bece1ba Author: Ville Syrjala <syrjala@directfb.org> Date: Thu Jan 25 21:21:21 2007 +0000 Source color alpha value wasn't always correctly inverted for AiRGB. commit 6a1089a0ae9b1693d1cf6b7b26813e67be22dcfc Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 25 02:52:44 2007 +0000 Use DFBUpdates to manage an update queue and do optimizations like taking the bounding box instead of multiple smaller regions if the number of pixels in the bounding box is not much higher than the total of the smaller ones. Even this takes the number of smaller regions into account, because of the increasing overhead per region. Next to performance, the visual experience is enhanced by coalesced updates. Another advantage is that when multiple regions are updated, first it renders all regions and then it flips all regions. Previously, each time the flip was done immediately for each rendered region. commit 5606d17f9ecc4d06b019151198eaacf349ebc7fd Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 25 01:34:23 2007 +0000 Fixed missing bounding box update when a newly added update is merged with an existing. commit cf76229662140c451c6e6cc39dcfa52bece16444 Author: Ville Syrjala <syrjala@directfb.org> Date: Wed Jan 24 23:48:21 2007 +0000 Fixed a bug in dfb_gfxcard_tileblit(). It first removes all completely clipped tiles, but then forgets the new dx1 coordinate and starts blitting from the original dx1 position. commit 3749bdacfa79acb265eebae71d731e74dc4ca9a6 Author: Ville Syrjala <syrjala@directfb.org> Date: Wed Jan 24 23:13:53 2007 +0000 Fix version check for automake-1.10. commit 97bd3995fb662cfc9933a6fb8ed8505a4423446b Author: Ville Syrjala <syrjala@directfb.org> Date: Wed Jan 24 22:10:56 2007 +0000 SMF_CLIP was ignored. commit 86519ba74b49e52284a611956de71dce43f18618 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 24 03:56:32 2007 +0000 Cleanup, reorder, rephrase, ... commit 1d5e207f835aec6d8527b387797d718033b5c4c3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 24 03:12:35 2007 +0000 Added fusion_shm_attach_unattached() to attach to pools that have been created AFTER fusion_shm_init() attached to pools during fusion_enter(). This can happen easily when starting a number of processes with the new "force-slave" option. They'll all block at fusion_enter() until the master has completed its fusion_enter(). DirectFB shared memory pools are created by the master after fusion_enter(), but during fusion_arena_enter(). Slaves will block at this point again, until the master has finished the rest of the setup and returns from entering the arena. When others actually join the arena, right after acquiring the lock for it, the new function fusion_shm_attach_unattached() is called to attach to any pools created by the master while entering (initializing) the arena. commit 216286888dab1ba8eb54edce240f446e4f745531 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 24 02:04:00 2007 +0000 Added runtime option "force-slave" to always enter as a slave, waiting for the master, if not already there. This feature only works with recent kernel module. commit 144e3ef3691c013bcc2abd2f891ee16b5db69ce6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 24 01:22:53 2007 +0000 Read DIRECTFB_SESSION variable after reading all files and DFBARGS, so only the command line can override the current session. Still thinking though, if DFBARGS should override DIRECTFB_SESSION... commit 79c52e6bdf260d86f09b0f7289c744819aaf3002 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 23 23:00:07 2007 +0000 If trace support and shared libraries are enabled, for each library to install, also generate a file containing the output of "nm -n <that library>". That's the command that is used at runtime via popen(). Now the code first checks if it can fopen() a file with the same name as the one passed to "nm -n", but with an "nm-n." prefix. This is both a performance improvement and a nice solution for (embedded) targets without 'nm' being available or fast enough. commit 18585f0743fda2c7a42fc0dbf6d2bf336f212546 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 23 20:56:04 2007 +0000 Made direct_snputs() static inline. Removed assertion 'n > 0', instead return NULL if destination can't even hold the zero termination character. commit 19efc71ab311496ef3b8b839d26470740c7cca80 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 23 20:49:38 2007 +0000 Removed <direct/util.h> include. commit 457a0207f9cc43be2d581a7726b2f5cfb6290d94 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 23 20:48:51 2007 +0000 Added missing <direct/util.h> includes. commit 91239996d0714ac8c1c3e9a450da37f789397826 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 23 20:26:54 2007 +0000 Easy part, replacing strncpy() by direct_snputs(). Replacing all relevant snprintf() will be harder... commit d2624a70c937219f802e15e09c573cbb374a2086 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 23 18:47:09 2007 +0000 Added direct_snputs(s,d,n) to set a string with a maximum size including the zero termination. This acts like a strncpy(d,s,n), but always terminates the string like snprintf(d,n,"%s",s) which is more or less slower. commit 3d2abfc029117b398d12fc718d656739cb05e007 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 23 16:46:55 2007 +0000 When Meta-P is pressed, only show/enable the cursor if it has ever been set. This fixes the cursor showing up on my Xv enabled Xawtv window (cursor on video layer :). commit 6a5910d4c94d700f47a58af5fbe53cd09c665ab6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 23 16:33:38 2007 +0000 Fixed DIKT_UNICODE detection in DFB_KEY_TYPE(symbol) for values > 255. commit 0f779e4e1ec96f75c560e37b231072ce8d682214 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 23 16:26:04 2007 +0000 Do the same as for surfaces recently: revert to direct local reaction calls. Fixes rare glitches in heavy window resizing in LiTE. commit 9a172ce84938ee90f606331e54911af3a78b2fc1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 23 16:22:39 2007 +0000 Reduce timeout in fusion_sync(). At the moment it always seems to fail, but this should be fixed asap. commit fef7dc8fc21d33a5350058bd94c274ca25c52c53 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 23 16:21:23 2007 +0000 Already fixed. commit 21c5562661535de95b640943fef2004e4e12fd39 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 23 16:11:30 2007 +0000 Commented out recent change until it's fixed. commit de6989fbe17e2f3864589bfefa129c0c4b2b434c Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 23 13:14:54 2007 +0000 Use direct_list_move_to_front() in lock_node() as the list could be long in case an application attaches to a lot of reactors, most probably its own, e.g. using a lot of small surfaces. commit c08e629fb6817d006a9a9082fff12bda1fe08fc3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 23 13:11:46 2007 +0000 Added direct_list_move_to_front( **list, *link ). commit 70ca7950f9b3225744e356c6426bd545981ab07d Author: Ville Syrjala <syrjala@directfb.org> Date: Mon Jan 22 21:31:48 2007 +0000 Eliminate bashism (function keyword). commit 7329e0b5a4e973f6daf92008ce9703f84d73d71d Author: Ville Syrjala <syrjala@directfb.org> Date: Mon Jan 22 21:26:11 2007 +0000 Fix ALUT44 Clear() by calling dfb_state_set_color(). commit 8969c27479e55c1ed5e599495d9d47fb4afb5ab7 Author: Ville Syrjala <syrjala@directfb.org> Date: Mon Jan 22 21:20:18 2007 +0000 Fix glyph rendering to indexed formats by calling dfb_state_set_color(). commit 67de5e89280d2b264f71d9e2dfcf2fa7b28c134c Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 22 19:54:29 2007 +0000 Only use MADV_REMOVE if kernel version is 2.6.19.2 or higher. Print info message during startup. Use fallback definition for MADV_REMOVE (9) if headers don't have it. This is ok for now, as we're only using it with 2.6.19.2 or higher anyways. It would be bad if this feature was unused just because of the headers at build time... commit 38d27ad4f188a6ee1a4ba62290df6c5974722f1f Author: Ville Syrjala <syrjala@directfb.org> Date: Mon Jan 22 19:25:54 2007 +0000 Use cpp templates for 16bpp and 32bpp code. - Removes duplicated code. - Implements some missing gfx funcs. - Fixes missing EXPAND() calls in some acc funcs. - Fixes blit direction handling in some 16bpp blit funcs. commit f3eaefc0cc9fcfe83ae52fd6a87a61790fc7ad16 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 22 03:06:11 2007 +0000 That's birthday and christmas at once: Glorious MADV_REMOVE! I found you! If available, the code for freeing blocks in the heap uses madvise( ADDRESS(block), blocks * BLOCKSIZE, MADV_REMOVE ) to punch a whole in the tmpfs file (loosing the data) to really free the associated physical RAM. You can see the difference in 'ls -l' and 'df'. commit 66dd3e6aa38f591f146d904cc23a21978b8af132 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 22 02:38:50 2007 +0000 Good bye shared memory segfault cure handler :) It'd been so easy. Simply mmap() the whole address range once and only ftruncate() for resizing the heap. No more dynamic remapping, no more pending remap messages... commit 037867173da06f66f683ff5a4ff745b58dadbb95 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 22 01:24:16 2007 +0000 Not needed here. commit 243628484072c7c6070cb58e3d4f62047c79c1ce Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 22 01:21:27 2007 +0000 Replaced 'unlink before (re)open or memset' by a simple O_TRUNC, doooh... commit cabc30e828a060cf06ad2b2bda7087e841c77556 Author: Ville Syrjala <syrjala@directfb.org> Date: Sun Jan 21 22:39:09 2007 +0000 Fix version check for automake-1.10. commit d6c7ad84ad54362771c37a8ab167c4d908dd6ed7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jan 21 22:11:25 2007 +0000 Added a few more formats that make the windowed primary use DWCAPS_ALPHACHANNEL. commit 4005425cc796a538505f689e8653001dfd3182af Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jan 20 04:04:13 2007 +0000 Use O_APPEND for FER_SLAVE. commit 9248605c594822d331733bb57d3028a514ae45fa Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jan 14 21:06:45 2007 +0000 Change minimum pool size (without info table) to 8192 (from 16384). A value of 4096 didn't work somehow. commit d87e5a6e1950f28530d85ee6d7f7c76d0307ae4e Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jan 14 21:03:34 2007 +0000 Call dfb_windowstack_resize() and dfb_windowstack_repaint_all() later, i.e. after the new settings have been written back into the context's config structure. commit b14f63813c9fc5dee7737b6ce9986da8bee12f34 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jan 14 21:02:11 2007 +0000 Added FCEF_NODIRECT which forces execution of the call in the Fusion Dispatch thread even if it's the calling process' own call. commit e49c9400660e2935ff843c158b6942ab1803bd3c Author: Claudio Ciccani <klan@directfb.org> Date: Fri Jan 12 10:17:09 2007 +0000 Modified IFusionSoundStream::Drop() to not call Flush() internally. The previous behaviour can be obtained by calling Drop() and then Flush(). commit 3f64ddc4f1e2ba8a2526b00a8fb09ceacd6975a3 Author: Andreas Hundt <andi@directfb.org> Date: Thu Jan 11 18:05:24 2007 +0000 - include <fusion/fusion.h> - -framework CoreGraphics is obsolete in OSX 10.4, use ApplicationServices instead commit 3549796556d79b5040fef7684a880d25b3925772 Author: Ville Syrjala <syrjala@directfb.org> Date: Wed Jan 10 18:18:24 2007 +0000 Some stretch ops didn't start at Xphase. commit 2140dddeea2784c95f63f247badcfe42a424353e Author: Ville Syrjala <syrjala@directfb.org> Date: Wed Jan 10 18:06:39 2007 +0000 Fix bugs in RGB18/ARGB1666/ARGB6666 support, and eliminate unnecessary gfx functions. commit 2ffb553edcb8c89c52142bcedfd73356724ff5b5 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jan 10 10:06:36 2007 +0000 Removed check for sisfb.h. commit 18c76b3613ac42a9a1e79dafb8d648851c994097 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 10 01:57:37 2007 +0000 Replaced "#ifndef input_absinfo" which doesn't work by "#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,0)". commit b17fb847a5a8a8955eec0ed6c2b7863fa670bcc8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 9 23:33:25 2007 +0000 Make cursor area backing store surface same format as layer. commit 0bde50377717522ef56e6d05587e55161657d699 Author: Marcel Siegert <mws@directfb.org> Date: Tue Jan 9 18:34:13 2007 +0000 added compat defines for touchpad linux input support for kernels before 2.6.x; should break nothing for now - hopefully :) commit 875df126b0076169d0ad96d5670e8a93b2169c05 Author: Ville Syrjala <syrjala@directfb.org> Date: Tue Jan 9 17:24:34 2007 +0000 Cosmetics. commit a3200fd6fe0305caf22e8c4d4076acbfd8c18b28 Author: Ville Syrjala <syrjala@directfb.org> Date: Mon Jan 8 17:04:41 2007 +0000 Don't touch the ret_interface pointer unless the method succeeded. commit 0f91b570b16debf907bc17be32e37ac63ec6fbfc Author: Mark Adams <marka@directfb.org> Date: Mon Jan 8 16:01:10 2007 +0000 Added spec file for building RPM packages. commit 23ce1190401be900ad2a4d1d2fa82faf0a4af821 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jan 8 13:43:10 2007 +0000 Removed unused methods. commit efccd010f11daf7eb5f1f32e7adfa011a91a428d Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jan 8 13:41:54 2007 +0000 Provide a default implementation of EnumTracks(), GetTrackID() and SelectTrack() for music providers supporting only one physical stream. commit 03d0e7c2cfe1c44ddeb766167c9e9bff9f9d9030 Author: Ville Syrjala <syrjala@directfb.org> Date: Sun Jan 7 22:49:14 2007 +0000 Don't corrupt the return interface pointer in API methods, ie. only set the pointer if the method succeeds. commit 606026c2b82c22f2bd9bb8a7777c1eaf89b9666a Author: Ville Syrjala <syrjala@directfb.org> Date: Sun Jan 7 22:46:03 2007 +0000 Fix a memory leak. commit 8b164dcd977c3f55e4d88bf1c1785b356dfbf211 Author: Ville Syrjala <syrjala@directfb.org> Date: Sat Jan 6 18:09:10 2007 +0000 Remove a misplaced semicolon. commit 34526a3fe61f50f72753325361655f5943a71f9c Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 5 17:55:08 2007 +0000 Nicer shared memory allocation info as in dfbdump. commit e4f5ecc8f753993b2130079020f8ce47655af681 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 5 17:54:51 2007 +0000 Print shared memory leaks on pool shutdown (debug mode and 'debugshm' option). commit c5ed38aab5e1b9c94862baf454e3acba27e26ec9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 5 17:53:29 2007 +0000 Free fake modes on shutdown. commit 7f44a10a1856ccb742179baae47f8968e325edde Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 5 17:52:59 2007 +0000 Added some basic update region management. commit ba098e2f65d6b902676b25e63a0ce289d26e62c3 Author: Mark Adams <marka@directfb.org> Date: Wed Jan 3 10:42:13 2007 +0000 Document recommended changes in overlay and AiRGB usage. commit 30546551f38405578eaa90ff9cf15fac13beccdc Author: Mark Adams <marka@directfb.org> Date: Tue Jan 2 17:46:19 2007 +0000 Remove redundant comment. commit 98504be4d8ff16240f0baaff610cbf8235c09138 Author: Mark Adams <marka@directfb.org> Date: Tue Jan 2 17:45:58 2007 +0000 Implemented acceleration for blits involving the AiRGB pixel format. DSPF_AiRGB is now supported as a source format for most blits and stretch blits. Blits _to_ AiRGB surfaces are also accelerated provided they don't require blending. commit d57ecf551b50302b09e5abaf9d3a12038ef9ca66 Author: Ville Syrjala <syrjala@directfb.org> Date: Sat Dec 30 18:26:36 2006 +0000 Improve touchpad support: - Detect touchpads in init. - Read min/max coordinates from the device. - Add drag support. - Clean up the code. commit cbc098d1f241feecfd3a511bc86ef3ff159c8fb7 Author: Ville Syrjala <syrjala@directfb.org> Date: Fri Dec 29 20:31:20 2006 +0000 Fix some incorrect key mappings. Patch from Stefan Lucke. commit ee675c1efae5b265dff5fb084fcafa017f5b89ad Author: Claudio Ciccani <klan@directfb.org> Date: Thu Dec 28 11:19:25 2006 +0000 In IDirectFBSurface_FillRectangles(): use D_MALLOC/D_FREE instead of malloc/free (thanks to Kamijo Takashi <kamijo@digion.com>). commit 3f1e06d97b9f0f2539bfcc028e17a1aa90ca133a Author: Claudio Ciccani <klan@directfb.org> Date: Sun Dec 24 14:23:01 2006 +0000 Avoid locking in HasData(). commit 5ee4aed4a5076543f4706c140de0cdcf10f005f0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 22 19:14:42 2006 +0000 Check bit depth in case of an indexed PNG. Don't assume 8 bit. Added 4 bit support. commit 820e3dbffd7d7fcb591cbff45148a9630a729d52 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Dec 22 13:43:33 2006 +0000 Fixed wrong license header. Must be GPL. commit 2e2dd0d00e032a6519538fc26dfe99c1d7e83903 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 20 02:05:32 2006 +0000 Support DLBM_BACKSYSTEM as a default. commit b35bc079cca2c6f27857cc65a59e166222eb9605 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 20 02:04:07 2006 +0000 Fall back to /dev/shm if no mount point could be determined. commit 2bb5e7aab54fc6fd2647aff9c7fa515af10fb8e8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 20 02:03:04 2006 +0000 Turn warning into debug. commit 45d1e3892a4fe36b36615c11fe8cc0ff0e378cd2 Author: Marcel Siegert <mws@directfb.org> Date: Sun Dec 17 22:48:07 2006 +0000 updated cvsignore a bit commit 41633e6e5d152b8e9b7b73eb778c9787c6f9cc45 Author: Marcel Siegert <mws@directfb.org> Date: Sun Dec 17 22:29:31 2006 +0000 fix wrong copy ctor argument; thanks to Phil Endecott for pointing out. commit 8baa6c6a3b35ba5ee1676104660b633167a9384a Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 14 09:44:22 2006 +0000 Allow read access to "owned" surfaces. commit 356c9c2b9029109a08bbc8d0f36dad669b907ae5 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Dec 13 18:16:30 2006 +0000 Initialize pointsize register. commit b34b0f24afe593a81cd4624d7576f390e4a42c94 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Dec 13 18:15:22 2006 +0000 Must adjust point coordinates by +1. commit 620aebc3869d625cf5455c572fe195564eedbec7 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Dec 12 20:36:06 2006 +0000 Check pixelformat when enabling alphachannel (it should be AiRGB, I think). commit f64cf8956260a94dc917689a3b6d4fecafa8e6a5 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Dec 11 14:44:25 2006 +0000 Set RTSP connection type to Close. commit e8d8c7b7e59c069c463e6e711ce5d665cabedcbb Author: Claudio Ciccani <klan@directfb.org> Date: Mon Dec 11 13:56:49 2006 +0000 Implemented seekability over RTSP. commit 72304713577dbef90a1d586145b6d67a3b42358a Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Dec 10 00:01:30 2006 +0000 Fix fusion_hash_iterate() to support a nested fusion_hash_remove() on the current item (or others, except the next). commit c00c96c4f0501036d65eb4f044af7f85a4f729d1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Dec 9 15:35:18 2006 +0000 Added missing prototype of fusion_hash_size(). commit fba1263a10ed786e2ee3684ed67848f47f2b02e1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Dec 9 14:47:39 2006 +0000 Fixed fusion_hash_create() that was not passing the pool pointer to the internal function. commit fb8637bf1ed5abb3dd77dfd3d6c9fee98244f149 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Dec 9 11:27:28 2006 +0000 Autodetect clock skew. commit 4d308b35b0572eb05c1da403f6a8d9fca400c6fd Author: Claudio Ciccani <klan@directfb.org> Date: Fri Dec 8 12:16:39 2006 +0000 Fixed a wrong comparison. commit 9acb2361e7e2c057d67cfecc4d28f5fc830913b5 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Dec 8 12:15:33 2006 +0000 Added radeonInvalidateState(). commit ab02ecc45130368d8de4ff6c27dfc026d3670e06 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Dec 8 12:14:37 2006 +0000 Added GraphicsDeviceFuncs::InvalidateState(): notify the driver that the current rendering state is no longer valid. commit ef7ab16fa09b1a37a6324ece1d965d04de002ed3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 7 21:24:43 2006 +0000 Removed unused local core pointer from shared structure. commit 13456d3270a892a7e6809b2f6902c1579e4e5740 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 7 21:24:05 2006 +0000 Enable shm pool debugging based on debugshm not debug option. commit e74fe32d7a028bfdec3e34f0175cb3c8ec09f8e9 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Dec 6 14:10:13 2006 +0000 Dispatch surface's notifications asynchronously. This change fixes an assertion failure that happens in the following case: 1. Resize (Downsize) Surface ... and immediatly after ... 2. Blit to Surface commit a27ab3ff0fd81de547cbccecfb8686f72bfae70a Author: Claudio Ciccani <klan@directfb.org> Date: Wed Dec 6 14:05:13 2006 +0000 Added fusion_reactor_sync(bool) to specify whether message dispacthing to local reactions must be synchronized with global reactions or not (i.e. fusion_reactor_sync(false) makes notifications happen immediatly in the dispatcher process). commit e5a3616361f0a3b03dc7c6d0aa6ae0b96b3cdb0e Author: Claudio Ciccani <klan@directfb.org> Date: Wed Dec 6 14:00:27 2006 +0000 Provided a return value to radeon_waitfifo() and radeon_waitidle(). commit cdccba6ec52c1b5eb1eeeb89aecb713736877b83 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Dec 4 22:52:38 2006 +0000 Thanks to Vaclav Slavik for fixing loading of mono-only fonts. commit 911c44afa750cd93af20717437e1e73ba709994f Author: Claudio Ciccani <klan@directfb.org> Date: Mon Dec 4 17:49:53 2006 +0000 R300 supports 3D Colorkeying. :) commit 91103de9ca26c63125eda9c978915e13d97fdaa8 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Dec 4 11:35:26 2006 +0000 Implemented r300Blit3D_420, R300StretchBlit_420 and r300TextureTrinangles_420. commit 1a8122316b26f53e5fd4a932a21ef13e0eb92408 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Dec 3 19:02:05 2006 +0000 Implemented - StretchBlit - TextureTriangles - Alphablend - Deinterlacing for the R300 chipset family (thanks to Timon <timon37@interia.pl>). commit d9c0b1c9475280480f48e4ad3a0061ab3880d238 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Dec 2 09:07:59 2006 +0000 Allow the DirectFBGL module to Probe the destination surface. commit f9433b8dba5b677ca8936f036d483cbd9cf3591e Author: Claudio Ciccani <klan@directfb.org> Date: Sat Dec 2 09:06:46 2006 +0000 Workaround for a repeated char (0) within the glyphs table. commit 420a0afc6b71acf2a046c0f59663f4421d69313d Author: Claudio Ciccani <klan@directfb.org> Date: Fri Dec 1 17:35:44 2006 +0000 Check for stdbool.h presence during configuration and define DIRECT_BUILD_STDBOOL accordingly. commit 4e6f98284583bba353127dc869c2073142b83af0 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Dec 1 14:06:18 2006 +0000 Added IDirectFBGL::GetProcAddress(), get the address of on OpenGL function (required to avoid hard dependency and allow portability between different environments). Added definition DIRECTFBGL_INTERFACE_VERSION to check interface compatibility. commit 13d1392ed1e0e24c803e54b213666eae3bd261e7 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Dec 1 10:43:34 2006 +0000 Implemented GetID, GetDescription, GetSize, SetPowerMode and WaitForSync. commit e0d89b6dd42eaec32a951809b53692185534a9db Author: Claudio Ciccani <klan@directfb.org> Date: Fri Dec 1 10:42:27 2006 +0000 Implemented GetPosition and GetSize. commit b436407dfc07df577c7156771ce8e9fd9ca89738 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Nov 30 17:08:00 2006 +0000 Added missing methods. commit 611b595471da9fc5f007c19f83289bfd260188e9 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Nov 30 14:57:49 2006 +0000 Added missing methods. commit 8c344d1fdd92d7be456d6465aef070112bffb285 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 29 11:38:07 2006 +0000 Added Bop_argb_blend_alphachannel_src_invsrc_Aop_PFI[] as a fast path for blending from ARGB with SRCALPHA / INVSRCALPHA. Implemented for RGB16 and RGB32 so far. commit 5641b56573b2e5eedbf998aa6bd6c150d7e72e65 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Nov 29 09:32:25 2006 +0000 C++ fix. commit d36e6023a877717c86c359b93914472a01b3d475 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Nov 28 18:30:19 2006 +0000 Removed 2.6.18-rc2, added 2.6.18. commit 50589388c8a9b66637efba874c70e7f19f4d86a3 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Nov 28 10:53:42 2006 +0000 Removed sisfb.h. Put the declarations in sis315_compact.h. commit 2454efb92d71fff78af7d3c2804f09a9e64d1bd2 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Nov 26 14:01:26 2006 +0000 Compare bytes instead of bits when checking for pixelformat compatibility. commit 20682a6a72f91f385a21d66f91edc077b6a78979 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Nov 26 14:00:02 2006 +0000 Allow to wait() on a RTSP stream. commit 080185adf29bc2c3be8e68d934fca3a4c88841c4 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Nov 26 13:58:58 2006 +0000 Be more precise about the behaviour of IDirectFBSurface::Flip(). commit 01c575483b9858703db51d929d61608396ee45d5 Author: Ville Syrjala <syrjala@directfb.org> Date: Fri Nov 24 23:53:55 2006 +0000 tslib input driver by Shane Volpe <shanevolpe@gmail.com>. Thanks! Support for multiple devices and some coding style cleanups by me. commit aed99e3a1e99b997aaa6166185b30fc8b01b156c Author: Marcel Siegert <mws@directfb.org> Date: Fri Nov 24 16:16:09 2006 +0000 add some personal stuff in .cvsignore e.g. kdevelop project files commit 594b43580f6bbed705c88de53b09585667e729bb Author: Marcel Siegert <mws@directfb.org> Date: Fri Nov 24 16:10:14 2006 +0000 add .cvsignore commit 2bf905595a2999b896b79d61360c2385a07e537e Author: Marcel Siegert <mws@directfb.org> Date: Fri Nov 24 16:09:02 2006 +0000 add cvsignore commit 18573a6e1c699d9fa0db336375c7c005658bded2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 24 14:02:55 2006 +0000 Thanks a lot to Attilio Fiandrotti for adding touchpad support! commit ef443a2d5b45b5451b53edf94ada9525ae93d824 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 24 00:08:14 2006 +0000 Readded setpgid(0,0) also in system_join(). commit 907525000f03f1e4a359fe7d8b356500c4bff79b Author: Claudio Ciccani <klan@directfb.org> Date: Thu Nov 23 11:13:24 2006 +0000 Allocate mixing and output buffers on the heap (prevent undiscoverable bugs). commit 765669036f0299d38820dc3101a12faec40bca9e Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 23 10:26:13 2006 +0000 Readded setpgid(0,0) in system_initialize(). commit 7454ce3909f3052664f6072bd63bcbf3b7e3956b Author: Claudio Ciccani <klan@directfb.org> Date: Thu Nov 23 10:10:23 2006 +0000 Fixed a wrong computation. commit 4439079abfbe5582482b4e1b0d8824a6e4b26338 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Nov 22 13:11:49 2006 +0000 Flush the stream after seeking. Set the default stream/buffer size to the size of a block (1152 frames). commit 80d78094120294ef382023c37072f621af8a4afd Author: Claudio Ciccani <klan@directfb.org> Date: Tue Nov 21 16:03:46 2006 +0000 Need sisfb.h to build. Either if sisfb.h is in the include path (i.e. headers come form linux-2.4) the driver should not rely on that header because linux-2.6 may be running instead and 2.4 and 2.6 versions of sisfb_info are incompatible. commit 47d476067194f68435ad01c9cc979a73fd0e204f Author: Claudio Ciccani <klan@directfb.org> Date: Tue Nov 21 14:55:40 2006 +0000 Fixed warnings (on x86_64). commit d5b5b463b0ff6e97d1b543f5eba235b9e3467aaa Author: Claudio Ciccani <klan@directfb.org> Date: Tue Nov 21 14:36:36 2006 +0000 Cosmetics. commit bd49dc56fb590599aff402b0fb13c99c951a2341 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Nov 21 13:19:35 2006 +0000 Enable DWOP_SCALE by default for windowed primary surfaces. commit e03598c8de76abe339be67ab46dfa83efb0cf1cc Author: Claudio Ciccani <klan@directfb.org> Date: Tue Nov 21 13:18:11 2006 +0000 In dfb_gfxcard_stretchblit(): be smart and execute dfb_gfxcard_blit when possible. commit e54ce388ad0cc5ccd8de3d3008371b0fd648a47b Author: Ville Syrjala <syrjala@directfb.org> Date: Mon Nov 20 22:04:44 2006 +0000 Don't try to immediately allocate the new video instance when reallocating a buffer (unless the policy is CSP_VIDEOONLY). Fixes corruption problems in XDirectFB caused by window resize failing. commit 0cd7483fae6316eb10da67a4f51c2dadd8a0c9b4 Author: Ville Syrjala <syrjala@directfb.org> Date: Mon Nov 20 20:52:29 2006 +0000 v4l2 code still used dfb_surface_soft_lock() without the CoreDFB argument. commit 682a9fa560f2aa2676e22e031f0e8cdbd97538b1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 20 11:40:13 2006 +0000 Readded generic64_memcpy(). commit 052e2ad9dfbfda4d31dd8c4c59a4add6d0605100 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Nov 19 11:41:44 2006 +0000 Fix array stride mismatch in FindColorKey(), thanks to Ben Combee! commit a1e3d13351d026897e388f32eff73b48a8c8170a Author: Claudio Ciccani <klan@directfb.org> Date: Sat Nov 18 11:54:13 2006 +0000 Fixed incorrect frame delay computation. Do not use variadic arguments. commit dc692efba341d3dd7060d7822e6da3ebd58739eb Author: Claudio Ciccani <klan@directfb.org> Date: Sat Nov 18 11:08:41 2006 +0000 Enable passing the actual CoreDFB to all external interfaces (excluding DirectFBGL that gets its own IDirectFBSurface). commit 9495ae70670c12631f5f170d08f08c81db4fb3a9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 18 10:45:14 2006 +0000 Added option "no-software" to disable software fallbacks. This is mainly for debugging/profiling purpose. It will print out a warning with the operation and flags each time a fallback would occur. commit 70cdce08db7f11e40a83923ddc971d76ebe69696 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Nov 17 17:28:02 2006 +0000 Workaround to follow recent API changes (that shouldn't happen between release candidates!!). commit aa47c8c6bd7d76fafcb4daec9692f1db0e0543ca Author: Claudio Ciccani <klan@directfb.org> Date: Fri Nov 17 17:25:49 2006 +0000 Attempt to make acceleration work on ppc: enable acceleration only for formats that have the same pixel size as the primary layer (to avoid changing the byte swapper). commit 909a3befdce44240d6a4bfe238b3c4f6b348af48 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 15 02:12:48 2006 +0000 round 2 commit 2d0fb5e39cd98888f417100c89319ce5c2d74041 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 13 21:42:28 2006 +0000 Fix SHCALLOC and friends, i.e follow API change. Can't test myself. commit 811f7e113a0c33ea34d88bd017b0c9c0f1682a41 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Nov 12 12:19:54 2006 +0000 Added support for scaled windows. New window option DWOP_SCALE prevents the surface from being resized when the window size on screen changes, i.e. via IDirectFBWindow::Resize() or SetBounds(). The surface can be resized separately using IDirectFBWindow::ResizeSurface() if needed. New runtime option "scaled=<width>x<height>" scales the window to the specified size for 'force-windowed' apps. The surface size will not be affected, still set via "mode=". Try "df_andi --dfb:force-windowed,mode=640x480,scaled=800x600" in a running session! Also enjoy resizing the window (just scaling differently) using Meta-Ctrl-MouseMotion :) commit 51e8d6c3b2280fab29de5ecac3e6f9f01cd5f41d Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Nov 12 11:33:37 2006 +0000 Added IDirectFBWindow::SetBounds() to do a move and resize in one step. Internally this will use existing the WM API that allows changing any combination of items in the window configuration. Due to historical reasons there has only been one item changed at a time. Now it can happen that both flags CWCF_POSITION and CWCF_SIZE are set when calling wm_set_window_config(). The default window manager module got a special function to implement the combined move/resize in this case. The older separate move and resize functions could be replaced by calling the new function, but that's not done, yet. commit 3fab1f8192e5c4c838e2f83e0214778b2705866a Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Nov 12 09:54:04 2006 +0000 Fixed prototype. commit 94c8de14cd513edd13538493b8f475e1c3ae1d65 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Nov 11 16:53:35 2006 +0000 Added type "s24" for faster conversion of FSSF_S24. commit acb43861b112e847458cf9b953e42e18b69d239a Author: Claudio Ciccani <klan@directfb.org> Date: Sat Nov 11 16:51:46 2006 +0000 Added fusionsound-internal.pc. commit aeea8d7b2192174bc90bc84d0aa889764916b1b4 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Nov 11 09:29:48 2006 +0000 Skip MMX test on AMD64. commit d6a4884c465dc7152a1cfebc8dd5d386405280ab Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 10 21:34:10 2006 +0000 Support loading of indexed PNG files directly to LUT8 surface. Provide palette of image via GetSurfaceDescription(). commit cd4c579761c653322422caf32e8b95f015cdf6a1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 10 13:13:30 2006 +0000 Fixed warning. commit bfe3a678d3399911927b50623eebc6d6315697be Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 10 13:06:25 2006 +0000 #include <unistd.h> commit 4893a9b7179e7a676d4e51bc696ade21f5316600 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 9 10:59:30 2006 +0000 Added ability to let only one Fusionee write to a surface, set via owner field of CoreSurface. Had to add CoreDFB* parameter to dfb_surface_software_lock() and dfb_surface_hardware_lock() where the owner is being checked. commit e7da8d24a58774b43821302ddf54ab115e2b247c Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 9 10:54:33 2006 +0000 Removed "Unknown key pressed" message which can happen on supported (via symbol) keys. commit 1e238abcec4aa702384b80a0ea498e17a34d5518 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Nov 5 19:40:45 2006 +0000 Fix single app build. commit b8b42d3aa866513ea35c3ea746161a8b8c44c1c0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 4 13:25:47 2006 +0000 Give the WM a chance to provide its own surface. The WM may link a surface to the window in the PreConfigureWindow() call. commit 1d0967541bf94330595e4dc7b5b6c4409af08798 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 4 13:21:29 2006 +0000 Removed more. commit 96dd89fd03f84c0cdb91ed8af87df2831e668453 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 4 13:04:09 2006 +0000 Removed some obsolete crap. commit 8ae92c06ddd3fa95551fb02194ad08acc63bedf3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 3 00:19:24 2006 +0000 That was enough for RC3. commit e630981153c0c76f88237f37560dcd3e99588198 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 2 23:56:15 2006 +0000 Increase row width. commit 74f36bfa187ac689ddb0744a98b8fc4385b3c975 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 2 23:44:54 2006 +0000 Fixed wrong pixel format index of LUT2. commit 559d5759faec519a3956ec8fccc2d5b713e2944b Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 2 23:24:57 2006 +0000 Make shared memory allocation output use direct_log_printf as for local memory. Print list of allocations if maximum heap size has been reached. commit d781a544bb60eb3291ff74567333ddb9befcba47 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 2 23:06:06 2006 +0000 Show allocations in both DirectFB shared memory pools with option "-s". Show FusionID and offset within file/heap. commit 30edbe51bfb9de91d18a8bc9c282e4f61aa1ce0b Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 2 22:45:10 2006 +0000 Let "debugmem" option only influence output of allocations, but always track them in debug enabled builds. commit edc68dcb060bf63c3c67faf14ab1c5e84900b17b Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 2 22:34:47 2006 +0000 Added options "debugmem" and "debugshm" to turn on local/shared memory allocation debugging separately from "debug" option. commit d97ef8adc3ca4d4fa1e48e004acc615c6f111648 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 2 22:32:38 2006 +0000 Fixed crash with symbol table lookup code when filename is NULL. commit 480000cbe4c3b27c3d543165a3a706a26beced4c Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 2 22:25:10 2006 +0000 Use direct_memmove() here, too. commit 567660bed608f07d07f0480b04218278ee0af73d Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 2 21:58:50 2006 +0000 Use memmove() in any overlapping case, don't allow moving downward, because the read/write block size of the memcpy() is not known and the difference between from and to area is often only a few bytes, e.g. moving trailing items after removing an item from an array. commit ea7c39df84ae0cd9efd46f79a8cb1d3b08b2bf1d Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 2 21:25:04 2006 +0000 Include Fusion ID of allocator in debug info. commit c0ab69c76ae0c637b7d3c863f71f0e483cc2fd86 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 2 21:10:07 2006 +0000 Just for debugging I added the option "-p" to pause() dfbdump. One could run it as a master and look at the foot print or other things that are there before any application specific stuff happens. commit c6f22948a08317259b5d1ada8cd6c0d8a2ba6673 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 2 21:06:26 2006 +0000 Initialize the heap info table to serve for the maximum pool size specified at creation of the pool. Previously, the initial table served for 4 MB heap. If there were more allocations, the heap info table was reallocated at the end of the heap, i.e. at 4 MB making it impossible to ever go back below the 4 MB heap size. Next barrier was 8 MB, 16 MB ...these are gone. Unlink potentially remaining file from a previous session before creating the shared memory file in tmpfs. Removed memset() on the initial heap to take advantage of the actual allocation of the pages happening when first accessed. If it's a new file, which it is now, it will be zeroed anyways. The maximum size specified during creation of a pool is now taken as an additional size after the heap info table. Previously, it could happen that the size was too small to host the fixed sized heap info table. commit 057fc7fa22ac6e73c6b20ab75b7a9592f3e6cb33 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 2 20:52:28 2006 +0000 Fixed two messages not being debug messages. commit aeb7f4003cb6a120aeb8894ef808df8383677ff3 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Nov 2 13:53:47 2006 +0000 Fixed hundredths to microseconds conversion. commit ba55457269f182f614e05d22d7ec709a495a8c98 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Nov 2 11:52:27 2006 +0000 __inline__ instead of inline (same as typeof). commit 6b028683917d91cc06221a062bffd75279ae2db1 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Nov 2 11:46:12 2006 +0000 Use __typeof__ instead of typeof because the latter requires standard to be gnu89/gnu99. commit 1f536276de06b0628637018ec09821a277fade5a Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 1 09:00:12 2006 +0000 type fixes commit b661e583f6e88178367140e4e22f8ba294ee2d50 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 31 11:26:32 2006 +0000 This was missing from the recent LUT2 commit. It adds support for LUT2 fonts to the FT2 module. commit a4abc1531310f4a99be0b482f1ac64bd05253150 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 30 00:37:40 2006 +0000 Added dgiff.h commit c43ae3c827623e1f5cd1c934a12b789a56b9f234 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 30 00:12:35 2006 +0000 shine commit b86be9e1819c26487826e45f396e61bcdc39aacf Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 30 00:10:11 2006 +0000 Let'em go... commit 41e09f6592d9500783dd6c69346516d657eaee44 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Oct 29 23:26:42 2006 +0000 Also actually include <linux/sisfb.h> now. commit d0a2fd3a61f19ad054be917da489284a340a21c9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Oct 29 23:24:50 2006 +0000 Change license to LGPL. Remove kernel header. Build only if <linux/sisfb.h> is found. commit 7c9f83c3d73516f05dd6375a3d5fc2cf62fc6dc6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Oct 29 11:16:54 2006 +0000 Removed GPLed header and made driver build with latest kernel i2c headers. How about older versions, is there something to be done differently? Maybe different header files to include? commit 34cb23d069898dd800af7d1a7665475a49bb163c Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Oct 29 10:54:42 2006 +0000 cosmetics commit 1ae6b87fbf1c50508a5a69f9b461bab8f0af34b4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Oct 29 10:53:55 2006 +0000 Changed license to LGPL in these files, thanks to Paul Mackerras |paulus * s amba.org! commit 0263ee03c27b67ee7e71c5ce38bb9de3ea5222f0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Oct 29 10:48:35 2006 +0000 Removed GPL code, mainly optimized x86 memcpy routines. libc seems fastest now anyways. commit 794956b6aec1497c236021e40d9d0be1b636fe49 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 28 21:15:22 2006 +0000 build fix commit 39779d043bc74b0be92014d36fd1c8903d77736a Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 28 20:38:49 2006 +0000 Breaking the API freeze, but keeping binary compatibility. This is something that I have forgotten to apply before freezing the API. Added DSPF_LUT2 being indexed 2 bit per pixel packed, i.e. four pixel in one byte. Added IDirectFBSurface::SetIndexTranslation() that sets a translation table used for fast indexed to indexed pixel format conversion. Negative or undefined values in the table will result in no pixel being written. Added DSBLIT_INDEX_TRANSLATION to do fast indexed to indexed translation, this flag is mutual exclusive with all others. So far only LUT2 to LUT8 is supported, used for fast anti-aliased text rendering to indexed format. The translation table contains "-1, 36, 37, 38" for example. First entry makes the background transparent and the other three are shaded versions of the text color. commit c031ecd3059c82ba3f95681738282ad1ffadd28e Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 28 20:25:16 2006 +0000 Fix Bop_a8_set_alphapixel_Aop_yuy2() for big endian. commit 5da12d377c4ec971e345104e5b1c94af85f62667 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 28 20:23:09 2006 +0000 In dfb_layer_context_get_primary_region() if increasing the ref count of the existing primary region fails, due it being destroyed, wait for a short time and try again, probably recreating the region. commit d2ac0696581f9dbd70dfdfc0012c1ccb3357e205 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 28 20:20:15 2006 +0000 Don't print an error if an object revived after it's ref count reached zero but got increased again before the destructor is called. That applies to the multi application core only. In the single application core the destructor is called synchronously. commit fd87ebf9b2320a0a525c537e531aee9896e56432 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 28 18:47:34 2006 +0000 No longer create a new process group in dfb_core_create(). No longer use pthread_kill(KILL) which doesn't only kill the specified thread, use pthread_cancel(). Let direct_assert() and others try raise(TRAP) first, then killpg(0,TRAP) and pthread_exit(). At the end of the global signal handler no longer use killpg(0,KILL) but remove all handlers, raise(num), abort() and then exit( -num ). But the exit shouldn't be reached. Register signal handler with empty instead of full blocking mask and use SA_NODEFER except for SIGSEGV. Also no longer use SA_RESTART. Don't take certain locks in core shutdown functions if emergency is true. Use recursive mutexes in trace support if available. Check for PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP in configure. commit 73b008e4f20092c61aed03fc2db94722cb249e1c Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 28 13:35:54 2006 +0000 Use other signals than SIGUSR1/SIGUSR2, as defined at the top of the file. commit 8ab76006de60ad761be1528e75f7e9898270c1f9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 23 09:16:16 2006 +0000 Define compatibility macros for __ types unless DIRECTFB_NO_CRUFT is defined. commit 8cce1d2523e84e57aed21d49aed43d78ec68c00e Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 23 09:10:14 2006 +0000 Don't depend on "debug" option when printing interface leakage at exit time. commit 581797757fb1a966affb1681b19d7fc062397503 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 19 01:22:21 2006 +0000 Fix software access to chunk less video buffer, was just broken. commit 595f125c7cabeddeb19ad7a16e7241c52633693b Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 17 11:25:05 2006 +0000 Print warning if object could not be created. commit 6000cbfbe3bda148a91f1fe265040bcee4553c9c Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 17 11:24:49 2006 +0000 Added some D_OOSHM(). commit 1932030c078442763fe859e0966e4ac5c5966850 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 17 09:55:52 2006 +0000 Renamed CSS_SYSTEM to CSS_NONE. No longer change buffer storage when system memory instance is valid. Only set buffer storage once in occupy_chunk() and only clear it once in free_chunk(). This fixes NULL pointer returned by an autovideo lock on video memory instance when storage had been set to CSS_SYSTEM while the video instance was still valid. In that case (storage != CSS_VIDEO) it returned the auxiliary memory. commit 0602cf0b7a87d0ee380a8fdea0250555cbeade78 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 17 09:52:26 2006 +0000 Made DFFA_NOCHARMAP work again. If Unicode/Latin1 failed, try Symbol Encoding and do some 0xf000 magic. commit 26c6002ef17b317f86e0fdb8a98f1424f31dea18 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 16 13:27:54 2006 +0000 Fix types. commit bdd04791a1c6232f21668ab48306d0a86fba15c1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Oct 15 21:40:43 2006 +0000 Keep formats sorted! commit 88bd62a8f93e0f039e63ca5c484f26287ce21e00 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 14 13:05:36 2006 +0000 Thanks to Guillem Jover for fixing the kernel type usage, replaces __u8 by u8 etc. commit 676c74dea81f0e11f9ebebff375c676378f2b6f6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 12 20:58:07 2006 +0000 Added missing unistd.h include, thanks to Shane <shanevolpe@gmail.com>! commit dc3a14e04168539a4434ed53f24b3ed6cb11425f Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 12 11:23:00 2006 +0000 Build mkdfiff only if PNG support is enabled. commit 97abe30807831ba318713cc860ba614a26920e0a Author: Ville Syrjala <syrjala@directfb.org> Date: Tue Oct 10 00:15:58 2006 +0000 Fix stdbool.h warnings. commit 17b8e8a124e4128694f33de95fee34507e14ca51 Author: Ville Syrjala <syrjala@directfb.org> Date: Tue Oct 10 00:15:22 2006 +0000 Don't include config.h in direct/types.h. Fix stdbool.h warnings. commit c22e82ecfd58992193c6f42727dcdf976811309f Author: Ville Syrjala <syrjala@directfb.org> Date: Mon Oct 9 23:53:53 2006 +0000 Silence a compiler warning. commit f0701d7a62988f7d19d17407ba41fe7e59e18de1 Author: Ville Syrjala <syrjala@directfb.org> Date: Mon Oct 9 23:53:15 2006 +0000 Ignore repeat events for mouse buttons. commit 10a4d8721196a0495d6326a2420fe72bb70e9e47 Author: Ville Syrjala <syrjala@directfb.org> Date: Mon Oct 9 23:52:07 2006 +0000 Disable dithering when doing alpha blended blits. Dithering it is applied even when the source pixels are completely transparent. This change makes the mouse cursor look sane. commit 6e26969bcc7a7cae72654c60b316dc2fe41c3827 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 9 20:24:37 2006 +0000 Added D_WARN() in dfb_gfxcard_reserve_memory() for each case in which allocation fails. commit f2546210359388095a1187e0cff9008be5d2c05f Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 9 20:19:21 2006 +0000 Yuck! The "tmpfs" option was ignored for quite some time. commit 377fa8131122cc72d202f23a6f08c6f3db9e8697 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Oct 9 11:03:23 2006 +0000 Fixed attributes parsing. Honour the "clip-begin" attribute of SMIL playlists. commit 5e09ca1ddd900cdc99aa84a4031f8d05d2776591 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 9 08:09:39 2006 +0000 DGIFF - DirectFB Glyph Image File Format Added a new font module and a tool called mkdgiff to generate .dgiff from .ttf or other. Purpose of DGIFF is to offload as much as possible from runtime, especially during application startup when loading the default or system fonts. mkdgiff uses FreeType2 to load the glyphs of the font and stores them in one or more ready to use font cache rows, up to 2047 pixels wide right now. The loader creates preallocated surfaces from the mmapped font file. The only copy ever made would be when the surface is transfered to video memory for acceleration. DGIFF supports different sizes of one face in a single file. You can specify these options on the mkdgiff command line: -f, --format <pixelformat> Choose the pixel format (default A8) -s, --sizes <s1>[,s2...] Choose sizes to generate glyph images for commit 851440c093657ee3eb31c9f20271a09322c599c4 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Oct 8 17:48:07 2006 +0000 Added support for detection by content. Extract meta information from M3U and RAM playlists. commit 63607c8aa5ae4bedec39cfa0660f80587103d610 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Oct 6 12:09:53 2006 +0000 readdir_r() instead of readdir(). commit 9f4e4519997401f934575699510ab7eb47a0e915 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Oct 5 12:27:51 2006 +0000 Fixed username/password parsing. commit 90b3c513b4ef08d66e61bea85b3f662b45c6afeb Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 5 10:03:33 2006 +0000 Plugged mem leak of AttachedWindow struct when DetachEventBuffer() happens after the window has been destroyed. commit 2d564735169fc46eb91458b390cae7c393d74fe7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 5 07:06:09 2006 +0000 Use libpng-config if present. Thanks to Gery <gxkahn-et-gmail.com>! commit 65819c113c1e6869a52edc12393c081f9c752b32 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 4 11:44:48 2006 +0000 Safely cycle through nodes while freeing them. commit f5d3dd0d584d8684fbcca32c0c6bbcf3c15b6aa4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 4 10:14:01 2006 +0000 typo commit b30e5e41c01f9bebb4c6eea6456aaff7b8d4dd56 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 4 10:12:43 2006 +0000 Fix vendor strings. commit cba26f9d02423522819ae8a324e922784dd75707 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 4 10:05:40 2006 +0000 Fixed vendor string. commit 42eb9143f9e48e3380364795ad5942b2d1d2a605 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Oct 4 10:04:36 2006 +0000 Allow to specify "none" as driver. commit 0e600cda403b1859a5084e67ddad67827bd2a846 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 4 10:04:25 2006 +0000 Fix vendor strings. commit 8de6efa727f480bf60602c99c0c692db9cb6b84f Author: Claudio Ciccani <klan@directfb.org> Date: Wed Oct 4 10:03:01 2006 +0000 Check for stdbool.h. commit ac94b2ebc28cf6cc28c8c8357e48b9869c1501d9 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Oct 3 12:19:15 2006 +0000 Use readdir_r() instead of readdir(). commit 784530e8a32a6074d637b04d8e6a9fe1ca029bd9 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Oct 2 15:18:56 2006 +0000 Replaced the usage of setitimer()+recv() in net_peek() with a single call to select(). commit 829e04ca231c443b7b1606e9bf5d9350fdfe84ea Author: Claudio Ciccani <klan@directfb.org> Date: Mon Oct 2 12:18:39 2006 +0000 Print only a debug message if palette could not be retrieved/restored. commit c3f2b4b997f41e6ecc76ecc355cbd61867dc19d6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 2 06:38:06 2006 +0000 Added option "primary-only" to tell applications only about the primary layer, pretending there are no others. commit 7e8dd6149557eb8532bbf037d914b55ebd0505f8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Oct 1 09:23:53 2006 +0000 will commit abecc74013c02f5d4c7f2beb855aafb706388a07 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Oct 1 07:13:19 2006 +0000 Complete last fix. commit 73d6d5fdcf3a6da56c7f0f2c0a0bb1003932a4c3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Oct 1 07:11:37 2006 +0000 Fix ARGB1555 color keyed blitting which dropped the alpha channel. commit 7ad1ebab7bb0ddac4b4bc0909e57bc45594be574 Author: Marcel Siegert <mws@directfb.org> Date: Sun Oct 1 00:23:12 2006 +0000 follow up integration of GetStringBreak in DirectFB for testing purposes in ++dfb; commit c07792b19ccb7f34d45c75e9e3e36f6ebf8d69df Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Oct 1 00:16:09 2006 +0000 Fixed missing fusion_world_set_fork_action() in single app build. commit 4e28d34acf7a2c2da117328350e11565f5dad915 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Oct 1 00:08:51 2006 +0000 Patch from Stefan Lucke that adds IDirectFBSurface::GetFramebufferOffset(). commit e0c7700a5fe0fa279a5f0787dde8724e303fb270 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Sep 30 23:36:31 2006 +0000 Added IDirectFBDisplayLayer::SwitchContext() that switches between the shared and the exclusive context if present. commit 08c9f3ddf541cf41bcd0d979aec60d244fea10dd Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Sep 30 23:27:54 2006 +0000 Patch from Daniel Laird to allow connectors to be selected at the encoders without the need to define outputs. Additionally, slow blanking has been added. commit f2b1bb23e7148891e10a81cda7e85e3139e92f67 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Sep 30 23:16:55 2006 +0000 Added IDirectFBFont::GetStringBreak() to break a text line by line. Thanks to sridewa <sridewa@gmail.com> for the initial patch! commit f4bba0f41249b146adf0cc892971083882feb257 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Sep 30 22:46:24 2006 +0000 Disable hardware cursor in VIA_REG_CURSOR_MODE. Thanks to Michel van Noorloos <michel.van.noorloos@sioux.nl>! commit fcd8ccf251bb42ecba4bb97b7e075572f067bdf9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Sep 30 21:17:43 2006 +0000 New 3M DynaPro Touchscreen driver, thanks to Pär Degerman <parde@ikp.liu.se>! commit 45b09dd67452db159509d5d048dce0232014d007 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Sep 30 21:16:08 2006 +0000 Recent vararg patch was missing some of the necessary changes. commit 569ad4481b1097247324c320a8f0bde4542fb424 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Sep 30 20:16:14 2006 +0000 This patch fixes inconsistency in usage of variable arguments. The function Construct is of type: typedef DirectResult (*DirectInterfaceGenericConstructFunc)( void *interface, .. ); One possible implementation of the function looks like this: static DFBResult Construct( IDirectFBImageProvider *thiz, IDirectFBDataBuffer *buffer ) commit f78f307aef017aa13a7fe6139c8f8001c67806f1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Sep 30 19:56:31 2006 +0000 Made "Parsing config file..." a debug message. commit da6484df4cde6564b887b25a4b6a2f84c0f26253 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Sep 30 19:52:19 2006 +0000 a bit more chiefly commit c63049e0d47c0ae50549e47b485db96033201cd4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Sep 30 16:15:34 2006 +0000 Thanks to Stefan Lucke for fixing overlay destination color keying for 8/15/16 bit primary layer formats and adding a "i8xx_overlay_pipe_b" option! commit 4976dd3363743f6416295b8ea3aecb42d664a1d4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Sep 30 16:08:16 2006 +0000 Rewrote one line interface descriptions. commit 752fe9cd5951dfa4103e82ce43bb0e6a64ff3ad9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Sep 29 11:50:25 2006 +0000 Prepare for version 1.0.0-rc1! The overdone banner text is a placeholder :-) commit d19b26cbcc7c64c2d3e3ef35c96a5fc8127d2252 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 28 14:12:16 2006 +0000 Fix pure release build. commit 2bcb01589f2a037e9117c4d4e21c7fd73f12e9f0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 28 13:50:39 2006 +0000 Fix warnings. commit 4d73cf58a459cb626334b682855208143f9f4e17 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 28 12:48:32 2006 +0000 Detach from shm pools when leaving in fusion_shm_deinit(). This fixes mremap errors after reentering a world. commit 8b20b296996e9b75b4d8fdf3df7a7f56e63dabbd Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 28 01:16:07 2006 +0000 Hmm, seems the debug domain is required if DIRECT_BUILD_NETWORK is true. commit 7c1aa30cbd307be0c8ddd16831bb5dc0ec52db0e Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 28 01:11:13 2006 +0000 Fixed warning about unused debug domain by commenting it out. commit 6257108acc22c5c847837bde97fba526541adf84 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 28 00:41:59 2006 +0000 New tool fsdump a la dfbdump, initial version, showing buffers with their reference counter and buffer length. commit a486b6a262b16ab92d1de5efe7ceae86f369f45a Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 28 00:39:55 2006 +0000 ignore commit d4523a9ee0fddd3d4ecfeeedf6c01f2fbf23afb6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 28 00:39:34 2006 +0000 Added fs_core_enum_buffers() and fs_core_enum_playbacks(). commit fcd8a9821ad7bdbad89f132c073f9af5e92879f0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 28 00:39:05 2006 +0000 Moved IFusionSound_data definition to header. commit 589828e69ef3e438565a824489567f1fa5d61fc5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 28 00:35:51 2006 +0000 Install internal headers. commit d103c23abfd5b8e03c339592e9a29cc73ffdf611 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Sep 26 22:22:16 2006 +0000 Add stdbool.h to AC_CHECK_HEADERS. commit 7474324986816306b116be02da6171bc1aa4b748 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Sep 26 22:20:37 2006 +0000 Include config.h if HAVE_CONFIG_H is defined and include stdbool.h if HAVE_STDBOOL_H is defined. If still no bool is declared after this, show a warning with instructions: "bool definition herein is not 100% compliant, add AC_CHECK_HEADERS(stdbool.h) to your configure.in or define HAVE_STDBOOL_H or NO_WARN_STDBOOL." commit f129bd488dce35169972bd087ce9af14206d0212 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Sep 26 21:46:47 2006 +0000 No longer unref source after usage by Blit() & Co. This was a recent hotfix which dragged down performance and is now reverted. Instead I added ReleaseSource(): "Release possible reference to source surface. For performance reasons the last surface that has been used for Blit() and others stays attached to the state of the destination surface to save the overhead of reprogramming the same values each time. That leads to the last source being still around regardless of it being released via its own interface. The worst case is generation of thumbnails using StretchBlit() from a huge surface to a small one. The small thumbnail surface keeps the big one alive, because no other blitting will be done to the small surface afterwards. To solve this, here's the method applications should use in such a case." commit b65a672a1f7c7dbf383342b43dfbb4a997fba441 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Sep 26 21:11:39 2006 +0000 In addition to DIRECT_FORCE_DEBUG one can use DIRECT_ENABLE_DEBUG now. commit 0827bec7e8c2204d5eade78160fca072244ad383 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Sep 26 21:09:15 2006 +0000 Only duplicate used portion of array in direct_trace_copy_buffer(), set limit from 256 to 200. commit 5d3038ca4179c3b3c61e0e92108cb722c8eb35fe Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Sep 26 20:17:04 2006 +0000 Added global function pointer __DFB_CoreRegisterHook with __DFB_CoreRegisterHookCtx to allow application level layer (and screen) implementations building on top of existing layers. The callback happens during DirectFBCreate(), right after the driver's register calls, the application can call dfb_screens_register() and dfb_layers_register(), right before all registered implementations get activated. commit 15d1b138554de065f15d99915ab28e0df97f36d7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Sep 26 19:42:36 2006 +0000 Fix build when including header in C++ code. commit 5534352f92b46262262d62c259d9cd5e489757ee Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Sep 26 19:41:28 2006 +0000 Rework structure of wm_update_cursor() implementation, fixing a failing assertion. commit 31473a446d3f1214cff1baf5164116cf2d24503b Author: Claudio Ciccani <klan@directfb.org> Date: Tue Sep 26 10:28:35 2006 +0000 Fixed warnings about uninitialized variable. commit 4be72123e955acf5898c82fd78bf53a00f38f8d4 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Sep 25 12:40:14 2006 +0000 Faster response matching (use only sscanf()). commit ef893b16d021bb4574136812fb9e43d14930aa5c Author: Claudio Ciccani <klan@directfb.org> Date: Mon Sep 25 08:57:56 2006 +0000 Use ov_open_callbacks() instead of ov_open(). commit 3b7000cfd50009c13a1935123bcdb23fb97ac65a Author: Claudio Ciccani <klan@directfb.org> Date: Sun Sep 24 19:46:56 2006 +0000 Fixed FTP response handling. commit 53ae0ec80c73a0dacb247205626d730e79c4bf55 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Sep 24 17:53:14 2006 +0000 Added: - BSWAP16 and BSWAP32 macros - direct_base64_encode (moved from Direct/Stream) and direct_base64_decode - direct_md5_sum commit 5a748d95c9265d383f94712ff0d475605732724a Author: Claudio Ciccani <klan@directfb.org> Date: Sun Sep 24 17:51:13 2006 +0000 Added option --enable-netork to enable/disable building network protocols handlers. Reworked Direct/Stream to gain more efficiency. Added rtsp:// protocol support to Direct/Stream. This implementation supports both Standard and RealMedia protocol. It works by outputting either raw packets (e.g. audio/mpeg stream) or a RMF (.rm) container stream. commit fd3a08be1eaffd0b0c78122b225ceb098d849f8c Author: Claudio Ciccani <klan@directfb.org> Date: Fri Sep 22 08:17:20 2006 +0000 In trim(): check if e > s. commit e7b3cd88bd86ff5c2770fcb78ec1822f32601753 Author: Mike Emmel <memmel@directfb.org> Date: Wed Sep 20 16:03:17 2006 +0000 Adding support for the 18bpp format family these have 6 bits per pixel and use 3 bytes. This format is used in embedded platform lcd controllers. commit 4c759e6f2649f78c2d628b048b9a33f5924dba15 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Sep 18 17:42:14 2006 +0000 In trim(): clear to zero trailing spaces. commit dbb8aed829ee1e85d0c80f44c8f3f79755528ca6 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Sep 18 13:51:48 2006 +0000 unsv:// protocol support (acronymous for http://). commit 1a35f3d6c2e5075406a125959218466d9e550d4a Author: Claudio Ciccani <klan@directfb.org> Date: Mon Sep 18 10:16:14 2006 +0000 Treat http headers case-insensitive and accept any kind of spaces within them. commit 36fc07b13d69d589fea3950e09ecfa787ef2b5cf Author: Claudio Ciccani <klan@directfb.org> Date: Mon Sep 18 09:32:33 2006 +0000 Support Icecast protocol within http. commit eab2a678f24a1fec4f1cfe67c60fd74073589fe8 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Sep 17 13:11:03 2006 +0000 Support detection by mimetype. commit 803832c6588dc7b28cc434a0005ffd7a1021d5dd Author: Claudio Ciccani <klan@directfb.org> Date: Sun Sep 17 13:08:14 2006 +0000 Added direct_stream_mime(): returns mime description of the stream. commit 4dccd93bb35438f257b2a27f23bfe9b232f9b344 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Sep 16 13:27:59 2006 +0000 Do not build a local playlist, use EnumTracks() to iterate through tracks instead. commit 9cbedda01d48e1bc51462d214d0697bd5a3abba1 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Sep 16 13:26:26 2006 +0000 Added music provider for playlists. Supports M3U, RAM, PLS and SMIL. commit 1881c7fa64e27dcc9359d54eb93ab8e97163d903 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 14 16:45:55 2006 +0000 Fix DrawLine() for horizontal and vertical lines in negative direction. commit 590157b49e3bb76fd49cdfb50a693727d877ff03 Author: Ville Syrjala <syrjala@directfb.org> Date: Wed Sep 13 21:35:43 2006 +0000 Recalculate buffer offset when field blit mode changes. commit 8c1195fb29618bdf92047a01e5b3b80a2e491fc9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 13 14:26:44 2006 +0000 Removed false assertions. commit 5d40076446d95bd07fa3a4f45d9e705fb8123e4f Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Sep 11 18:57:13 2006 +0000 Fixed prototype. commit 2a9ee4f0a54c07d9d840fc8da0e6136418b17eb9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Sep 11 18:09:55 2006 +0000 Eliminate need for linking against libdirectfb. commit 40773ff57fc612c16be262df2a85443875661a6a Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Sep 11 17:17:23 2006 +0000 Align pitch of system memory buffers to be a multiple of 8 instead 4. Add extra 16 bytes at the end of a buffer as a dummy area for optimized routines, e.g. to avoid segfaults due to prefetching. commit cbe590f1452e64c2607ef302692a0f8f717e9b40 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Sep 11 15:40:24 2006 +0000 Moved clipping from dfb_clip_stretchblit() to gStretchBlit() doing all clipping, phase and offset calculations in place, well, handling the phase of clipped stretching at all (initial .16 value for iteration) hasn't been there before. Before that, clipping suffered from rounding and off-by-one errors due to going back to integer in between. Accesses out of surface bounds and jumping images are gone. Jumping was visible when the same image was stretched with the same source and destination rectangle each time, but with randomly changing clip rectangles. commit d5ffae06a16ca4fb8dac83c94ad7208c86454f7c Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Sep 11 15:04:56 2006 +0000 First shot at DFIFF - DirectFB Fast Image File Format Includes mkdfiff tool and a very simple and fast image provider. Loading of a 32x32 icon, for example, was about six times faster than with the PNG loader. commit 2d628eeb77b84c10dc736b89fbd6d0983652dac7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Sep 11 15:01:25 2006 +0000 New capabilities for setting destination size limit. If the rectangle is too big, first try clip, then try again and eventually fall back to software. commit 820f76fed710224756a4aa070c327c825b08c937 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 6 19:08:17 2006 +0000 Just added some debug. commit 6781895cd4e31a5a1d076cf55f5fa75e5df50d99 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 6 19:08:05 2006 +0000 Fixed problem with remaining layer context. commit 027c5d8a5dd0ddaecb353941ca109239294a0627 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Sep 3 14:29:18 2006 +0000 Speed up DrawString() by 7-10% (as seen so far) bypassing the hash table for indices < 128, storing them in a fast array. commit 1ff295081aeed3488ef9a556775cc6bedbcee154 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Sep 3 12:11:58 2006 +0000 Return RS_REMOVE in test reaction. commit fab18c68d21b1c8a164957b22d9b148a62499e49 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Sep 3 12:11:26 2006 +0000 Added fusion_reactor_destroy() like fusion_reactor_free() but without freeing the shared structure etc. No longer (need to) access the shared structure during local message processing in the Fusion dispatcher. Other cleanups. commit 342a45e0e0db54869e31a0569372ac42c95ec8ab Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Sep 3 11:54:39 2006 +0000 Small test for problem with pending messages from destroyed reactors. commit bd892048bcc61267fa2a59831c21c98431cec355 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Aug 26 11:50:04 2006 +0000 Patch adds fusion_skirmish_lock_count() to utilize the recently added ioctl. commit d9deb140c0946c0ed64bdb9e2c3656d3e0838f41 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Aug 26 11:00:50 2006 +0000 Added diaeresis dead key combinations. Cast all characters to unsigned ones. commit 137d1ec812fc7d1a2de7b254aea20be0d3905a23 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Aug 26 10:39:29 2006 +0000 Mask out alpha bits properly using 0x7FFF in 15bit color keyed blit. Also avoid crossing 32bit boundaries with one access in 16bit color keyed blit. commit d2136fe652078c6118a07905c5faa98b5555ef14 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Aug 26 09:54:22 2006 +0000 Updated script. commit 34c9aaf5e1494cc9f9c18ada18ce3262d17d136c Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Aug 26 09:34:18 2006 +0000 Added DFBResult return value to graphics driver's EngineSync() and WaitSerial() to be able to return DFB_TIMEDOUT or other errors. In these cases the core resets the accelerator via EngineReset() and takes care of state invalidation etc. dfb_gfxcard_sync() and dfb_gfxcard_waitserial() also lease the graphics property, i.e. there are no more concurrent calls to the driver, e.g. FillRectangle() along with EngineSync(). commit 1b1c2fde21ffdc0005bcf9eb8d0399d7e5be3019 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Aug 26 09:00:47 2006 +0000 Added some D_ASSERTs checking for properly clipped coordinates. commit a0614ed9bec2601da5a05308287f3bb1ec0bb6d1 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Aug 23 08:54:57 2006 +0000 Set FSF_DECIBITS to 23 to prevent negative overflow (case 64+64). commit 447bfa3a5ff52dbca3942a1c9826da360dae6683 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 22 10:34:05 2006 +0000 Don't keep status based on notifications, but use a new function called fs_playback_get_status() to sychronously query the actual value. This fixes Wait() returning immediately when directly called after Start(). The notification is still used to wake up the waiters. commit 4552a9cab3c6bb9325bde54931a5252f95dee1a0 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Aug 21 09:39:14 2006 +0000 Compare buffertimes instead of buffersizes. commit 1e42184c518b0a711c26fbd773b0e0ca2175e0b7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Aug 19 22:30:20 2006 +0000 Removed call to dfb_gfxcard_sync() in dfb_fbdev_pan(). The core takes care of that. commit df0a87c357997c35df2b6d07ba30cbba2a4e8439 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Aug 19 13:02:15 2006 +0000 Enable VC_32BIT_SWAP on big-endian machines. commit 3ad326aeaba5fa93e7f75ac3fce527f918382293 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Aug 19 13:01:04 2006 +0000 Use radeon_out32() to emit vertices. commit 0e1b344147c0cae81a38902a2435a803b90a9551 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 14 23:04:52 2006 +0000 In case of no hardware clipping but rectangle filling, if in DrawRectangle() the whole rectangle outline was outside the clipping area, the clipping area was drawn in the software fallback code. commit 3c82bad4d07116bb7f58cd999fed6c061a127888 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Aug 14 10:45:19 2006 +0000 Display ReplayGain information. commit 6fc43b6c2a7e26aca4b6d7a1a034bdb442293bb7 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Aug 14 10:41:53 2006 +0000 Do not set replaygain information by default. commit b670b76d5435d7b4d865b5b292857c37ab474a6d Author: Claudio Ciccani <klan@directfb.org> Date: Mon Aug 14 10:40:41 2006 +0000 Added replaygain_album to FSTrackDescription. commit f0e8ac06a6c73566e5557f2be6bca3e29b7a5e5c Author: Claudio Ciccani <klan@directfb.org> Date: Mon Aug 14 10:38:53 2006 +0000 Option "buffersize" renamed "buffertime". commit f59f89a64adf427d30cc247a211e58c5dd803d80 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 14 09:19:32 2006 +0000 Implemented experimental fork() handling in Fusion. Added FusionForkAction being FFA_CLOSE by default, which can be changed to FFA_FORK with a call to fusion_world_set_fork_action() for each Fusionee/World. Added test program "fusion_fork" to demonstrate and test the new feature. commit ce1bd1db0ed2b6caf294da52575054d335753ad2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 14 09:05:53 2006 +0000 Fixed warning. commit 3f64b4e67d4a6b5cf90f0493c3ccb70acb693ef9 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Aug 12 16:27:03 2006 +0000 Limit buffersize to 5 seconds. commit d61fa6b5ef1bf9ecaf261c212a2f8131fcc4b503 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Aug 12 11:08:30 2006 +0000 Added replaygain to FSTrackDescription. commit 03dea2a7c19c7e53c0d1bd17a26354d4b7c428e1 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Aug 11 14:44:40 2006 +0000 Added example about loading tracks into a buffer using music providers. commit e55cb678091b84982b65a5da03de8a1043b55174 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Aug 11 14:40:54 2006 +0000 Follow changes. commit f54eca9c16aceb28ada1c6412dcf358db0a4892a Author: Claudio Ciccani <klan@directfb.org> Date: Fri Aug 11 14:39:16 2006 +0000 New option --enable-linear-filter to enable linear resampling (previously it was enabled by --enable-precision). commit 4e9e4351203e634fab344439160c798474574501 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Aug 11 14:37:04 2006 +0000 Increased number of fractal bits in __fsf to 24. Because of that, volume ranges from 0 to 64. Removed IFusionSoundBuffer::SetPan() and FSPLAY_PAN. Use IFusionSoundPlayback to do that. Added IFusionSoundBuffer::SetPosition(): set the pointer position for subsequent playback or lock for access. Added FSPLAY_CYCLE: play whole buffer once, wrapping at the end. Modified IFusionSoundBuffer::Lock(): (otionally) returns available space in frames or bytes. Limit buffer's length to 0xfffffff frames to prevent negative overflow. commit a81ec2df1e872085db6c5e409603f31c1e4f2041 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Aug 10 19:25:45 2006 +0000 Handle zero pitch. commit b319d6ec114c82e988b5c68ce5fe3d22b4f4e355 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Aug 10 16:19:13 2006 +0000 Cast long to long long. commit d724a283b5cc560432adbc9b3236efa9e00dc405 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Aug 10 16:05:29 2006 +0000 Added support for backward playback, enabled by IFusionSoundPlayback::SetDirection() or by the playback flag FSPLAY_REWIND. commit 713be4c88b4180f54ac1189bcc050ff11347e819 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Aug 10 15:58:33 2006 +0000 Always save 16 bits from source when multiplying in 32bit mode. commit fc4be0f1dadbd02495b86f7cc3e17ae9b72b7b55 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 8 18:37:24 2006 +0000 In dfb_surfacemanager_deallocate() make sure no hardware read or write access on the buffer is pending before freeing the chunk :-P commit c2fd5e1458bfe1fcca853419d7edee14792ea9a4 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Aug 8 18:01:16 2006 +0000 Added IFusionSound::GetDeviceDescription(). commit 0b5b7cc4aef3f536d1a0206cd406488bb8f102e3 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Aug 8 13:16:36 2006 +0000 Added IFusionSoundStream::Drop(). This method behaves like Flush(), but it also discards pending input data. commit 06495831823cc4c6e7f8cdbd724f6cc405794600 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Aug 8 13:11:31 2006 +0000 Flush mixing buffer at the end of playback. commit c3c0f37a413b44a08e5408d85ff6ecd613553d0c Author: Claudio Ciccani <klan@directfb.org> Date: Tue Aug 8 13:09:12 2006 +0000 Ignore return value from snd_pcm_delay(). commit 946d5eb99de11e5660e78223d9c3ac1fde4f8e0f Author: Claudio Ciccani <klan@directfb.org> Date: Mon Aug 7 15:53:53 2006 +0000 Driver::OpenDevice() fills a device description containing name and capabilities (actually only DCF_WRITEBLOCKS, used by OSS driver). Store playback pitch in 6:10 format (instead 8:8) to improve resample precision. As a consequence of this change, pitch ranges from 0.0 to 64.0 now. commit 7831adeb407fde9b6ef06a33c53ec1ae6d74158f Author: Claudio Ciccani <klan@directfb.org> Date: Mon Aug 7 15:44:21 2006 +0000 AC_CHECK_TYPE(long) replaced by AC_CHECK_SIZEOF(long). commit afe93525dd2c03adbb96cf253c5a773237610930 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 7 11:39:50 2006 +0000 Added DIEF_FOLLOW to DFBInputEventFlags which indicates that another event will follow immediately. In the mouse driver this is used to "link" the x/y axis motion events. The window manager no longer sends two motion events (x/0, 0/y) for one x/y mouse movement (x and y axis at once)! Zig-zag cursor/window movement and double event/update rate are gone :) commit d9a11536a82666b67c2873a17f67feaf629f4391 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 7 08:55:26 2006 +0000 Clean up error handling in system_initialize() and fix bug with shared memory (de)allocation. commit 4c2ad20ec72d985c98fb224a276b39b6ed7b0bc0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 7 08:52:26 2006 +0000 Finally decided to catch horizontal/vertical lines in DrawLine() and optimize them using rectangle filling. commit 243b4b833eb8f60bdf1a3a4366b64e1025da1c2c Author: Claudio Ciccani <klan@directfb.org> Date: Sat Aug 5 16:55:24 2006 +0000 No longer limit the amout of output buffered frames. commit 482e514cd91629be75d5dedde429f1a4373d0d43 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Aug 5 16:01:22 2006 +0000 Fill output buffer before sending it to the output device. commit 28d5d1a261634c57f5d5cc6d32813801558b678d Author: Claudio Ciccani <klan@directfb.org> Date: Sat Aug 5 15:58:58 2006 +0000 Disable software resampling. Return hardware buffersize only when it's smaller than requested buffersize. commit 1441f1e2e890e52453a9f534237f548e42275dd5 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Aug 5 13:41:55 2006 +0000 Check for PTHREAD_MUTEX_RECURSIVE declaration. commit 63b8dc4f3dc25e229187ba4f8adb7d65213bca66 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Aug 5 10:43:51 2006 +0000 Fixed root cause for negative coordinates. Thought I committed that a few days ago... commit f0053bacf7d8b6685b21903f86c6f61af511084c Author: Claudio Ciccani <klan@directfb.org> Date: Sat Aug 5 10:37:48 2006 +0000 Made 'key' argument of IDirectFBWindow::*Property() constant. Cosmetics. commit 32fc98f444b442d802e4777e62f8b0cfb9dd787c Author: Claudio Ciccani <klan@directfb.org> Date: Sat Aug 5 10:00:12 2006 +0000 Workaround for (default) window manager passing negative rectangle to dfb_gfxcard_blit(). commit a2125dc08610308873b8e9999a79fa615bf5dfff Author: Claudio Ciccani <klan@directfb.org> Date: Sat Aug 5 07:46:52 2006 +0000 Added [no-]banner. commit e80c9279635ed1dd16241201e28fc19c97fe6195 Author: Mike Emmel <memmel@directfb.org> Date: Sat Aug 5 01:59:11 2006 +0000 /tmp/cvsIa7FG7 commit d239530a079a266a55ab22057f4dc70e153c5fd9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Aug 4 21:05:09 2006 +0000 Check if window is destroyed and return DFB_DESTROYED in all functions which would have called the WM, because a destroyed window is no longer known to the WM and the WM's window data structure is deallocated. commit 4b7976bb244fae7eaaca7e5236219bfdd42a2f46 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Aug 4 16:29:19 2006 +0000 Added "name" parameter to fusion_ref_init() like others already have. Gives nice debugging in /proc/fusion/../refs now :) commit 1129d9d2e8e14f8efc4c8d15323a54cbbd20eda0 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Aug 4 15:47:32 2006 +0000 Added option [no-]banner (by default it's dfb_config->banner). commit 082607b53134158c09ff5607be54dd2be3f7a41a Author: Claudio Ciccani <klan@directfb.org> Date: Fri Aug 4 15:45:19 2006 +0000 Fixed FusionSoundInit() prototype. commit f23da51a0c291e976d524e6cbd98c81e0c5e849d Author: Claudio Ciccani <klan@directfb.org> Date: Thu Aug 3 17:57:56 2006 +0000 Unref attached window on destroy event. commit 70e3596f5ab2d22f146d1c6e0d4a0fbc83cad888 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Aug 3 17:20:00 2006 +0000 This is my latest development version of the radeon driver. Main changes affect the R300, which now supports FillTriangles() and DSDRAW_BLEND. commit 40da4bef4cdb8a674d2b3be8945f83229780e1f9 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Aug 3 17:03:49 2006 +0000 No longer unref the window in IDirectFBWindow_React(). commit 097955a4b08aa174145e48aae46eed57db8da9aa Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 3 16:49:07 2006 +0000 Return DFB_LOCKED in fusion_ref_up() if EAGAIN is received (ref is zero locked). Added D_UNIMPLEMENTED() message to single app version of fusion_ref_inherit(). commit f45a2fdfc2194c59a10cef47085ce528ba8477b4 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Aug 3 13:48:23 2006 +0000 Debug already destroyed windows in dfb_window_destroy(). commit 6b8aa0d5240f2af69ff4d71751ee137e5ddad8b2 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Aug 3 13:46:45 2006 +0000 Undone last change: do not destroy the window, but always unref it (to destroy the fusion object). commit d60d9cabb5c6f9c0cf0904831a45e2386aab37ea Author: Claudio Ciccani <klan@directfb.org> Date: Thu Aug 3 13:14:40 2006 +0000 IDirectFBEventBuffer references attached windows and IDirectFBWindow always destroyes the window on release: this way releasing the event buffer before the window no longer causes an assertion failure. commit 98ac58d1e6621c9bf4928637ed46a5e6e7bd3d93 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Aug 2 09:52:47 2006 +0000 Implemented Bop_4_to_Aop and Sacc_to_Aop_a4. commit 23fd8a929012e8d0827efafaa26c4f82f766b2cd Author: Claudio Ciccani <klan@directfb.org> Date: Wed Aug 2 09:51:00 2006 +0000 DSPF_A8 and DSPF_RGB332 were writing (dx+len) pixels instead of (len). commit 668549e3df0f3c3e4ae336bb30b46be0ce7f1dd7 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Aug 1 15:02:53 2006 +0000 Removed return value from fs_device_write(). commit fe3288451d6e3fe70c94233cabd6d01caf7c07f1 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Aug 1 13:46:39 2006 +0000 Enable using recursive mutexes when PTHREAD_MUTEX_RECURSIVE || __USE_UNIX98 are defined. commit 5e14aa5189b2be1ce47a6a6391ee343280323cca Author: Claudio Ciccani <klan@directfb.org> Date: Tue Aug 1 09:35:07 2006 +0000 Fixed compilation failure with gcc-2.95. commit f52a9b083cbbb60870e8b415802e3082c86800dd Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jul 31 16:39:41 2006 +0000 Handle NULL subsurface's rectangle. commit 0a15bc4dab135cd06871adb799838042c1b3f65d Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jul 31 11:12:41 2006 +0000 Remember if a subsurface was created with a NULL rectangle, in this case treat it as normal surface in case of parent resizement. This is actually a workaround, because it won't work in the following situation: surface->GetSubSurface( rect, &surface1 ); surface1->GetSubSurface( NULL, &surface2 ); // surface2 won't fit surface1 on resizement Fixed window manager's isets stuff: IDirectFBSurface_Construct() takes a DFBInsets argument that will be used to compute the clipping rectangle for the current area. commit fb3523ead498371e93718b6b7550220496fe092f Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 31 10:59:38 2006 +0000 If a channel has no bits, don't care about their position :) commit d18117e7adb52a172af3f382a9489b8e1b6d51f5 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jul 31 10:58:28 2006 +0000 Added dfb_rectangle_subtract(): subtract insets to rectangle. commit a697f328d93845c37642ab0ae55b6482c7802429 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Jul 29 10:27:34 2006 +0000 Allocate the accumulator only if it will be used. commit ee57c56d78e6ff64c6648039183e723933f67847 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jul 27 22:07:04 2006 +0000 Make sure pool is mapped properly before actually doing the malloc/realloc/free. Now the lock order "shm shared lock -> shm pool lock" should not be violated, because _fusion_shmalloc_cure() should not be called in a malloc/realloc/free context anymore. commit ce3e45a6b8db169432f933bf2e545796ed11ce84 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jul 27 21:04:33 2006 +0000 Fix deadlock caused by lock twists. commit 67e04b3abad99a5d8d11237505b544eebadcad66 Author: Mark Adams <marka@directfb.org> Date: Thu Jul 27 15:36:18 2006 +0000 Added PCI ID for CN700. commit afa584564ab4296cd1b4f7d03c71c90c465a0c90 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Jul 27 13:00:48 2006 +0000 Removed (erroneously set) flag VF_RADEON_MODE in r200DoDrawRectangle3D(). commit 3dbb6d54df8dc23f11a69c276292e7fb2240bc78 Author: Mark Adams <marka@directfb.org> Date: Wed Jul 26 16:45:35 2006 +0000 Now saves PCI ID for use elsewhere (comments said it did before but it didn't). commit 84497be99cdfb491a9c26c61bde5b0df531cbf46 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jul 24 10:43:47 2006 +0000 Print device name all uppercase. commit 46d0cc6874b598cf77df8dc177fbec4819a94054 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 23 16:49:35 2006 +0000 Due to increasing amount of debug messages the default is "no-debug" now. It makes more sense to only enable wanted debug domains by hand, e.g. "debug=core/font". Otherwise, "debug" option still works, too. commit 73556cd75075ce3c4e9555f126fbb7e72cbd9be5 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jul 23 14:10:38 2006 +0000 Store delayTime in microsecs and use gettimeofday() instead of ftime(). commit 2689ae02df370edf2fddf18a802c775fff73ed64 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 23 13:54:01 2006 +0000 Include <linux/compiler.h> only if present. commit 406a3ad580bdf166726fc1845b3550d42b95bdbe Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 23 13:51:08 2006 +0000 Fixed warning about unused debug domain by commenting it out. commit ff5d776bf66d2bedffb38d5e762220e652a79844 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 23 13:11:08 2006 +0000 Plug brand new leakage of glyph data. commit 42ba63c0efeb91ab13923e41484fda863677ed9f Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jul 23 12:46:42 2006 +0000 Moved DirectFBGL header to the proper location. We need the header here since the DirectFBGL interface is strongly integrated within DirectFB and we want to support external implementations. commit f09a398ba83aff7141df6851cebce4288756c534 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 23 12:46:21 2006 +0000 Line length is 120 :) commit 24adf00bb9d8037bffa34f4c213aa625752c0d4f Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jul 23 12:24:45 2006 +0000 First attempt to give some hints on the coding style. commit 1ea4ceae0c1923cfb3832f2619389dd25424c7cd Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 23 11:38:59 2006 +0000 Increased core ABI after recent changes in FusionObject. commit 3175121fdc1b9ebeba9151f76815887fe3714f17 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 23 11:01:06 2006 +0000 Finalized code, not only cosmetics, fixed const/non-const, missing return values, suggested braces, assertions, complete error handling etc... commit 9d370c73fcd94fbfc5847d4753f0f81f2b2a97db Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jul 23 10:34:08 2006 +0000 Option --enable-quality renamed --enable-precision. This is the last. commit a647aec39a924cee7e7805e1118fa82df98ccb54 Author: Mike Emmel <memmel@directfb.org> Date: Sat Jul 22 20:24:28 2006 +0000 New fusion hash and property support for object commit 095175591a5ed516d60e9dd6a46e08613a5622e7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jul 22 18:46:29 2006 +0000 Implemented font cache limit, currently hardcoded to five rows, each row stores a number of glyphs. When the maximum number is reached it will reuse the least recently used row, kicking out glyphs that have been on it. Doing that on a glyph basis would require some more work and has a greater overhead. commit f46dce7c4f05e7415f7b4bbfa9806da1ecada242 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Jul 22 15:07:53 2006 +0000 Added patch to radeonfb fixing support for R300 chipsets (it also adds new devices). commit a922650a4ffc47ea5fba1369d798150c842818b6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jul 22 14:46:59 2006 +0000 Fixed warnings. commit 85e6caefe8c595a16dccd2e1d3e380945596cf7b Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jul 22 11:19:09 2006 +0000 Simply use a hash for glyph infos instead of a tree with an array for the first 127 keys (fast indices)... commit 46b6f75bb024019d95c76d0146dd6e10c609af51 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Jul 21 20:50:23 2006 +0000 Avoid writing to R300_TX_OFFSET_1, radeonfb must be patched before doing it. commit b9d8aa6313893e0738b9694fbc5a6bc235b9450c Author: Claudio Ciccani <klan@directfb.org> Date: Fri Jul 21 20:13:44 2006 +0000 Use different settings for R300 and non-R300 when setting MC_FB_LOCATION. commit cea99f8a346ff1ba379cd5a9626b658577da28b3 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Jul 21 18:09:52 2006 +0000 Need to set MC_FB_LOCATION at offset 0 to avoid crash with R300s. commit a697833e82ecf7669f2902db9a3836080e7eec33 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Jul 20 13:29:08 2006 +0000 Changed music provider infrastructure to use a DirectStream. Additionally to the filename, Probe Context contains the header field (64 bytes) and the DirectStream itself. The Construct function takes a filename and a DirectStream as arguments. commit b6ae739676350635c0df4124023f4b70a0e8fb8f Author: Claudio Ciccani <klan@directfb.org> Date: Thu Jul 20 13:21:38 2006 +0000 Option --enable-accuracy (FS_ENABLE_ACCURACY) renamed --enable-quality (FS_ENABLE_QUALITY). commit 452c3817945dc530079e25137eb1b2db3f3b1135 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Jul 20 13:19:46 2006 +0000 Replaced direct_stream_fopen() by direct_stream_fileno(). Added direct_stream_dup() (increase stream's reference counter). commit c13d5cea603f305f0e76300dff857d14cff44d29 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Jul 20 13:17:13 2006 +0000 Dropped support for GIF87 (can't be animated). commit 077f1ae89cf73f2171774b2469805c8c932514da Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jul 19 12:28:40 2006 +0000 Notify speed change to video thread. commit e85c861bda261c169e5d2ffcd68c637a57d55c60 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jul 19 10:10:32 2006 +0000 Added Animated GIF video provider. (I put it here, instead of DirectFB-extra, because it may be usefull for animated cursors). commit 9cc7558c5b6484a107fc231a7e5879927aa96905 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 19 01:48:11 2006 +0000 Local 'local reactions' are no longer processed before dispatching further via the kernel device. This causes all local reactions within each Fusionee to be called by the Fusion Dispatcher only, in chronological order. It's a fundamental change in runtime behaviour which might break some code that relies on the synchronous execution of some of the local reactions, the dispatcher's own. commit e69ef63383b5f6d8536d568b23c5f4d15519a264 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 18 17:05:08 2006 +0000 Show which surfaces are preallocated. commit 5cd415372b356750e72ab4d1c130dad622e9c07b Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 18 01:07:13 2006 +0000 Before every graphics operation, i.e. in dfb_gfxcard_state_check(), clip the state's clipping region to the destination surface dimension. In debug mode too big clipping regions will still show a failing D_ASSUME, while other errors like x1 > x2 or x < 0 will break with a failing D_ASSERT. commit 52b0a995a642e3e5f14732f2fcc2e1e0773340e1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 17 23:13:29 2006 +0000 Fix warning in non-debug build by putting an '#if D_DEBUG_ENABLED' around the static const table of strings used only in the debug message further below. commit 524f9a21099d0037d4e28fa427d0feea63501d63 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jul 17 13:12:21 2006 +0000 Removed return value from DVFrameCallback. commit 7ddb76e6dd224a85005d4ef6a6642ae4d9cf9196 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jul 17 13:10:45 2006 +0000 Declare PCI regs locally (avoid inclusion of <linux/pci_regs.h>). commit ac91f7c11b55222bcbf3a2f72eb5281dd1d59c61 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 16 21:06:50 2006 +0000 Added option --rgbformat which in contrast to the --format option only is effective if the image doesn't require an alpha channel. That's useful e.g. with RGB16 for opaque and ARGB for blended images, when the primary format will be RGB16. So far directfb-csource either used ARGB/RGB32 automatically, or it always used RGB16 or whatever you specified via --format. commit 23ba9cc353146b4ac94c4ecea903c98f53e99e94 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jul 16 14:40:45 2006 +0000 Use SNDCTL_DSP_GETOSPACE instead of SNDCTL_DSP_GETODELAY, since the latter is a linux extension. commit 74a65875e90da37396338d3ef58a798179378459 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jul 16 12:33:54 2006 +0000 Added WAVE output driver: dumps stream to a wave file. commit 13ff4ff0260b1c3f63b185b7348c58aa469e9dac Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jul 16 12:32:26 2006 +0000 Update fs_config->session to match the actual world index. commit 10c3e898329f470e7c35e05783bab5f335514c3b Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 16 10:15:29 2006 +0000 Rewritten cursor handling (software cursor) to use a surface instead of a window. The window manager module gets notified about all kinds of updates regarding the cursor. All window manager modules use the same code for now, using backing store for the region under the cursor. This avoids revealing window content that hasn't been commited via Flip(), yet. It should also be faster as it no longer depends on the windows that are covered by the cursor. commit 1d3e3e027e01b77c61e51e5a320202225e04cc69 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 16 10:15:00 2006 +0000 Added some assertions to dfb_gfxcard_blit() checking for a properly clipped source rectangle. commit 8a99e6e2825b17c27214ff9d87f1b226b1818509 Author: Ben Combee <bcombee@directfb.org> Date: Sun Jul 16 08:29:43 2006 +0000 Add DFB_RECTANGLE_CONTAINS_POINT and DFB_REGION_CONTAINS_POINT macros to directfb_util.h commit d41c702d3967f667a78b69918bb3abe589405f22 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 16 08:28:35 2006 +0000 Added dfb_gfx_copy_to() as an extension of dfb_gfx_copy(). The advantages are - destination offset can be different from source offset - blitting from the back buffer is available The latter was a must for the backing store based software cursor. commit 8f90d901bef3bb9976a86db4cf2dd109448f1ca2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 16 08:25:47 2006 +0000 Show base address of each file to allow offset calculation 'by hand' within dynamically loaded modules, i.e. where ldd doesn't help. commit 9233292cdb29d5cca558241e9707f3c380e63b7e Author: Claudio Ciccani <klan@directfb.org> Date: Fri Jul 14 10:28:22 2006 +0000 Added fusionsoundrc manual page. commit aaae40b1833a26981476203d4b3755f412bfe76c Author: Claudio Ciccani <klan@directfb.org> Date: Fri Jul 14 10:26:39 2006 +0000 Added 'Multi-channel output' to the TODO list. commit 4f6f9d2b7778eb15924fd44f91f3cb24e88d2c65 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Jul 14 10:26:02 2006 +0000 Wrote down some text. commit 27527bfaa451fe99444e11ad62915790f9f94a2c Author: Claudio Ciccani <klan@directfb.org> Date: Thu Jul 13 12:56:16 2006 +0000 Handle driver's functions return value. commit 6cbfd93bed9ced28a17c380eae4836e2913a3412 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Jul 13 10:59:49 2006 +0000 Ignore callback result when rendering buffered image data. commit ab1e80eaa80ebe6f8feec30dd02cba262a25c420 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jul 12 16:37:31 2006 +0000 Follow changes. Added support for streaming databuffers. commit 01e59378c3a712a3336d44684f8d9fc487e080f4 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jul 12 16:36:52 2006 +0000 Follow changes. commit ccd66054ff53b59bfadcd6f00c53bed4715931fa Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jul 12 16:35:57 2006 +0000 dfb_scale_linear_32() and dfb_copy_buffer_32() take a DFBRegion argument specifing the destination clipping region (passing a NULL region means that destination rectangle was already clipped). This change allow to render images on a portion of the surface preserving the original scale factor. commit 6745893769eee84e14269b664b5f19fd8ba72032 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jul 12 07:30:07 2006 +0000 FSSF_S24 is SND_PCM_FORMAT_S24_3*E, not SND_PCM_FORMAT_S24. commit f6c88c664b0454321c5f1d02af66c8a553af325f Author: Ville Syrjala <syrjala@directfb.org> Date: Tue Jul 11 20:35:34 2006 +0000 Handle write errors. commit 099936e29758d8cbdb98ef190a1a0afa62ee1adc Author: Claudio Ciccani <klan@directfb.org> Date: Tue Jul 11 16:47:00 2006 +0000 Use IFusionSoundStream::GetDescription() to be sure that all fields are set. commit 81515676da32808343c0ebcdde7aa42a32f04a06 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Jul 11 16:42:10 2006 +0000 Added support for loadable device drivers. Renamed src/misc/fs_config* src/misc/sound_conf*. Added options: "driver" (selects the driver to load) "buffersize" (specify default buffersize in ms) Install internal header too allow building external drivers. commit c11392025a92412d2510c32a6cf4c4243f9f0866 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 10 22:39:57 2006 +0000 After resizing the hash free old array. commit 1cd8954e22701b5df1a02704f75b4bbec3577fe6 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jul 10 20:12:34 2006 +0000 Fixed bug in PlayTo*(): first frame whithin track must be 0, not track::start. commit b9a93a85dd4c4f27d9bc683bb38a974aadc95665 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jul 10 17:10:17 2006 +0000 'l' toggles reaping current track. commit 5a0c1d29c1ca59650d8ad54862539575de7b97f4 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jul 10 17:08:56 2006 +0000 Added IFusionSoundMusicProvider::GetStatus() and IFusionSoundMusicProvider::SetPlaybackFlags(). Moved music provider stuff to src/media/ifusionsoundmusicprovider.c. commit bde38472021d9792fab20fa533256ca4bb5885ed Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jul 10 12:55:00 2006 +0000 SPACE switches to next track, Q quits immediatly. commit 3fbb0e49f744bf83bcea33a11406eb5c8b93b9d7 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jul 10 12:52:16 2006 +0000 Added FSSF_FLOAT: usefull for decoders that output floating-point uncompressed data. Always store FSSF_S24 in native endian order. commit b7f248610db8264cfdc3650737d8958c5e2d23f4 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jul 10 09:38:11 2006 +0000 Put AGP aperture start location after frambuffer memory location. commit 1d9c363691a204b164e85982d305d74f20f2f4c4 Author: Ville Syrjala <syrjala@directfb.org> Date: Mon Jul 10 08:46:22 2006 +0000 Use CONFIG_APER_* to set MC_FB_LOCATION. Otherwise my M6 will hang when using the overlay. commit 2178fb52619977f82aa360400e02c8bc7270530a Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jul 9 15:40:16 2006 +0000 DVPLAY_NORMAL renamed DVPLAY_NOFX. commit ea27d9bd4a617ebb87344a2edb1e4d65edb5a7a4 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jul 9 14:18:59 2006 +0000 Removed assertion "data->filled >= notification->num" bacause the condition may fail if the system is too slow to notify playback advance (too many threads, for example). commit 61006d2b90554bb94be5b2b7ea7834dbc4fc2db5 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jul 9 14:11:31 2006 +0000 Enabled accuracy by default on x86 and ppc. Entered 0.9.26 development version. commit 034b697ffda0627f4cfcf61ef3877071ad3338a2 Author: Ville Syrjala <syrjala@directfb.org> Date: Sat Jul 8 19:47:48 2006 +0000 Fixed planar data copy. Added more pixelformat for v4l2. commit 74d1ca9bcfb57703fbf0ed718abb36c55346439b Author: Ville Syrjala <syrjala@directfb.org> Date: Sat Jul 8 19:31:45 2006 +0000 Removed some useless code and made wait_for_buffer() static. commit 4e4518f49d440e2f2969f88877184aa7fbc3553a Author: Ville Syrjala <syrjala@directfb.org> Date: Sat Jul 8 16:12:22 2006 +0000 Reduced ifdef clutter. commit e0425f0432af559d65d084452273b9f9e08dc922 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Jul 8 14:16:06 2006 +0000 Updated to current DirectFB API. commit 5f5a5ed7108fadcbd36ebbb1150418abe6a4e23d Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 4 09:23:06 2006 +0000 Moved modification of caps depending on policy into static inline helper function dfb_surface_caps_apply_policy(policy, &caps). commit 7435837e15f1a86658a49b40c39b01ee7ae09bbc Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 4 09:21:37 2006 +0000 Removed another warning. commit b6ded019dda2a19996a88d2c3c640dc6afb3f223 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 4 09:11:44 2006 +0000 Fixed failing assumptions due to late initialization of dfb_sdl_core after call to dfb_fbdev_read_modes() used for faking video modes, added recently. commit 77abe4afdb0aa456f33c50c912b62a9bcb9c58e0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 3 16:40:40 2006 +0000 Fixed warnings. commit 9da576fcedb3294a9f5779deaf211f46f2598ae8 Author: Ben Combee <bcombee@directfb.org> Date: Sun Jul 2 20:43:18 2006 +0000 libdirect - fix memory leak that occured when creating a stream failed commit 3f5e907d23e9977999e6a013656ec7ca9135d5a7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 29 16:55:38 2006 +0000 Link libdirect into fx for debug. commit 8ae52fa3aeb060410de61500139c8faad1c61083 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Jun 29 10:22:52 2006 +0000 Dropped down YUV->RGB on the RV250. commit 9eee9af41559b3645d4953b7b876a4ac5c8f495d Author: Claudio Ciccani <klan@directfb.org> Date: Thu Jun 29 09:55:51 2006 +0000 Get the device id from the PCI config space. commit 827e539061bb87b926f66908fea3fdaa57f6d840 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jun 28 17:13:56 2006 +0000 Avoid to set the overlay memory limit, it's already done by the kernel. commit d7d018ac8c1d76281fa94f8f273ba9941c373b25 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jun 28 17:12:58 2006 +0000 Basic acceleration for ALUT44. Check for source and destination's palette equality. commit 32699b0c8c5cdf40f4658e43173c7dec6cacbeea Author: Ben Combee <bcombee@directfb.org> Date: Wed Jun 28 16:46:54 2006 +0000 Change another set of declarations to prototypes to avoid use-time warnings, this time in DFB's core commit 59ea034507fa4bf4b59be66a87353d3777d1c405 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 28 15:58:12 2006 +0000 Use DFBSurfaceLockFlags instead of unsigned int flags in prototype of locking functions. Thanks to Nils Magnus Larsgard <nmlarsgaard@atmel.no>! commit 521b092a58b42333ffd0b54b14cb382f0e0272a8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 28 15:53:59 2006 +0000 Very basic program to emulate/illustrate the pixel pipeline, blitting flags etc. No 100% guarantee that itself is correct, but in the end it will serve as a verification for software/hardware driver. commit 16bbc2a20be137f39891e849b41f67f2bbccc1b4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 28 15:50:32 2006 +0000 Just a rough diagram (overview) I made a while back. While it lacks some explanations, it's a good help reading the code. commit 57cb1d5d04c95f76b878395141bd1b16c0aaa414 Author: Ben Combee <bcombee@directfb.org> Date: Wed Jun 28 08:29:41 2006 +0000 Turn void function declarations into true prototypes in libdirect commit d94635495570ce9ef975dc4f3f876f61bb1d1d6b Author: Ville Syrjala <syrjala@directfb.org> Date: Tue Jun 27 21:16:26 2006 +0000 Applied a patch from Marko Mäkelä <marko.makela@hut.fi> fixing build problems with gcc (GCC) 4.1.2 20060613 (prerelease) (Debian 4.1.1-5). commit d0cdeced1f24a031a7837cd365706421791f0309 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jun 25 13:53:09 2006 +0000 Fail if a blitting function between surfaces with different palettes is requested. commit 02d5d94561490e4c81d4ad6c82241b9d3187d94c Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jun 25 13:50:45 2006 +0000 Check if palettes are equal when blitting indexed formats. commit 3c98e7c650ced57002a39e97858f3f2f4a773dfc Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jun 25 13:49:00 2006 +0000 Added dfb_palette_equal(): check if two palettes are equal. commit 2ecc8ab0ba278b27ce45961fbc50eb0153ef2f9c Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jun 24 14:08:01 2006 +0000 Made predefined palette entries in DFBSurfaceDescription const. commit 472251c4955b2b5bde4c388306f5308f94e109a0 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Jun 24 12:50:02 2006 +0000 Added IDirectFBVideoProvider::GetVolume() (for completeness). commit 79e81a14355c6cead7c82ee56e05183976e8da14 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Jun 24 10:14:14 2006 +0000 Added dfb_screens_at_translated() and dfb_screen_id_translated(). Set the primary screen according to the primary layer. commit 8edf62d2036ce4fea290f2b9e7838ed8f7b27bec Author: Claudio Ciccani <klan@directfb.org> Date: Sat Jun 24 10:10:38 2006 +0000 Added IDirectFBVideoProvider::SetVolume(). commit afec34d3acfbcf78204dbe1e3d41cf81bb3349e5 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Jun 23 17:59:03 2006 +0000 Added IDirectFBVideoProvider::SetPlaybackFlags(), IDirectFBVideoProvider::SetSpeed(), IDirectFBVideoProvider::GetSpeed() (preplace trick mode methods). Added IDirectFBScreen::GetSize(): fast way to detect screen size without the need of scanning layers in search of the underlay (usefull when working with overlays). commit 435956a0f1c89b882d76d8ee41136d32805b4b98 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Jun 23 06:01:37 2006 +0000 More Porter/Duff rules (SRC_ATOP,DST_ATOP,ADD,XOR). commit e51000bc963406518d1132834e3f0ae05db5d17d Author: Ville Syrjala <syrjala@directfb.org> Date: Thu Jun 22 19:44:55 2006 +0000 Increased bytepitch alignment to match field blitting requirements. commit c9347d3778cf38bdaf1afd18c7420191849f5aa1 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Jun 22 12:31:35 2006 +0000 Replaced tabs by spaces. commit 3f9801f4f6df0256caa9ab3a3ae28032249ea41b Author: Claudio Ciccani <klan@directfb.org> Date: Thu Jun 22 12:30:39 2006 +0000 When enabling DLOP_ALPHACHANNEL on the underlay, do not fail if the overlay level is still set to 1. commit 0b0b9f37b5f5641ba2ba515d9530412443c6d601 Author: Ville Syrjala <syrjala@directfb.org> Date: Thu Jun 22 00:36:11 2006 +0000 Field based blitting. commit cb767ad5712b10192ec421a0322e796202e7f3dd Author: Ville Syrjala <syrjala@directfb.org> Date: Thu Jun 22 00:04:23 2006 +0000 Added DSCAPS_SEPARATED support to BES, CRTC2 and SPIC. commit b8cf8d2a18c084121f3e18ad7640200339f24784 Author: Ville Syrjala <syrjala@directfb.org> Date: Thu Jun 22 00:02:05 2006 +0000 Fixed pixelpitch alignment for YUY2/UYVY. commit 32723da73f98a9114389d5f4fa3ae6961597f2fb Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jun 21 09:20:59 2006 +0000 Treat fbdev format 8/16,8/8,8/0,0/0 as ARGB when ARGB was requested (that because framebuffer drivers generally ignore the alpha channel). commit d239aec02d7d00dea64cbbe47c20f9d852652b62 Author: Ville Syrjala <syrjala@directfb.org> Date: Tue Jun 20 19:34:51 2006 +0000 PAL-60 support (or at least close enough for my TV). commit d4ed9134426b8a23ea098eb36a5b8e5e65581c60 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 20 12:10:21 2006 +0000 Populating screen API a bit more, thanks to Daniel Laird <danieljlaird@hotmail.com>! commit f71d0dcd9c5eb88eb36a903b8479987c8ac039e0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 20 12:08:21 2006 +0000 Trick modes thanks to Daniel Laird <danieljlaird@hotmail.com>! commit d888005e053ee8b7225cc0e1139fffb38fab572c Author: Claudio Ciccani <klan@directfb.org> Date: Tue Jun 20 10:11:58 2006 +0000 Added the possibility to use the underlay as an OSD. It works exactly the same way as in the unichrome driver: - Set the overlay level to -1; - Enable DLOP_ALPHACHANNEL on the underlay. commit 95f01e68149593bf2ecfb6f32d2f6e36ccf24a29 Author: Ville Syrjala <syrjala@directfb.org> Date: Sun Jun 18 19:52:46 2006 +0000 Cosmetics. commit 9f3a968772b0679336908839619bdd1b86baac1d Author: Ville Syrjala <syrjala@directfb.org> Date: Sun Jun 18 19:52:19 2006 +0000 Removed unnecessary headers and libs. commit 9b52d2b4f9f07dac7243de54545f3c67eeed099a Author: Ville Syrjala <syrjala@directfb.org> Date: Sat Jun 17 16:21:24 2006 +0000 Silenced some compiler warnings. commit 7cdcda360372afe14227794900630e159ac62583 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 15 18:59:17 2006 +0000 Fixed prototypes. commit f4153d9c676a31ec6c31954cbcfe6016bb17ee48 Author: Mike Emmel <memmel@directfb.org> Date: Wed Jun 14 18:52:55 2006 +0000 Added the StartDesktop hook to run a advanced complex wm Note I made a change to unique it was not handing out the window for the cursor this broke code that thought with a valid id it would get a window it sets it to null and returns DFB_OK Denis you make want to check this but we don't want to return DFB_OK I think if we set the window to null commit d96b3e16aba1b882bf5e4b4193728b7f38443959 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 14 07:06:03 2006 +0000 Some changes that decrease system memory usage for surface buffers, especially where graphics memory is available. Allocate system instance of auto-video buffers on first access, not immediately during creation of the surface. Deallocate system memory when buffer is written to in video memory. Reallocate it if the buffer is kicked out of video memory. Implemented "suspended" surface buffers, temporarily deallocated. No valid instance at all until it's resumed. Added dfb_surface_buffer_suspend/resume(). Added SBF_SUSPENDED. Cleaned up some surface manager and surface locking functions. commit 929f70068fb2cf45af8cc395ec593f848e90ae99 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 13 14:13:17 2006 +0000 Added DFB_SUSPENDED error meaning "The requested object is suspended!". commit fd15a66f7da9452d396a93650433d5cf8860b298 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 13 14:11:02 2006 +0000 Fixed dfb_window_create(). Alpha blended windows have been broken due to wrong order of code segments. commit 1eba7234aa3870fe44f1a77d4fb796f7b3c0c01a Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 13 10:48:41 2006 +0000 cosmetics commit a906bc47e075c31eef9023f2ac1931eb56bce3f3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 13 10:47:18 2006 +0000 Thanks Mike! Looks like I took the last but one diff that I made when taking over these changes... commit a59198e49e6d71ff426091b95d74a2350ba57a8e Author: Mike Emmel <memmel@directfb.org> Date: Mon Jun 12 21:35:19 2006 +0000 Fixed unclosed comment that broke the build commit 202dfb7eceefe5fa0d090dedb03467d38cdde943 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 12 17:31:44 2006 +0000 Added IDirectFBDisplayLayer::SetClipRegions(). If supported, this method sets the clipping regions that are used to to enable or disable visibility of parts of the layer. The number of regions is stated in the display layer description. The layer will be shown only in these regions or except in these regions. commit d6d31c32bb95b58d453acb9a999e72492225ddda Author: Mike Emmel <memmel@directfb.org> Date: Sun Jun 11 20:29:59 2006 +0000 Added GetPosition to Surface it was missing I needed it and it seems innocous and consistent. If there is a problem we can discuss on the list commit d387aaea9a3705653792033fce76037a5fa3fb74 Author: Mike Emmel <memmel@directfb.org> Date: Sun Jun 11 18:23:09 2006 +0000 Redid XServer to open display outside window and save it in the dfb_x11 main struct this gets rid of a lot of race conditions and problems also starts toward setting up the driver for optional rootless operation commit dceff0bf9a18f0a0d44a1bef86877400a1639d98 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jun 11 17:55:10 2006 +0000 Disable writing to the R300_TX_CNTL register because radeonfb doesn't map that range of the mmio. commit d8bdd086a1b7a40fde33c9c4392dfa4ea3c267a8 Author: Mike Emmel <memmel@directfb.org> Date: Sun Jun 11 16:44:34 2006 +0000 Missed file commit dd1fde38a5532d719a130c5555ba4a578b6cdbef Author: Mike Emmel <memmel@directfb.org> Date: Sun Jun 11 16:33:00 2006 +0000 /tmp/cvsRBHEMO commit 4a68f1b26b0fc9c705e13cc65988564150bb7e07 Author: Ville Syrjala <syrjala@directfb.org> Date: Sun Jun 4 20:34:04 2006 +0000 Avoid negative array indices. commit a0793d8fca9bf7c31b063f85c02fd08581d3e7d0 Author: Ville Syrjala <syrjala@directfb.org> Date: Sun Jun 4 20:29:04 2006 +0000 Silence warnings. commit 8e02ad194ba004d9b37fe7e427b10aeed01cf1ec Author: Ben Combee <bcombee@directfb.org> Date: Sun Jun 4 17:53:42 2006 +0000 Add accessor for debugging fusion ref-count problems commit ac80ac727942d7e71b41c01b02132184ddcccd84 Author: Ben Combee <bcombee@directfb.org> Date: Sun Jun 4 17:52:22 2006 +0000 Update graphics ops to immediately unref source surfaces allowing quicker memory reuse commit c4e66c057a1b06e644ed2153b3a34306a655d07d Author: Ben Combee <bcombee@directfb.org> Date: Sun Jun 4 17:51:20 2006 +0000 Update SDL input handling to better emulate keymaps commit 6c5862a82d94f3d27d1c968b3eec1a231beaf01f Author: Ben Combee <bcombee@directfb.org> Date: Sun Jun 4 17:50:10 2006 +0000 new libdirect function to duplicate a file descriptor as needed, making sure new filedes isn't mapped to stdin, stdout, or stderr commit 1263c28fd977a24a2dd45f146c5f9e7134485325 Author: Ben Combee <bcombee@directfb.org> Date: Sun Jun 4 17:48:34 2006 +0000 directfb-csource tool now makes strucs and bitmap data const, helps with use in shared libs commit 082b950db08724dee40a1a80fefc07b92a08f4e4 Author: Ben Combee <bcombee@directfb.org> Date: Sun Jun 4 17:47:54 2006 +0000 Add ability to tell image provider to abort rendering commit 051aa4f862d2e0fe1a6a4e0639c013a14b4a541d Author: Ben Combee <bcombee@directfb.org> Date: Sun Jun 4 17:47:01 2006 +0000 Blit to misaligned surface fix commit 1a7a4bb161cdb42c2ce4d5c96b9c782a45442aa9 Author: Mike Emmel <memmel@directfb.org> Date: Sat Jun 3 18:57:52 2006 +0000 Both IDirectFB_GetDisplayLayer and IDirectFBDisplayLayer_SetConfiguration cause a xwindow to be created this causes the first window to be destroyed and a second to be created with the new configuration. There are a number of problems here and the code needs to be reworked to not create the window or at least not display it because were changing configurations or enumerating layers. There are several conceptual problems here. but at least we won't get two windows with one not used commit 9c7848b6e84521b7a07e48f44e6290eecbd504a7 Author: Mike Emmel <memmel@directfb.org> Date: Fri Jun 2 17:50:31 2006 +0000 Added some more checks for race condition between input and connecting to the display this should have a lock I think commit 9915bb2814e5cb057b74a1a98212a978e72c27b1 Author: Mike Emmel <memmel@directfb.org> Date: Sun May 28 05:24:42 2006 +0000 Added scrollwheel patch commit c8cac4cace7c77ea25598e4b044c2418699745f6 Author: Claudio Ciccani <klan@directfb.org> Date: Sat May 27 13:05:53 2006 +0000 Applied patch by Christer Palm <christer.palm@pulsen.se>: fixes word swapping on PPC. commit 045c214d2a5a91c5ea4b3bf8972533d809ef881e Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 26 08:19:52 2006 +0000 Added 4 bit packed alpha pixel format DSPF_A4, e.g. for fonts. commit 42dcefa2635895f1b56bc6d5d284633b20fb9801 Author: Claudio Ciccani <klan@directfb.org> Date: Sat May 20 13:25:32 2006 +0000 0.9.26 required. commit e5ebd57078dc52e07b397cc240ee371c33961da2 Author: Claudio Ciccani <klan@directfb.org> Date: Sat May 20 13:24:52 2006 +0000 Added IDirectFBWindow::DetachEventBuffer() and IDirectFBInputDevice::DetachEventBuffer(). commit 714d543c30311d7466a99de9c13d1dabbec111ec Author: Claudio Ciccani <klan@directfb.org> Date: Thu May 18 15:26:17 2006 +0000 Added IDirectFBInputDevice::DetachEventBuffer() and IDirectFBWindow::DetachEventBuffer() to detach an event buffer from an interface. commit 29cf44cd57b81d4a6ed870d2bb687f6b0a66b552 Author: Ville Syrjala <syrjala@directfb.org> Date: Tue May 16 18:55:07 2006 +0000 Wait for correct amount of fifo entries. commit c365ba8cf8822535607627af61a52062ba01aa1e Author: Ville Syrjala <syrjala@directfb.org> Date: Fri May 12 19:50:00 2006 +0000 - Don't touch console blanking when using graphics-vt. - Disable cursor on startup. commit 8237bb8f3558ee52a279bcbacf2da272eefd80c0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun May 7 00:00:35 2006 +0000 Pass "-l" to get a list of modes. commit 3a5cdbc71a905bba703ba6a148f4881eae0129f6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat May 6 23:59:43 2006 +0000 Fake video modes by reading fb.modes, just like the fbdev backend. commit 0e2795f29ae7c1009739243ff2c486dfcfd2e8d1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat May 6 23:44:19 2006 +0000 Added new debug domain Core/Graphics. Added two debug messages to dfb_gfxcard_drawglyph(). commit dd2e0972d382568051958952f3a298a98b4192f4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat May 6 23:43:08 2006 +0000 Fixed occasionally invisible DrawGlyph(), parameter and local variable name changes were not complete and an uninitialized local variable was checked instead of the parameter. commit fe061852e95b8adefc335c66739c4ee90a67f1c3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat May 6 23:29:18 2006 +0000 Fixed (serious) warnings. commit df086edaac6a3e04cfa9c68760927b24594a19fd Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat May 6 15:25:42 2006 +0000 Welcome 0.9.26 Added support for other encodings than UTF8. Encodings are (or can be) provided with each font implementation. This model reduces code sharing slightly, but allows higher efficiency via optimized combination of decoding and translation. Every encoding just has a name and an ID, where the name can be chosen freely, except for DTEID_UTF8 which is always available and has the name "UTF8". Added interface methods - IDirectFBFont::EnumEncodings() enumerates all provided encodings. - IDirectFBFont::FindEncoding() looks up an encoding directly by its name. - IDirectFBFont::SetEncoding() for local methods and as a default for surfaces. - IDirectFBSurface::SetEncoding() chooses an encoding for the text routines, will be overwritten by SetFont() which takes the default encoding of the new font. Reworked all loops dealing with strings, characters and glyph information. Implemented UTF8 and "Latin1" encoding in FT2 font loader. Nice demonstration how different encodings can be used, while still having a single glyph cache, which is no longer based on character codes, but on their raw indices. --- Added dfb_font_register_encoding( id, name, funcs ) that is called by the font module to register implementations. The 'id' can be DTEID_UTF8 or DTEID_OTHER, where in the latter case the actual id will be allocated dynamically. Added CoreEncodingFuncs only containing GetCharacterIndex() and DecodeText() to do character to index translation and text decoding (including translation). Other functions like GetGlyphInfo() or GetKerning() take raw indices instead of unicode character codes now. In the case of DTEID_UTF8 it's allowed in an implementation to just provide GetCharacterIndex() and let the core do the DecodeText(), but that would cause one GetCharacterIndex() call per decoded unicode character. So implementing both functions is advisable. If nothing is registered for DTEID_UTF8 at all, the core will pass the raw unicode characters to GetGlyphInfo(), RenderGlyph() etc. That's the old behaviour, fully compatible with old modules. It's also a good choice if you want to avoid the character translation, having an efficient font module which is based natively on unicode characters only. When registering an encoding implementation using DTEID_OTHER, both GetCharacterIndex() and DecodeText() must be provided. Added dfb_font_decode_character() to get the raw index of a single character and dfb_font_decode_text() which decodes an encoded sequence of characters, stores all their indices in the provided array and returns the amount. Both functions have a parameter to select the encoding for the operation. --- Changed DirectTree's fast key range from 32-128 to 0-128 as we are no longer having ASCII values but zero based glyph indices. Added some debug messages and domains, like Core/Font. Cleanups. commit 4e3161e6c83d761e010f27de7b2cb5060fcfed66 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 5 23:07:23 2006 +0000 First and fully working implementation of dead key handling using static tables for mapping of dead keys and following symbols to the combined symbol. commit a24387318b5601a03ed5be8767157d0cb17f2750 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 5 23:04:08 2006 +0000 Added support for dead keys. commit 9622c691964ba82cd069fbc29f66511c67afe758 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 5 23:01:45 2006 +0000 Show hex values for symbols without an enum entry. commit 53bea559fec69effbbaea2c8bfbbfa6ae17624df Author: Claudio Ciccani <klan@directfb.org> Date: Fri May 5 12:31:14 2006 +0000 Disable host-to-video hardware blit for simple blits without format conversion. Added nvEngineReset(). commit c569028afb8cc3efd9b5a8836c9395f2fb2cc01c Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 3 07:38:51 2006 +0000 regenerated commit 82f09f8eed7f95ad7634c7f31064fef0aefe845f Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 3 07:37:05 2006 +0000 Fix build problem by swapping two includes. commit b18fae799efcbd5ed68b11d940e0752002a56ca4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 3 07:35:48 2006 +0000 More EXTRA_DIST stuff. commit f5e3029aa3f1ff17aa167f6249d6f0fcb291389e Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 3 07:34:53 2006 +0000 Added "fake.c" also to EXTRA_DIST... commit 131e98d705e1d076c9bab9b3aef29f56c93602cc Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 2 22:41:06 2006 +0000 New changelog and news. commit 7d80b8be10635fc33039aa14c858264fb76bd267 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 2 22:26:52 2006 +0000 New changelog. commit 66cc6b43047cb9943335853556d54201cad80845 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 1 19:11:14 2006 +0000 #include <dfb_types.h> commit 74626c64f90d54d1e885a22a4a49c84a365da357 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 1 19:09:28 2006 +0000 This patch is similar in spirit as the v4l one. Includes the fb.h header into the sources so the definitions can be used freely. Also this would make the 'accelerators.h' file obsolete. commit 72af467dd5112597fb5d1a3be31a61494a558388 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 1 18:51:52 2006 +0000 Thanks to Andreas Jochens <aj@andaco.de> for this patch that "fixes a build failure on amd64 due to types clashing by including 'dfb_types.h' instead of 'asm/types.h' (needs to be applied after the fbdev one, or just ignore the error from the missing file)". commit 7ee805737c46c557c0363218ee800ea90ac70d03 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 1 18:44:20 2006 +0000 This patch includes the V4L header files into the directfb sources, so it can use the features even when building on a kernel that does not support them. That at least makes life easier for distributions. It's also safer for the developers, because then you can use the definitions freely. commit 84008f26a9f6033b0e579e1877c99e919bf6b682 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 1 18:39:38 2006 +0000 Thanks to Jeff Bailey <jbailey@ubuntu.com> for this patch that "removes unneeded unconditonal <sys/io.h> includes". commit 193d22aaa28f3b6c83e1d6011a690cae7b1f1430 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 1 18:37:58 2006 +0000 Thanks to Jeff Bailey <jbailey@ubuntu.com> for this patch that "fixes a build failure on ia64, by using syscall() instead of _syscall0 as the later is not supported there". commit 00487fa87bc6b9876d78d54b1406bf4d91d1464b Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 1 18:34:21 2006 +0000 Thanks to Colin Watson <cjwatson@debian.org> and Guillem Jover <guillem@debian.org> for this patch that "fixes the link dependencies for the plugins. So that stuff like library symbol reduction in debian-installer can work properly". commit 3e1fb630755394a5925424dfb0b6a1da102e40c0 Author: Ville Syrjala <syrjala@directfb.org> Date: Tue Apr 18 09:00:08 2006 +0000 Return shifted symbols for DIKI_0-9 and DIKI_LESS_SIGN. commit f57b308f0ef39b66415677346975431e11157211 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Apr 12 10:29:07 2006 +0000 Updated the manual page. commit 8e6921468fbbcdb1c54132fd7f6bc2f6b9084d3b Author: Claudio Ciccani <klan@directfb.org> Date: Mon Apr 10 15:54:52 2006 +0000 Fixed CDDB discid computation. Search for CDDB disc data iterating through all categories. commit bfd15b30f7ad17e44244d713cb0b2ef99b48ee3c Author: Claudio Ciccani <klan@directfb.org> Date: Sat Apr 8 13:21:57 2006 +0000 Compute the Low Destination ColorKey taking int account a dithered color conversion. commit d3f2b39dec3b2ad9a421b967cc7aabe5958f2ec5 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Apr 8 13:20:06 2006 +0000 Fix: blitting A8 surfaces with colorization to AYUV is supported. commit 738efe52d87657b942bc9efd6443b6233b69565f Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 7 19:24:26 2006 +0000 DIKI_ALTGR is gone. The key right to the space bar is the right alt key. No matter which map is loaded, the identifiers are just named hardware keys, where you really specify the physical entity on your keyboard. In this case it's always DIKI_ALT_R, no matter if it's mapped to DIKS_ALTGR or DIKS_ALT. On standard keyboards it's also always the same hardware key code, no matter if you by a German keyboard with AltGr or a U.$. one with Alt. Changed the input core logic for keeping track of modifiers. If DIKI_ALT_R is pressed, also look at the symbol to decide if DIMM_ALT or DIMM_ALTGR is to be added/removed. Now application developers don't need to check for both DIKI_ALTGR and DIKI_ALT_R if they want to check for the key right next to the space bar :) commit 5932ee83906262524c3b029c8dfad42191a19d09 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Apr 7 15:10:28 2006 +0000 Fixed Cb/Cr offset computation (height*pitch/4 is different from height/2*pitch/2 if height is odd). commit bc988ff64737032f69d6ca95011850488e62abd5 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Apr 7 15:07:58 2006 +0000 Fixed incorrect Cr offset computation in dfb_copy_buffer_32(). commit 39a4fe8ed0d50d287a425be7ac64296df6f77782 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Apr 7 12:29:13 2006 +0000 Fixed memory leak: dfb_state_destroy() was still freeing gfxs->Aacc instead of gfxs->ABstart. commit e1104068434774eb31cb2d7207172837a95e52f4 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Apr 7 09:39:15 2006 +0000 Added acceleration for AYUV, but color conversion is not supported because radeon supports AVYU instead of AYUV. commit 0494597af04300ddf93ec5b0e1b4ffe7833b3e78 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 6 23:15:52 2006 +0000 Added missing inputdrivers/penmount/Makefile. commit ad0d296161775933eacca9dca67c792d0faa41d9 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Apr 6 17:46:14 2006 +0000 Fixed a wrong pointer. commit 05673fc0681e1df121c945d9029785d25d390ec0 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Apr 6 13:29:17 2006 +0000 Almost completed AYUV support (lacks colorkeying). commit 892c5099f3678b6cbad93cfbbd6969dd2fb6797f Author: Claudio Ciccani <klan@directfb.org> Date: Thu Apr 6 13:05:03 2006 +0000 Fixed AYUV span writing. commit 106e3d8bdd9e8d92d307d36f87b644c00ddb519b Author: Claudio Ciccani <klan@directfb.org> Date: Thu Apr 6 13:03:53 2006 +0000 Check for penmount input driver. commit 54ae63e6ff1bdddf3ff842074d3927730abd178a Author: Claudio Ciccani <klan@directfb.org> Date: Thu Apr 6 12:44:24 2006 +0000 Replaced error message about access failed to /proc/bus/pci/devices with a debug message. commit 861f5b0aed6bf2633d639d3c837032870d61c214 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Apr 6 12:42:59 2006 +0000 Replaced freetype-config by $FREETYPE_CONFIG. commit bf894a1471500feb5f39fbe34e8c2de59f91e8a5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 6 12:00:34 2006 +0000 Added DSPF_AYUV, a 32bit packed AYUV format for graphics, being the counterpart of ARGB in the YUV color space. commit 4868de1074f49c45eef191df4e8a129518f65eff Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Apr 5 23:34:29 2006 +0000 Removed r100 and r200 driver in favor of the latest and greatest Radeon driver. commit e4bd6e3b474b0b254e764bc535db7d084018e4dc Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Apr 5 23:29:01 2006 +0000 Applied patch from Christian Krause <krause.chr@gmail.com> that allows usage of the option "mouse-source" without "mouse-gpm-source". commit 59b321d5b167cb91c0c9e8780ddd46c9028e0697 Author: Nikita Egorov <nikego@directfb.org> Date: Tue Apr 4 15:01:43 2006 +0000 Added input driver for PenMount 9509 serial touchscreen. commit b1933e0cf278ec9d7f6a55b4d8eb593c67fb3cf1 Author: Ville Syrjala <syrjala@directfb.org> Date: Tue Apr 4 05:26:58 2006 +0000 Fix negative line width handling in fill_tri(). commit 84ba3971285041762e2af83e2d41d2e8d6d7332d Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 2 12:50:38 2006 +0000 Thanks to Andy Stewart for fixing the hash table reallocation which didn't check for collisions during reinsertion. commit 7a5310428d8784285d32dc353177fea6ea9f4677 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 2 12:40:53 2006 +0000 Fix wrong signedness in IDirectFBSurface_GetClip(). commit 206274287105126859013256e3d7062d4a9a3520 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 2 12:18:18 2006 +0000 Fixed errors and warnings. commit 844a82586f477151d58f8ae4f9c64d26e14c8021 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 30 12:38:09 2006 +0000 Fix errors given by including the header in a C++ code. commit 3caad4ced5cfbcbd906f38b55ad85eb2fde560a7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 26 18:56:52 2006 +0000 Fix autoconf version detection. commit 6c68a9a962bf4c1aa0d036a06e1b993955c42e24 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 26 18:47:43 2006 +0000 Fixed a typo. commit 5bebc73b6ea7094d9654220e0a349a4d8a7ab830 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 26 14:27:00 2006 +0000 Fixed bogus "fbdev driver possibly buggy" warning if the video memory is too small to set the mode properly, i.e. when vyres is clipped by the driver. commit 4d5ae5061ea6c681969463c18a4d018f154442be Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 26 11:45:48 2006 +0000 Fixed (unused) macro EXPAND_7to8. commit 11c9529d4b70281aa3790561d95e916627b861e0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 26 11:33:36 2006 +0000 Read up to 64 events with one read(). Combine motion events if they follow each other immediately and would cause a lag or buffer overrun otherwise. commit 0e9a0ac8d78df9b666d065479e70e7a56c0370ca Author: Claudio Ciccani <klan@directfb.org> Date: Wed Mar 22 13:12:22 2006 +0000 Try to get vendor/device id from mmio. commit 217a73989ba858b1cdb47d6affa1925455a048e9 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Mar 22 10:38:09 2006 +0000 Initialize interface pointers (loaded module may not be up to date with the interface version). commit 163bd788abba21335958a90899edfe3e48415a9e Author: Claudio Ciccani <klan@directfb.org> Date: Wed Mar 22 10:35:42 2006 +0000 Warn if the device id detection fails. commit 2df87b81d3235fce9c162b2ba5ad4dbe88055d33 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Mar 21 11:41:45 2006 +0000 Follow changes. commit e96e2ae11a0cfa730d26bf9b2e1b9be4c3b677e1 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Mar 21 11:40:35 2006 +0000 Centralized the selection of the default resolution/pixelformat. commit 051ce5fc92328cb961534983083ce60351c84ef3 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Mar 20 14:27:21 2006 +0000 Imported the new Unified Radeon driver, with a lot of improvements and new features: - supports smooth page flipping - supports seconday head output - supports overlay on secondary head - improved overlay RGB rendering - improved R100/R200 3d functions performance - fixed 2d/3d engines syncronization TODO: - 3d acceleration on R300 chipsets - TV output commit a47cf485b09a9e92a892321bf225251ff5e0823f Author: Claudio Ciccani <klan@directfb.org> Date: Mon Mar 20 14:20:13 2006 +0000 Added dfb_gfxcard_surface_{enter/leave}(), called when a software access to video memory begins/finishes. Needed by the Radeon driver to swap pixels on big-endian machines (actually the method doesn't work fine when surfaces are locked for long time). commit cc555969fcb9ca6181fa53dfade137a23110982f Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Mar 20 01:26:50 2006 +0000 Fix inverted module directory condition. commit 5ca055496904f9edd97abb2fec7e9cb5c9cf2d98 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Mar 20 00:35:35 2006 +0000 Manage UCB1x00 Touchscreen driver build as others, enabled by default on arm. commit a0df9c7eb6fc447d5097c55cd8b6d1a8085b3996 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Mar 20 00:27:09 2006 +0000 In case of an error in dfb_surface_dump() only release the palette if non-NULL. commit 23596187016e9f002248814cd3b1015e946243ca Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Mar 20 00:19:59 2006 +0000 Allow NULL argument in direct_free(). commit 5aa3fdb2dbdebbca51252e49af5546cfb41c8c5a Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 19 21:44:13 2006 +0000 Replaced the enum based bool definition by a typedef to __u8. Defined false and true via macros like stdbool.h does. Before that the sizeof bool didn't match the real one. commit 221162d18d7702d649443ee757c59a5a14b5bb0f Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 19 21:23:19 2006 +0000 Don't return a bitmask but a real boolean value in dfb_gfxcard_state_check(). commit e1b6815022f8cabca6c67a87cd9f170ae6218ca1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 19 00:47:56 2006 +0000 fixed commit 34beea7207f699703952228d2081b89fcf39bfe8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 19 00:30:16 2006 +0000 Change the module directory only for builds that don't *support* debug. commit e2b9cf4522a3abaefb48a929c689d7b19a8f0e8a Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 14 23:25:52 2006 +0000 Include <linux/pci_regs.h> only if it exists, otherwise include <linux/pci.h>. commit d235d766d95bc746fbd3e4d80f725561ac62a0de Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 10 17:07:05 2006 +0000 Added FusionCall to each input device for maintenance via master, driver calls etc. using new CoreInputDeviceCommand enum. Added dfb_input_device_reload_keymap() implemented via the new call passing the CIDC_RELOAD_KEYMAP command. The master will reload the whole keymap via driver API. Added debug domain "Core/Input" with some debug messages. Added a new tool called "dfbinput" which features keymap dump/reload so far. commit c973fa3f2ef2dcdc1b7e4e3890f1b81d6ce35e9f Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 10 12:58:03 2006 +0000 Check for device->shared in dfb_input_dispatch() to catch early birds :) commit 7a64e09458fbf660d631a1e130ad1f58529632dc Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 10 12:39:07 2006 +0000 Include <linux/pci_regs.h> instead of <linux/pci.h>. Fixes build for me. If it fails with older headers we need to add a check. commit 7b2ccd9601870eb9ceb963bc6df2f2c5b503d9a5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 10 12:30:42 2006 +0000 Fixed autoconf detection. Don't know exactly what, but I guess it got confused with the output of a newer wrapper script. commit d1cc303f91368155d7c8a7ceab91cac2a0c8b075 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 10 12:24:56 2006 +0000 Allow pending reactions (in local dispatcher queue) to be executed after the shared reactor part has been destroyed. This fixes for example occasionally missing DWET_DESTROYED events. commit ac26da5f8e1a8387031c80987788d46d54c38074 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 1 04:23:11 2006 +0000 Added FusionCallExecFlags parameter to fusion_call_execute(). Use the flag FCEF_ONEWAY in the SDL backend to not wait for the call being executed, otherwise a deadlock could occur. The return value is meaningless anyways. Queued updates will be merged on the receiving side (master) to avoid a lag and improve performance. commit 97bc00295548f71d2d08d06f782f6451f65a1fcb Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 25 12:13:39 2006 +0000 Don't abort if SNDCTL_DSP_PROFILE fails. commit 697d1d7bf48b0579419638b2d9349717e5dcc9b1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 25 03:03:48 2006 +0000 Added "-I$(top_builddir)/include". commit 045f1defde7f9045934ec7220b152501caf22212 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 22 08:28:50 2006 +0000 Follow fusion_enter() API change. Thanks to Rob Kramer <robk@starhub.net.sg> for spotting! commit c34a83b83c64a1866076b8a7cbfa02c9a45fe855 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 22 08:27:02 2006 +0000 Make compiler happy. commit 61e157e0572a6bfc8adc457d9bea10db81782805 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 15 16:17:27 2006 +0000 Added a parameter to fusion_enter() - FusionEnterRole - to specify either FER_ANY, FER_MASTER or FER_SLAVE. If the world can't be entered playing the specified role, an error message is printed and DFB_UNSUPPORTED is returned. commit 033c177bf046450e8d9e1b049c7d1b49abe5a0ef Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 15 16:14:54 2006 +0000 Added D_ASSERT( object->state != FOS_ACTIVE ) to fusion_object_destroy(). Only objects in state FOS_INIT or FOS_DEINIT are allowed to be destroyed directly. commit 7b69a56bfa1e86aa7de8be2f4d873afffc038c23 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 12 03:44:35 2006 +0000 Fixed build. commit f78abae42ad90072ccab068ba005c32ea7c41d7d Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 11 16:47:22 2006 +0000 Fixed destination offset when no scaling is used, thanks to otokawa. commit 5eab7d24de9bf791bc83ed56155afa1c36f48f68 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 10 13:25:51 2006 +0000 Added symbol resolving support for static binaries. commit e7cf0a183f2b4ac619d68d834570fbb18f3d3366 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 10 13:21:36 2006 +0000 In Probe() call FT_Done_Face() only if FT_New_Face() succeeded, otherwise random segfaults can occur. commit a50fdc9da173451442ba154fc487e00b76c47861 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Feb 10 11:28:28 2006 +0000 Use direct_log_printf() instead of fprintf(). commit f51f94061e29da5048952d8631dfb36298bbc382 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Feb 7 15:47:59 2006 +0000 When AGP support is enabled, turn off pci gart and turn on bus mastering. commit 2a0c71a3c99b098569e151cef01ef15474b2381d Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 7 12:17:14 2006 +0000 Increased ABI version to avoid problems :) commit b5334b8279ffbacd63b0c0ec2bcb0df454f755a4 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Feb 7 10:05:38 2006 +0000 Check if dfb_agp_join() fails. commit 550d0482ebf5324b5ad04e510dfb6f732ef17b73 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Feb 7 09:35:38 2006 +0000 Follow API changes. commit 51d7213d0c4f02f8371f9cc7a9210c201d34349b Author: Claudio Ciccani <klan@directfb.org> Date: Tue Feb 7 09:34:32 2006 +0000 Added support for surfaces stored in AGP memory. commit 5d67f5110cf61e0e3b1ec3abe1474cdb518022ec Author: Claudio Ciccani <klan@directfb.org> Date: Tue Feb 7 09:33:34 2006 +0000 Use internal AGP access. commit 759d3d256c7fe0cf840c83d04380b81f2b82fac5 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Feb 7 09:32:09 2006 +0000 Added AGP support. commit b4dbcde5d2c6251755ffb1abbdd7a1c53586ae70 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Feb 7 09:30:41 2006 +0000 Added support for surfaces stored in auxiliray memory (PCI/AGP/PCIE). Added support for Surface Managers with a variable number of heaps. commit b411dae7cec0c9065e2eba4e204085617e7810ee Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 5 17:31:03 2006 +0000 Install the new header file. commit e39705caa934a584fe7101b1e8183d35ff2fbf63 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 5 17:30:27 2006 +0000 Moved misc/util.h to include/directfb_util.h to use it in applications. More to come :) commit 27a505c4ed1d2ece73a0daf0b1863bcb0c68fc7c Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 5 16:03:06 2006 +0000 Added new runtime option: fatal-level=<level> Abort on NONE, ASSERT (default) or ASSUME (incl. assert) Finally added documentation of "[no]-vt" :) commit 0152edecf64afb473b5c297a2cebebeb5ce1f3ce Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 5 16:00:04 2006 +0000 Do the shmalloc benchmark once with debug and once without. commit 303851bdff66b37f7c4ed5269bb421b2ec2e2ea2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 2 19:13:07 2006 +0000 Use debugging mechanisms of a debug-disabled-but-supported libdirect. Follow API change for shared memory pool. commit 2644c58611042a2c57cdbaa459767bf73b48c21e Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 2 18:59:25 2006 +0000 Made debug/release versions binary compatible, being able to link dynamically against both or even run in the same session. This enables single hybrid SDKs for debug and release platforms. To achieve this all "debug support code" is in the library, whether itself uses debug mechanisms or not. But the option "--disable-debug-support" builds a "pure release" lib to save a few kb in binary size, but basically no runtime overhead. The shared memory pools accept a new option at creation, that is whether to debug allocations. This is stored in the pool info and anyone joining the pool must follow it (for the pool). Except pure release versions which can't join debug enabled pools. Another limitation is that debug enabled applications cannot link against pure release libraries, but a debug enabled application can be linked statically against its debug/release library and run in a pure release session. There shouldn't be other limitations and you'll warnings/errors before anything crashes etc. The default for the "debug" option is true in debug enabled libs and false in release (debug disabled, but supported) libs. This option currently determines if shared memory pools are debug enabled. Happy mixing :) commit 7e03efde3ab18d63eb23863e8eb6db6d0f1a2a41 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 2 18:26:21 2006 +0000 Use D_DEBUG_ENABLED instead of DIRECT_BUILD_DEBUG. commit 2e3877f35ba6ca291562a4ce8cf119abf6fb36dc Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 2 17:20:04 2006 +0000 Fixed failing assertion due to a race condition between shutdown and update. Added debug domain "SDL/Updates" and lots of debugging messages. commit e91706ef22d8ff39e7f04f4879a060ac3fe7390c Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 1 23:10:13 2006 +0000 Decoupled screen updates from Fusion Dispatcher. Updates are handled in a separate thread; they're accumulated rather than queued in case an update is already pending. commit 241c6ecaed03c832de3b06dc1aebae0d3febee64 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 1 18:57:23 2006 +0000 Fixed warning (signedness). commit d603b491aa02f25ecb3e457606af745e73a8fd98 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 1 18:55:37 2006 +0000 Workaround broken(?) 2.6.16 headers. commit eebc3b866e5c7c10849da0e21c802fcb21a30c16 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Feb 1 13:39:25 2006 +0000 Avoid sending s/t coordinates when drawing only shapes. commit dfb96eae46811476f104847689c91976d4e4bb8f Author: Claudio Ciccani <klan@directfb.org> Date: Wed Feb 1 10:24:44 2006 +0000 Add fb_offset to the dma offset. commit e9c54218d3d26941a18fdb1830e706fc9dc605df Author: Claudio Ciccani <klan@directfb.org> Date: Wed Feb 1 09:35:12 2006 +0000 No longer change the value of MC_FB_LOCATION unless an IGP chipset is used (old radeonfb doesn't set the register correctly on IGPs). commit 8232568b4d550dfe3f6f7904f57e49a0dfaa27b6 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Feb 1 09:32:37 2006 +0000 Imported the new R100 driver. commit a1b1fd67e9739674e05ee02cfca29f98cab580a9 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Jan 28 11:41:29 2006 +0000 Added a patch that allows to mmap AGP memory without root privileges. commit f82fbb027f259719919c46bcbae0395efe91b2d5 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Jan 28 11:39:15 2006 +0000 Open log file in append mode. commit 2420e8994dc3b9d5ec10cd1241816028595bcc02 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Jan 28 11:38:13 2006 +0000 Added option [no-]dma (disabled by default). commit 8cef104e7238329be949e72b77c8412d87f80ddc Author: Claudio Ciccani <klan@directfb.org> Date: Sat Jan 28 11:36:56 2006 +0000 Version 0.6 of the NVidia driver: - Added support for AGP - Added support for DMA using AGP or Framebuffer memory. Currently DMA is not faster than PIO, therefore it's disabled by default. commit b7d7a76043950102126d000aaa24043ee8f3f7e0 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Jan 27 13:35:02 2006 +0000 Check for integrated GPUs. commit dff1a5effe84809feb612662a859b84a7714ee4a Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jan 25 14:40:14 2006 +0000 Reset MC_FB_LOCATION to avoid problems with X (thanks to Michel Danzer). commit ec0ab004c4a40f8a07aa376da03bb65423ae0bfc Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jan 23 21:19:23 2006 +0000 Finally fixed the "random-crashes-when-blitting-from-system-memory" problem. commit 0772894a73e146ef55a0f8c2dd19102993a572dc Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jan 23 17:00:02 2006 +0000 Print less cryptic debugging messages. commit 9b4b1a0c0046a3c2d3b246ef2d35132014177f98 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jan 23 11:35:33 2006 +0000 Fixed a potential memleak. commit 0ddf560300d58300b0dd8060c3d591992dab7e0a Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jan 23 11:33:18 2006 +0000 Fail during probe() if the framebuffer device doesn't provide access to MMIO. commit 3fa3f80704f3067c04bd8afaf2528fde8e20728d Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jan 23 11:32:00 2006 +0000 Fixed a typo. commit 3c4e3d1b45e4f452ea6ec69fe670b4bbedf19878 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jan 23 11:31:17 2006 +0000 Fixed wrong register in R200_SET_YUV422_COLOR(). commit 410aab6f33e6d132713657420d408372379f155c Author: Mike Emmel <memmel@directfb.org> Date: Sun Jan 22 03:54:52 2006 +0000 removed extra return commit 0ebcf50d3c945a40bed265e548668df61a6f4eba Author: Mike Emmel <memmel@directfb.org> Date: Sun Jan 22 03:54:12 2006 +0000 copied shift fixed for id to char from sdl to x11 driver to fix symbols sent when shift is down commit d3d032ff58dca4aa22ca023eb2b89f8a24485c39 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 19 16:42:26 2006 +0000 Fixed wrong enum names used (missing E in DVSTATE_). commit 90500310dc14cc5747c4309c056085afbbf4f57b Author: Claudio Ciccani <klan@directfb.org> Date: Thu Jan 19 13:56:14 2006 +0000 Speed up FillRectangle, Blit and StretchBlit by using the RECTANGLE_LIST primitive instead of QUAD_LIST [~15% faster]. :) commit 4a1f56c517bb83655cb6340dbc2bfee4eb120a9f Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jan 18 17:31:54 2006 +0000 Use the POINT primitive to fill rectangles with size=1 (i.e. to draw points) [~60% faster]. commit 54fc4a45360a12071b77fd2644bfbb910aa3a505 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jan 18 09:53:59 2006 +0000 Generate a wave. commit 5732baf6496ef8a221ab4558fd927467e8285e70 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jan 18 09:53:02 2006 +0000 Splitted each mixing function into two separate functions for mono and stereo. commit 9be2a7dbfd83e26e9d018482b5d46c57c649751a Author: Claudio Ciccani <klan@directfb.org> Date: Tue Jan 17 11:32:57 2006 +0000 Optimizations. commit a913c2277ee947af9d9052ae77e9f2261810dbc1 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Jan 17 07:38:19 2006 +0000 Accept files with extension mp1 and mp2, too. commit 000b2978b8876aa04341f66445f68a1efc9c915d Author: Claudio Ciccani <klan@directfb.org> Date: Tue Jan 17 07:36:53 2006 +0000 Added a prototype function for mixing buffers (contained in sound_mix.h). When accuracy is enabled, upsampling is done using linear filtering. commit b0a1d15a137512c525b517105214852d680980ad Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jan 15 19:18:02 2006 +0000 Added IDirectFBVideoProvider::GetStatus(). commit 76c0abb70404bd03ece844054d67ec192acb2b33 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jan 15 19:13:27 2006 +0000 Follow API changes. commit 4d123961453d876db72d881331f164a9cfdf1ba3 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jan 15 19:12:11 2006 +0000 Added IDirectFBVideoProvider::GetStatus() to get the status of the playback; this method replaces the previous end-of-playback detection method using GetPos(). Be more explicit about the coordinates system used by IDirectFBVideoProvider::SendEvent(). commit ea7c99224e107f2bfd3eca7d094930f021a3194c Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jan 15 12:25:59 2006 +0000 Implemented IDirectFBSurface::GetClip(), IDirectFBEventBuffer::EnableStatistics(), IDirectFBEventBuffer::GetStatistics(), IDirectFBVideoProvider::GetStreamDescription(). commit 10064fbb3b81d8b3b1e313e494323d5743687e23 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Jan 14 15:14:00 2006 +0000 Added IDirectFBVideoProvider::GetStreamDescription() to query informations about the stream. commit ae6676eba7b568f07a9122be0a71454718a40732 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Jan 12 17:02:00 2006 +0000 Set default buffersize to 200ms. Fixed wrong copyright header. commit 36d50ae05f25a6bd3678ac9ccd0bbf7c3a1e0b77 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Jan 12 17:01:02 2006 +0000 Use ov_bitrate() or ov_bitrate_instant() to query the birate. Set default buffersize to 200ms. Fixed wrong copyright header. commit 0045fc110a08f826cda49e5f5adc122aed23d97a Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jan 8 06:42:52 2006 +0000 Fixed disabling video4linux provider. commit 460f44a2c1fa84ac8ef6aa811b598d65498daa2e Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jan 7 15:08:13 2006 +0000 Added DFBEventBufferStats containing various counters for the event queue, e.g. total number of events, number of window events, motion events etc. These reflect the current content of the queue, i.e. dequeueing decrements. Added IDirectFBEventBuffer::EnableStatistics() to enable/disable collection. Added IDirectFBEventBuffer::GetStatistics() to query current statistics. commit 524844576fb90d9a10c521c61237e09e1c54c872 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 6 19:57:38 2006 +0000 Added IDirectFBSurface::GetClip(). commit 73ee7d922a2ed6c0a809e7bdca85e95d2178e864 Author: Mike Emmel <memmel@directfb.org> Date: Fri Jan 6 17:39:28 2006 +0000 Added Alex Lau's patch commit 54d4dbe32e66791d4701082bc3273cc092173b23 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Jan 6 16:58:03 2006 +0000 Removed fsf_round*() macros. __fsf defaults to signed long. commit 414b77411ff9215589a046fae2309a736117d66b Author: Claudio Ciccani <klan@directfb.org> Date: Fri Jan 6 16:57:02 2006 +0000 Open device in non-blocking mode. No longer round samples before conversion. commit 9dccd6c4ea61bfe695151dca34de2751c6c86398 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Jan 6 11:26:02 2006 +0000 Implemented IDirectFBDataBuffer::Finish(). commit 6a6d9324dd2086d0486bd66e561f8ecca4cf41d5 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Jan 5 18:50:30 2006 +0000 Use getaddrinfo() to resolve hostname. commit 796b4bff740d390138bf2dca28b3d3fcd0a19433 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Jan 5 18:31:18 2006 +0000 Use getaddrinfo() to resolve host. commit 2d68cdfd03b66feedf80f799e577c7f095ed9ca8 Author: Mike Emmel <memmel@directfb.org> Date: Thu Jan 5 15:08:23 2006 +0000 Added fix for keyboard id conver from Alex Lau commit 2fca19d866f2211c2a864b9a0df4fd33da4d997f Author: Claudio Ciccani <klan@directfb.org> Date: Thu Jan 5 12:04:45 2006 +0000 Added UDP support. In parse_url(), use memcpy() instead of strncpy() and null-terminate the string (from strncpy manual page: "if there is no null byte among the first n bytes of src, the result will not be null-terminated"). commit a25bf8eff6583f2c487bb6c3a3abd5b1a44acfca Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jan 4 12:02:44 2006 +0000 Completed support for YCbCr formats. commit 82f5dc648b10b60043430e08d2c47cf8f086e608 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jan 2 11:36:59 2006 +0000 Allow to control background and cursor in exclusive cooperative level. commit 7fd998c896da7506f0736c382e2b313d11643de1 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jan 1 11:49:04 2006 +0000 If the surface is locked, dfb_surface_reformat() fails returning DFB_LOCKED to avoid deadlocks. commit 55ebb159dbcc4672d8607e186899e5ed1bbd18a4 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jan 1 11:01:01 2006 +0000 Almost completed support for Planar YUV formats (lacks colorkeying). commit a14abfd35a828f896a5a1239aa9964ad1e25b5c0 Author: Mike Emmel <memmel@directfb.org> Date: Fri Dec 30 18:41:52 2005 +0000 Fixed a small bug in key translations commit 98cc030ec67cf2efd759f39e65763879810e1996 Author: Mike Emmel <memmel@directfb.org> Date: Fri Dec 30 18:22:06 2005 +0000 Changed key handling in SDL driver to match the X11 driver which seems correct commit c70df84879a87b3e9ef3e237e244002034b39506 Author: Andreas Hundt <andi@directfb.org> Date: Fri Dec 30 11:45:15 2005 +0000 - replaced strdupa()/strndupa() by alloca() and strcpy()/strncpy() (avoid GNU extensions) commit 9b06988bf6a133252be2e800f24f7d04102f5a0c Author: Andreas Hundt <andi@directfb.org> Date: Fri Dec 30 00:09:32 2005 +0000 include <sys/stat.h>, required for fstat on some OS commit 068d9406127980d1477392361255ddd0e5ad13c3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 29 04:21:10 2005 +0000 Lock surface manager in dfb_surface_unlock() to make lock counter decrement atomic! I'm not sure, but I think I just hit that one, because the lock counter was one for an unknown reason and resizing a window blocked. commit 45f4421662ff4489500f35cdd719d18da4a3d198 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 29 03:29:19 2005 +0000 Implemented requestor/dispatcher FillSpans(). commit fdb690aca93b76297eca6d348992ec09129820b9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 29 03:14:29 2005 +0000 Implemented requestor/dispatcher FillRectangles(). commit bb9bcb6be49309ae5e3267c952c07df73c8fb1ca Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 29 02:35:19 2005 +0000 Commented out -Wno-strict-aliasing for now. Need to add a check for the gcc version! commit 54be67b7daf0d144a49ae32bb90e3a114f91c20d Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 28 02:23:55 2005 +0000 Added debug messages. commit b3712b434f3c2a1438228931605cf638d7a7a61a Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 28 02:22:44 2005 +0000 Fixed warnings. commit 95115bc9640e5d0bc5fb0a9e70e053b83d3b9c17 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Dec 27 13:58:33 2005 +0000 typo. commit 3e4475dc8c866b707f75c2d93c4c8dd03f52ea6b Author: Claudio Ciccani <klan@directfb.org> Date: Tue Dec 27 13:57:48 2005 +0000 Removed GetScreenSize() hook. commit 68d52235e70b7da723f22c0c7d021e9b078f76a4 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Dec 24 10:50:11 2005 +0000 Use dfb_system_current_mode() instead of reading CRTC mode registers. commit 7c349ff8afd7211f58dfee3a3a2d1e236602b499 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Dec 23 15:23:26 2005 +0000 Ignore return value from IDirectFBDataBuffer::PeekData(). commit f564ee10a516fd7d120a64892d302072c744ebdc Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 23 02:47:53 2005 +0000 Set FD_CLOEXEC flag on Fusion device. commit 4aa020538620c9e54566b07d76ff15bcf7d1674e Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 23 01:03:18 2005 +0000 Don't depend on pure existence of "freetype-config" if FREETYPE_CFLAGS and FREETYPE_LIBS are already exported prior to running configure. commit 97416def2b6f522764dc8a0dbf278419ba451d14 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 23 00:53:34 2005 +0000 Don't just return DFB_OK to fake fusion_shm_pool_create(). Allocate fake struct, do D_MAGIC stuff, count attach and assert in detach. Fixes the failing assertion in fbdev_shutdown() as the pool pointer was NULL. commit 6dc3445519b6640562fa49e07602b7722b665fe8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 23 00:48:22 2005 +0000 Let D_OOSHM() be defined to D_OOM() in non-multi app fusion again. commit e2128019f581d2879b9400e47674c92cb94a5a58 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 23 00:47:38 2005 +0000 Fixed double D_OOSHM(). commit be95bcee0c74ee939c27452020db7fd24ebfcbfb Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Dec 18 14:01:36 2005 +0000 Check if already locked and return DFB_LOCKED in Lock(). Automatically unlock when fully released, i.e. in Destruct(). commit 3070e619d07331f30ad9b9adbf91f6d0c9dee3fe Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Dec 18 14:00:07 2005 +0000 Added lots of debug messages. commit 5d63e417f0a706b63a1ee7cb06859e9328854408 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Dec 18 12:54:35 2005 +0000 Added DSDESC_NONE and DSDESC_ALL. commit ef2121f762acb71491bf9ba891c5cfa8172de374 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Dec 18 02:03:32 2005 +0000 Make handlers_lock a recursive mutex again to fix a deadlock during signal handling recently introduced. Pressing Ctrl-C works again. commit 9b1afeb0bbf558b3c123ff9d05a043ef5e94d4e4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Dec 17 05:38:56 2005 +0000 Applied patch containing a hotfix for the "concurrent-render-resize" problem. Thanks to Ryan Burns <rburns@mvista.com>! This is an intermediate (dirty) solution before the new surface core is finished. commit 85cfc4f00e84be9dd141b218ae82a3d6e033d912 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Dec 17 05:35:42 2005 +0000 Allow empty flags in IDirectFBDisplayLayer::SetColorAdjustment(). Added DCAF_ALL. commit b7e5ae27b0a81fbb51370232e6acf2ffefc1535d Author: Claudio Ciccani <klan@directfb.org> Date: Thu Dec 15 14:32:06 2005 +0000 Replaced size_t by ssize_t. commit 43f224d120787c89611ee53d420875a2f3343d30 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 15 09:46:24 2005 +0000 Added - divine_send_motion_absolute( x, y ) - divine_send_button_press( button ) - divine_send_button_release( button ) commit a60888bdab8aef741387fdc2eb7729969f4ce05b Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 14 15:55:43 2005 +0000 Disable elo by default. commit 823f9e457f69ffde4df0e874b5a913bcfff2217e Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 13 16:30:03 2005 +0000 Check mixer/encoder/output indices. commit 265069f6afec13da950f31f17cb7ed05903823d8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 13 16:16:38 2005 +0000 Version number and better <TITLE> usage. commit ab1ba46972ff484cd40457e0075eb6abb72ea5fa Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 13 16:08:41 2005 +0000 Show version number. Use <TITLE> tag much better. commit 4f369a3c1c7fa73de05b73ce04da53a550796131 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Dec 10 16:56:16 2005 +0000 Don't build gunze by default. It seems to miss proper detection code. commit a24d7ad4218ddb5efb19b61a97a409c9267d53e7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Dec 10 16:08:55 2005 +0000 Added divine_send_event() to send any kind of event. commit c54ca76b4857f2314228bfc55f021b29d145d128 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Dec 10 16:00:54 2005 +0000 Use a separate shared memory pool for surface buffer data. commit 50ed492c997131277dddaee19d13d6f0e0a41fc0 Author: Ville Syrjala <syrjala@directfb.org> Date: Fri Dec 9 19:46:54 2005 +0000 Delete trailing whitespace. commit 350f73e37a19dd7007667a7596a15fa796efc012 Author: Ville Syrjala <syrjala@directfb.org> Date: Fri Dec 9 19:04:54 2005 +0000 Added framework to support all colorkeying combinations. commit 4d1359263ff409819439010012c29be0b22cfcab Author: Ville Syrjala <syrjala@directfb.org> Date: Fri Dec 9 16:15:38 2005 +0000 Removed duplicate Duff's device definitions. commit f0b0aab3360605ad01a61888a9b80f1d2279f9f3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 9 15:43:44 2005 +0000 This patch adds fusion_reactor_sized_dispatch(): Dispatch a message to any attached reaction with a given size. Instead of using the size defined by the reactor, the caller can specify the size of the data. commit 231ab3e06e8ddf09c5935275630b0f590defeb67 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 9 15:24:05 2005 +0000 Another patch, this one brings D_DEBUG_ENTER and D_DEBUG_EXIT to ease debug messages for tracing function calls. commit 866c04d5bb4a907ac0e1631d1d5c10fbbc9179c2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 9 15:15:09 2005 +0000 If the domain being registered contains a slash, but didn't exactly match an entry in directfbrc, check to see if the domain is descended from an entry in directfbrc, e.g. 'ui/field/messages' matches 'ui' or 'ui/field'. commit a8d04182e628a32420c696f491f68b248a995ae1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 9 15:00:11 2005 +0000 Allow trailing comments. commit f368d2e423efffdf8bdc2fae6c4c7d69ead13516 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 9 14:59:31 2005 +0000 Use more D_OOSHM(). commit b460ee004020e1d02f092c4a71d8b3bec2814cff Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 9 14:57:01 2005 +0000 Fixed warnings. commit 77eba9bae5ee19cb222c80be2c74028861ea214a Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 9 14:55:39 2005 +0000 Added -Wno-strict-aliasing. commit e231543297cfea4d58101bbc4a52d557a9002b0e Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 9 14:36:56 2005 +0000 Don't toggle lock states repeatedly when holding a lock key. commit 40c2c5d069aa7ef57d0f464fe113c637ccd92e79 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 9 14:33:01 2005 +0000 Install internal headers for now. commit 541da61289915f76a01d6eeba7b8bcde17ff37ff Author: Ville Syrjala <syrjala@directfb.org> Date: Fri Dec 9 12:59:36 2005 +0000 Use front_buffer in SetRegion() and back_buffer in FlipRegion(). commit fe4ff9bd077562ce36e92626cbaa87395790ece5 Author: Ville Syrjala <syrjala@directfb.org> Date: Fri Dec 9 12:40:52 2005 +0000 G200 BES doesn't support color adjustments. commit 354e60d06e53326bc5b3c93dbe7ae127625b2d17 Author: Ville Syrjala <syrjala@directfb.org> Date: Thu Dec 8 21:46:30 2005 +0000 Don't advertise DFXL_STRETCHBLIT when it hasn't been checked. commit db5bc68d97a833872e6d5746b1d172c5bc62e17d Author: Ville Syrjala <syrjala@directfb.org> Date: Thu Dec 8 20:36:27 2005 +0000 Added missing DSPF_ARGB case. commit b8b3b4328cb882a4c95cb252e07a3fc2c855b570 Author: Ville Syrjala <syrjala@directfb.org> Date: Thu Dec 8 20:33:04 2005 +0000 - Fixed color keying mask. - G100 doesn't have TEXCTL2 so TEXTRANS must be used to disable color keying. commit 843fcd7be3f1280c170729e167e2b56d74eec3f1 Author: Ville Syrjala <syrjala@directfb.org> Date: Thu Dec 8 20:13:27 2005 +0000 Fixed YUY2/UYVY and texture LUT state handling. commit b84d51c57bd4619ba91e8d63714d8295264167ca Author: Ville Syrjala <syrjala@directfb.org> Date: Thu Dec 8 19:13:13 2005 +0000 Fixed rectangle intersect functions. commit b151b155b7f037384bf9533de525b3932cdaaca4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 7 19:19:55 2005 +0000 test commit 113e1bc1cf038619ccc14f371e97639fe96501fa Author: Ville Syrjala <syrjala@directfb.org> Date: Tue Dec 6 02:32:02 2005 +0000 Fixes for G100 with SDRAM. commit fac82aaf020f2cddf4960982223e92e11982ce85 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Dec 4 21:06:46 2005 +0000 Added Gunze Touchscreen driver, thanks to Nathanael D. Noblet <nathanael@gnat.ca>! commit 0085667e71a981a82656e0b2baf72d318e293cce Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 1 18:55:12 2005 +0000 cvs test commit 54a05e7bf30a9644c37b261a785eb86bc51adfd3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 1 18:52:33 2005 +0000 test2 commit 0662da8f5de561ff5b0344a95b1eddbfe63f7df0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 1 18:48:21 2005 +0000 cvs test commit a80b270fcadc6532254e4e07c5d45dfa0eb1753e Author: Ville Syrjala <syrjala@directfb.org> Date: Thu Dec 1 12:58:42 2005 +0000 Fixed a cut-and-paste bug. commit 86a3bdfc78094bea23eb533b25c9dc2ae2e4b75d Author: Ville Syrjala <syrjala@directfb.org> Date: Thu Dec 1 11:38:08 2005 +0000 Limited support for DSBLIT_SRC_PREMULTIPLY. commit c91d670c62da02987df268c5623b57c655a4cf07 Author: Ville Syrjala <syrjala@directfb.org> Date: Thu Dec 1 11:07:33 2005 +0000 Support for DSDRAW_SRC_PREMULTIPLY. commit 2ccdb5f94dafcaaa820fabebef550e42d0b1ee42 Author: Ville Syrjala <syrjala@directfb.org> Date: Thu Dec 1 10:52:50 2005 +0000 Completely untested PPC support. commit 8cc254dd99e2116e9171e542741fc08ee54baf00 Author: Ville Syrjala <syrjala@directfb.org> Date: Thu Dec 1 10:41:37 2005 +0000 Added support for DSDRAW_SRC_PREMULTIPLY and DSBLIT_SRC_PREMULTCOLOR. commit 5b3d80ffe8c9d64551cdfaff54bba4f8e7e006ad Author: Ville Syrjala <syrjala@directfb.org> Date: Thu Dec 1 10:10:40 2005 +0000 Use DITHER_EN and SCALE_PIX_EXPAND only when color bits < 24. commit e01fb997733015324b158976df32cbf288ebbc8a Author: Ville Syrjala <syrjala@directfb.org> Date: Thu Dec 1 10:08:40 2005 +0000 Avoid chip lockups with destination color keying. commit 24df2355bb907366b3dbd5d443badfc751aeb3ea Author: Ville Syrjala <syrjala@directfb.org> Date: Thu Dec 1 09:24:18 2005 +0000 Enabled SCALE_Y2R_TEMP. commit ad6fe6cc01b2bbb8dac1668e8b063d6de5337d7d Author: Ville Syrjala <syrjala@directfb.org> Date: Thu Dec 1 09:22:05 2005 +0000 OVERLAY_EXCLUSIVE registers aren't supported on rev. A chips. commit 22efa76598be431fc82963a23b10d80ed87bcb46 Author: Ville Syrjala <syrjala@directfb.org> Date: Thu Dec 1 09:17:47 2005 +0000 Check the chip type in ovSetColorAdjustment(). commit 8ce0dae79b5991010300e09b111f4e67b9d03da4 Author: Ville Syrjala <syrjala@directfb.org> Date: Thu Dec 1 09:13:51 2005 +0000 Fixed color keying on 264VT2. commit 4c168edd661a7af01e6a00fb8c73967628b03642 Author: Ville Syrjala <syrjala@directfb.org> Date: Thu Dec 1 08:59:46 2005 +0000 Fixed surface size limits. commit 2fb6bceccb5c74f6ad4956f6b9a2059fd617871f Author: Ville Syrjala <syrjala@directfb.org> Date: Sat Nov 26 14:32:26 2005 +0000 Don't overwrite the last char of info->desc.name with EVIOCGNAME. commit 782df7dad8eae7f8d95dc106fcca75facab86250 Author: Ville Syrjala <syrjala@directfb.org> Date: Sat Nov 26 13:45:58 2005 +0000 Minor cleanup. commit 4dc2827318b27c3c4da6dab75c7dc14dc7b04019 Author: Ville Syrjala <syrjala@directfb.org> Date: Sat Nov 26 13:42:12 2005 +0000 Fixed scaler/texture color key for chips < 3D Rage Pro. commit a104f56c4f131d5efefbb14cb6303cfd6d54163f Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 24 12:35:38 2005 +0000 Added DIRECT_SIGNAL_ANY as a replacement for the magic -1. commit 3223f341a7c0b81d6218a469f28c1fe54fee1907 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 23 17:18:53 2005 +0000 test of new server commit 4499f45366024cc61a492f7bf4d6c86b924f08ed Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 23 14:21:01 2005 +0000 Replaced DIRECT_UTIL_RECURSIVE_PTHREAD_MUTEX_INITIALIZER by PTHREAD_MUTEX_INITIALIZER. commit 939a5c784979d266f9f1324e73f7c59d760cebf0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 23 14:18:58 2005 +0000 Removed dependency on -D_GNU_SOURCE when including <direct/util.h>: Made direct_util_recursive_pthread_mutex_init() non-static-inline. Removed DIRECT_UTIL_RECURSIVE_PTHREAD_MUTEX_INITIALIZER and replaced all of its occurences by PTHREAD_MUTEX_INITIALIZER. These didn't need to be recursive. If there's a recursive mutex required, you can still use the utility function direct_util_recursive_pthread_mutex_init(). Removed -D_GNU_SOURCE from direct.pc and directfb-config. commit fb2086a780330031274279555e7511b0a26e83f4 Author: Mark Adams <marka@directfb.org> Date: Tue Nov 15 16:00:47 2005 +0000 Silence warning. commit 5d615d198e095608edbb0f55cbb7c0fc6babce88 Author: Mark Adams <marka@directfb.org> Date: Tue Nov 15 15:51:15 2005 +0000 Overhaul of LEVELS, OPACITY and primary ALPHACHANNEL features which were previously only partially implemented and did not work together. The video overlay and the primary layer now both support the OPACITY option and either can be on top. The order is determined by the 'level' assigned to the video layer. The primary also supports an alpha channel which is useful when the video layer is positioned behind. The old DFB_CLE266_UNDERLAY environment variable switch has been removed. commit a4377c63d838ae49e81653600bf6e9d5639ecd91 Author: Mark Adams <marka@directfb.org> Date: Thu Nov 10 10:26:15 2005 +0000 New acceleration: - ARGB4444 as source and destination pixel format for all supported operations. commit f1ac90cc099d900d33645be4c185bde492b3eb11 Author: Mark Adams <marka@directfb.org> Date: Tue Nov 8 19:31:21 2005 +0000 Added missing fifo space checks and corrected an excessive allocation. commit f5ddab4126ee2d8bbfc056c6dc855aa927dfb92a Author: Mark Adams <marka@directfb.org> Date: Tue Nov 8 19:29:11 2005 +0000 Fix 'unexpected pixel format' errors. commit 4b1522a5d1bca45f6d5b313495880a2bbcaeeed1 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Nov 7 09:03:07 2005 +0000 __fsf defaults to long when using fixed floats. commit 622c776908c13dd8ca13611d08e1fa9264ab9687 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Nov 7 09:00:09 2005 +0000 PlayTo() restarts playback from the beginning after the stream has reached the end. commit 9a420d55073d46e512b004fa91b6690fec3391e9 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Nov 7 08:57:35 2005 +0000 Added FMCAPS_RESAMPLE. commit f10a2f83f820242e090f8bcb592833d030b21539 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Nov 7 08:55:32 2005 +0000 Added MusicProviderCapabilities flag FMCAPS_RESAMPLE to indicate that a provider can resample audio. commit c32be698ea811a905a454620e4015e469748d443 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Nov 6 20:41:57 2005 +0000 Added option 'session' (by default it's dfb_config->session+1). commit 27383ac7c8feaacb5f3db12ff0fb2a2f45149836 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Nov 6 20:37:55 2005 +0000 Create a new Fusion World by default: this way the "dfb-slave-but-fs-master" problem is definitively fixed. Register a DirectSignalHandler, needed to shutdown slaves. commit dff7a5cbf96393921c6a18aed6337e6e72fbbe2b Author: Mark Adams <marka@directfb.org> Date: Fri Nov 4 17:11:38 2005 +0000 Documentation updated to reflect the features and limitations of the current code. commit 51ebbc613922b85dfbf650725de4bf73cc35040b Author: Claudio Ciccani <klan@directfb.org> Date: Fri Nov 4 09:43:41 2005 +0000 Version 0.9.25. commit f41c1d5e9953fefaa0367c069a25608ed7b9989f Author: Ville Syrjala <syrjala@directfb.org> Date: Tue Nov 1 16:16:45 2005 +0000 - Fixed Mystique vs. Mystique 220 detection. - Made device_info->name a bit more verbose. commit ee2bc368905168d1141523553867199e126997af Author: Ville Syrjala <syrjala@directfb.org> Date: Tue Nov 1 16:13:13 2005 +0000 Remove unused variable. commit 9150ceaa6a75b17486b736c13a4256c3fe158be0 Author: Ville Syrjala <syrjala@directfb.org> Date: Tue Nov 1 16:08:09 2005 +0000 - Don't touch hardware in SetRegion() if nothing changed. - Separated spic_calc_buffer() out of spic_set_buffer(). commit 0d9335f3cfabba7c5c7d542ad974e8b4441973c3 Author: Ville Syrjala <syrjala@directfb.org> Date: Tue Nov 1 15:26:28 2005 +0000 Setting VIDRST bits is pointless as the hardware ignores them. commit a05184933fbd88a6c301f63fb879fe8fa0e71baf Author: Ville Syrjala <syrjala@directfb.org> Date: Tue Nov 1 15:11:14 2005 +0000 Forgot to include misc/util.h for dfb_region_intersect(). commit bca23d880c5e4f13af6d167af82cab66e3bedf4c Author: Ville Syrjala <syrjala@directfb.org> Date: Tue Nov 1 15:08:46 2005 +0000 - Disable BES if the destination region is completely off-screen. - Renamed current_mode to mode because it's shorter :) commit 07222c75c9b465ec04cdb1d6daa13ba934fab806 Author: Ville Syrjala <syrjala@directfb.org> Date: Tue Nov 1 11:56:24 2005 +0000 - Allow surface height up to 2048 with DLOP_DEINTERLACING. - Limit surface width with DLOP_DEINTERLACING to guarantee BESPITCH < 4096. - Disable vertical filtering when surface width > 1024. commit d5b53c231dee836fc200e5169fb48238df337125 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Oct 31 11:41:23 2005 +0000 Added SendEvent(). commit 03c1aca9e0d389c082d8aa71f2ab82d837ebd60a Author: Claudio Ciccani <klan@directfb.org> Date: Sun Oct 30 18:34:44 2005 +0000 IDirectFBVideoProvider::SendEvent(). commit 32c396c4175af20bc92bc60a6e30772ba85cd07a Author: Claudio Ciccani <klan@directfb.org> Date: Sun Oct 30 18:28:21 2005 +0000 Libtool versioning. commit ff618c647fb60c799e6890e216fca27f41678304 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Oct 30 18:17:32 2005 +0000 Added IDirectFBVideoProvider::SendEvent() to send a window or input event to video providers that supports interactivity (DVCAPS_INTERACTIVE). For cursor events, coordinates must be in the destination rectangle space. commit 127b8c524353fe3197ff1a49deab248067a8739d Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 29 02:20:54 2005 +0000 Show "1k" again for '0 < bytes < 1024'. commit cec48179f09d30197ddc61a09d48b9a9c775d771 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 29 02:12:06 2005 +0000 Fixed warnings. commit 6e510a6e2e7f2f8579c72664a10e907c5c1a8990 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 29 02:03:11 2005 +0000 Fixed warnings. commit 23c57785394db1b1f4be09e92efe66e2486ac175 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 29 01:57:17 2005 +0000 Fixed warning: dereferencing type-punned pointer will break strict-aliasing rules commit 114d8e1c738215497e7c66b3c2b2921a1217bd74 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 29 01:47:18 2005 +0000 Avoid tons of warnings by using D_MAGIC_SET_ONLY instead of D_MAGIC_SET. commit 321594863aa186845180a836149dcea9d01172c9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 29 01:46:40 2005 +0000 Added D_MAGIC_SET_ONLY which is D_MAGIC_SET without assuming that the magic hasn't been set already. Useful to avoid compiler warnings when acting on uninitialized structures on the stack. commit 97696a6182704d0f90d2311cbf3d2c481b3073cf Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 29 00:42:29 2005 +0000 0.9.25 Follow API changes for Fusion Worlds and Shared Memory Pools. commit 8b4d2210a9b6b5e4ea2937a83e08ca3fbabbb9b8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 29 00:40:56 2005 +0000 0.9.25 Using the new Fusion Kernel API 2.0 - Parallel Fusion Worlds in one process via extended API - Multiple Shared Memory Pools in one world via new API - No race condition between (potential master) processes starting in parallel Fusion APIs have been extended to support different worlds and pools. Pass CoreDFB to graphics drivers as a new argument to driver_init_driver(). commit 562028d388d8e9f26cb2e5f4850e389ab74af5c4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 28 21:09:21 2005 +0000 Avoid division by zero if no video memory is available. commit 9ab7016f71d61059f190afccd579414a45c07fdf Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 28 21:06:46 2005 +0000 Added D_OOM() message if thread structure can't be allocated. commit e2c4691f4bb46223ae2ba42a90eed56de50320d1 Author: Mark Adams <marka@directfb.org> Date: Thu Oct 27 15:56:28 2005 +0000 Added support for DLOP_FIELD_PARITY. For this to work, the kernel framebuffer must support an extension of the WAITFORVSYNC ioctl that allows waiting for the top or bottom field. commit faaa1555d999ee67338a5945d8b16aefef0f6c3d Author: Mark Adams <marka@directfb.org> Date: Thu Oct 27 10:38:17 2005 +0000 New accelerations: - YV12, I420, YUY2 and AiRGB simple blits - AiRGB 2D drawing commit 58d2d47448b4509c95ef888190cb86f1b179d995 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Oct 26 16:30:06 2005 +0000 Updated ChangeLog. commit 584ff172ce67f8cd1046e316bf813a2cc25bc4b3 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Oct 26 16:29:03 2005 +0000 Version 0.9.24. commit 06a586cad7415b67a18c8da1a9216f1ae879b551 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Oct 26 16:28:28 2005 +0000 Follow recent API changes. commit 3e6f19d3b6cd1d9b7f3b0880d0b8adf316ad6f03 Author: Mark Adams <marka@directfb.org> Date: Wed Oct 26 10:43:36 2005 +0000 Disable broken SetColorAdjustment implementation (already partly disabled). Remove color keying diagnostic. commit 5aa72ae237fea0b35e3a47806c007ae961eb3064 Author: Mark Adams <marka@directfb.org> Date: Wed Oct 26 10:37:45 2005 +0000 Round to nearest when positioning up-scaled YV12/I420 video to reduce error. commit 1c48072fcf7c9c2009863d893f00041b32f25b38 Author: Mark Adams <marka@directfb.org> Date: Wed Oct 26 10:34:55 2005 +0000 Fix YV12/I420 video layer corruption on revision 0x11 hardware. commit b8d2cfd4d1190de40980e7a167fb139639d977eb Author: Mark Adams <marka@directfb.org> Date: Wed Oct 26 09:37:28 2005 +0000 Fix bug setting SUBP_CONTROL_STRIDE register in uc_spic_set_buffer. Sadly subpicture layer still doesn't work. commit 6b95bde969c8ceb3389a1bf35fabf8aa6dd2d39c Author: Mark Adams <marka@directfb.org> Date: Wed Oct 26 09:34:45 2005 +0000 Fix hardware revision number detection and allow override via new config option unichrome-revision=<rev>. The revision number can only be auto-detected if the process runs as root. Added simple script to determine revision number for addition to directfbrc. commit c0c00a4b6f797dc976da1e23344f2d6831dc0f94 Author: Mark Adams <marka@directfb.org> Date: Wed Oct 26 09:26:44 2005 +0000 Added config option unichrome-revision=<rev> to manually set the hardware revision number for the unichrome driver. This cannot be determined automatically unless the process runs as root. commit 2bdf900f76a13d528b9a838473587559b4f3a56a Author: Ville Syrjala <syrjala@directfb.org> Date: Wed Oct 26 07:33:08 2005 +0000 Silence compiler warning. commit a93779d8d48a4e0f018dc836bb5e0177678cadc2 Author: Ville Syrjala <syrjala@directfb.org> Date: Wed Oct 26 07:26:16 2005 +0000 - Finally remove DLOP_FLICKER_FILTERING. - Don't reinitialize the whole TV encoder when changing field parity. - Misc. cleanups. commit 4c0e111298a16efc15daefd3eb2134dec7d3c308 Author: Ville Syrjala <syrjala@directfb.org> Date: Wed Oct 26 07:23:16 2005 +0000 Allow DSPF_ARGB surface + misc. cleanups. commit 53c13af3a58670b652798431656600a5ac34bec4 Author: Ville Syrjala <syrjala@directfb.org> Date: Wed Oct 26 06:33:46 2005 +0000 PCI device ID cleanup. commit 58e392a7a1caff7f60e658ad12bba894fb63e8e3 Author: Ville Syrjala <syrjala@directfb.org> Date: Wed Oct 26 06:13:51 2005 +0000 Prefer /dev/shm over other tmpfs mount points with the same size. commit b74f892dbd0fe5ece7af3b35eb793772e3b1293e Author: Ville Syrjala <syrjala@directfb.org> Date: Wed Oct 26 06:09:39 2005 +0000 In dfb_surfacemanager_allocate() do dfb_gfxcard_sync() only if hardware has read from the buffer about to be kicked out. The call to dfb_surfacemanager_assure_system() should already take care of the hardware write case. Change dfb_surfacemanager_assure_system() to call dfb_gfxcard_wait_serial() instead of dfb_gfxcard_sync() since we're only interested whether the hardware has written to the buffer. commit b1b36f59a95bd1fc321bf099bc8e3b9501f1f13f Author: Ville Syrjala <syrjala@directfb.org> Date: Wed Oct 26 05:38:38 2005 +0000 Added FlushReadCache() to the graphics driver API. Used in the matrox driver to flush the direct access read cache. commit 6cc6de1ded1ccec798424d205947b2eefba2d151 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 25 14:45:30 2005 +0000 Include "libobject.make" for static builds in distribution. commit e24732ab81e9244437c2159f2bd47572e4cef81d Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 24 17:20:42 2005 +0000 updated commit 23fcd1ec07ffbb070855899fca9963674a5ef9a9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 24 17:11:53 2005 +0000 0.9.24 commit c356add186f08cd9254417d42b453d3b4c8dc5bd Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 24 17:11:42 2005 +0000 Fixed warnings. commit 86d310934852aad912f3333418c847446c5d04f0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 24 17:11:29 2005 +0000 one more missing header added commit ea39d94aa9635422ecc260dc56ac2068bb7ee8c3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 24 17:06:30 2005 +0000 Fixed a warning. commit f9bda56c9a1a63a44d8eaad1de046e3465d1f833 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 24 17:01:08 2005 +0000 Removed all checks for FB_ACCEL_* as fallbacks are in core/accelerators.h now. Don't build cle266 by default as it's obsolete because of the unichrome driver. commit b29482db505d6865c2e968f71e4165e0d483a725 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 24 16:58:19 2005 +0000 Added missing includes of <core/accelerators.h>. commit 050ef126dc428aac716ac37306034c2e591d39b3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 24 16:47:31 2005 +0000 No need for linux/wm97xx.h anymore. commit 2c115a96033a43f3450c216c665c7b031b23a3f8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 24 16:42:46 2005 +0000 Don't use fusion_reactor_free() too early in case of an error in init_devices(). Thanks to "Jakub Bogusz <qboosh@pld-linux.org>" for this and other patches. commit 7afd787e8762a18e6a2fe6c6942237896512b194 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 24 16:40:46 2005 +0000 Added missing headers to SOURCES. commit f8c70edfcdbda3275c041d08d73a0fba5bf2d973 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 24 16:40:31 2005 +0000 Added missing types.h to SOURCES. commit 2ea2b5c32c37b046146e29710051536f41e2e15d Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 24 16:40:14 2005 +0000 Added sisfb.h to SOURCES. Removed check for sisfb.h. commit d64523c0733df61bfeb0568477dfd366ec465984 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Oct 24 13:46:13 2005 +0000 IDirectFBVideoProvider::GetPos() returns DFB_EOF to notify end-of-playback. After stream has reached the end, the next call to PlayTo() restarts playback from the beginning. commit 409199cfa6eb957d5367b4ece165a9e1d940820f Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 18 23:38:50 2005 +0000 no more patches commit d47823532f67be7a8ede71c45ceff60105751ecf Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 18 22:54:48 2005 +0000 Seems that sisfb.h is still required. commit acbc6c626c79779ebfc0631ac7efa7228dcba126 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 18 18:01:07 2005 +0000 New changelog and summary for 0.9.23 :) commit 4efa1d4d6c4f14c84fb0559f5360a5c39a09bfb1 Author: Ville Syrjala <syrjala@directfb.org> Date: Tue Oct 18 14:37:39 2005 +0000 Plug a leak and add a comment about freetype bugs. commit b0ee0b88ece091c7264ccb7c77f100d6c97bcadd Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 18 10:57:32 2005 +0000 Oops, somehow I managed to apply another patch with something already added :) commit 241e7cafec1ba50600b5a63e7b2161c35ef82974 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 18 10:04:52 2005 +0000 Added support for DSPF_ARGB4444. commit 25e6a28ef699fbda53b1a5ea77cc3a0848f4c39b Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 18 10:04:21 2005 +0000 If during window creation the pixel format for windows with an alpha channel is unspecified, don't always take DSPF_ARGB, but the layer's format if it has alpha. commit c7e0c35446f43ed0e1168649bee6e81ed2e2ca06 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 18 10:02:20 2005 +0000 During flip using blitting, wait for pending writes to the back buffer before issuing the blit command from back to front buffer to avoid lags caused by too much queued commands. commit 8c2c8492949a6c40466fbfafb5ec90faba13b65f Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 18 10:00:27 2005 +0000 For PNGs with alpha don't always suggest DSPF_ARGB, but the primary layer format if it has alpha. commit bb4148c9341306abb40e85e56f54bf63524c685b Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 18 09:59:30 2005 +0000 Don't abort if checking for LEDs fails. commit 134706f3b347f420d618a6a73446d2f05987d3a0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 18 09:56:45 2005 +0000 Simplified regex a bit. commit e95a6dc94119fcc4cc1efb1e82d3e6c29a99448e Author: Claudio Ciccani <klan@directfb.org> Date: Mon Oct 17 18:00:06 2005 +0000 Fixed segmentation fault when loading OpenType fonts. commit da18a5a083d72ce667707cccca33c43e368b93e4 Author: Mike Emmel <memmel@directfb.org> Date: Sun Oct 16 05:12:41 2005 +0000 Removed the depth hard code to 24 and open the display in primary.c to get its real depth. Note this needs to be done a cleaner way since we open close the display then reopen but its right. commit 88c65e1f8bec846962a70e50e4520526752a702c Author: Claudio Ciccani <klan@directfb.org> Date: Sat Oct 15 08:26:06 2005 +0000 Ignore a return value of DFB_EOF from IDirectFBDataBuffer::PeekData(). commit b168dacec35907a42d732c7fd8aded89cc356f3a Author: Claudio Ciccani <klan@directfb.org> Date: Wed Oct 12 08:46:49 2005 +0000 Reduce probing context header to 64 bytes. commit 096ffa1348773d66ab6b28084810a709d45c5516 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 28 20:24:47 2005 +0000 Added Probe and Construct function pointer typedefs for casting to make g++ happy. commit d99b70fe738a76be1ef2c2877d697b185d46fe52 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 28 19:00:42 2005 +0000 Thanks to Damian Kowalewski <damian.kowalewski@mail.mcgill.ca> for fixing artifacts produced by clipped triangles. commit 4c9f55bdeb484c5cec188a7ff5406c01d2fa71a6 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Sep 26 14:04:51 2005 +0000 Support streamed data buffers. commit 5aabb8c117129096ace4c06af537ef987c593b4a Author: Claudio Ciccani <klan@directfb.org> Date: Mon Sep 26 10:40:11 2005 +0000 Follow IDirectFBDataBuffer changes. commit 01491e0f5126c49ae6447f855ea56a67c9c0cdf9 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Sep 26 10:39:15 2005 +0000 Added IDirectFBDataBuffer::Finish(): used to notify a streaming databuffer that the end-of-file has been reached. After the method has been called, PutData() fails with DFB_UNSUPPORTED while GetData() returns DFB_EOF unless there is still data to be fetched. commit 391e596c93564cf9e9bdd9d9a597623962a77fdc Author: Claudio Ciccani <klan@directfb.org> Date: Mon Sep 26 10:27:54 2005 +0000 direct_stream_peek() and direct_stream_read() return DFB_BUFFEREMPTY if there is no data available. commit 28c7cd7a6f055a0eab248301292c66c1c47eb51c Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Sep 25 20:00:39 2005 +0000 Applied patch from "Stefan Lucke <stefan@lucke.in-berlin.de>" for better touchscreen/smartpad detection. commit 2088c11908d06f6aa5c2682fed700ca78621d57a Author: Claudio Ciccani <klan@directfb.org> Date: Sat Sep 24 15:53:31 2005 +0000 In pipe_read(): decrement 'length' when reading from the cache. commit 84be765b40d328bc1a80705a0ee9b768c304de01 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Sep 24 08:57:06 2005 +0000 Follow direct_stream_seek() change. commit e32905316fce51d6ad37c39f7676ed852334202f Author: Claudio Ciccani <klan@directfb.org> Date: Sat Sep 24 08:54:43 2005 +0000 Lock the mutex before seeking. commit d710d0c92f6e9a04ac84b0058fa65eb5699389d5 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Sep 24 08:53:33 2005 +0000 API change: direct_stream_seek() takes an absolute offset as argument instead of a relative one. commit 6fd8dd70d1cf10d1ead2261278d976cf07a6f4fe Author: Claudio Ciccani <klan@directfb.org> Date: Sat Sep 24 08:30:59 2005 +0000 Return DFB_INVARG from direct_stream_seek() if absolute offset is negative. commit c8ec24a002d5b14411ff8b1a1897bc4feca09585 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Sep 23 13:47:39 2005 +0000 Less accurate but faster vorbiness test. commit 46b1feb847f4772643194ffad07396112da41b60 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Sep 23 13:44:00 2005 +0000 Use nanosleep() instead of usleep(). commit d0fdd0b973f1969225d886da9a4857c28964e50a Author: Claudio Ciccani <klan@directfb.org> Date: Fri Sep 23 13:42:53 2005 +0000 Actually do no fail if IDirectFBDataBuffer::PeekData() returns DFB_BUFFEREMPTY, opened file could be a device (e.g. /dev/video). commit 07ab2f06163156e7f1af709114062b2826a119d3 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Sep 23 09:57:39 2005 +0000 Set input stream to non-blocking mode (actually necessary for remote streams). commit 803a6227862c3217b76937318a10a5c1f3e52dbb Author: Claudio Ciccani <klan@directfb.org> Date: Fri Sep 23 09:47:54 2005 +0000 Follow changes. commit e8d7705fd6c2e06c182cfa8fe072fba556bd8197 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Sep 23 09:46:55 2005 +0000 Create Video Providers from DataBuffers. Added IDirectFBDataBuffer::CreateVideoProvider(). commit cac69da8b6257148ea5b8601a7fdc7bf6856d060 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 22 16:37:24 2005 +0000 Added priority to video mode definition. Search for mode with highest priority. commit a2f07cf35b0463f1795072a219a949c5d42e0c88 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 22 15:11:30 2005 +0000 Added CoreSystemCapabilities with one capability until now: CSCAPS_ACCELERATION. Probe for graphics drivers if this capability is set. Removed implicit version of this check (the check for the accelerator). commit 23d1c3d515cfd36677a9fea1a98544b217e2e691 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 22 14:44:29 2005 +0000 Support fractional font sizes in API and FreeType2 Font Loader. commit ef3c4c8a1a61731be81df3f9ed571389a2633c03 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 22 13:44:32 2005 +0000 Reverted change of bool until I found out why it breaks the R200 driver and possibly others (no hw blitting anymore). commit 45caa29ae93df5b75f0319526a50da3dc329f211 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 22 12:59:35 2005 +0000 Fix wrong size of bool. commit fb784c0af2c563b7b57db6e914bcd551768ca3b1 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Sep 22 09:22:01 2005 +0000 fbdev->shared->current_mode is now static and gets updated according to current var when the video mode changes. This way dfb_system_current_mode() always return the effective video mode. commit 000c9eecca237c2b69252a499cb411a409778aad Author: Claudio Ciccani <klan@directfb.org> Date: Wed Sep 21 16:18:12 2005 +0000 Added some keybinding for controlling playback: s = Stop p = Play + = Seek (+15 seconds) - = Seek (-15 seconds) q = Quit commit f28522bfe87aaec88e8a553ac62d466281850236 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Sep 21 16:16:11 2005 +0000 Removed file access test in CreateMusicProvider(). commit bf0dacb427e408098a388322c987c9a13b01d3aa Author: Claudio Ciccani <klan@directfb.org> Date: Wed Sep 21 16:15:03 2005 +0000 Use DirectStream. commit a75f8d4fbf32a37e711fa93d789078e6a564493c Author: Claudio Ciccani <klan@directfb.org> Date: Wed Sep 21 16:13:40 2005 +0000 Use DirectStream. commit 32d48a32a0203ad2624b8079f7f8ca69d2b6abbb Author: Claudio Ciccani <klan@directfb.org> Date: Wed Sep 21 16:10:11 2005 +0000 Added DirectStream, a wrapper for accessing files locally and through network (http, ftp and generic tcp). The API is derived from the IDirectFBDataBuffer interface. commit 6fe70d12cc3daeab6d463ff9cb1c2124d0591e35 Author: Martin Lütken <ml@directfb.org> Date: Mon Sep 19 22:48:27 2005 +0000 Small change just to be able to get help from DFB people commit a4c9b7fa573350905697dfe720aab3026eef0302 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 14 17:26:44 2005 +0000 Another patch from Mark Adams <mark147m@gmail.com> removing the check for a real file name in CreateVideoProvider() to support Xine's MRLs. commit 3ef6c7983ada2802909dbc20e6336941561a2898 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Sep 14 16:42:48 2005 +0000 If the master application only accesses the BES layer, current VideoMode is NULL; in that case rely on the default VideoMode. commit 8018e8cc61b997aa7ae08781bde8a4be8a38c42e Author: Claudio Ciccani <klan@directfb.org> Date: Wed Sep 14 16:05:51 2005 +0000 Dropped down YUV Source Colorkeying. commit bca1474ecbd5886a56f22113c7c99fe5cfabbb8f Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 14 14:28:42 2005 +0000 Thanks again to Mark Adams <mark147m@gmail.com>! He changed WaitForEventWithTimeout() so that it doesn't throw an exception when a timeout occurs, which is a normal circumstance. Instead it returns true if events are available or false after a timeout. commit cba29b6ad906e8111ce1fcd4f32cf506aed234cc Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 14 14:05:27 2005 +0000 Fixed SetColorAdjustment(), thanks to Mark Adams <mark147m@gmail.com>! commit 18c3709af853431a53fb77d59866574242be4042 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 14 11:02:30 2005 +0000 Applied patch from "Mark Adams <mark147m@gmail.com>" fixing a rare crash in the single application core. Thanks! commit 318f510a4b0e57f316ae633013e4ace127e1e109 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 14 08:36:30 2005 +0000 Added new input event flag DIEF_REPEAT indicating a repeated key or button press. Make usage of it in the linux_input driver. Thanks to "Marko Mäkelä <marko.makela@hut.fi>" for the initial version of the patch. commit 3da874e2803d3271aac79eff7ac65443a5f9e6ab Author: Claudio Ciccani <klan@directfb.org> Date: Sun Sep 11 15:27:37 2005 +0000 Planar YCbCr deinterlacing. commit 8b592375042eeac3c2006e94889cea37cdaa9e73 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Sep 7 10:18:02 2005 +0000 Fixed rendering to A8 surfaces (color must be replaced by alpha since the destination format is set to RGB8). Workaround to make byte-swapping work properly on big-endian machines (better than nothing for now). commit 2ccdbf17b6d05c02e19a2c4c7c65b1405d40c09e Author: Claudio Ciccani <klan@directfb.org> Date: Tue Sep 6 12:51:15 2005 +0000 RGB24 byte swapping on big-endian hosts happened when the destination format was RGB32, probably because of a patch applied for a different revision of gfx_util.c. commit 9836c81537583f27b45fdbe331b19d837777a961 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Sep 3 10:41:58 2005 +0000 New supported values for mouse-protocol: PS/2, IMPS/2. commit 6c1a672d1e7773004e481db516e0f4a15c2e2983 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Sep 3 10:40:07 2005 +0000 Display help for the following options: mouse-source and mouse-gpm-source. commit 89ceb472a2d785f60d21ccc18879549462c6dcae Author: Claudio Ciccani <klan@directfb.org> Date: Sat Sep 3 10:38:47 2005 +0000 Added GPM support. The moouse-protocol option specifies the protocol for the mice or the repeater (supported values: PS/2 and IMPS/2). commit da3efadfd6ac7c7a26cd2c3f68117c6245a900cf Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Sep 2 20:09:11 2005 +0000 Suppressed some debug. commit d3dadc1b045cdc58d3c3b0b1ef6a28996353b8c4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Sep 2 19:59:56 2005 +0000 Fixed an evil dead lock that only occured by moving a window with one of my new mice, having superior precision generating lots of events, thanks for spotting this bug, Logitech :) commit 8af84ef7b2a96b0539099778701d0d59b0e8098b Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 30 15:41:36 2005 +0000 Added universal event class for custom usage with variable size. New structure DFBUniversalEvent has a 'clazz' and a 'size' member. The clazz is always DFEC_UNIVERSAL and the size is at least sizeof(DFBUniversalEvent). There are no other members, but any amount of additional data may follow according to the specified size. Best usage would be to derive from the struct. The pipe mode currently doesn't support universal events, because the event size (write()/read() block size) is fixed to sizeof(DFBEvent). commit 2b2a778a7691fc737baea0b6974257f84b1f5f69 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 29 09:19:05 2005 +0000 Added direct_thread_set_name() for setting the name of threads that haven't been created by direct_thread_create(). Use direct_thread_set_name() in direct_initialize() setting "Main Thread" if direct_thread_self_name() returns NULL. commit 9f07b205a7d81fb702fdd1a8431331a0ebcf13d8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 29 09:17:06 2005 +0000 Added duff's device for 8 bit color keying. commit 23d409e357ecc5ebe63ed3760cbc5aa81ab831eb Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 29 09:15:52 2005 +0000 Added RGB332 and LUT8 support to dfb_surface_dump(). commit 91492126ab383d76f9724199803207bd1d89fb8e Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 29 09:15:03 2005 +0000 Added 'const' to DFBPaletteDescription\'s entries. commit 73255756d8d06eb95308ee9b67c5897f18ff3c57 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Aug 27 15:08:04 2005 +0000 Added low level logging abstraction. direct_log_create() is used to setup logging for the following types: - DLT_STDERR writes all messages to stderr - DLT_FILE writes all messages to a file - DLT_UDP sends all messages via UDP to a specific host and port direct_log_destroy() is obvious :) direct_log_printf() is a printf fashioned funtion to write a message. direct_log_set_default() sets the default log that is used when no valid log is passed to direct_log_printf(), as done by all legacy code for now. If the default is also invalid, stderr is used. Added runtime options "log-file = <name>" and "log-udp = <host>:<port>" for configuring the default log. On the receiver side start e.g.: "netcat -l -p <port> -u" commit 8ea8a38285bd3b9ede95baeb60cbc74db6a2178f Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Aug 27 14:07:48 2005 +0000 Added missing include. commit 67536932c229b35ae28c602acd335550a8987bb6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Aug 27 14:05:03 2005 +0000 Fixed a warning. commit 8ca22f8333488c6a8c38b8b387dca245942d67d0 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Aug 26 10:02:30 2005 +0000 Take into consideration DSDRAW_DST_COLORKEY and DSDRAW_XOR when drawing strings. commit 440a3261fc1054fa01f1861c53ac8aba7d1fc52a Author: Claudio Ciccani <klan@directfb.org> Date: Fri Aug 26 10:00:58 2005 +0000 DSBLIT_XOR. commit 1bceb7e2417646a1bfe720bdfa261371e3dc67d9 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Aug 26 09:59:31 2005 +0000 Added DSBLIT_XOR. commit 1bc51fd394b3d90ebcb73245ac647ec15a827e8a Author: Claudio Ciccani <klan@directfb.org> Date: Wed Aug 24 07:38:28 2005 +0000 Fixed case statements duplication when AFMT_S24 or AFMT_S32 are not defined in <sys/soundcard.h>. commit 8ef2c046d6cadfa7acedf4009e73acefd4cf8d2e Author: Claudio Ciccani <klan@directfb.org> Date: Tue Aug 23 15:26:47 2005 +0000 - FillTriangle,DrawRectangle,DrawLine (with Xor and Alpha Blend) on YUY2/UYVY/YV12/I420. - DrawString (A8 fonts) on YUY2/UYVY/YV12/I420. - Blit with Source Colorkey on YV12/I420. commit e0dc4ad4951668639c47e0415c7cdd64b62e6787 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Aug 23 15:25:20 2005 +0000 dfb_color_to_pixel() returns (y@0, cb@8, cr@16) for I420/YV12. commit 83f515d8a2441416f9083bb5e4e75bfe42e1311c Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 22 21:08:11 2005 +0000 Added fusion_object_get() that gets a pool and an object id and returns the appropriate object with a local reference added to it. If the object is not found DFB_IDNOTFOUND is returned, or any abnormal other error from locking or referencing. Added FusionObjectID to replace plain int usage. Added D_MAGIC_* to FusionObjectPool. Added more D_MAGIC_ASSERT for FusionObject. Simplified fusion_object_pool_enum() using direct_list_foreach(). commit 51677e66aeddb7258a5c49c484ff0aa0e860b7ff Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 18 13:20:00 2005 +0000 Fixed build_clipped_rectangle_outlines() to handle special cases where width and/or height is/are one or two. commit cc504446887022abd12e104d00b4954c9c3f1060 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 18 11:18:11 2005 +0000 Added dfb_region_region_union(). commit 15739b12f389e38456ef802adce072111b6b7e99 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 18 11:13:43 2005 +0000 Fixed a bug in direct_list_remove()! If the last item is removed while other items exist, the first item's "prev" pointer was not updated (pointing to the last element). Cast to (typeof(elem)) instead of (void*), to make C++ compiler happy. commit ce858d75ccfbc9ad837faaa57f966fb98499e770 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Aug 15 13:40:54 2005 +0000 Lot of improvements and new features. Engine: - Fixed all cache related problems. - No longer _exit if a timeout occurs, try a reset instead. Acceleration: - Added support for the following formats: LUT8, ALUT44, ARGB2554, AiRGB. - Speed up font rendering by bypassing the TCL. Overlay: - Fixed support for very high resolutions (dotclock >= 175Mhz). Switched to version 0.2. commit 15eca8fd93a57335fc624f96e9897f64cf652e1c Author: Claudio Ciccani <klan@directfb.org> Date: Fri Aug 12 11:03:15 2005 +0000 Do not try to load the driver if the accelerator is -1. commit fbf15dbbba6398850b54112ace094d019351a44a Author: Claudio Ciccani <klan@directfb.org> Date: Fri Aug 12 11:00:56 2005 +0000 system_get_accelerator() returns -1 if mmio memory lenght is 0. commit 5c54a533eb0af58a23ea7e2cd3dac77c1b714828 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Aug 11 06:43:30 2005 +0000 Fixed a typo. commit 8caa3202616c1bb7ff9f497d4a99d3225717ab1f Author: Claudio Ciccani <klan@directfb.org> Date: Thu Aug 11 06:42:52 2005 +0000 Missing copyright. commit a373338efcc3a3cc295e549891b0df2018e5642b Author: Claudio Ciccani <klan@directfb.org> Date: Tue Aug 9 13:15:42 2005 +0000 Fixed bug due to negative coordinates when the overlay goes outside the top/left border of the screen. commit 7c87cb4ce653263bcd8417cd649303abf820c696 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Aug 9 08:17:28 2005 +0000 - Re-enabled the CCF_READSYSMEM flag on NV5/NV10 only for TextureTriangles(). - Made deinterlacing work properly with TextureTriangles(). - Pay attention to the DSCAPS_SEPARATED flag. commit e65a7482c140d3075755cdbc5456d06a3fef1365 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Aug 8 13:04:24 2005 +0000 Fixed planar source cropping. commit a8b9045c367c8f4341a142f1fd47a7523a75b9f5 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Aug 8 13:03:54 2005 +0000 Pay attention to the DSCAPS_SEPARATED flag. commit 0283d7888a6468b2aa51a6fa3dbb11726ebe8f5c Author: Claudio Ciccani <klan@directfb.org> Date: Sun Aug 7 10:27:24 2005 +0000 StretchBlit() improvements: When the suppplied blittingflags require to read from the destination, source is scaled to the accumulator on start, otherwise scaling happens when the pixels in the accumulator are written to the destination. This way StretchBlit() is faster if source has not to be blended togheter with the destination. commit 61d13145259257f408fe12b82e755416518bfbcb Author: Claudio Ciccani <klan@directfb.org> Date: Sat Aug 6 08:26:17 2005 +0000 Allow YV12/I420 deinterlacing. commit 55a9c0172952261608a133571e7657a672ef057d Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 4 20:45:28 2005 +0000 Added -D_GNU_SOURCE as this script currently covers libdirect, too. commit 34317d738cf3573ce0668050ad45ab962b3ee1c4 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Aug 3 10:56:59 2005 +0000 Option 'pci-id' renamed 'busid' (however 'pci-id' still works). commit 1698125f7e2452378385a0c09da77150a76a8931 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Aug 3 10:01:18 2005 +0000 If JFIF or Exif header detection failed, try detecting by filename extension. commit 6d85625c8956224f67ac5afc7b17b5e2b8a68206 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Aug 3 09:21:41 2005 +0000 Include <core/accelerators.h>. commit 07d5f258209578ac1e0042ca66fee68758a7786e Author: Claudio Ciccani <klan@directfb.org> Date: Wed Aug 3 09:14:56 2005 +0000 Added a list of supported accelerators. This avoid relaying on <linux/fb.h>, that could be a very old header, and gives the possibility to add accelerators for other systems. commit 0255ed695e5dbbe6c315cd2e2d67b6dce38491e5 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Aug 2 20:54:46 2005 +0000 If there is not enough video memory for textures buffer, do not fail returning DFB_NOVIDEOMEMORY but simply disabable 3D acceleration. commit d9fd90296c25d0bb23e1130751748faaa3cf65e4 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Aug 2 17:00:01 2005 +0000 Deinterlacing. commit f17881a6b2aa4a136b1bfaa8238a248a491db8bb Author: Claudio Ciccani <klan@directfb.org> Date: Tue Aug 2 14:06:08 2005 +0000 Deinterlacing. commit 564c13062a64164957b7b42c213b2650b228d2d5 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Aug 2 09:04:15 2005 +0000 Replaced dfb_screens_register_primary() by dfb_screens_hook_primary(). commit e497b8db39401cb53eea365f06ebf122733dad9d Author: Claudio Ciccani <klan@directfb.org> Date: Tue Aug 2 08:11:53 2005 +0000 Dacc_xor() at 64bit. commit 6664180f2be3869a20528a4101d70c3bca14a13e Author: Claudio Ciccani <klan@directfb.org> Date: Mon Aug 1 07:39:23 2005 +0000 Added some functions optimized for 64bit architectures. commit 1a4c9880cdd6e49c0e9d554c57e91ea6f50977f4 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Aug 1 06:06:01 2005 +0000 Forgot a defined(). commit e55c57064b29ebfa1869b013d89928b85330eda2 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jul 31 18:07:59 2005 +0000 Optimizations on generic64_memcpy(). commit 81f6bc57b18a62d5202a42f497aff9531e59d959 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jul 31 14:42:51 2005 +0000 Cast pointers to long instead of __u32. commit 9267d12ac866903e7eef86fb8448a249dc62dc7b Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jul 31 11:04:41 2005 +0000 Fixed missing debugging symbols on AMD64. commit aeb034625cb7769c453ede8a3ad4622c1b35ba69 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jul 31 09:50:30 2005 +0000 Check for size of long. commit 548fb9c512a6c9cad75bac6d3195304e8b259557 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jul 31 09:49:40 2005 +0000 Enable 64bit multiplications on 64bit machines by default. commit 70aa8a73b99722f7d0cd5d8c1be89dbafac29ec6 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jul 31 09:34:22 2005 +0000 MMX and SSE support on AMD64. commit e98ffa98f573af7acd1ec242e695f1f6a5fd686f Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jul 31 09:31:53 2005 +0000 Ported to AMD64. commit 48f53c73335d7889d1290d13fb56972fc8d9655b Author: Claudio Ciccani <klan@directfb.org> Date: Sat Jul 30 16:53:46 2005 +0000 Check if we are compiling for AMD64. commit ba704c43aa62f6c7a25e35da3cf4d37fdba59f2c Author: Claudio Ciccani <klan@directfb.org> Date: Sat Jul 30 16:52:32 2005 +0000 Enable X86 memcpy()s on AMD64. Added a generic memcpy() for 64bit Architectures. commit 50ffd957cba94eae6b88f88189653e64360eba7e Author: Claudio Ciccani <klan@directfb.org> Date: Sat Jul 30 09:13:49 2005 +0000 dfb_screens_hook_primary() instead of dfb_screen_register_primary(). commit e638f9948b39ac33fc8ba26a4745c26c84ee9c29 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Jul 30 09:11:55 2005 +0000 Added dfb_screens_hook_primary(). commit 4a16d536c24c9952360ec4ca6d10558111860a33 Author: Andreas Hundt <andi@directfb.org> Date: Thu Jul 28 12:30:44 2005 +0000 call $(AR) not ar. Fixes nothing yet since AR is always ar, for some strange reason. commit 153900c7f98b453c1d2c9b7e010914137d53aa03 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jul 27 14:09:41 2005 +0000 Use dfb_system_get_deviceid() instead of accessing FBDev system's private data. commit c77022f1a3e26d008ac3a067fff46316a3537409 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jul 27 14:07:04 2005 +0000 Added dfb_system_get_busid() and dfb_system_get_deviceid(). commit bd2930fc462e706c5851e830319f206a3a6854d1 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jul 27 14:05:09 2005 +0000 Call pthread_mutexattr_settype( &attr, PTHREAD_MUTEX_RECURSIVE ) when __USE_UNIX98 is defined (PTHREAD_MUTEX_RECURSIVE is not a definition in LinuxThreads). commit ac59b8b44b21b9f17d39bb0c5e725d0c8307ff4d Author: Andreas Hundt <andi@directfb.org> Date: Tue Jul 26 21:30:11 2005 +0000 On KallistiOS: - do not call killpg() - do not include dlfcn.h commit bbb4a2e18a6899fa92064a28bb577a5ed784516b Author: Andreas Hundt <andi@directfb.org> Date: Tue Jul 26 21:07:08 2005 +0000 - only call pthread_mutexattr_settype() when PTHREAD_MUTEX_RECURSIVE is defin is defined commit feb728448e1fae2597921497a9f762f7eacf9380 Author: Andreas Hundt <andi@directfb.org> Date: Tue Jul 26 20:58:50 2005 +0000 when compiling for KallistiOS define __* types another way. commit b80dab075edcbbf07734c9fdf7fe67845afa7878 Author: Andreas Hundt <andi@directfb.org> Date: Tue Jul 26 16:47:15 2005 +0000 - dont check for libpthread when compiling for KallistiOS commit 07ec69ba8b2138e0cbc7bc224eafd87b6ed821ef Author: Claudio Ciccani <klan@directfb.org> Date: Tue Jul 26 16:20:08 2005 +0000 Use AFMT_QUERY if AFMT_S24_* and AFMT_S32_* are not defined in sys/soundcard.h. commit 2d0fd8679712ef7725205f0d21f7a5cad842f800 Author: Andreas Hundt <andi@directfb.org> Date: Tue Jul 26 15:19:39 2005 +0000 some more BSD compatibility for linking statically commit e5736dc9c4a5c494790e009bc4e4289329a4b089 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 26 13:49:12 2005 +0000 Added ARGB4444 support, untested. commit c7ff8b2a5bad2917322bc643d007ecb2de948685 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 24 17:55:06 2005 +0000 Fixed wrong signature of DirectFBInit() and dfb_config_init(). -DirectFBInit( int *argc, char **argv[] ) +DirectFBInit( int *argc, char *(*argv[]) ) commit 5c99371dbd110ce88404346988e19f72809f88a0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 24 17:42:39 2005 +0000 Was missing. commit e8ca623d7526e68517fa5a06b1465fb7f4657d6d Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 24 17:29:52 2005 +0000 Replaced old code by using direct_try_open(). Fixes double negative in error message. commit d88a02e219cc1f076004123a4313f2f0567e4bbf Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 24 17:09:40 2005 +0000 Added translation of - KEY_FASTFORWARD - KEY_SOUND - KEY_QUESTION - KEY_EMAIL - KEY_CANCEL commit 46a7ab8ba61d441aa851fb3d03195e63b9b602ea Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jul 21 21:43:35 2005 +0000 Protect against bogus siginfo_t pointer by checking if it's smaller than 0x100. commit 8fada1177e1daadc52a085490c6f6bcadcfc0834 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jul 21 21:34:03 2005 +0000 New configure option "--with-sysroot=DIR" lets you prepend a path to the runtime library/module paths. commit ddcddb348a919152e81bbd8d67fc198fc415a013 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Jul 19 08:58:30 2005 +0000 Oops, written fbdev->shared->device.model instead of fbdev->shared->device.vendor. commit 87f5fa10efe469cc86d35cc3ca3c3c3e66bf25b0 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Jul 19 08:53:21 2005 +0000 Applied patch by Vadim Catana <vcatana@registru.md> with some modifications due to last changes. commit 69a08d4c0471ce53943864fdf0b57ac66d4348d2 Author: Andreas Hundt <andi@directfb.org> Date: Mon Jul 18 19:07:19 2005 +0000 - BSD compatibility: changed "cp -af" to "cp -pf" commit 5dafc702460aff8b2895763f66ef3ba31e42a497 Author: Andreas Hundt <andi@directfb.org> Date: Mon Jul 18 18:56:00 2005 +0000 - specify path when calling "find", improves BSD compatibility when linking statically commit 1d66c37a83b4d748ae848840ee0d7dbc89fd0be4 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jul 18 16:28:19 2005 +0000 No longer need to link against libsysfs. commit 26ca622aa686781a088facd147ca50ced7dd5fbb Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jul 18 16:27:28 2005 +0000 Use informations stored in FBDevShared to detect chipset architecture. commit e96da2dc220a1b582368d6f74eb13fd2a81d0d67 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jul 18 16:26:21 2005 +0000 Use informations stored in FBDevShared to detect chipset identifier. No longer need to link against libsysfs. commit 4bbf6043c12d660353980d57c04a388961c57e2f Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jul 18 16:24:38 2005 +0000 Added option 'pci-id' to specify the graphics card bus id (unused if sysfs support is enabled). commit 19aed80be4aa696d97ac3a170b05b4b8cacb6811 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jul 18 16:22:57 2005 +0000 The FBDev system is now responsible of retrieving the PCI Bus, Card Vendor and Device identifiers. These informations are stored in the FBDevShared structure. commit b7d88f51038bfee28999acbbd4488837657710a4 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jul 18 09:35:56 2005 +0000 Overlay supports deinterlacing. Enable Gouraud shading for TextureTriangles() by default. Rewritten chipset probe function (faster). commit 66e7126ad6f6b80cc48d2549d9450ff3f6219ab8 Author: Mike Emmel <memmel@directfb.org> Date: Fri Jul 15 17:43:40 2005 +0000 Added vncserver url http://libvncserver.sourceforge.net to config warning commit 4b7b953d5643b18787aa6de11b6e15abf9f841ac Author: Mike Emmel <memmel@directfb.org> Date: Fri Jul 15 17:33:10 2005 +0000 Initial checkin of the vnc backend please let me know asap if I've broken anything. Known bugs: The cursor support is munged commit 42ecca08e6e709f0b7224c451af0a2a926d133aa Author: Claudio Ciccani <klan@directfb.org> Date: Fri Jul 15 13:30:19 2005 +0000 When a layer is re-configured for deinterlaing, the corresponding IDirectFBSurface's capabilities aren't updated to include DSCAPS_INTERLACED flag; therefore test for DSCAPS_INTERLACED flag on the wrapped CoreSurface's capabilities in SetField(). commit 2c6f8ba4b41a81b0f92ba3dd44de0c20963b0a2e Author: Andreas Oberritter <oberritter@directfb.org> Date: Sun Jul 10 16:26:50 2005 +0000 there's no more need to look for sisfb.h commit 72e427039a3ca1363e5d8d88cdc9eb6ea6ffa3bb Author: Andreas Oberritter <oberritter@directfb.org> Date: Sun Jul 10 16:25:41 2005 +0000 compatibility stuff for newer fb driver versions commit 5f051dfd18bc883ea1b02b0c15c52d48021f1841 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 10 00:11:37 2005 +0000 Fixed another warning. commit 12b84cd92ff27815878ba78b4a4b407fcc13ea60 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 10 00:06:40 2005 +0000 Fixed signedness warning. commit fd89d932c541d6f58071d74f6cec928eb021ce3f Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 8 06:33:44 2005 +0000 Use "signed char" explicitly to fix kerning on PPC, thanks to Uli! commit 17cabd4ad1f69bd63426ae18f3014314b57fd7ae Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jul 2 12:01:46 2005 +0000 ignore generated header commit 79c97c88a61fb68ce12abaebcf0849e5b4169759 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jul 2 11:59:58 2005 +0000 Added small program which can be run to serve as a FusionSound master. I just put that into my DirectFB session startup to ensure that all other FusionSound programs run as a slave and have their resources cleaned up by this dedicated master application. Otherwise, you might leak some shared resources if you abort the other programs (running as a master) abnormally. commit 635c86995f89a39aba0afba572359a21a2f3e66a Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jul 2 11:57:43 2005 +0000 Follow LiTE API changes. commit 9dc3b8ca38aa49ce6ad94a3a4e92ae065f443786 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 1 21:17:05 2005 +0000 Added: #define D_FLAGS_ASSERT(flags,f) D_ASSERT( D_FLAGS_ARE_IN(flags,f) ) static inline int direct_util_align( int value, int alignment ) commit 4e2c8c2c55792002b9f2afffc00e6541b985dd03 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 1 21:15:33 2005 +0000 Fixed direct_try_open() not always honoring error_msg parameter. commit 6504b661f327266106bfb9bfc83da59193eb94a0 Author: Andreas Hundt <andi@directfb.org> Date: Tue Jun 28 13:40:24 2005 +0000 compile fix: struct DFBResult -> static DFBResult. commit 7f7598795da7108740f620263fbda73e4b08feff Author: Claudio Ciccani <klan@directfb.org> Date: Sat Jun 25 14:13:09 2005 +0000 Moved ioctl CDROM_DRIVE_STATUS to the right place. commit 23046169a5e45bbaea6175ee58e0cebd5de1d07f Author: Claudio Ciccani <klan@directfb.org> Date: Sat Jun 25 10:34:15 2005 +0000 Mind about multi-track music providers. commit b914302eb47cc967403a008d243c5cba03d2dd06 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Jun 25 10:33:24 2005 +0000 New CD-DA Music Provider; supported platforms: Linux and FreeBSD. CDDB support is provided by libcddb (http://libcddb.sourceforge.net). commit 47d26939000bd7d7ad245f00dd03ec947a538b4c Author: Claudio Ciccani <klan@directfb.org> Date: Sat Jun 25 10:30:23 2005 +0000 Avoid passing NULL pointers to strcasecmp(). commit 0bb9a3667d12f1546c417a26cb058ced4d247029 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Jun 25 10:29:13 2005 +0000 Open file in non-blocking mode during Probe. commit 1de88c9646f72e2727ed7357dd7cfc8edba855d4 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Jun 25 10:28:19 2005 +0000 Added FusionSoundCheckVersion(), FusionSoundUsageString() and FusionSoundErrorFatal(). commit 1612a12f08391e0ba0544e550b4672eaf77694eb Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 24 09:19:59 2005 +0000 Added "Claudio Ciccani <klan82@cheapnet.it>" to main authors, welcome number five and thanks for your appreciated work :-) commit 09d419466901269a2b2ccc73397fb89dc24d8829 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Jun 24 07:37:15 2005 +0000 Fixed stereo to mono conversion. commit 028efb558139266ca801f493ee0749c93031b028 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Jun 24 07:36:07 2005 +0000 Reduced S16 loss of data during multiplication to 1 bit. commit 2f8bc599d1af4834966bfae20896283ee3dcddb6 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Jun 23 09:35:38 2005 +0000 "dont-catch" is a DirectFB option. commit 91adaa03d63f92e778bc3fba2b7fb56f83bd48ac Author: Claudio Ciccani <klan@directfb.org> Date: Thu Jun 23 09:24:45 2005 +0000 Added myself. commit 070f51fe8f2382725fb2e9bb5cd4c180c4380869 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Jun 23 09:19:18 2005 +0000 Separated IFusionSound module from core library: now the module is built apart and can be disabled. Detached FusionSound versioning from DirectFB. Added support for rc-file (fusionsoundrc) and command-line (--fs:) options. Currently supported options: device, sampleformat, samplerate, channels. Sampleformat, samplerate and channels are used for device configuration and as default values for Streams and Buffers. commit 3b21bd57b109c45c720f25f4e5f9cd6cf1b94de0 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Jun 23 08:53:43 2005 +0000 Return a buffersize large enough for a quarter of second. commit 5149df555c64d9eaff82be596ba3e7215ff13229 Author: Andreas Hundt <andi@directfb.org> Date: Wed Jun 22 21:48:20 2005 +0000 make w key work. it was missing in the translation code commit 3881da71b372c60235dbea50a9e4e6499d1cf421 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jun 22 13:48:26 2005 +0000 Display information about genre. commit 622e5241ef8a713829c473e157647a55bccea991 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jun 22 13:47:38 2005 +0000 Added support for Signed 24 and Signed 32 sample formats. Internal mixing is done converting samples to the range [-1.0 - 1.0]. To do this we use a new type: __fsf (FusionSound Float); this can be a IEEE float or a fixed float (selectable during configuration). Added macros to extract informations from sampleformats (index, bits, bytes, depth, signed). commit 0c90be9806a92dd35618b5af573a2e62e21b7395 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Jun 21 08:48:14 2005 +0000 New MP3 Music Provider based on libmad. Enter version 0.9.23. commit 33563c0648df662628439f4838b1cea157673189 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 20 21:27:38 2005 +0000 Follow lite API change. commit 3d5830470cb937129c910d86646b01a245c8f256 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 20 20:13:58 2005 +0000 Fixed warnings. commit 26add1263a82c1e3afe26214e194a1614e83cd26 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 17 00:20:01 2005 +0000 Fixed mouse motion compression to eliminate massive input lag, e.g. cursor movement. commit 37b2730d7f8eb85afee130cb7e547738da3a8387 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 17 00:10:57 2005 +0000 Commented out locks as they shouldn't be needed, but cause a dead lock. commit 5c9e7b15656acbb8eabe71c6deb84611ea4b09ba Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 16 22:13:43 2005 +0000 Fixed typo. commit 0ec583a0c98d4c54d1b20c2677cbf3349d44eebb Author: Martin Lütken <ml@directfb.org> Date: Thu Jun 16 20:58:36 2005 +0000 Disabled default X11 cursor commit e181bb7b3f76f56fdcff2ce055a756d59b117618 Author: Martin Lütken <ml@directfb.org> Date: Thu Jun 16 20:18:53 2005 +0000 Removed printf(ML: spam commit ebdb54b2406dac2093fb1f56213add6b3f4e57c8 Author: Martin Lütken <ml@directfb.org> Date: Thu Jun 16 19:24:53 2005 +0000 Fix input mask and missing input y-axis in mouse input commit 1b08d287b092e90159a06fcf6c265c5aedc645d3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 14 12:49:53 2005 +0000 Fixed formatting. commit e702230692348ed50c59808040db79f6e558848b Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 14 08:31:11 2005 +0000 Make sure that "dtest" is excluded from static lib. commit e14e1dd7d70a4d7a5da9dd26a92acfb1afbba71a Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 14 01:00:03 2005 +0000 Option "-s" additionally shows the shared memory file size, now. commit d28a12f0512ff8f1a810328262be6a60ef18e20e Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 14 00:59:07 2005 +0000 Put shared memory file size into heap structure for tracking. commit 3924365b5ed08e5b4ec5a3926f22948e678647cb Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 10 18:38:08 2005 +0000 Limit number of weights to 64 in x and y direction for down scaling. Without this limitation down scaling to 1x1 or similar could take minutes on embedded platforms. commit 43b15696735f1836f3572fa6b7d0e5d7c53af5b3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 10 08:23:46 2005 +0000 Rendering A8 font onto A8 should be fixed now. commit 10f1b356a0678fcacbbe4d5b0c189b86307de813 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 8 20:04:43 2005 +0000 Removed Bop_8_Kto_Aop overkill. commit 8a7d402bc0b709e0329da8f90f30dc8160b3616f Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 8 18:26:48 2005 +0000 Use double quotes if header is in same directory. commit 4962621274af4575f4904f9ca814b7bcc5be877a Author: Marcel Siegert <mws@directfb.org> Date: Mon Jun 6 19:51:19 2005 +0000 use c++ style casting; commit 11ab42ed3296a4cd698df888fa2f6817a24421a5 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jun 5 10:33:01 2005 +0000 Rewrite of the nvidia driver. Driver structure: - Follows a common driver template (i.e. Matrox driver); - Added a basic list of registers. Hardware support: - Overlay supports Deinterlacing; - WaitForSync no longer burns the CPU (but actually requires a 2.6 kernel); - Decide texture buffer size according to available video memory (<= 16MB -> 512Kb; 32MB -> 1024Kb; >= 64MB -> 2048Kb). Switch to version 0.5. commit 2c59b963d12aa4f43663c07385f6a73f0a90b14f Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 2 18:27:18 2005 +0000 Started work on the decoration framework. commit 009dc5d39dc6c46118561f351c38089bdb76ab75 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 2 11:00:49 2005 +0000 Applied path from Sylvain Meyer <sylvain.meyer@worldonline.fr>, thank you! Hi, I did a small patch to fix minor issues with i830 gfxdriver. Now the driver can more nicely live with the linux intelfb driver. Now it can be used even when intelfb has accel set to 1, just in configuring in /etc/fb.modes "accel false" to disable console acceleration when DirectFB is working. To work, the last intelfb patch is needed. I just sended it to linux-fbdev mailing list and Andrew Morton and it should be in the next mm series of linux kernels. I also fixed the ovlSetColorAdjustment function and now brightness, contrast and saturation settings are enabled. Regards Sylvain commit 33081a8e6db1e587b54bcde5a6daa961ed726987 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 2 10:37:12 2005 +0000 fixed warnings commit 0c7a6efd8ec219e2996f62b40adbb1bbb648198d Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 2 10:34:08 2005 +0000 Fixed warnings. Changed statement with no effect (comparison) into an assignment. commit f3ae3806a88b6adc71a09952f4f508430e993823 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 2 10:33:17 2005 +0000 Temporarily add "-I/usr/X11R6/include" when checking for "X11/X.h". commit 6d443af1c64d3123d81c8f52e3d4cdea69cf563b Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 1 12:03:49 2005 +0000 Fixed A8 font rendering onto areas that are not black. commit 56d0ada371c14b9f249f447272fd36f4d1055f6d Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jun 1 09:45:27 2005 +0000 Acceleration for YV12/I420: Drawing Functions: FillRectangle Blitting Functions: Blit,StretchBlit,TextureTriangles Drawing Flags: XOR Blitting Flags: BLEND_COLOR_ALPHA commit aec244a4f6cd7352e907a0aa1c5842a95033cc7e Author: Marcel Siegert <mws@directfb.org> Date: Wed Jun 1 00:19:13 2005 +0000 fix wrong template param in copy constructor; more const'ed member functions; fix return type in template copy constructor; ++dfb.h | 9 +++++---- idirectfb.cpp | 12 ++++++------ idirectfb.h | 16 ++++++++-------- idirectfbsurface.cpp | 6 +++--- idirectfbsurface.h | 4 ++-- 5 files changed, 24 insertions(+), 23 deletions(-) commit d31dd0add4e2cf5263bc719e9fd8dbcd7a23d28e Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 31 07:02:18 2005 +0000 Hot fix crash during initialization. commit c2783ae43904e03b5f5f2c7bd29f1121a189c2f5 Author: Andreas Hundt <andi@directfb.org> Date: Mon May 30 22:49:44 2005 +0000 - now RGB16 really works (and ARGB1555) commit 664a475dbe0d0cb449ae871555abfd26697fc78b Author: Andreas Hundt <andi@directfb.org> Date: Mon May 30 21:50:45 2005 +0000 - support for pixelformats other than ARGB commit e75c3d6898eb732d825965d47e79ed4998713d03 Author: Marcel Siegert <mws@directfb.org> Date: Mon May 30 21:36:57 2005 +0000 changed ++DFB class interface from huge #define macro to a template class adapted all clientclasses to be derived; consted some of the idirectfbfont member functions; changed files: ++dfb.h | 155 ++++++++++++++++------------------------------- idirectfb.h | 12 ++- idirectfbdatabuffer.h | 11 ++- idirectfbdisplaylayer.h | 11 ++- idirectfbeventbuffer.h | 11 ++- idirectfbfont.cpp | 16 ++-- idirectfbfont.h | 27 +++++--- idirectfbimageprovider.h | 12 ++- idirectfbinputdevice.h | 12 ++- idirectfbpalette.h | 11 ++- idirectfbscreen.h | 11 ++- idirectfbsurface.h | 12 ++- idirectfbvideoprovider.h | 12 ++- idirectfbwindow.h | 11 ++- 14 files changed, 178 insertions(+), 146 deletions(-) commit a7e2d5564bfc2eea94cb0f8c95098ed03348e7e8 Author: Andreas Hundt <andi@directfb.org> Date: Mon May 30 21:26:37 2005 +0000 - added XInitThreads() call - added README - disable x11 system by default commit f372777c73acd1a562a7def9e6b783527b8edce8 Author: Andreas Hundt <andi@directfb.org> Date: Mon May 30 20:03:20 2005 +0000 added -I/usr/X11R6/include to X11_CFLAGS commit 2980dba3676336d8b2e5da460cbf5f609486c777 Author: Andreas Hundt <andi@directfb.org> Date: Mon May 30 16:55:22 2005 +0000 - fix to make separated input driver work commit 41bcb86a5ce284b8d95ec32cd4215177f3d6659e Author: Andreas Hundt <andi@directfb.org> Date: Mon May 30 14:08:58 2005 +0000 forgot $(X11_DIR) commit 1ce7281f393d260f48669615e7b9b4d077c8301d Author: Andreas Hundt <andi@directfb.org> Date: Mon May 30 13:57:44 2005 +0000 - added X11 system from Martin Luetken (nitram at lutken dot dk), thank you! TODO: add support for non-24bpp modes commit 349ea21353dcb1ddb199f4957ac0c4ff3146296c Author: Claudio Ciccani <klan@directfb.org> Date: Thu May 26 12:30:27 2005 +0000 Added an example about music provider's playback to a buffer. commit 7610d5e0af22b232a5c9c1b156b646fd04069f0d Author: Claudio Ciccani <klan@directfb.org> Date: Wed May 25 09:40:44 2005 +0000 Always flush cache when switching to 2d/3d engine. Disable 0-1 pixel clamp. Set framebuffer location according to rdev->fb_offset. commit 9d3a056ad994a068164b87364fee2341391cfa07 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun May 22 20:57:23 2005 +0000 Pass true to new error_msg parameter of direct_try_open(). commit 759f598fa39811e0f805089886341e88f0c87189 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun May 22 20:56:46 2005 +0000 Added "bool error_msg" parameter to direct_try_open(). Used to suppress the error messages when fusion_init() probes for a new world. commit dd1073dcaea882fcbdd0d696cf738e21aa9f5d75 Author: Claudio Ciccani <klan@directfb.org> Date: Sat May 21 13:51:39 2005 +0000 Forgot to initialize GetBufferDescription() function pointer. commit 1e03734c5b5c10f9b5fea6425320bb14afc1f131 Author: Claudio Ciccani <klan@directfb.org> Date: Fri May 20 16:55:52 2005 +0000 Changed the IFusionSoundMusicProvider interface: - there is support for multi-tracks streams (EnumTracks(),GetTrackID() and GetTrackDescription to query informations about the tracks, SelectTrack() to select a track for playback); - it's possible to play a track rendering it to a buffer using PlayToBuffer() (PlayTo() becomes PlayToStream()); - GetPos() provides end-of-playback notification returning DFB_EOF. commit 7d1a353886b857e9915d6cf355768751af8a8dc0 Author: Claudio Ciccani <klan@directfb.org> Date: Fri May 20 16:48:01 2005 +0000 Added errorcode DFB_EOF. commit b7f034880564490b1c9e8e8cca0c17e3bbd39d1f Author: Claudio Ciccani <klan@directfb.org> Date: Tue May 17 16:58:23 2005 +0000 New Wave/PCM music provider: supports 8, 16, 24, 32 bits PCM data, big and little endian. Added --enable option for Timidity music provider. commit 3c18be79de177ebce94df4938e6d48898a109367 Author: Claudio Ciccani <klan@directfb.org> Date: Tue May 17 16:55:44 2005 +0000 Allocate temporary buffer dinamically. commit 61fd3505622e262051ddebcb275af1e6b0f883d5 Author: Mike Emmel <memmel@directfb.org> Date: Mon May 16 01:44:39 2005 +0000 Changed fake keyboard mapping to actually work the old code was sending codes not unicode chars This is simpler but correct and lite works now so I am going ahead and checking in. commit 180f9c32a6ce33b3647dfefe2f4582e71a1c606c Author: Claudio Ciccani <klan@directfb.org> Date: Sun May 15 13:43:11 2005 +0000 Small optimizations and bugfixes. commit fa3bbf08c1890f971e62d66ac0445071ba61b597 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun May 15 00:27:27 2005 +0000 Some fixes related to touchpads. commit 15f2fdeb69052e5a3d65278e3898e5acfa98c0cd Author: Claudio Ciccani <klan@directfb.org> Date: Sat May 14 11:13:08 2005 +0000 New Ogg/Vorbis music provider. commit b658a4c972b4f817b730e499c7422cc78aefbcc0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 11 09:39:04 2005 +0000 Merged back multi app fixed from i830 driver. Not tested! Compiles at least... commit cb5b1fda6c5c39a01aa1365d9c0aca40e259f95a Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 9 18:29:52 2005 +0000 Use the window stack of new contexts. commit 104772d2d3b422a3e274fa37cf22c686c9c234d2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 9 18:19:49 2005 +0000 It's allowed to create and use windows in exclusive mode, showing the own windows only, of course. Changed EnableCursor() to be allowed in exclusive mode, too. commit d65695f814a21eeba45eb64e8fa0ff028091f33d Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 6 11:04:49 2005 +0000 test commit 732497b3359f0dae5731c7ccfc8db2787bfd0a26 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 6 11:02:22 2005 +0000 test commit f89763d7dd06fb39b8fb6a8ae0600c0a8eb23c12 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 5 11:18:42 2005 +0000 Try old style device names, too. commit 5e6750dce07d521e78c5113bc3e10bffcaa36c07 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 5 11:17:08 2005 +0000 Fixed multi application support, but it only works with root privileges so far. commit 78f1268876451d527107e987f9652841b793bffe Author: Andreas Hundt <andi@directfb.org> Date: Thu May 5 10:09:29 2005 +0000 do not build i830 and savage driver if sys/io.h is not available commit b0f8fffd3b3d8b830fc85c49df6e1c65e6bbff05 Author: Claudio Ciccani <klan@directfb.org> Date: Wed May 4 16:16:04 2005 +0000 Improved Dacc_YCbCr_to_RGB_MMX. Cosmetics. commit 8a2d5984b2cb204035b7d15ad3192011aef9f2ab Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 3 06:55:10 2005 +0000 small fix commit b43af50859f73e181393d470679bf5cf0d4ab795 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 3 06:48:33 2005 +0000 Added options "--system=" and "--wm=". Enhanced help text. commit f2d3d6d7dfb011c58dc6dc2c39b35c5d2025e411 Author: Marcel Siegert <mws@directfb.org> Date: Mon May 2 19:47:34 2005 +0000 added 2 special keys for dm 500 remote-control; commit 5af316dd5e494fe50d7529cb7cb8a25f77bd3431 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Apr 30 14:17:22 2005 +0000 Use tables generated by yuvtbl-gen for YCbCr<->RGB conversion (essential for colorkeying). commit efe1c9d3639d97791087c12564ea4ad09358690e Author: Claudio Ciccani <klan@directfb.org> Date: Sat Apr 30 14:14:40 2005 +0000 Completed support for YUV422: apart from Colorization, all blitting/drawing flags are supported and we can convert YUY2<->UYVY. RGB->YCbCr is supported, too. commit b35609b62a21ad8f5470f34de23688b3578ace27 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Apr 25 09:09:08 2005 +0000 Commented out usage of DST_PREMUTIPLY and DEMULTIPLY for now. commit 8d06837618e40a8bf3828db72f3d23d9a73c0e11 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Apr 22 15:34:30 2005 +0000 Fixed YUV422 clipping and blitting coordinates. Simple blits with src colorkey. commit 641cff3727a03c0b8aa21079861374d3a04bee40 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Apr 20 09:18:19 2005 +0000 Fixed a bug in dfb_window_set_opaque (config.opaque.y1 instead of config.opaque.y2). SetOpaqueRegion works again now. commit 065afbf721c52b45ea536915af6c0fab05635540 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Apr 19 17:45:16 2005 +0000 Fixed 2d<->3d engine switching. commit 22955115b0b1be536020b5b0ab45078bcde34424 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Apr 12 14:18:59 2005 +0000 Commented out checks that avoided hw state updates also when they're needed. commit 852f0ca9dbbf988c2e9c7d1fe40e3b32560aa8b4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Apr 12 14:05:16 2005 +0000 Use iopl(3) and check the return result before doing port IO. FIXME: Check out how setting via MMIO works. commit 3b1dd3accd70bb2c430e4f7505a86f7b176dddf0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Apr 12 13:45:17 2005 +0000 Removed opacity from layer context, using opacity within region config only, fixes missing updates. commit da974b0cb430b5141c414e21add1b119d8a72bd5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Apr 12 13:39:16 2005 +0000 Show max. axis and button if appropriate. linux_input currently reports wrong values (num-1 instead of the highest one). commit bb4e9d0377ef3eabbbf46ae22f232b8275b42e14 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Apr 12 13:17:37 2005 +0000 Modify surface's capabalities according to layer options after clearing them (not before!). commit 241d650b3f13f7bc58765feb675e98faec1ec3ec Author: Claudio Ciccani <klan@directfb.org> Date: Sat Apr 9 09:42:58 2005 +0000 DLOP_OPACITY. commit 19d6e2152b49657c045ad9e5b2a671a698c5c0e2 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Apr 7 13:10:45 2005 +0000 Sleep while waiting for vertical retrace. commit 97efc5f68495a30da5b8321dc4b9d94b7c5a72a7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 7 07:09:30 2005 +0000 Added DFBAccelerationMask to directfb_strings.h. commit f0de4f581629674756c12ee4c78c4b57e04dd063 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 7 06:33:38 2005 +0000 Added DFBSurfaceDrawingFlags to directfb_strings.h. commit 67890d66a5266ea58787a0df069164a8610b30de Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Apr 6 21:39:18 2005 +0000 Replaced driver vendor "convergence integrated media GmbH" by "directfb.org". commit 7b94e09d30b37662b670937e2235b9b7489680a8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Apr 6 21:01:41 2005 +0000 GetCardCapabilities() -> GetDeviceDescription() commit 30ddbe9d6368a95aa6dd91f2cdcb5571d9fa5574 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Apr 6 20:52:35 2005 +0000 Replaced IDirectFB::GetCardCapabilities() by GetDeviceDescription() and DFBCardCapabilities by DFBGraphicsDeviceDescription which contains additional information like device and driver name, version etc. commit 41ed91edb7afeb274d679f120820e589829f0d37 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Apr 6 18:23:48 2005 +0000 Removed a pre-0.9.0 artifact: CardResult. commit 2563d559165dd9dccbe49e7264e06315a7054ea4 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Apr 6 17:50:39 2005 +0000 Added support for ARGB1555,RGB16,RGB32 and ARGB. commit 3ce4b48b4d6dcb259eace2372ce6783646261bb7 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Apr 6 12:35:50 2005 +0000 ARGB4444 supported as destination format. DSBLIT_SRC_PREMULTCOLOR. Fiexd overlay coordinates for RV250 and newer (offset x by 8). commit 6b7838034a93668e8fe83e1a40f72ad7189e3f33 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Apr 6 05:33:35 2005 +0000 D_ARRAY_SIZE() is a signed int now (for simplicity). commit 18715d24665697ba1cdf69ba8566b6200830d229 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Apr 5 17:24:56 2005 +0000 Dropped down RS200/RS250 chipsets (R100 based). Added RS300/RS350. commit a2afb7f3712abfe799389641c9e37db83ed34f02 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Apr 5 10:37:08 2005 +0000 Still on destination colorkey: green and blue were inverted. commit f5c6c9c41902c93c6b8499aa18cbf31a5cccd393 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Apr 5 10:03:28 2005 +0000 Fixed destination colorkey calculation. commit a7d313bc62f7c4cbc32c40d8bcfc7711ef2ff7d9 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Apr 5 08:56:35 2005 +0000 Removed DLCAPS_SRC_COLORKEY and DLCAPS_DEINTERLACING, they were tests. commit 3e408bd2ba0b41f377c4aca6b3a9357fb03876e8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Apr 5 08:29:33 2005 +0000 Fixed minor typo (replaced "," by ";" in for statement). commit 880393adf42681de7c1a2837396f84c2c5eb78d9 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Apr 4 20:30:49 2005 +0000 New driver for ATI Radeon R200 based cards. Accelerates FillRectangle,FillTriangle,DrawRectangle,DrawLine, Blit,StretchBlit,TextureTriangles. Supported Drawing Flags: Blend, Xor. Supported Blitting Flags: Alphablend, Coloralpha, Colorize. Supported Destination Formats: A8, RGB332, ARGB1555, RGB16, RGB32, ARGB, YUY2, UYVY. Supported Source Formats: A8, RGB332, ARGB4444, ARGB1555, RGB16, RGB32, ARGB, YUY2, UYVY. Overlay supports YUY2/UYVY/YV12/I420 formats, color adjustments and DST_COLORKEY. commit a821c072642d5e859140a6550761eb73f68b60f8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Apr 2 21:22:11 2005 +0000 If the font format is ARGB, use premultiplied font surfaces. Extracted common font state code into setup_font_state(). commit bc1a3eb661a1db8ca9efea45996bf35eb75538e0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 1 07:07:10 2005 +0000 Use DECALDIS for A8 with colorizing though. commit 5d4f5409ce683ef88fafe25b3a159c11735fff77 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 1 07:00:42 2005 +0000 Implemented DSBLIT_SRC_PREMULTCOLOR using the Color ALU. If it's already used for colorizing, simply modulate the color values with the alpha, otherwise overwrite them. Set DECALDIS if and only if TMODULATE is NOT set. commit 7a4f301c3be38cb9c512e8c63477b2f21a12fe68 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 31 21:24:36 2005 +0000 If the destination has premultiplied alpha do real Porter/Duff SRC_OVER composition for glyphs. commit 6fcbacbae9e210f2ae294b73aaba7b1cd485b430 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 31 21:10:30 2005 +0000 Changed Bop_a8_set_alphapixel_Aop_argb() to be a fast path for real SRC_OVER DrawString() that uses DSBLIT_SRC_PREMULTIPLY and DSBLIT_BLEND_ALPHACHANNEL with SrcBlend = ONE and DstBlend = INVSRCALPHA. Other formats will follow. Fixed DSDRAW_SRC_PREMULTIPLY if used used without blending. Implemented DSBLIT_SRC_PREMULTCOLOR. Added optimization for drawing blended with Src = ONE, Dst = ZERO. commit afce0acbceaeb08afdb8deb313b6050a489e8884 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 31 20:53:11 2005 +0000 s/0/DSCAPS_NONE/ commit 8fce05739333086d0300c81733f51234c3ffa68c Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 31 14:05:43 2005 +0000 Take over DSCAPS_PREMULTIPLIED from the configuration. commit 25dde4b7ecd26d7268184a3a3de1c60a58211cbb Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 31 14:04:22 2005 +0000 Use DLCONF_SURFACE_CAPS if DSCAPS_PREMULTIPLIED is requested for a fullscreen primary. commit 5981ec02e12d608029257d95c1d13cc22f76830b Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 31 13:24:37 2005 +0000 Implement window opacity (Ac) for premultiplied windows by using DSBLIT_SRC_PREMULTCOLOR. commit 349072fb98934ce246f7624b6a45b28cf439c4b7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 31 13:21:52 2005 +0000 Added DSBLIT_SRC_PREMULTCOLOR which modulates the source color with the color alpha value only. commit a9ea5dacf7a8a1f443e80fbf30b4e941bcdef4f0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 31 08:58:31 2005 +0000 Changed an assertion in _fusion_reactor_process_message() to an assumption for now. commit c1dde73d573555705119fd170174dc583b232e20 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 31 08:53:56 2005 +0000 Added D_MAGIC_ASSUME. commit 3742de423610c8c436d6904db29ac3c79b401648 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 31 08:26:52 2005 +0000 Added notes about the coefficient 'Ac' not always working properly, yet. commit 24178e5190498d0e1fc89894623a90af400a1fb3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 31 07:45:42 2005 +0000 Support premultiplied cursor shapes. commit 07c2da34296a12adc33fe89d5f20348487534579 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 31 07:43:13 2005 +0000 Show 'premultiplied' surface capability. commit 08b853e5cec53d1081702cdf879be8d976f65c8b Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 30 16:31:47 2005 +0000 Fixed recent 24bit fix. Maybe the patch applied at the wrong offset? commit 5cc35122fda7bccfb294948ecc8ce308254c1ae3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 30 15:56:24 2005 +0000 reverted (wrong file commited) commit a06091abaae11be3cf935aabc1a2a89d2859c808 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 30 15:54:45 2005 +0000 Premultiply image data when loading into premultiplied alpha surfaces. commit 9434edc4676c577286f2cfa105c96b78bd49da60 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 30 12:39:16 2005 +0000 Handle (non)premultiplied window and layer surfaces. Always use compliant Porter/Duff SRC_OVER. Different compositing methods are used depending on the destination format. DESTINATION WITH ALPHA /* Cd = destination color (non-premultiplied) Ad = destination alpha Cs = source color (non-premultiplied) As = source alpha Ac = color alpha cd = Cd * Ad (premultiply destination) cs = Cs * As (premultiply source) The full equation to calculate resulting color and alpha (premultiplied): cx = cd * (1-As*Ac) + cs * Ac ax = Ad * (1-As*Ac) + As * Ac */ dfb_state_set_src_blend( state, DSBF_ONE ); /* Need to premultiply source? */ if (! (window->surface->caps & DSCAPS_PREMULTIPLIED)) . flags |= DSBLIT_SRC_PREMULTIPLY; /* Need to premultiply/demultiply destination? */ if (! (state->destination->caps & DSCAPS_PREMULTIPLIED)) . flags |= DSBLIT_DST_PREMULTIPLY | DSBLIT_DEMULTIPLY; DESTINATION WITHOUT ALPHA /* We can avoid DSBLIT_SRC_PREMULTIPLY for destinations without an alpha channel by using another blending function, which is more likely that it's accelerated than premultiplication at this point in time. This way the resulting alpha (ax) doesn't comply with SRC_OVER, but as the destination doesn't have an alpha channel it's no problem. As the destination's alpha value is always 1.0 there's no need for premultiplication. The resulting alpha value will also be 1.0 without exceptions, therefore no need for demultiplication. cx = Cd * (1-As*Ac) + Cs * As*Ac (still same effect as above) ax = Ad * (1-As*Ac) + As * As*Ac (wrong, but discarded anyways) */ if (window->surface->caps & DSCAPS_PREMULTIPLIED) . dfb_state_set_src_blend( state, DSBF_ONE ); else . dfb_state_set_src_blend( state, DSBF_SRCALPHA ); commit 3ae97148f35c2c7b1b17227e4de5a779cfa96931 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 29 11:11:23 2005 +0000 Added dfb_gfxcard_invalidate_state() which sets the state pointer to NULL and therefore forces a full SetState() before the next operation is executed. commit 172da343256298842822cf5271e96712728e1ef2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 29 10:42:16 2005 +0000 Fixed plane multiplier of NV16. commit 236c0f4c2f7bf60392a757c05d43388fcb22ef85 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 27 19:33:45 2005 +0000 Added DirectFBSurfaceBlittingFlagsNames. commit 02b10369b5a2f980c0b5e6121e1dfbdb32ea13f9 Author: Kent Sandvik <kent@directfb.org> Date: Sat Mar 26 00:28:38 2005 +0000 lite_new_button() API changed. commit 46968ac2455c68e7e66120b1e89d86bf405a0ff6 Author: Kent Sandvik <kent@directfb.org> Date: Fri Mar 25 23:55:49 2005 +0000 lite_new_label() and lite_new_slider() APIs changed. commit ffa896275a3923de3903cb7a724dc16a8cfcf296 Author: Kent Sandvik <kent@directfb.org> Date: Fri Mar 25 01:36:15 2005 +0000 lite_new_window() API changed. commit be961ae4d6d2219c6dd5a9871c7f9e1e122fa0bd Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 22 12:46:10 2005 +0000 Added missing methods. commit 83b29735dff50a759a274f6cb55eb1a8e16c445c Author: Marcel Siegert <mws@directfb.org> Date: Sun Mar 20 20:21:01 2005 +0000 build fix for default wm __u8 p was declared at wrong place; commit 0a4827266e63816c853634b3c1e7873aee7fc4e1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 20 13:08:04 2005 +0000 Applied patch from Mark Salter <msalter@redhat.com> to fix 24bit support on big endian platforms. Thanks! commit a3b664abec79c239ba78a7e1b6c65a2454dd777f Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 20 13:02:51 2005 +0000 Applied patch from Ivan Daniluk <ivan@shvydko.ua>: Hi! Recently I've got strange behavior with MuTouch input. The trouble was in packet reading routine - in some cases(very fast touch-untouch) packet was read in two passes and was interpeted as two events with wrong coordinates. In attached patch I've added filling packet with data until it's size grows to desired packet size. As well, added syncronization check for each packet - it will prevent some weird situations on misconfigured devices. Cheers, -- Ivan Daniluk commit 7f042827957f8ee4f17b768d6a49bc0c868e10ff Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 20 12:59:49 2005 +0000 Maximum number of simultaneously pressed keys increased from 8 to 16. Thanks to Ivan Daniluk <ivan@shvydko.ua>. commit 17894090d21ffcba620c4bf28b334ea56ec37d97 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 20 12:58:34 2005 +0000 Use D_DEBUG_AT. commit 6be13f5c78a9d646642585d78cb85474001a1d2e Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 18 23:33:01 2005 +0000 TODO Move config system to libdirect with more features. Write well documented driver skeletons. Add core cursor component with animated shape support and better integrated changes caused by entering different windows. commit 3b32a47605451693ea0b5b4bd81210de9f954dec Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 18 23:30:31 2005 +0000 Hotfix to show the cursor after entering a window with a cursor that is made invisible by another application. commit aa1a1b12f2171d5bf8c0686a36d5f1f1f00c6b99 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 17 10:28:40 2005 +0000 Allow predefinition of FREETYPE_CFLAGS and FREETYPE_LIBS outside of configure. commit c677d13005edbfcb3036cd7ccbc4a1bb9e87a0d7 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Mar 12 09:49:41 2005 +0000 Added macros to convert ARGB1555,RGB16,RGB32 to ARGB2554,ARGB4444. commit 74e206d92ce827b2475812df98e9a8d6bf9ce89c Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 11 13:26:08 2005 +0000 More SetColor() convenience. commit 0ba7ce64a05cbf8ef5521d928665d8f2232b3d21 Author: Mike Emmel <memmel@directfb.org> Date: Thu Mar 10 17:43:37 2005 +0000 Hide the SDL cursor so DirectFB one shows commit e11edb46b9308e4adfdba94b05114cd10e76c2fd Author: Mike Emmel <memmel@directfb.org> Date: Wed Mar 9 17:57:39 2005 +0000 Added support for fake scancodes this needs to probably move to a more generic layer so it can be used by backends that don't provide scancodes. commit 41d3c4d990b121f04aeecb61d1b7438b5185fcbd Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 9 15:21:55 2005 +0000 Build driver only if FB_ACCEL_I830 is defined in <linux/fb.h>. Probe for FB_ACCEL_I830 in the driver. commit d4c0b18ccae20b075efe11cbcc970588177ec176 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Mar 9 10:38:38 2005 +0000 Made the driver work with the new nvidiafb framebuffer driver. StretchBlit() on A8,LUT8,RGB332 (>= NV20). commit 4a48af0d9fae66b86b47a723b39704f8f735c209 Author: Ville Syrjala <syrjala@directfb.org> Date: Mon Mar 7 21:45:46 2005 +0000 Cosmetics. commit abb420e29a0f063d3ced3c78ed9d1f26f411878f Author: Ville Syrjala <syrjala@directfb.org> Date: Mon Mar 7 21:37:49 2005 +0000 Some mach64_waitfifo() calls were missing. commit df07da0371b6a4ebc2a8cbbb9a6254a6b57d896c Author: Ville Syrjala <syrjala@directfb.org> Date: Mon Mar 7 21:34:15 2005 +0000 Reset HW_DEBUG in EngineReset(). commit 29aba4d3d46d404803741113392387735c1b00a9 Author: Ville Syrjala <syrjala@directfb.org> Date: Mon Mar 7 21:25:23 2005 +0000 Reset otherwise unused registers in SetRegion() when CLRCF_ALL is set instead of InitLayer(). commit 4188f67e31d54c46f03c1759422639302d96a75b Author: Claudio Ciccani <klan@directfb.org> Date: Fri Mar 4 14:25:56 2005 +0000 FillRectangle(),DrawRectangle(),FillTriangle(),DrawLine(),Blit() on LUT8,RGB332 and A8. StretchBlit(),TextureTriangles(),[DrawString()],Alphablend and Colorize from A8 (>= NV10). Alphachannel blend for ARGB1555. commit 02702315c30b0e29a450d1a6c82a9b220a7484d2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 4 13:34:46 2005 +0000 Implemented destination color keying. commit 3ea54379117258e7781f218b7aa965fac848bc3a Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 3 17:33:24 2005 +0000 Fixed AltGr. commit 65aca601076923a8f217664eb486c165dd1372ee Author: Ville Syrjala <syrjala@directfb.org> Date: Thu Mar 3 11:07:00 2005 +0000 Always use alphamode = ALPHACHANNEL. commit b97fd4a79e6948bf83d3f28a23e82e0fa42dea3b Author: Ville Syrjala <syrjala@directfb.org> Date: Wed Mar 2 23:36:17 2005 +0000 Don't care about LOG_MAX_INC. commit 8f0f3e61c75b11a8c012985ebfaf01c8706a5636 Author: Ville Syrjala <syrjala@directfb.org> Date: Wed Mar 2 21:10:49 2005 +0000 Fixed pixelformat=NV21 option. commit fad49386821bc431bc960e8f6571f9cce0b1a35c Author: Ville Syrjala <syrjala@directfb.org> Date: Wed Mar 2 21:02:57 2005 +0000 Fixed inverted YV12 colors. commit 6440e30ed0457e09fdd8d20ac00ff562a5ad0193 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 2 12:45:57 2005 +0000 Keep the original display offset if no mode has been set, e.g. just running "dfbinfo". commit 73b9b419dbe9967fc982008aa38a386c4b12a089 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 2 12:42:16 2005 +0000 When restoring the video mode during shutdown, set xoffset and yoffset to 0. This fixes wrong scroll offset after quitting a DirectFB master started as a normal user from a console. commit fd83d2275755b7b9272f6c390ca73d89faeb0dc5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 2 12:36:24 2005 +0000 Improved description of required permissions to devices etc. commit 8a0bc0d96394f13d0ba78edd3c5d8e3b67419349 Author: Ville Syrjala <syrjala@directfb.org> Date: Tue Mar 1 15:53:42 2005 +0000 Big acceleration code update: - Scaler/3D acceleration now works on older GT chips. Tested on Rage II+ and IIC. - Splitted SetState() to GX/CT/VT and GT variants. - Added scaler source size check. Limits found empirically. - Removed explicit fast fill/block write code. Use the automatic feature found in 3D Rage Pro and newer chips instead. - ARGB4444 support for GT chips. commit b9311e7a29e8ea613bf87d67cacc4459ba5be555 Author: Ville Syrjala <syrjala@directfb.org> Date: Tue Mar 1 15:49:47 2005 +0000 Big overlay code update: - 3D Rage and 264VT(2) apparently have somewhat different overlay/scaler registers. Details were taken from the XFree86 ati driver. - Improved surface size and format limitations. Limits were found empirically and since I don't have every mach64 chip in existence some limits may still be wrong. - Take ECP (scaler/overlay clock) diviver into account in horizontal scaling. - Added support for doublescanned and interlaced display modes. - Check updated flags in SetRegion() and try to update only the necessary registers. - Don't advertise DCAF_BRIGHTNESS and DCAF_SATURATION on older chips. - Added support for DLOP_DEINTERLACING. commit 18fd75329b1eed28a7d48b0fc7f1ffa5936cd9d3 Author: Ville Syrjala <syrjala@directfb.org> Date: Tue Mar 1 15:46:01 2005 +0000 Made LCD register access work on 3D Rage LT. commit 6cc9ffff512c32b84fe3198b26e6d4a86431b8e6 Author: Ville Syrjala <syrjala@directfb.org> Date: Tue Mar 1 15:44:50 2005 +0000 Improved chip type detection. commit 52321fdf56ba0c4c877ef8317b61e707f82fb2b1 Author: Ville Syrjala <syrjala@directfb.org> Date: Tue Mar 1 15:42:55 2005 +0000 Cleaned up register definitions and added all known register names. commit a8024d861d8cfad53c5c933064c14a74204357b6 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Feb 28 10:31:44 2005 +0000 Added support for system to video memory blits. Improved TextureTriangles() performance. NV30 supports StretchBlit(), blit with format conversion, alphablend and colorize. Switch to version 0.4. commit d4e3db4fdcec5ac5098a5766c93e40473a799969 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Feb 28 10:26:14 2005 +0000 Added support for system to video memory blits in hardware. commit b28277c81a61318bea3a9a8f459da2193485b2a2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Feb 28 10:04:41 2005 +0000 Added IDirectFBSurface::DisableAcceleration(). commit fa6d3ad547ea5bf6d69144310b962e0522545eb9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Feb 28 09:47:07 2005 +0000 0.9.23 /o\ commit 54719ef051990718ddb5b002d38a49cf338d6588 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Feb 28 09:40:58 2005 +0000 Added IDirectFBSurface::DisableAcceleration( DFBAccelerationMask mask ): If any function in the mask is set, acceleration will not be used for it. Default is DFXL_NONE. Added D_FLAGS_INVALID to check if a flag set contains invalid flags. commit c77446ff9485e5aec0f0acd15f58a63225420b4b Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Feb 28 09:11:59 2005 +0000 Fixed D_FLAGS_ARE_IN. commit f30c82bc7f789121f7041fe54a0c721edae33d93 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 27 18:43:52 2005 +0000 Added DLCAPS_LEVEL to layer capabilities, thanks to Stefan Lucke <stefan@lucke.in-berlin.de>. commit e630e09d4d858f11cc5ceca7ad595f2b4a415481 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Feb 27 17:49:44 2005 +0000 Updated to linux 2.6.10. commit c4b02a6aa47100c460d9150baf4c18df61c3ff8c Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 27 12:14:03 2005 +0000 Added IDirectFBDisplayLayer::SetScreenRectangle(). Added IDirectFBSurface::FillRectangles(). commit 3cc3d7af1229362fe15be04e9b746fc10ec17c59 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Feb 27 12:13:38 2005 +0000 Updated patch. Fixed NV30 initialization. commit 42327305b6ce45781f50c1de139c455ce237554d Author: Ville Syrjala <syrjala@directfb.org> Date: Sun Feb 27 10:57:01 2005 +0000 Made DIKS_PRINT work. commit a72ec467bf90d01037fd39a2973e130b188aae17 Author: Ville Syrjala <syrjala@directfb.org> Date: Sun Feb 27 10:43:44 2005 +0000 Don't try to use already grabbed devices. commit cf8622f48721926eede84ab347184ff64b8b0049 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 24 15:24:07 2005 +0000 0.9.22 commit 63c261e42a6615c564a27e256b50b64767cd2352 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 24 15:22:09 2005 +0000 Fixed EXTRA_DIST. commit bf9f78dd373dfdafcc84ee9bef93505085adc53f Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 24 14:52:00 2005 +0000 Remove directfb_keynames.h and directfb_strings.h during "make fistclean". commit 8d9e4b13fd5fd33d2de5ace53d4c41857db0e7c3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 24 14:35:30 2005 +0000 Put all builddir includes in front of the srcdir includes. Still need to know if something like EXTRA_NODIST exists. commit da4f0a83a314bafd31de8427f08406281edcd017 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 24 14:13:11 2005 +0000 Use "$(top_srcdir)/include/" prefix to file argument of mknames.sh. Thanks to LUDER Jacques <JACQUES.LUDER@THALES-TRANSPORTSERVICES.COM>. commit e33942c6deb94c490914593d362dda87cbef15e6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 24 14:05:05 2005 +0000 Summarized changes for 0.9.22 and generated new ChangeLog. commit 086837c7119bc3650dcb6b122da593808d853fe8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 24 14:03:44 2005 +0000 Fixed EXTRA_DIST. commit 073536ce77de3eedebd66d52b41346c958f900c1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 23 12:24:15 2005 +0000 Show the correct device in error messages. commit 9b5dad02d6fae560a2e7b9f746a7c9120ae915fc Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 23 10:57:33 2005 +0000 Added option "h3600-device", keeping the default of "/dev/ts". Added option "mut-device" which must be used to enable the driver. commit 1c04008cf36c0689fe4ce15f745c3f6489302e3c Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 23 10:09:20 2005 +0000 Put this around bool enum declaration instead of #ifndef __cplusplus: #if !defined(__cplusplus) && !defined(__bool_true_false_are_defined) commit 3363495835d87a1316d6bbd23a797b5276d8dc28 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 23 10:06:14 2005 +0000 Restore color adjustment when (re)activating a context. commit 33286a9809a0b41bf2c92df8dae4bea6300148c7 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Feb 22 14:13:32 2005 +0000 Swap video buffers in single buffermode, too. commit 583bbb005a3a321a7cea9eece0e804a15503f4f1 Author: Ville Syrjala <syrjala@directfb.org> Date: Tue Feb 22 14:12:49 2005 +0000 Activate the most recent context instead of the primary context when the current context is removed. commit b3d08c2d1edc7138b92b2debabb2dacaee6ee872 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 22 12:57:05 2005 +0000 Added IDirectFBDisplayLayer::SetScreenRectangle(). Rearranged some function pointers in IDirectFBDisplayLayer. commit 2630f8fee3791fe334322ade26f96c1c873843ab Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 22 12:28:39 2005 +0000 Added DSECAPS_BRIGHTNESS, DSECAPS_CONTRAST, DSECAPS_HUE, DSECAPS_SATURATION. Added DSECONF_ADJUSTMENT to DFBScreenEncoderConfigFlags. Added 'DFBColorAdjustment adjustment' to DFBScreenEncoderConfig. commit bc1710e8b12c7ad14e723e81a3cb4a92f5837668 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 22 12:26:05 2005 +0000 Check capabilities in SetScreenLocation(), SetScreenPosition() and SetLevel(). commit c4e04163827fff873a12604f34e3aba023343312 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Feb 22 11:40:34 2005 +0000 Do not round up X coordinate for 422 formats. commit ac35fd91cc772169109e54502c5a333e07876d3c Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 22 11:31:27 2005 +0000 Fixed DLCAPS_ALL. commit 244e11fced4d3996f6b45bf9bb7008fe6fc833a0 Author: Ville Syrjala <syrjala@directfb.org> Date: Tue Feb 22 09:53:08 2005 +0000 YUY2/UYVY FillRectangle(), Blit() and StretchBlit(). commit 87c020414496a5727e484b9055657b1a40b17af7 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Feb 21 21:07:03 2005 +0000 Removed DrawRectangle(),FillTriangle(),DrawLine() for YUY2/UYVY (don't work properly). Added an hack to do StretchBlit() on YUV422 (result is almost acceptable). commit a4a8f50ac360a9666a89d65e0c4614fc3627b30d Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Feb 21 13:36:36 2005 +0000 Implemented hw window resizing. commit 338a7e914999c16669ccfb80b4506dbc6e74acb1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Feb 21 12:06:30 2005 +0000 Propagate error to application if window movement failed. commit 9913d1eb31b8b8562bf544ac8151fce835379174 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Feb 21 11:36:01 2005 +0000 Handle error if dfb_layer_region_set_configuration() failed to move a hw window. commit 9137fccebf1fdb3afb3555c97dd815ad6fef612e Author: Claudio Ciccani <klan@directfb.org> Date: Mon Feb 21 09:10:25 2005 +0000 No longer return a surface stored in system memory for YUY2 and UYVY; return directly the video surface instead commit 12d9d6dbc6e30545bf2b8035b937051694ac1788 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Feb 21 09:08:56 2005 +0000 Added FillRectangle(),DrawRectangle(),FillTriangle(),DrawLine(),Blit() (without effects) for YUY2 and UYVY. commit f510b808528b4184031b69927a87e38c36abf8c0 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Feb 21 09:07:09 2005 +0000 Optimized Bop_yuy2_Sto_Aop() and Bop_uyvy_Sto_Aop(). commit fd0bba498782ae1ff15a4f6d90defe6233a09022 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Feb 21 07:23:30 2005 +0000 Use DirectFB's core abi from its header for now. commit 8b79c24cc4b81dc53e562f81399d328bfa71f9b1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Feb 21 00:22:05 2005 +0000 Added DLCAPS_SCREEN_POSITION and DLCAPS_SCREEN_SIZE. These are set if DLCAPS_SCREEN_LOCATION is set and vice versa. Unscalable layers just have DLCAPS_SCREEN_POSITION. Store normalized and pixel based destination area in a layer context. Added CoreLayerLayoutMode which defines incorporation of configuration based size changes and destination area values. + CLLM_LOCATION, /* Keep normalized area. */ + CLLM_CENTER, /* Center layer after resizing destination area. */ + CLLM_POSITION, /* Keep pixel position, but resize area. */ + CLLM_RECTANGLE /* Keep pixel based area. */ Default for layers with DLCAPS_SCREEN_POSITION only is CENTER, otherwise it's LOCATION. After calling SetScreenPosition(), mode is POSITION. After calling SetScreenLocation(), mode is LOCATION. Moved core abi definition to header file. commit e2b17de96abd7eb75375f10b07774d2653de1d6e Author: Ville Syrjala <syrjala@directfb.org> Date: Fri Feb 18 22:08:39 2005 +0000 - Dropped I420/YV12 support for old chips. - NV12/NV21 Blit() for >= G200. - NV12/NV21 StretchBlit() for >= G400. - Accelerated I420/YV12/NV12/NV21 FillRectangle(). - Separated all planar stuff to their own functions. - Tried to make CheckState() functions a bit better looking. commit 7e91278bbade3d3519ce180c79d36442045bd847 Author: Ville Syrjala <syrjala@directfb.org> Date: Fri Feb 18 15:39:13 2005 +0000 - Defined constants for CRTC2 register values. - Alpha ramp support for CRTC2. - Added support for progressive chroma on CRTC2. - Added support for progressive half-height sub-picture. commit 8791331bdb4d1bfc72caf26f86ea29583ee3c6f6 Author: Ville Syrjala <syrjala@directfb.org> Date: Fri Feb 18 15:25:26 2005 +0000 Cosmetics. commit 5d4d46263f1ecb76f63bda2a27f336284791a2ea Author: Ville Syrjala <syrjala@directfb.org> Date: Fri Feb 18 15:22:33 2005 +0000 Added comment about flicker filter not working. commit f69791a8182d9d74462d8b74fcdb3f571cc83108 Author: Ville Syrjala <syrjala@directfb.org> Date: Fri Feb 18 13:33:56 2005 +0000 init_region_config() forgot to initialize surface_caps. commit 60f105be89e2a28314df9306c96791e9999ecea2 Author: Ville Syrjala <syrjala@directfb.org> Date: Fri Feb 18 06:45:48 2005 +0000 Replaced argb-font and a1-font options with a more flexible font-format option. commit d14a396442960d201c97f50a7aa21c52aff99a8b Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 17 12:59:10 2005 +0000 Added IDirectFBSurface::FillRectangles(). Generated new ChangeLog. commit f9790702e9e429b27f3fe22156253420ee0b7e69 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 17 10:12:48 2005 +0000 Take the largest one, if multiple tmpfs are found! commit d13e35cf9ed77a55139b539f372c0d4711f6b283 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 17 09:35:10 2005 +0000 Follow lite API change. commit 2c6c2130401cca7230e8ea17ed74c677ad14e90f Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 17 09:28:23 2005 +0000 More than two months ago I made this progress with Unique. I wanted to make it usable again before commiting, but I think it's better not to wait any longer ;) These tons of changes are mostly implementation of things described in IDEAS. commit 822d8f25a03e7cb3d7e5df3468e6e873544f3e67 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 17 09:09:27 2005 +0000 Work around compiler error when building with trace support (gcc 3.3.5): generic_mmx.h: In function `Sop_argb_Sto_Dacc_MMX': generic_mmx.h:172: error: can't find a register in class `GENERAL_REGS' while reloading `asm' Added "__attribute__((no_instrument_function))" to that function. IIRC it didn't work with 3.4 or others. commit 779679d4a12bcafc51d8d774ddc57e5056159519 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 17 08:47:48 2005 +0000 Make "graphics-vt" the default. commit fba207430411bfccf9c2b9e6d84c07bc94fa7ff9 Author: Ville Syrjala <syrjala@directfb.org> Date: Thu Feb 17 02:10:04 2005 +0000 dfb_surface_reconfig() was still leaking video memory via depth buffer. commit fabf5c26350b175f9b4754210757db7d7ef11f6a Author: Claudio Ciccani <klan@directfb.org> Date: Wed Feb 16 08:45:31 2005 +0000 Fixed YUV422 handling on big-endian architectures. commit 4ba580227b8457295bd2a704326771727c57fc49 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Feb 15 09:16:03 2005 +0000 Removed macro ARGB_TO_ARGB4444. commit e11271add05790ad7c11c8f64bb0011b9680b17c Author: Claudio Ciccani <klan@directfb.org> Date: Tue Feb 15 09:14:48 2005 +0000 Fixed bug in Sop_yuy2_to_Dacc_MMX and Sop_uyvy_to_Dacc_MMX: forgot to check if counter is zero. commit e324ba18975ad3dcb0742c5dffbed2a6417eedef Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 15 08:32:13 2005 +0000 Still didn't separate dfb/fs core ABI versions, so have another sync. commit b3c480ae69985e965e6a95d9fa6963e143864ada Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 15 08:31:02 2005 +0000 Added DLCAPS_PREMULTIPLIED indicating that a display layer can display surfaces with premultiplied alpha. Added DSCAPS_PREMULTIPLIED indicating that the surface has premultiplied alpha. Added DLCONF_SURFACE_CAPS and field 'surface_caps' to DFBDisplayLayerConfig to specify any combination of the flags: DSCAPS_INTERLACED, DSCAPS_SEPARATED or DSCAPS_PREMULTIPLIED. Added CLRCF_SURFACE_CAPS and field 'surface_caps' to CoreLayerRegionConfig in the display layer driver API. HW Windows created with DWDESC_SURFACE_CAPS and DSCAPS_PREMULTIPLIED in 'desc.surface_caps' are created as premultiplied layer regions. commit 45b4f6a01032b5716f49e3fe3e77e27c5d8cfd4e Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 15 08:21:40 2005 +0000 Implemented BatchBlit() on both sides. commit 10ba719856cf2ffba8e33b14676122e276e1948f Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Feb 14 20:34:25 2005 +0000 Hot fix cross compiling by commenting out rule for building "yuvtbl.h". commit 606d97d421644d744ebe592766bc7fc9d48ff591 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Feb 14 20:18:18 2005 +0000 Changed CbCr to CrCb in the comment of DSPF_NV21. commit 4f2611df876a499532e3d5fdbd37041a60d36b19 Author: Ville Syrjala <syrjala@directfb.org> Date: Mon Feb 14 20:06:18 2005 +0000 Missed a few cases of NV21. commit 20ccaace8712a2eae7f61e69f46af8935c719185 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Feb 14 20:03:14 2005 +0000 Hopefully fix cross compile by keeping yuvtbl.h in CVS and after make clean. commit b30c3a48d2970d21d1c798f8da5cdb53f53b5157 Author: Ville Syrjala <syrjala@directfb.org> Date: Mon Feb 14 19:52:19 2005 +0000 - Added NV12/NV21/NV16 blitting and rectangle filling. - Made YV12<->I420 blitting possible. - Round chroma width and height up. It seems better than rounding down. commit be603c7972416523a77bdce3d9a28af5580745b5 Author: Ville Syrjala <syrjala@directfb.org> Date: Mon Feb 14 15:23:27 2005 +0000 - DSPF_NV21 support. - G200 can handle NV12/NV21. - Check for odd width/height with YUV formats. commit 2d1ccaecf430cbd55fa1ceb310a8119eb23e5684 Author: Ville Syrjala <syrjala@directfb.org> Date: Mon Feb 14 15:12:26 2005 +0000 Added DSPF_NV21 and made dfb_surfacemanager_assure_*() handle NV?? formats. commit 7999c76020e10a1747d027e7ecf94c71229cf6e1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 12 08:35:41 2005 +0000 Once more, sync the core abi. commit c852f05a6ef99c67b940034b0be16d95cea199b6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 12 08:35:07 2005 +0000 Remove legacy. commit e4f427c2034c821aeea17a41e6d0a9b38fcbbf84 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 12 08:32:39 2005 +0000 Remove legacy. commit 25880f9fbd42b5a35ae608cf32a89ebeb7e7f7f8 Author: Ville Syrjala <syrjala@directfb.org> Date: Thu Feb 10 19:34:48 2005 +0000 Disabled DH add-on detection since it doesn't always work. commit 95754ac86ddeb704014757faee9374ce009d12f0 Author: Marcel Siegert <mws@directfb.org> Date: Thu Feb 10 16:39:31 2005 +0000 added dreamboxremote directory added dreamboxremote driver mainly based on dbox2remote adjusted Makefile for inputdrivers commit b0fb1c512362a778516c624092c67acc472a3e10 Author: Marcel Siegert <mws@directfb.org> Date: Thu Feb 10 16:09:08 2005 +0000 added dreamboxremote configure option for inputdrivers commit d3a12ed2cfb48993eacbb92d824da422bcc6979b Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 10 15:38:41 2005 +0000 Added IDirectFBSurface::SetAlphaRamp(). Changed default alpha of Clear() from 0xff to 0x00. commit abdb26e42eb7cd2d42247bf75fec3f34c63554c4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 10 15:37:46 2005 +0000 Moved alpha ramp setting from DFBDisplayLayerConfig to IDirectFBSurface::SetAlphaRamp() for usage with hw windows. commit 19509c3fc437e73e6ba4492be897a04f553e6352 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 10 13:45:47 2005 +0000 More method link substitution (enum and struct entries). commit 863c4efc22599044fc8318f5db1c2ae364f4dbe6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 10 13:39:45 2005 +0000 Fixed parsing of DFBBoolean by allowing "!" in enum value assignment. commit 80da068b80d8bef7b5b12cbb30f7acc5e8079b69 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 10 13:28:31 2005 +0000 Fixed warnings due to unused debug domains depending on architecture. commit 268f4f125b047e4cbdfeebdd6c3a3d945dabc54a Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 10 12:02:58 2005 +0000 Keep a list of all realized (added) regions to remove them during emergency shutdown, e.g. signal received or missing deinit of master app. Converted layer related debug messages to use debug domain "Core/Layers". commit 4531cfb5e595c413e602ff497fd1585388a77898 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 10 12:00:35 2005 +0000 Added i830 driver (overlay support only) for Servision Ltd. (http://www.servision.net/) Note, due to unsolved conflicts regarding ring buffer usage you have to load the "intelfb" module with the parameter "accel=0". commit e4bdc6f4d7c26d2fa61e8bd59268aaf7144dfda0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Feb 7 12:34:20 2005 +0000 Perform additional check (returned phys. fb base) before considering the fb driver to be the one that it's expected to be. commit 3b16b3f4b995de66a06e6c564bdfcd98c476487e Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 4 12:56:59 2005 +0000 Activate DWOP_ALPHACHANNEL for other non indexed alpha formats, too. commit f4aa13bef0350c0a332bf0126d9eee7c24b01990 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 4 12:40:10 2005 +0000 Honor DWCAPS_ALPHACHANNEL for creation of hw window. commit bcd417d65a39dcac3a1403244430a457f102fe66 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 4 10:51:27 2005 +0000 Added yuvtbl.h commit f122362997cd7ccbeca815700e9a24e4ce0ab472 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 4 10:48:20 2005 +0000 Create layer regions for hw windows in single buffered mode, unless explicitly configured using DSCAPS_DOUBLE/TRIPLE or DWCAPS_DOUBLEBUFFER. This is a preliminary solution, because by default a window surface should require a Flip() to make changes visible. commit ee5a5de8a1c74b8ecfb317d59e9e15ae67b8eeae Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 4 09:59:36 2005 +0000 Removed an assumption. commit cd86de7338e6edc894cc5be1bd6ad551e6960b61 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 3 18:38:03 2005 +0000 Replaced spaces by tabs for indentation. commit 39e46bc4c00cf7b93cd91ff7900f42abe85136ca Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 2 14:30:44 2005 +0000 Added yuvtbl-gen.c to EXTRA_DIST. commit 638fbcf88a88c59922e3c6093546d7fcb26ce763 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 2 12:18:29 2005 +0000 Added generic.c's dependency on yuvtbl.h manually. Removed generated file from CVS. commit 759573e7049736d0142b114d2b14506cca7b9994 Author: Andreas Hundt <andi@directfb.org> Date: Wed Jan 26 10:53:13 2005 +0000 - do not dispatch events if unknown or JS_EVENT_INIT are received. Fixes crash upon initialization under some conditions - added missing newline to debug output commit 7e4710cdac97da4bef495d55493cf7e5fbc10727 Author: Ville Syrjala <syrjala@directfb.org> Date: Fri Jan 21 15:53:16 2005 +0000 Fixed DH add-on detection code. commit 152d5c1305d53ec30317af6fd0e54b467d5df2bd Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 19 23:09:50 2005 +0000 Fix reference counting by implementing the constructor "Interface( const Interface &other )". commit 8321604c61073c196f9207b0c973bb1725a1042a Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 19 21:30:40 2005 +0000 Added IDirectFBDisplayLayer::SetScreenPosition(). commit 6bc8e647b685b84459eb05f96927dcbba165ad92 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 19 21:30:14 2005 +0000 Added IDirectFBDisplayLayer::SetScreenPosition( int x, int y ) which sets the position of the layer on the screen specified in pixels. commit 68ea133c15eb297b6d6fc147674ef09886860ec4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 19 21:20:37 2005 +0000 0.9.22 commit 71000ee9a0d4fe04b5bf5c6900abd7e020a04dec Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 19 15:09:18 2005 +0000 Don't choose between reallocation and allocation based on the region's state, but simply check if the region's surface pointer is non NULL. commit cd76e79e2f61088e1dc2d8e06f0a7b3a6609e01a Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 19 15:06:35 2005 +0000 Write luma plane at least when loading images to YV12, I420, NV12 or NV16. commit 8a837ebafad6ad57c263bacba81b09997bb3ecb2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 19 12:15:45 2005 +0000 Fixed a video memory leak in dfb_surface_reconfig() that happened if a surface with multiple buffers is configured to have less, e.g. switching a layer from DLBM_TRIPLE to DLBM_FRONTONLY. commit c11c96362685921426c3b2e029fece42a93df630 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 18 11:57:27 2005 +0000 Reset the destination rectangle upon layer resizing, centered on the screen. commit c642890d0645cb121527e79010a9a8c457dc1a83 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 18 09:38:22 2005 +0000 During reallocation of the layer surface, disable automatic palette switching in the region surface listener. Otherwise the palette got set before the region is configured to indexed format. commit 1b4c1dcb21cd69ae1ddd19ad2be1ba8c470695ff Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 18 09:36:39 2005 +0000 Added debug message to dfb_surface_reformat(). Generate RGB332 palette for LUT8 and RGB121 for ALUT44. commit 65e714480cbbaa0c0583b0375c733afff305adad Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 18 09:35:14 2005 +0000 Added dfb_pixelformat_name(format) to be used for (debug) messages. commit 5821777de0aa4b518cbf469b868220faf3d12911 Author: Ville Syrjala <syrjala@directfb.org> Date: Mon Jan 17 11:07:10 2005 +0000 Fixed a logic bug which allowed CreateSurface() to succeed even though dfb_layer_context_set_configuration() returned an error. commit b450e8b93bdccba17f4fa54bc573af4e1e2f0c89 Author: Ville Syrjala <syrjala@directfb.org> Date: Mon Jan 17 11:01:29 2005 +0000 Cleaned up the way CreateSurface() determines the primary surface pixelformat and size. Previously the behavior varied depending on cooperative level and the force-desktop option. New behavior: 1. DSDESC_{WIDTH,HEIGTH,PIXELFORMAT} 2. SetVideoMode() 3. mode= and pixelformat= options 4. current layer config commit e90fb3897677d60a1dc62477a0defbb0f27bc8c6 Author: Ville Syrjala <syrjala@directfb.org> Date: Sun Jan 16 20:50:51 2005 +0000 Added support for G400 dual head add-on. commit 1c179e6e293f5790714371774e71a0891690a8ce Author: Ville Syrjala <syrjala@directfb.org> Date: Sun Jan 16 20:06:20 2005 +0000 Reset PLNWT. commit 2de23409a80df4261d95b2069ed574a4ec057b0c Author: Ville Syrjala <syrjala@directfb.org> Date: Sun Jan 16 20:00:59 2005 +0000 Added ARGB4444 support. commit 4a01d4cbe48648c6cb702c307c1246525b1c5593 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jan 16 17:19:05 2005 +0000 Propagate horizontal destination coordinate to refine hack. commit d7a6bab2b84089b3084cf0fc247e0351f2ae8a65 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jan 16 16:57:39 2005 +0000 Force alignment to even coordinates if blitting YUY2 or UYVY. commit 7d708e8315f4f33d74b1181f120eefe7cfd3b4de Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jan 16 16:45:37 2005 +0000 Added ugly hack to load images to YUY2 or UYVY surfaces. commit 18d7324d91e92dfc93a31a93352b68b1aa1fc99b Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jan 15 16:28:12 2005 +0000 Set default alpha ramp in default layer configuration. commit 83cd5e1cea60eccbb725cb7f7f67b855c2b5264e Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jan 15 16:24:19 2005 +0000 Added DLCAPS_ALPHA_RAMP: Alpha values for formats with one or two alpha bits can be chosen, i.e. using ARGB1555 or ARGB2554 the user can define the meaning of the two or four possibilities. In short, this feature provides a lookup table for the alpha of these formats. Added "__u8 alpha_ramp[4]" to DFBDisplayLayerConfig along with DLCONF_ALPHA_RAMP in DFBDisplayLayerConfigFlags: Alpha values for 1 or 2 bit lookup. See description of DLCAPS_ALPHA_RAMP. Either all four values or the first and the last one are used, depending on the format. Default values are: 0x00, 0x55, 0xaa, 0xff. commit 8d3f1213a88f54528c879a34ec695d147d3cd196 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 14 21:47:15 2005 +0000 Added missing case for ARGB2554 and ARGB4444 to dfb_color_to_pixel(). commit 1011a73c382ae5b896e83c4ca3edb78587eb0a09 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 14 21:46:45 2005 +0000 Show the layer level if supported. commit 962c3fdaee7d217543a4304a91f355dcdf56c3f0 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Jan 13 21:01:21 2005 +0000 Additional small optimizations. commit 87547d374baeef4bc41ed8d3bfbf66f5d3bb26e3 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Jan 13 14:43:20 2005 +0000 Further optimizations: reset drawing/blitting operation only when operation mode changes. commit 207587aaa1d6f59c91ef5093d52d501197ce9914 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 12 00:14:58 2005 +0000 Forgot to mention in previous commit: Bumped version number to 0.9.22. commit 02f01709a406fcad61a41c505883a30b8ec83710 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 12 00:10:14 2005 +0000 Added ARGB2554 and ARGB4444. Implemented all mandatory software driver snippets for these formats and any conversion or image loading routines. Only the optimized A8 font rendering routine (optional) is unimplemented, i.e. Bop_a8_set_alphapixel_Aop_argb2554/4444. commit 78b8f11d59443b0d0659924f677ad18f8f6ce123 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 11 15:17:02 2005 +0000 Accept NV12 and NV16 in CreateSurface(). commit 6dd10e932f9b3bb17428b88c1affcf1166d5583e Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 10 20:35:35 2005 +0000 Copy definition of TS_EVENT like the ucb1x00 driver does. Please report if this fails with Linux 2.6 header files. commit b2a9c88d27a9f080755ac2fdc9db92bc34ce1c4c Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 10 20:33:06 2005 +0000 Use tab instead of spaces. commit 7e4e970c6ec323b9ed1a18a5e8a23c28afb5f95a Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 10 20:32:38 2005 +0000 Added yuvtbl-gen. commit 8b6b9e3fa587b0465df01caa6642309372a2a88b Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 10 20:32:13 2005 +0000 Fixed typo to avoid rebuilding the sources every time. Added clean-local rule to remove the binary and the header file. commit 21bf368ffcd4d5e358f06bab1603d448b53372c4 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Jan 10 19:07:35 2005 +0000 Fixed StretchBlit clipping. commit 9ef873fbbf3cc6627b34165be982ec6f24e25f4e Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jan 9 18:50:54 2005 +0000 Enable dithering by default. commit 6479022bd613e02cd31cd39795b4efee8683382e Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jan 9 12:05:52 2005 +0000 Added basic support for drawing with alphablend on NV20. Great performance improvements: it's possible to move a translucent window at 32bpp while the cpu stays idle. commit 08d6d07342e676adbafdc8502c38013f937d4207 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jan 9 12:02:36 2005 +0000 Killed a FIXME: detect screen resolution from registers. commit 42947e6e73593e24b9f4b18cd3476ee13d9cb758 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Jan 6 20:48:04 2005 +0000 YUV to YUV conversion is not supported. commit 2e9c502f876c31f81e600e1aeef2141036c0710f Author: Claudio Ciccani <klan@directfb.org> Date: Thu Jan 6 20:47:19 2005 +0000 Removed an unused array. commit 32821a45d84866210f85f3a9c4765e50ffbd9a2c Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jan 5 10:40:05 2005 +0000 Added support for YUY2/UYVY->RGB conversion (with src colorkeying): we use four lookup tables generated at compilation time by yuvtbl-gen. Make sure accumulator is aligned to 8. commit 3897203bcf29d4614bf9976d8047a6b939dc0d44 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 4 11:39:27 2005 +0000 Try to fix kerning bug on PPC using explicit type casts. commit 4ac5b602ed638e9791c3c51319b6056eda18acd8 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Jan 1 14:48:04 2005 +0000 Found the way to make NVScaledImageFromMemory (used for StretchBlit, Alphablend, Color Conversion) work on NV20 chipset: it was another rivafb bug, therefore the rivafb-nv20fix-* patch is absolutely required. commit 31ce60f3a312ff6fa9902f613d34e5cee050b58d Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 29 14:33:40 2004 +0000 Thanks to "Mws <mws@twisted-brains.org>" for this patch that adds a configure option "--with-inputdrivers=<...>"! commit fa2805c536c7e8683993e115f45ea5f2831ca39f Author: Claudio Ciccani <klan@directfb.org> Date: Wed Dec 29 10:38:07 2004 +0000 Write objects configuration during device initialization and do not override rivafb objects. Added expertimental Alphablend support on Riva TNT. Fixed NV20 and GeForce3 Xbox support, Blit() should work on the latter now. Added experimental support for NV30 chipsets. General cleanup. commit 2a3786b9c11fa6ca2371f304eaae5970f55f04b1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 22 21:29:35 2004 +0000 Fixed distcheck. commit 306c69ae8b3af716607b4c487b1678c09d7e52ba Author: Ville Syrjala <syrjala@directfb.org> Date: Wed Dec 22 10:26:59 2004 +0000 2.4 kernels don't have EVIOCGLED. commit 79fad65250c340cae178d1ad5fe950e93ba560e2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 22 08:08:47 2004 +0000 Forgot to sync the ABI version ;-( commit e8aeaa0da4dbb72a0f57603a7ac86bd84a75c929 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 22 07:18:27 2004 +0000 Changed date. commit 8809181f7c68fdc396c065540d132a02cc615694 Author: Ville Syrjala <syrjala@directfb.org> Date: Wed Dec 22 01:53:29 2004 +0000 Fixed a typo. commit f3d055b0e96f18743023bd780ee597b287e769ae Author: Andreas Hundt <andi@directfb.org> Date: Mon Dec 20 20:03:16 2004 +0000 drop SDL support on osx, fix osx system for release. still in a very early stage, but working somehow. commit f164f010e6ad38b7d2f7f565c517fad33b16647a Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Dec 20 13:21:43 2004 +0000 Commented out two messages for release. commit ecb877b6c296ec04bbb8d399b8486554ac1e43f3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Dec 20 08:52:54 2004 +0000 Updated instructions. commit f005c736b8174b2c0acbe460d4e26835447afb6f Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Dec 20 08:48:39 2004 +0000 New patches. commit babf6a1a85a132a72b2838faa04ac234900a96cd Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Dec 20 07:53:43 2004 +0000 Spelling, wording and phrasing fixes ;) commit 57d3df846505acfa19b3a494d5be0710225ee871 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Dec 20 07:32:20 2004 +0000 Wrote "summary" of changes between 0.9.20 and 0.9.21 ;) commit b5adab0b60a42f80359f9657fde5d4e07781a51d Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Dec 20 04:06:17 2004 +0000 Added Andreas Oberritter <obi@tuxbox.org> (SiS 315 gfx driver). commit e9ee6fb77ee88eefb6a1c45cbe4019e5279169b2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Dec 20 01:37:07 2004 +0000 Readded ".o" files. commit 2bdf35b538a9653eda5efd8f6f510f64bcdd7897 Author: Andreas Hundt <andi@directfb.org> Date: Mon Dec 20 00:40:49 2004 +0000 compile fixes. commit e18bb7a97ae20aeca1d7f26c8e4f8628b2272e52 Author: Ville Syrjala <syrjala@directfb.org> Date: Sat Dec 18 13:02:26 2004 +0000 Rearranged a few keycodes to match reality. commit d81a4f14f084aede935560b13d4f8aca5272b62a Author: Ville Syrjala <syrjala@directfb.org> Date: Sat Dec 18 10:49:58 2004 +0000 - Support more axes - Invert Z axis commit 85aca7a39c8f91918f3d968e164cd0e1fa7bb071 Author: Ville Syrjala <syrjala@directfb.org> Date: Sat Dec 18 10:42:47 2004 +0000 Copied keymap support from the keyboard driver. commit fd23182e7bc36203e2cc82f01d46432bec47d70a Author: Ville Syrjala <syrjala@directfb.org> Date: Sat Dec 18 10:00:46 2004 +0000 Cosmetics. commit d6f76fd50d532e3a1965eca6327966bc2c2465d4 Author: Ville Syrjala <syrjala@directfb.org> Date: Sat Dec 18 09:57:33 2004 +0000 Added keyboard LED support. commit 86ab20b6a430b2e9c40ac6d0df86c00618aa137e Author: Claudio Ciccani <klan@directfb.org> Date: Tue Dec 14 15:47:27 2004 +0000 Respect endianess when converting surface to texture. Fixed a typo. commit d88c83301e090cec60c5b30eca3870d389362d2c Author: Claudio Ciccani <klan@directfb.org> Date: Mon Dec 13 09:58:17 2004 +0000 Separated GeForce3 XBox from common NV20 and disabled all blitting functions on this chipset. commit 173d83c017024890b000afb095244b5244ba0a58 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Dec 11 19:38:35 2004 +0000 Reduced kerning cache size by 50% and slightly increased performance. commit e61be81dad8b9f38830b9a66ed2bdc7addd872e7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Dec 11 16:32:38 2004 +0000 Fixed warnings. commit aac195fdfdffb9e1ab7b3cf7fcd0feaf64cdfdd2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Dec 11 16:16:53 2004 +0000 Don't check for directfb-csource at all, if UniQuE is disabled. commit 043d032fca661e82734265747b9fb4a886f7ac85 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Dec 10 22:21:58 2004 +0000 Fixed segfault in Sop_argb_Sto_Dacc_MMX() when DirectFB is compiled with trace support: use edx instead of ebx. commit 126e2434788b540bff2f33a69e7a1c6be02fa851 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Dec 10 11:12:55 2004 +0000 Wait idle before setting alpha and color (Beta1 and Beta4). commit 7186e37c3ed0de54551751a86e5701b0ee7271d7 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Dec 9 21:41:51 2004 +0000 Avoid division by zero during performance monitoring report. commit 9640bc762ed937d688fd1dafb3989380d62e5ead Author: Claudio Ciccani <klan@directfb.org> Date: Thu Dec 9 20:35:44 2004 +0000 Set nv_waitidle() cycles limit to 10000000. No longer compile in unsed tables. commit 619dd70ee965543aeb46907b951e9e958973b1da Author: Claudio Ciccani <klan@directfb.org> Date: Thu Dec 9 16:23:00 2004 +0000 Added support for A8,YUY2 and UYVY surfaces in dfb_surface_dump(). commit 4e9adf954c6fb8152847521893e586e43b70a3db Author: Claudio Ciccani <klan@directfb.org> Date: Wed Dec 8 14:20:06 2004 +0000 Use ScaledImageFromMemory 0x77 instead of 0x89 for NV10/NV20. commit c02bb37a31a8eb1748d9d2c57ca84aa09a0d4cea Author: Claudio Ciccani <klan@directfb.org> Date: Wed Dec 8 10:42:15 2004 +0000 Fixed bug when negative coordinates are passed to drawing/blitting functions. Fixed bug with ARGB destination surfaces: alpha component was not set correctly. Added Alphachannel Blend support (!!!!). commit ab55bd5771567852c31356e07a1c837338295d6d Author: Claudio Ciccani <klan@directfb.org> Date: Sun Dec 5 18:40:34 2004 +0000 Revert to previous method in CheckState() and return if DFXL_TEXTRIANGLES is passed to nv20CheckState(). commit 9c3fd2e37db283bc0560d81259aec2f323fabd90 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Dec 5 18:15:46 2004 +0000 Cleanup & some bugfixes: acceleration was not set correctly in CheckState(). commit 2c66f03231b16d2ce212c6090666ae0b3382f587 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Dec 5 17:58:33 2004 +0000 DFXL_TEXTRIANGLES was not checked in IDirectFBSurface::GetAccelerationMask(). commit ac58751959db1eb9da1a358d2b984203bc33ac85 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Dec 5 11:02:41 2004 +0000 Moved surface-to-texture conversion functions to nvidia_3d.c. Surface-to-texture conversion is now performed each time DFXL_TEXRIANGLES is acquired. Source and Destination Blend Functions were not set when DFXL_TEXTRIANGLES was acquired; fixed. commit f5a467b3b0c6b755ba3331596ecb834dcfd13eea Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Dec 4 19:13:20 2004 +0000 Added support for DSPF_NV12, untested. commit 186294b2dac5ef47aaff287962da9af26c53cfab Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Dec 4 16:53:32 2004 +0000 Stay with FourCC definitions and use NV12 for YC420. I used NV16 for YC422, but that was just a guess, because I didn't find any FourCC matching this format. commit 8579792b7d763b436ec4028770c88d7a0c9e11ad Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Dec 4 14:09:21 2004 +0000 Hot fixed most annoying problems with device probing: - Just use one of "/dev/psaux" and "/dev/misc/psaux" if both are available. - Don't try them at all if uname() yields release "2.5.*" or "2.6.*". commit 51dc3cc5c48a84f76a8b7ef5a03c6306205f9ca6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Dec 4 13:45:04 2004 +0000 Added dummy functions for encoder and output configurations. commit f55f49ebfe02e90301db52509f5d05a754e44ec3 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Dec 3 18:25:05 2004 +0000 Reserve unusable memory at the of framebuffer during device initialization; kernel patches are no longer required. commit edb6fc01c563e83203231d9a8a13655a92d6e15d Author: Claudio Ciccani <klan@directfb.org> Date: Fri Dec 3 14:26:55 2004 +0000 Set video buffers limit to avoid problems width old rivafb (2.4.x kernels). commit 2a86c04dfaf373086725c1e38c3c5b0ed9965888 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 3 12:22:37 2004 +0000 Added option "-L, --level <level>". commit bcceb61c45ecf935e50853ace896d8e5520f9a8f Author: Claudio Ciccani <klan@directfb.org> Date: Fri Dec 3 09:58:30 2004 +0000 Giant cleanup and rewite of the objects configuration routines: we use runtime configuration istead of fixed tables now. commit e74a1f75b442900607e433e08ae827e3d9da7b30 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 3 08:24:21 2004 +0000 Added dfb_color_to_argb(). Made dfb_color_to_aycbcr() and dfb_color_to_argb() static inline. commit 3d9d2238259c1c2b8f01b1336ae977c9a350a7d0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 3 08:10:32 2004 +0000 Updated some comments. commit 70b7becc5e692ff2faf394ed1a7789aa2d26185a Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 3 08:00:51 2004 +0000 Added comment to DFBSurfacePixelFormat. commit 82e6a73123504b7f01b17043299d91acfd866e8c Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 3 07:56:11 2004 +0000 Show index of types and definitions on the index page. commit a4cba0d3c143321acf7032538f6a495eb19f9224 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 3 07:15:15 2004 +0000 Added two planar YUV formats: DSPF_YC420 8 bit Y plane followed by one 16 bit quarter size CbCr [15:0] plane DSPF_YC422 8 bit Y plane followed by one 16 bit half width CbCr [15:0] plane commit 0926b621d6d71a85ee773081bbaec9b7c72f21eb Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 3 06:18:13 2004 +0000 Updated. commit 9a4fdb7b1c0c3952d021a2dc308da133442c578c Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 1 08:51:08 2004 +0000 Added DLCAPS_SOURCES which indicates that the layer supports multiple sources that can be selected, e.g. from frame buffer (surface) or from hardware decoders (using buffers outside of the frame buffer). Added DFBDisplayLayerSourceID with pre-defined DLSID_SURFACE. Added number of supported sources to DFBDisplayLayerDescription. Added DFBDisplayLayerSourceDescription containing the ID and a name. Added DLCONF_SOURCE along with a field in DFBDisplayLayerConfig to select the source to be used. Added IDirectFBDisplayLayer::GetSourceDescriptions(). Added InitSource() to the layer driver API. Added source_id to CoreLayerRegionConfig and CLRCF_SOURCE_ID to CoreLayerRegionConfigFlags. Added layer sources to dfbinfo. commit e497e3b0caeba1b6e3ef12389209d30376855489 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Nov 30 11:36:49 2004 +0000 Fixed TextureTriangles() bug in desktop mode. commit 0eba4f14bfd9f5001444f47e7158894e2314bbb9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Nov 28 23:34:02 2004 +0000 Code lifting. commit b354ffaa08303d895ea7342e7f5ea743248066b7 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Nov 28 22:21:34 2004 +0000 Depth buffer pitch was set wrong. commit 491a26eedbaad62f4b1e01b807c749ad60095728 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Nov 28 21:23:43 2004 +0000 Missed a bit in DSECONF_ALL. commit 9db390788d2815de7921c1a4faacfc19446f6914 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Nov 28 21:09:14 2004 +0000 Added assertions before calling Set*Config() during initialization. Hotfix missing functions in the Matrox driver. commit 30cb8ed0d9837d8d571b0c22a1f019ba55ae2f42 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Nov 28 20:00:24 2004 +0000 Forgot to add nvidia_mmio.h. commit 102afe0c8c3e07de057b15d9fe0c375492460b7a Author: Claudio Ciccani <klan@directfb.org> Date: Sun Nov 28 16:40:48 2004 +0000 Added TextureTriangles(): it's very slow, texture size is limited to 512x512, it's somewhat buggy in desktop mode... but we have it!! Added nv_out8(), nv_out16(), nv_out32(), nv_in8(), nv_in16(), nv_in32(). General cleanup. commit 6a1e2e8aed45938713547ba18d9cc6ea5708010d Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 27 05:58:45 2004 +0000 Added "__u32 dfb_color_to_aycbcr( const DFBColor *color )". commit aed78e08a49ca7639c95aeb81d1ff29b915f8607 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 27 05:56:40 2004 +0000 Fixed two comments after name change. commit 8577b27c798c1342da0b90b8332604b119e311d8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 27 04:36:39 2004 +0000 Fixed a warning. commit 816fed6cf263be91949e2b77534d36d9198b5bae Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 27 04:32:43 2004 +0000 Changed all test picture mode names using shorter versions. commit 37097b6cf718853682d465b76bc63b753345f95d Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 27 04:15:27 2004 +0000 Added 'test_color' to DFBScreenEncoderConfig. Added DSECONF_TEST_COLOR to DFBScreenEncoderConfigFlags. Added test picture mode DSETP_SINGLE_COLOR using color from configuration. commit 52ae011519cce3a35ce8536ea92a0b90978bebc0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 27 03:47:04 2004 +0000 Prefer full matches in enum parsing, e.g. always have "yc" be "DSOS_YC", but still allow "ycb" for "DSOS_YCBCR" or "m" for "DSETP_MULTI_COLOR". commit 5405362fead1aaab8061ec777332837b1e61f9b1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 27 03:13:35 2004 +0000 Use D_DERROR instead of D_ERROR in two cases. commit 331aed7a8763d3c3e19ec11d0221f2e8330ed140 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 26 22:23:51 2004 +0000 Allow empty layer lists like "," to select no layer. commit 61df803041a0aa635bffa651fe5a590791308399 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 26 22:20:58 2004 +0000 Set each mixer's, encoder's or output's default configuration. commit 32de10a3f5c32cd66384866d283e966274daa16b Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 26 22:18:41 2004 +0000 Changed DSOS_UNKNOWN to DSOS_NONE, e.g. for disabling the encoder. commit 1de546246cffad4ae2d23bd478ccd04d1329921c Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 25 22:55:05 2004 +0000 Added "--enable-unique", disabled by default. commit feb5b218670fa60c294d37854047587a54b30feb Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 25 22:17:52 2004 +0000 Fixed background color output format (printf). commit 3de5c4432c2489686b80f85a959df7549ebcf21e Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 25 21:16:25 2004 +0000 ID mask is 32 bit. commit 5f4133e3e7d95c40763689d616ee9cb0fb7990e1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 25 20:48:55 2004 +0000 Added direct_util_count_bits(), slow version, but optimized for bit sets with lower bits set only. commit d7060c3471b03b2de7028c929d3ab1a200c13121 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 25 18:33:30 2004 +0000 Added mixer configuration options. commit e9523a6d2c5a142b197b31347aeee4574e2564cf Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 24 09:45:05 2004 +0000 Fixed warning. commit b723ae8b479ade002c1a3cb3eaa4aa11e2cefa91 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 24 09:42:06 2004 +0000 Added configuration tool for mixers, encoders and outputs. commit 385b378513d01dd81d86b411d7f2a59f45a10bb2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 24 04:36:45 2004 +0000 Added 'name' to mixer, encoder and output description. Renamed 'num_layers' to 'sub_num'. commit 7bdeb52ccb44cd80476740fc633c1181d5c9cf0a Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 24 04:35:03 2004 +0000 Handle recently added DSECONF_OUT_SIGNALS and DSECONF_SCANMODE. commit ce2ab980906ba9b4e0e49ccba32fe6b3b7e79637 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 24 04:21:53 2004 +0000 Added name generation for DFBScreenMixerTree, DFBScreenEncoderTestPicture and DFBScreenEncoderScanMode. commit 518fbc02bbc97ed41c2cafc8ab9169b56416db34 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 23 19:11:43 2004 +0000 Fixed warning. commit 87eb53fc7272a8e3a67d3ac10243d4cd8603aaca Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 22 18:09:43 2004 +0000 Segfault should be fixed now. commit 4030cd3ccdb4630b99787903ea64ddfe2292d15a Author: Andreas Kotes <count@directfb.org> Date: Mon Nov 22 16:45:11 2004 +0000 fix after API changes - added name()s to fusion_skirmish_init calls - please check/fix content of name parameter commit 1a6e108cd59262453be6a83e2cadb870bddff5f4 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Nov 22 16:16:14 2004 +0000 Limit waitfifo cycles to 65536. Yet some small optimizations. commit 8e8ef0784b523a8d1cc0d617e5b291916be79736 Author: Andreas Kotes <count@directfb.org> Date: Mon Nov 22 15:06:48 2004 +0000 fix after API changes - s/InputDevice/CoreInputDevice/ commit 8c7e4a682e25a60ddf05350f2c25b2afbc7fdbd6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 22 06:35:46 2004 +0000 Commented out an assertion. commit 41a988541f9ce81c5de566727a8139bd79ba9197 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Nov 21 18:01:57 2004 +0000 It seems that NVScreenBlit 0x5F doesn't support ARGB format; revert to NVScreenBlit 0x1F and use NVScaledImage to apply effects (ColorAlphaBlend, Colorize). commit 9a77a18c4fe360c0681d09167e0f3c5eba8b1f64 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 20 23:57:54 2004 +0000 Added a parameter to "fusion_skirmish_init()" and "fusion_reactor_init()" to set the name of the skirmish or reactor using the ioctl FUSION_ENTRY_SET_INFO. Use the new parameter for all skirmishs and reactors ever created. --- Don't create a skirmish for each reactor's global reactions, but use a single skirmish for all reactors which is created during Fusion's initialization. Added "fusion_reactor_set_lock()" to use another skirmish for the global reactions of the reactor. Added "fusion_object_set_lock()" to set the skirmish for the global reactions of the object's reactor, while default is the skirmish used to lock the pool. Use the skirmish of layer contexts and layer regions for their object reactors. --- Heavily cleaned up code of FusionReactor and added lots of debug messages and comments. You should add "no-debug = fusion/reactor" to disable these loads of debug messages, while still showing other messages if "debug" is used. Documented all functions in the FusionReactor header file. Cleaned up FusionObject code and debug messages. Added some assertions and assumptions to the shared memory code. Added debug domain for FusionReactor and FusionSkirmish. Renamed function type definition "React" to "ReactionFunc". --- Added "dfb_input_add_global()" and "dfb_input_set_global()" to register global reactions at run time, e.g. from another library or module in which case the static reaction table can't be initialized with the address of those functions. Cleaned up input core code, e.g. by replacing the "inlined" singly linked list code by using a "DirectLink" and the "direct_list_*()" functions, or by adding magic assertions etc. Removed InputDevice and replaced all remaining occurences by CoreInputDevice. --- Build all graphics drivers by default again. commit 38bc8efde3f629608b716da8efcd5105ab41c79d Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 20 22:00:13 2004 +0000 Added debug domain. commit 05c817cbdc3db176607b769708e4ce5fbf8d73bd Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 20 21:52:43 2004 +0000 Renamed "direct_list_contains()" to "direct_list_contains_element_EXPENSIVE()" to ensure that developers know that they shouldn't use it in non-debug code. Added "direct_list_count_elements_EXPENSIVE()". commit 3bc0ed3ecf3e4f9e736a9b0c795382b900781309 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 20 21:40:53 2004 +0000 Added TraceFlags to each frame, featuring TF_DEBUG which indicates that the function of the current frame wrote at least one debug message. Added "direct_trace_debug_indent()" which sets the flag TF_DEBUG for the current frame and returns the current debug message indention level by examining the stack, counting any upper frames that produced debug output. Increased maximum trace depth to 256. Here is an example: (-) [SDL Input 18.814] (18246) Fusion/Reactor: fusion_reactor_dispatch( 0x20007ee0 [1], msg_data 0xbf5ffa54, self true, globals 0x400a1720) (-) [SDL Input 18.815] (18246) Fusion/Reactor: fusion_reactor_dispatch( 0x20007c00 [17], msg_data 0xbf5ff814, self true, globals 0x4009f7d4) (-) [SDL Input 18.815] (18246) IDirectFBWindow: IDirectFBWindow_React() (-) [ NO NAME 18.815] (18239) Core/Windows: dfb_window_resize (0x2013db00) [ -2, 27 - 616x 460 -> 99x40] (-) [ NO NAME 18.815] (18239) WM/Default: resize_window( 99, 40 ) (-) [ NO NAME 18.815] (18239) Fusion/Reactor: fusion_reactor_dispatch( 0x20007000 [0], msg_data 0x400c872c, self false, globals (nil)) (-) [ NO NAME 18.815] (18239) Fusion/Reactor: fusion_reactor_dispatch( 0x20007be0 [18], msg_data 0xbffff500, self true, globals 0x400a1880) (-) [ NO NAME 18.834] (18239) Fusion/Reactor: fusion_reactor_dispatch( 0x20007c00 [17], msg_data 0xbffff5e0, self true, globals 0x4009f7d4) (-) [ NO NAME 18.834] (18239) IDirectFBWindow: IDirectFBWindow_React() commit bf254e5aca4a6e384c303a8a95021d43751a876c Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 20 21:18:07 2004 +0000 Added parameter "write_front" to dfb_surface_flip_buffers() which is useful for triple buffering. If true, the new back buffer will be the front buffer. Drivers should detect if the current front buffer is not being shown already, in which case the idle buffer might be still shown and should not be written to. commit 758081449905c2bd7c1b5d758e3c23f866f10c9b Author: Claudio Ciccani <klan@directfb.org> Date: Sat Nov 20 17:59:20 2004 +0000 Added experimental support for Colorizing. commit 0c934aa3bad7b03057e0d24aa64eb8ea227eb70d Author: Claudio Ciccani <klan@directfb.org> Date: Sat Nov 20 10:45:28 2004 +0000 Accidentally byteoffset_alignment was reset to 128. commit 6d7fead382acb0673acd5794a9eb60cd7e28a75b Author: Claudio Ciccani <klan@directfb.org> Date: Sat Nov 20 10:38:24 2004 +0000 General clean-up and optimization. Use strict chipset/architecture detection. commit 31ad26aeec0a381d401d19d25f38cc387b7f34ea Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 19 23:38:58 2004 +0000 Thanks to Stefan Lucke <stefan@lucke.in-berlin.de>: Hi, the follow patch enables reporting of destination colorkey capability. So apps (like vdr-softdevice) can test this in order to set layer options correct. commit a09ec2f607336d1e02b05eb8e109f6486a150d54 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 18 05:36:34 2004 +0000 Added DFBScreenEncoderScanMode for interlaced/progressive output. Added DSECAPS_SCANMODE and DSECONF_SCANMODE. commit 7d7c2e49ff1ddb7102dd1ed15f0e9ba9c07c429a Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 18 05:09:43 2004 +0000 Added output signals to encoder caps and configuration. Added YCbCr to output signals. commit 5fc17831e8a90389ddcb57bf51f0aa6b2e85ab58 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Nov 14 10:20:44 2004 +0000 Added "D_OOSHM()" which is the same as "D_OOM()" in single app build. Only in multi app build it prints the warning "out of shared memory" and gives DFB_NOSHAREDMEMORY if used as a (return) value. commit 1b192843e225a0028afd4530aff47a8d795b72e4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Nov 14 10:15:31 2004 +0000 Added "D_OOM()" which prints the warning "out of memory". It can be used solely or with a return in front: : D_OOM(); : return DFB_NOSYSTEMMEMORY; Can be written as: : return D_OOM(); commit 939614a213f3a0ded84e7f75c0d853a8b0dc1544 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Nov 14 10:13:24 2004 +0000 Added "static inline bool direct_list_contains( list, link )". In direct_list_remove(): "D_ASSERT( direct_list_contains( *list, link ) )". commit ac8807f8445134892619fc4fdb7d7d1b5c3d6ad3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Nov 14 10:07:38 2004 +0000 Added DFB_NOSHAREDMEMORY error code. commit 7118e45b0cf532d473a7d670e473e3ec086c2302 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 13 04:53:30 2004 +0000 Working on implementation of UniqueInputSwitch. commit 076b2df147b991f13e99b33c46b28ec781ba8e55 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 13 02:17:46 2004 +0000 Create an instance of each device class and connect sources matching certain capabilities. Added magic to WMShared. commit 2368c36a52beccf37794ccbb45f6ff431515cbf9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 13 02:15:52 2004 +0000 Added DFBInputDeviceCapabilities parameter to dfb_input_enumerate_devices(). commit b9ed525415145a6ffda4fce809f2e58181af4703 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 13 01:30:41 2004 +0000 Wrote about UniqueInputSwitch and UniqueInputChannel. Updated UniqueCursor. commit 489dd07038d10673255781c4d59e10b88bd9f9f3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 12 23:58:50 2004 +0000 Increased lower domain field width from 16 to 18. commit 5fc5e89aca1b8c4954c49ccc0c314b2b43e4342f Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 12 23:53:50 2004 +0000 Added debug domain "Core/SurfaceMgr". commit 5f25f78470595462a1dd73587b311a8881096809 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 12 23:47:33 2004 +0000 Added debug domain and a message in dfb_surface_create() including the name of the pixel format. commit e54470da77b92d070825c434efb21d7aeb2e834c Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 12 23:46:43 2004 +0000 Added D_DEBUG_ENABLED which is defined depending on three other macros. It's defined to be 1, if the D_DEBUG* macros produce code. Useful for embracing code that it's just required for the debugging output. commit 6512c128f47a3613af2405d8f16e0a9736dcf042 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 12 20:59:40 2004 +0000 "make distcheck" works again. commit 83adb9ad138de068b61ee13de5b81c34b4f7445b Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 12 17:53:57 2004 +0000 Worked on the design and began with its implementation. commit 064c7d839e50c94f224f2ba91d07a69638b4b6c4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 11 20:08:08 2004 +0000 Comment out ".o" here. commit 5ee75de3e1cc595c8e89b2b6529bb43a8cea96be Author: Andreas Kotes <count@directfb.org> Date: Thu Nov 11 19:18:13 2004 +0000 apply more fixes commit ce1ca42ca9c15ef969b3c7a71252216deee9769b Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 11 16:34:32 2004 +0000 nother try commit c1c84c8bea2615d43f4e43e1c131fc284da3d349 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 11 13:56:49 2004 +0000 Commented out ".o" files here until build problems are fixed. commit 9e0e490838b44d0eacc15709c6f631e5d94c9f14 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 10 23:34:54 2004 +0000 Use core functions for the wm hack implementation to keep the core's opinion about the window configuration in sync with ours. This workaround will be obsolete soon. commit f92df569d5ce6d3377e011b241c58b69c0e5ef29 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Nov 9 18:50:10 2004 +0000 Fixed ram amount detection on Xbox (thanks to Oliver Schwartz). commit 1e157c6042bc1fa46da166f1e975eefafd23643c Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 9 09:39:39 2004 +0000 Code cosmetics. commit 8c6cb4e8a7a52a0a03c5015ff34fdef46a8cc4db Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 9 08:06:22 2004 +0000 Use colorizing for the borders. The color can be changed with "test_color". Some fixes. commit 0e1a7cd82b22d04bd8a6c2035f5194aea130e0a9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 9 07:37:56 2004 +0000 Added debug domain. Added debug message in dfb_window_resize(). commit d1c71218d539f6f493926ecae5c3bf5d9b1e9a66 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 9 07:36:27 2004 +0000 Fixed wrong assertions in dfb_region_from_rectangle(). commit 9fcd8bddb3965962e85e1048ed54b15d5f4be458 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 9 04:47:40 2004 +0000 Removed obsolete Reaction structs from CardState. commit eee48a56b8c74b19c499f56307771f37b50543f9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 9 04:21:36 2004 +0000 Simplified Flip(). commit 0cf9dd0dc7a265e5efe30eaf909a0a53281325b6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 9 04:03:14 2004 +0000 Simplified Flip() here, too. Added "const" to the region parameter of dfb_window_repaint(). commit dc86a5b0b0aa47dcab63df5171922b24e2342891 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 9 03:54:47 2004 +0000 Simplified Flip() a lot. commit 64f4b8c62d5859359eb285ac7cf36ecaf56f890c Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 9 03:36:40 2004 +0000 Removed influence on layer context reference count which caused the cursor window reference count to be one greater in the output than the layer context reference count, because during window dump the context reference was increased. commit 94b605ce88d584258a9823e94eb1b7c42da59537 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 9 03:22:52 2004 +0000 Forgot dfb_font_drop_destination() in IDirectFBSurface_Destruct(). commit 7d0e56baf7a5c8b206c3e7aa8bbd2b9156ab816f Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 9 03:05:39 2004 +0000 Fixed invalid clipping region of sub surfaces created outside of the physical surface's area. Thanks to DFB_REGION_ASSERT() in dfb_state_lock() :-) commit f64144067fe8a2843ea8e1cafc71aa9a100ca5fa Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 9 02:35:16 2004 +0000 Added -D_GNU_SOURCE. commit 3d31563cd6614fc82b7045223b1101844d79decb Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 9 02:30:47 2004 +0000 Update core ABI to 23... commit 17ebdfb372b4b420be3e0c00f928845ad731e75b Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 9 02:28:03 2004 +0000 Use DirectSerial for CoreSurface, increased by dfb_surface_notify_listeners(). Removed the surface listeners attached by dfb_state_set_destination() and dfb_state_set_source(). Store the serial of the source and destination surface in each state. Added dfb_state_update() which does the work of the removed listeners if direct_serial_update() returns true. Updating the source is optional. Only surfaces set via dfb_state_set_*() are handled. Use dfb_state_update() in dfb_gfxcard_state_acquire() and gAcquire(). Use dfb_state_set_destination() for the font's state to avoid setting up the accelerators destination settings for each DrawString(). Added dfb_font_drop_destination() being called by IDirectFBSurface::SetFont() and IDirectFBSurface_Destruct() and unsets the font's state destination if it matches the specified surface. This avoids late deallocation of the surface when the font's state destination is changed for another reason. commit 815aa7030956c56581aefc73dc3a8204be7a460e Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 9 01:57:34 2004 +0000 Added DirectSerial providing a 64 bit serial number while the implementation uses two unsigned 32 bit integers. Measurements have shown that (at least on my Athlon Thunderbird 1.33) emulating the 64 bit value myself is 50% to 100% faster than simply using the builtin 64 bit code of the compiler. The following static inline functions are defined: - direct_serial_init() initialize serial to zero, set magic - direct_serial_deinit() right now it only clears the magic - direct_serial_increase() advance serial number by one - direct_serial_copy() set serial to the value of another - direct_serial_update() returns false if the serial is up to date with another, otherwise returns true after updating the serial commit 11dd34edd2627c0ff8a01339c567828877589290 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 9 00:44:48 2004 +0000 Added D_FLAGS_ARE_IN(flags,f) to check that any set flags are contained in 'f'. commit e9b82464e93b2b11b2af088e089d10014abce543 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Nov 8 17:39:02 2004 +0000 Work around on ram amount detection on Xbox. commit bce285dde29a1bab7dc6dea9bee08742b4511d3e Author: Claudio Ciccani <klan@directfb.org> Date: Mon Nov 8 14:13:20 2004 +0000 Fixed offset mask calculation. commit 60f54769167e9289a426620d6a13287a92ee5db8 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Nov 8 13:42:05 2004 +0000 Memory alignment set to 64. Use offset mask according to the effective memory size. commit ea6f27ec0621dc2653c955a11c2deabb58e31af5 Author: Michael Natterer <mitch@directfb.org> Date: Mon Nov 8 12:32:28 2004 +0000 - link stret_test against $(top_builddir)/src/libdirectfb.la - removed trailing whitespace commit 7b23fba83d9b3683c8865f69b4fdd2a4d5c12859 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 8 00:36:10 2004 +0000 Hotfix missing fusion_ref_inherit() in single app fusion. commit fead4b726fb52e5a0aef6aea465ef32c0a90cdea Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 8 00:31:19 2004 +0000 Fix compile error with single app core. commit 5723501ac7c5cc6d755f727d71c0b19a1b3749a9 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Nov 7 16:12:47 2004 +0000 Scan only devices on bus 1 and following (fixes wrong detection with nForce boards). commit 99088b057afb83c2d58def1d4e89b41833784b3f Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Nov 7 14:44:25 2004 +0000 Optionally, stret_region_at() can look for a specific region class only. Added some safety to unique_context_window_at() in case other regions have SRF_INPUT set while not being UCI_WINDOW or UCI_FOO. It doesn't use the feature above, though. commit 1a3d6fbee3b62af9c591871bf4ab8945351d43e9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Nov 7 14:18:33 2004 +0000 Fixed failing assumption due to missing stret_iteration_abort() in region_update(). commit d54cb26f75520e9bf00764ee767069005c884705 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Nov 7 14:06:14 2004 +0000 Added option "no-decorations". commit 0a26336da079447f016ad12421ed0abad6a7dfbd Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Nov 7 13:29:19 2004 +0000 Fixed update of frames with opaque content. commit 68ec27cf94fe07d705a58fc3825db7ba3abc808e Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Nov 7 12:27:51 2004 +0000 Fixed missing updates when undecorated windows are resized. commit 48ab92e77d81a06140eae7a8491274c3ae6cf934 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Nov 7 12:06:01 2004 +0000 Added global reactions to be notified, when a context or window is destroyed. The reactions are in the wm module. Therefore wrapper functions had to be added in the wm library, to avoid linking the library against the module. The wrappers are using callbacks passed to the library during module init. commit ae7302082ef95a9aef3cedf967c808462a89dbc7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Nov 7 12:00:27 2004 +0000 Unlink layer region in window_destructor(), not in dfb_window_destroy(). commit c3a2645ae7c41d1f4aff7f5da7def6e5a91711c2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Nov 7 10:19:17 2004 +0000 Show list of windows in uwmdump. commit e525d9f4ef9cf7151ff9f64f0dcb4896822662fa Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Nov 7 09:46:54 2004 +0000 FusionResult has been removed. commit 19429a502d9b0cd3eee8c1141c22e7295a290fc0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Nov 7 09:15:20 2004 +0000 Use new Fusion API for entering the world. Added fusion_ref_inherit() using the new ioctl FUSION_REF_INHERIT. Added fusion_object_inherit() to inherit the local reference count from another object of any type. Fixed the global reference cycle "Layer Context, Layer Region, Cursor Window" by removing the global reference to the Cursor Window, which now inherits local references from the Layer Context, i.e. if the last application releases the stack, the cursor gets destroyed :-) Fixed the global reference cycle of "Layer Context, Layer Region, Unique Context" using the same technique. Added "docs/ReferenceMaps.txt" which explains references and visualizes different cases of inter object referencing. - Split unique window manager code into the objects UniqueContext and UniqueWindow. The wm module only uses the unique wm library, nothing is implemented in the module any longer. Moved all stuff from StackData and WindowData to UniqueContext and UniqueWindow respectively. Added methods to these new objects to implement the current functionality for now. Added the ability to create a StReT Region with multiple levels. Actually, there's a variable number of children vectors now. This eliminates the usage of invisible StReT Regions all having the same size to emulate the levels. Creation of a Region needs specification of the number of provided levels, now. Additionally, the level to be added to within the parent must be specified. The Root Region consists of these UniqueRootLevel's: - UNRL_DESKTOP Icons, redirected fullscreen apps (force-desktop) - UNRL_USER User windows (currently available stacking classes) - UNRL_SYSTEM Dock/Panel, Glass, Exposé, Clipboard, Virtual Keyboard, IMs - UNRL_CURSOR Cursor shape and attached objects, e.g. Drag'N'Drop - UNRL_SCREEN Display Locking, Screensaver The Frame Region consists of these UniqueFrameLevel's: - UNFL_BACKGROUND Background for blended content, effects, decorations - UNFL_CONTENT The actual DirectFB Window, i.e. its content - UNFL_FOREGROUND Decorations, effects, any other content overlay Added "uwmdump" in the flavor of "dfbdump", but not showing much, yet. Added debug domain and messages to StReT Iteration code, along with support for the new level feature. Enhanced "stret_test" to check for correct implementation of multiple levels. - Added a CoreWindowConfig containing position, size, opacity, stacking, options, events, color key and opaque region. Added dfb_wm_set_window_config() to change any combination of the different settings with one call. Current implementations, however, simply iterate over each entry, e.g. still two window stack updates for changing position and size. Removed dfb_wm_move_window(), dfb_wm_resize_window(), dfb_wm_set_opacity() and dfb_wm_set_options(). Added dfb_wm_set_active() to notify the window manager about layer context switches, e.g. switching to a full screen application. In dfb_layer_context_activate() and dfb_layer_context_deactivate(): replaced calls to dfb_windowstack_repaint_all() and dfb_wm_flush_keys() by dfb_wm_set_active(). Replaced dfb_window_set_options() by dfb_window_change_options() which takes two bit masks: one for clearing bits and one for setting bits afterwards. Added dfb_window_change_events() in the same flavor. - Added debug domain to the main file of fusion. Minor API cleanups, e.g. adding return values (DFBResult). commit 0c23dc54c9a9bc625ba821b90feeaeb8445f67b8 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Nov 6 13:33:39 2004 +0000 Attempt to make the driver work with GeForce3/4 and XBox. commit 61f28b7d386332698e1dab4df0bb43a0208d3430 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 6 08:16:31 2004 +0000 Added DWET_NONE. Clarified two statements. commit 66f665d11701633bc367af5c13070b92a71349a3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 6 08:14:06 2004 +0000 Added - DFB_RECTANGLE_VALS(r) - DFB_REGION_VALS(r) - DFB_REGION_VALS_FROM_RECTANGLE_VALS(x,y,w,h) - DFB_REGION_INIT_FROM_RECTANGLE_VALS(x,y,w,h) - dfb_rectangle_from_rectangle_plus_insets(dest,source,insets) - dfb_region_region_intersects(r1,r2) commit fc227db2ca95117307b2f22ddd5df5ab3f23e1da Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 6 08:10:08 2004 +0000 Some debug messages in Destruct(). commit 994af0398a72e7b0f9300abd6e1f963274039842 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 6 08:07:38 2004 +0000 More debug messages during pool destruction. commit dc6ea7a11c3294f0aadfe853a9aece51e99d7c4e Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 6 08:06:30 2004 +0000 Send SIGKILL to the process group instead of the received signal at the end of the handler. commit c7aec808f65ad07c39c09c9c885df31845b959d7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 6 08:05:26 2004 +0000 Fix endless recursion if warning about the number of frames is printed while printing a stack trace. commit 9f56d78b1b1e4e9d09208c92773048154f3611d8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 6 08:03:20 2004 +0000 Added D_MAGIC_ASSERT_IF which doesn't fail if the pointer is NULL. commit 66ce447fb6c36197cd002a34835280ecdcbee8b1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 20:44:15 2004 +0000 Build tools before wm. commit 481c314144166b7b22174e4d42023bf558f334d4 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Nov 5 17:51:39 2004 +0000 Partial rewrite of the nVidia driver: - all drawing blend functions are supported, - StretchBlit supports RGB16 now, - added a really fast Flip() function, - experimental WaitForSync() support. Switch to version 0.3. commit db650aca44d4868d3de12d7eb747388e4d659a8c Author: Michael Natterer <mitch@directfb.org> Date: Fri Nov 5 14:26:10 2004 +0000 - renamed conditional DIRECTFB_CSOURCE to BUILD_DIRECTFB_CSOURCE - check for directfb-csource in PATH if we are cross compiling or building --without-tools - use the directfb-csource from PATH only in the above cases and use the one from $(top_builddir)/tools otherwise. commit 0b04d88319b79642092304c728c4b3bf4fa4471f Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 13:07:08 2004 +0000 Use old allocation behaviour, but fix the static assignment of Sacc and Dacc. commit 6f8a1aff2f008a6d5b53ec87b6f1b0f145aa397f Author: Claudio Ciccani <klan@directfb.org> Date: Fri Nov 5 11:04:08 2004 +0000 BugFix: since gfxs->Sacc of gfxs->Dacc may point to gfxs->Aacc, allocate the accumulation buffer when the Swrast histance is created and use realloc to resize. commit 92b71fd51b0490cc463666ef6d0b6307e1cd3c49 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 5 01:45:48 2004 +0000 Removed FusionResult using DirectResult instead. commit 367016d1af6378321c528f08c66ec17e2d55dfb1 Author: Ville Syrjala <syrjala@directfb.org> Date: Thu Nov 4 15:35:21 2004 +0000 Primary mouse should actually be a mouse. commit 63291c3f80c39beecd0084379f33b26905bd8e6e Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 4 05:46:21 2004 +0000 Thanks to Bryce Nichols <bryce@bnichols.org> for reducing the hardware rounding errors in 16 bit mode by rendering the upper left and lower right triangle pair instead of the upper right and lower left. commit 30bb86d7011b05b7fd6e6176c6ccd0fbe7d8a0e3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 2 16:12:38 2004 +0000 Added missing includes. commit 7c8473d0795aa5ef859d946303fada9a39056faf Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 2 16:11:51 2004 +0000 Moved D_FORMAT_PRINTF to <direct/messages.h> again. commit f0d5db467127dfe01338ebcaf5e29ed2d8b519b8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 2 15:55:11 2004 +0000 Renamed DIRECT_BUILD_NOTEXT to DIRECT_BUILD_TEXT. Exclude debug message functions from the library if DIRECT_BUILD_TEXT is false. Always enable magic handling macros, because - just setting and clearing the magic in non-debug mode doesn't hurt - DIRECT_FORCE_DEBUG works for magic assertions again Renamed all flag manipulation macros, using the prefix "D_FLAGS_" now. Moved D_FORMAT_PRINTF(n) and D_CONST_FUNC to <direct/util.h>. Added D_ARRAY_SIZE(array). commit 74955c65a1b512a8a0cbd809f1cf65c862eaa570 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 1 23:09:12 2004 +0000 Ensure minimum region sizes at least (1x1). commit a55745305b000efb3d3fe1f70823e76119f6f7ab Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 1 22:49:29 2004 +0000 Added dfb_window_set_options() which calls the new window manager function SetOptions() to keep track of and control changes. Update region flags when the window options are changed. Update window border region layout when the window is resized. commit 57f946df5673e8a55501051c4ede1cd5c22b884a Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 1 18:37:25 2004 +0000 Fixed author parsing (did the cvs log format change?). commit a351585cc9167aa6e2602dd86f8caab708930465 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Nov 1 16:57:29 2004 +0000 If core/state.h includes gfx/generic/generic.h then generic.h must be installed. commit 360070605ec1f6c2ad8193a706a32baad1984f84 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 1 10:13:41 2004 +0000 Pass the CoreLayer to IDirectFBWindow_Construct() which doesn't require the internal layer header anymore, removed FIXME. commit beda24ea9fa888264b1f6a38306a909fee53326c Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 1 10:00:11 2004 +0000 Allocate accumulators dynamically, removed FIXME. Accumulators are allocated upon first usage. Subsequent usage can only grow the accumulators. Sizes allocated are 256 at least, otherwise power of two. This should guarantee that there are very few (re)allocations, even in the worst case. commit b27f104b1bfcf071554e5a9e89c2225453da5ce5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 1 09:13:31 2004 +0000 Implemented Sacc_toK_Aop_rgb24() correctly, removed FIXME. commit fcabef16dded69b6a5e4d08d33ed49fb8d64c54d Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 1 09:06:59 2004 +0000 Added Sop_rgb332_SKto_Dacc(), removed FIXME. commit 1144015f65718c33dbd79086cc5832af738089de Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 1 08:59:08 2004 +0000 Killed another FIXME: Implement Bop_a8_set_alphapixel_Aop_rgb332() correctly. commit e14006b2865d67eef93f607ad4b290de1e293fe5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 1 08:16:14 2004 +0000 Removed a FIXME: Pass a valid core to dfb_core_is_master() and turn the assumption "core != NULL" into an assertion. commit 6f9a2176b2c3aac4946381828adadecd679d88cc Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 1 07:55:59 2004 +0000 Implemented software clipping for hardware accelerated DrawRectangle(). Use hardware accelerated FillRectangle() if DrawRectangle() is not accelerated. commit 0a5cfe68edceb68509b90c60ca36245f4495a5c4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 1 07:01:45 2004 +0000 Replace gDrawLine() usage by gFillRectangle() in software based rectangle outline drawing code. commit 29cb9ae3a4b122dfc4c30796efaaec3a87df3a68 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 1 06:34:43 2004 +0000 First version of builtin window borders implemented by the "foo" class. This is just for testing and will be replaced by a more flexible approach. Use *much* simpler and cleaner recursive code for stret_region_visible() and stret_region_update() by separating their linear components from the recursive. Added functions for StReT iteration using one struct to hold the current state. This code is the linear part of the recursive functions mentioned above. Added small test program for StReT iteration code. Added default StReT region class to be used for "containing-only" regions which don't have any input or output themselves (only their children). Added stret_region_at() used in window_at_pointer(). Added stret_region_get_size() and stret_region_data(). commit 6298ace03112c3a6b5d5a11f715bf710553afa9c Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 1 06:12:22 2004 +0000 Added DWCAPS_NODECORATION, e.g. used for the cursor window. Preliminary and testing, might be changed. commit 7cedf18f34f517c9e0fe992521efa7271f1eb1f1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 1 06:10:38 2004 +0000 Replaced dfb_gfxcard_fillrectangle() by dfb_gfxcard_fillrectangles(). commit cd460b4a513ea758887f10b48d869c84160b72cc Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 1 05:53:09 2004 +0000 Added dfb_rectangle_region_intersects(). Added 'const' to dfb_region_intersects() parameter. Added some DFB_REGION_ASSERT where appropriate. commit d7b3a6c73e52830617e085c532cf0ea696f79eb9 Author: Claudio Ciccani <klan@directfb.org> Date: Sun Oct 31 14:33:51 2004 +0000 Re-enable double/triple buffering. commit 31b8cfbc1dfb0b84e61c8b53cf215257fb51027e Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 30 20:02:46 2004 +0000 Removed StReT stuff from default window manager module. Forked a new window manager module with the new StReT stuff. The new window manager consists of the wm module that is plugged into DirectFB and a library that contains the wm implementation. This library can be linked into programs, like in the "test_color" example which changes the global window border color. This test will be removed and replaced by a more sophisticated configuration system. commit 5110b85cf2f58c5d686a14d078494c1edbfe4ab7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 30 19:52:05 2004 +0000 Added fusion_object_globalize() doing the often used combination of fusion_object_link() and fusion_object_unref(), i.e. increasing the global reference counter and decreasing the local reference counter. commit d4186985036bf3aac3fe22cfcd6dd70621463e8f Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 30 19:50:45 2004 +0000 Align debug output of domains. commit 030682f88cc0bcb344cb007fff52281f1d2e40f5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 30 19:50:12 2004 +0000 Added debug domain. commit eb3b21e5dcfcb66e2bcffb42af6c73118bcc6147 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 30 17:38:46 2004 +0000 Commented out call to missing Gal_set_source_transparency(). commit 07993fffa1496b0d7b6bd2a1145ee378aa1ba941 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 28 01:32:17 2004 +0000 Use RTLD_NOW to detect undefined symbols before the module is used at all. commit f7a63c08fcba8c08b42eea1eedd6a9b12beed5fb Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 27 23:40:31 2004 +0000 No longer show MMX in core info line, but show debug / trace build. commit 7a5d89ba08bd57b4763ce04b5fbf9b3641438247 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 27 23:33:33 2004 +0000 Fixed missing MMX initialization in slaves, only the master used MMX before :O Fixed missing card capabilities in slaves with acceleration enabled, if the master has acceleration disabled. commit 1aad6a601f842a1c58c276ce359bb9f27862a71c Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 27 20:28:13 2004 +0000 In shared memory summary also show the total amount without pixel buffers. commit 001260835423a2df1763936666824fc0ec020283 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 27 17:49:49 2004 +0000 Added DFB_VERSIONMISMATCH error code. Added DFBInsets specifying a distance from each edge of a rectangle: left, top, right, bottom. commit 9eb68b9b08579e8fab6b6b2ee099aa79eeecbe56 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 27 17:46:51 2004 +0000 More convenience: DFB_RECTANGLE_ASSERT(r) and DFB_REGION_ASSERT(r) fail if 'r' is NULL or if the coordinates are illegal, e.g. negative width or x1 > x2 etc. DFB_RECTANGLE_ASSERT_IF(r) and DFB_REGION_ASSERT_IF(r) don't fail if 'r' is NULL, but fail if 'r' is set with illegal coordinates. DFB_REGION_VALS_TRANSLATED(r,x,y) (r)->x1 + x, (r)->y1 + y, (r)->x2 + x, (r)->y2 + y DFB_REGION_INIT_TRANSLATED(r,x,y) { DFB_REGION_VALS_TRANSLATED(r,x,y) } DFB_REGION_VALS_INTERSECTED(r,X1,Y1,X2,Y2) in addition to the existing DFB_REGION_INIT_INTERSECTED(r,X1,Y1,X2,Y2). commit 9a5ec2cfebc9ca9591abf645d17a6528c6030086 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 27 17:38:00 2004 +0000 Exclude D_MAGIC_ASSERT & Co from DIRECT_FORCE_DEBUG enabled macros, because the magic value might not be set by other code compiled without debug macros. commit c1613c8ddfa4d3c15618d9e0e7f1ad1e2ea4d84e Author: Ville Syrjala <syrjala@directfb.org> Date: Wed Oct 27 03:31:30 2004 +0000 Fixed typo: DSOS_YC -> DSOC_YC. commit fbde562b5c4e094f6d103e07a49f5d008106b64f Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 26 16:10:33 2004 +0000 Rewrote the recursive window stack update code in a reusable form. Those regions of the window stack being transparent, opaque, shaped etc. had been each window itself, but the new code allows to have a complete hierarchie of those regions. Therefore, the new code is all about the 'StReT', the Stack Region Tree. Right now, there's one StReT Region for each Window, but window borders are coming soon and each Window's StReT Region will be embedded into the border's StReT Region, either as a child or a sibling. Currently, DWOP_OPAQUE_REGION is not working. The complicated code for opaque sub parts has been removed. Instead another StReT Region has to be created as an opaque child region of the transparent. commit f8fe6ebbdb53e84cfc0bc3cc651eab0b181819b0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 26 15:49:14 2004 +0000 Added some macros and static inline functions for convenience: DFB_RECTANGLE_VALS_FROM_REGION(r) (r)->x1, (r)->y1, (r)->x2-(r)->x1+1, (r)->y2-(r)->y1+1 DFB_RECTANGLE_INIT_FROM_REGION(r) { DFB_RECTANGLE_VALS_FROM_REGION(r) } DFB_REGION_VALS_FROM_RECTANGLE(r) (r)->x, (r)->y, (r)->x+(r)->w-1, (r)->y+(r)->h-1 DFB_REGION_INIT_FROM_RECTANGLE(r) { DFB_REGION_VALS_FROM_RECTANGLE(r) } DFB_REGION_INIT_INTERSECTED(r,X1,Y1,X2,Y2) { (r)->x1 > (X1) ? (r)->x1 : (X1), (r)->y1 > (Y1) ? (r)->y1 : (Y1), (r)->x2 < (X2) ? (r)->x2 : (X2), (r)->y2 < (Y2) ? (r)->y2 : (Y2) } dfb_rectangle_translate(), dfb_region_translate(), dfb_rectangle_resize(), dfb_region_resize(), dfb_region_intersects(), dfb_region_clip(). Removed obsolete dfb_get_millis() and dfb_get_micros(). commit 2b8dac1f42e36f8f4422c5c8b8319117da90115c Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 26 15:44:20 2004 +0000 Cleaned up tile blitting a bit. Two steps added for performance: - Check if anything is drawn at all before looping through tiles. - Modify coordinates to exclude fully clipped tiles from loops. commit b7b651e02dbd72bd8e22b7a7edab0f86d7594b38 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 26 15:41:02 2004 +0000 Follow const change. commit 67077e82fee78226644eba2ddd639f3a8e047603 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 26 15:40:26 2004 +0000 Added "const" to UpdateRegion()'s "region" parameter. commit 53795be1d6baff38e9630887ba5b441c980de171 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 26 15:37:20 2004 +0000 Use direct_clock_get_millis() instead of dfb_get_millis(). commit de8b5719dbda68c5c52fc2ce4ecb03bd96120183 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 26 15:33:05 2004 +0000 Added an assumption to D_MAGIC_SET that the magic value is not set already. commit 583f014cf9de90e08d72958a6e7d08970afb0bab Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 26 15:31:43 2004 +0000 Added D_DERROR(ret,message) which acts like D_PERROR(message), but takes a DirectResult (DFBResult) instead of using errno. commit dc498e8cd3020a4482113a9c718ce7aad4909ca1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 23 16:37:10 2004 +0000 Hopefully fix single buffered window updates again. commit f58308d86655010799c6c17c0220a0df659d02ab Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 23 14:52:00 2004 +0000 Create regions with opacity 0. Implement SetOpacity using DLOP_OPACITY, if available. commit 6a4ce6fbbe9d584744b07775e918d8ed939ea370 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 23 14:04:09 2004 +0000 Inherit DLOP_ALPHACHANNEL from layer context config only if the region that is to be created for the window has a pixelformat with alpha. commit d0caaac3324667bc72f89b58024c04021d4d751e Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 23 13:08:06 2004 +0000 Starting revival of DLBM_WINDOWS. A layer regions is now created for each window in the desired size and pixel format. Moving windows (regions) around is working, too. Flipping the window surface flips the layer region. commit cb9c07f7c7c33f70f972bca573b0443035061c0c Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 23 01:19:11 2004 +0000 Use debug domains. commit 2eb33ae1e66d5fbeb9c3465b9be99ed7b783ab41 Author: Ville Syrjala <syrjala@directfb.org> Date: Wed Oct 20 20:02:18 2004 +0000 Added texture LUT support and some other 8bpp improvements. commit 7429ea957c5408f66f5201cad7eaeabaab2387d8 Author: Ville Syrjala <syrjala@directfb.org> Date: Wed Oct 20 18:48:01 2004 +0000 The fb.offset trick should only be used on G400/G450/G550. commit 62e4c3d7165350c6fa67cb958392becbeaba4691 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 20 16:30:18 2004 +0000 FIxed mixup of true and false for DIRECT_BUILD_GETTID. commit 3679007f7faf73df5e14620276b48b3343c93f41 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 16 02:17:05 2004 +0000 Removed newline. commit 49711caa4aea6e445a119680b8163509d7a900c8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 16 01:54:59 2004 +0000 Made bug messages much more verbose. commit 23d3e3acd74dd88da8754d773165e1750a90bc54 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 16 00:44:11 2004 +0000 With "--disable-gettid" one can enforce usage of getpid(), e.g. on broken systems where gettid() simply segfaults, though the system call is in <linux/unistd.h>. commit 9c8467ade495964839f50031d72dd1c449434e60 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 16 00:13:26 2004 +0000 Need to keep core abis in sync for now. commit 21b0e45b5959b29cac98314059461549a2058fa4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 16 00:12:46 2004 +0000 Forgot to increment core abi. commit d1187d5755d900a5ccf5a8c67312aed120e7edce Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 16 00:11:30 2004 +0000 Changed color hash size from 2777 to 823. commit 4e52452ae9e46ca2faa6abbfc8c760acf8d2d559 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 15 22:51:20 2004 +0000 Old debug messages (D_DEBUG) should be grouped in domains (D_DEBUG_AT). commit c99a4cf50becd0141cfb8e0813eb1649922f1041 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 15 22:47:00 2004 +0000 Updated to the version of DirectFB. commit 99081b0c02f8acf9739b81b4c0c3ab48459ac7d7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 15 14:38:09 2004 +0000 Wait for only the last write operation queued for a buffer, if the software needs to access it. commit 83942cc150d57499d696687054011c49714bf708 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 15 14:05:56 2004 +0000 Show TV Standards only if supported. commit 764ef719755c598af031a8e0cec8017949b9c66a Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 15 13:53:53 2004 +0000 Store the serial of the most recent accelerated graphics operation that has been queued for writing to a surface buffer. dfb_layer_region_flip_update() is no longer waiting for an idle accelerator, if the buffer that is becoming the front has or had a write operation queued. Instead it waits exactly for the last operation that is or was about to write to this buffer ;) If WaitSerial() is not supported by the driver and/or hardware, the fallback, of course, is to wait for each and every operation to finish. commit 3da67648121d97caa3f40efa6fa04f09f3bfa4f0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 15 01:13:52 2004 +0000 Fixed a newline. commit af632aedeac24b708d976f7471960e34aacecec2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 15 00:59:26 2004 +0000 Added supported output signals to encoder description. commit 12f8d877abc8afd008522d87eabbd7bf8ffcb451 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 15 00:38:05 2004 +0000 Minor fix to mixer info. commit a361ac0c9162a9b72262dec4ca44a99999e9f03e Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 15 00:35:52 2004 +0000 Added DFB_DISPLAYLAYER_IDS_MAX. commit ba69d611e30c10ea39a8592a743ca66cb195e132 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 15 00:31:14 2004 +0000 Added some notes about --enable-multi, --enable-debug and --enable-trace. commit 4d14d1e65213338b35a481cee9a73fa277aedfab Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 14 23:52:10 2004 +0000 Fixed segfault during cleanup in single app core. commit 84878f5474de957f4c3762867e38a4cb89b372e0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 14 22:56:57 2004 +0000 Reduced layer id mask from 64 to 32 bit. commit 97471a2f2a1b9530f56f2f047220e69e43203737 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 14 22:56:42 2004 +0000 I thought I already removed that... commit f64f088f9f8a644d553eac192117f8f83bb8f4a4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 14 22:51:39 2004 +0000 Removed superfluous argument. commit 53089c1b9f0296def114871821183e0dfb341bef Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 14 22:38:36 2004 +0000 Show mixers, too. commit fad9dd12d34b948b843b0babd27f9439ab1e4009 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 14 21:58:33 2004 +0000 Fixed DSECAPS_MIXER_SEL. commit 5d6e2dafb08197bbdd3c76b5cd9a54d48f335a61 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 13 17:12:04 2004 +0000 Added DirectFBScreenMixerCapabilitiesNames. commit f516b416953109ff1bdb56f53b63f7bca9918968 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 13 16:26:30 2004 +0000 Clear description on the stack. commit 6313a485a793a94544854261708035571ccbfc7f Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 13 16:20:57 2004 +0000 Added some assumptions about the combination of capabilities and number of mixers, encoders and outputs. commit 535918aa3386a1b5808d194fa26f9515ceea5e83 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 13 13:09:23 2004 +0000 Added an assertion. commit 4dcea3a508d6774ee5c06f2f83f71e6dd196c9b4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 13 02:49:58 2004 +0000 Applied patch from "Oskar Liljeblad <oskar@osk.mine.nu>" which adds the configure option "--disable-sonypi-jogdial". commit ca58ee9095009ba221522a60e1186c40280097c7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Oct 10 08:51:49 2004 +0000 Thanks to "Tom Bridgwater <genuss@gmail.com>" for pointing out a memory leak during vector resizing. commit dd6c4be9f9d1fc4988189fd4195f0e9c0734a916 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Oct 10 05:17:29 2004 +0000 Added "nowrap" to title. commit 85f75711418b5624f472cf34b5d26f8d69a1d5b6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 9 02:28:43 2004 +0000 Fixed missing "-ldl". commit fbfe7ebb2bdd109a6767c56152628170151f94dc Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 9 02:26:26 2004 +0000 Commented out static/shared settings for Cygwin. For a strange reason the settings are always made. commit 864eb8f86c833a0efc1a8a6b685c5b822efa5f73 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 9 00:55:16 2004 +0000 Use strrchr() instead of basename(), because <libgen.h> is not present in Cygwin. commit a3bddc90e844a0a9acd7832e01af061587ebc0c3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 9 00:53:21 2004 +0000 Removed apparently unused <sys/user.h> which is not present in Cygwin. commit f3d1da4c340f9dbfe6864a72780213095c4061fb Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 9 00:13:49 2004 +0000 Added ".o" support. commit 47bd8332625db0d9c44429463e7d474ea859f1f2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 9 00:00:44 2004 +0000 Added ".o" support for gfxdrivers. commit d147ceb5b907a65deb98c3b59de55cc47f29bdb2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 8 23:51:42 2004 +0000 Added missing ".o" for OSX. Added missing "if BUILD_STATIC" to SDL. commit 56a1c5e824903c7492c7d5d800e5d732f38bb8b1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 8 23:39:23 2004 +0000 Use new ".o" versions for all modules except input and graphics, which don't have ".o" versions, yet. New option "--voodoo" prints out all modules for statically linking in Voodoo. commit b38bb6323c2862d448f2c9c10294918a9a4cf755 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 8 23:10:36 2004 +0000 Added ".o" versions here, too. commit f0c5bb5211e8f8c68173875a424489d4693f1a47 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 8 23:01:56 2004 +0000 In static build mode, add an ".o" version of the ".a" module file. Applications can link statically against the ".o" files without having to specify an extra linker option for each module, e.g. "-Wl,-udirectfb_sdl". The same support will follow for gfxdriver, inputdrivers and proxy modules. commit d897f15b75a3f9275511ed91d7fa2ff12be91e40 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 8 22:40:22 2004 +0000 Detect cygwin, default to static builds and don't require libdl. commit f72307ea5869a4ed49ed305d9a53ddd1ae2d19fe Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 8 21:17:47 2004 +0000 Include <linux/compiler.h> to fix compilation of 2.6.8.1 <linux/videodev.h>. commit 2258eaf46d681cea4cf7dc647859bdcefd13d329 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 8 20:58:58 2004 +0000 When specified use the pixelformat of the surface description to create a windowed primary surface. commit 26d39894366afee2d5faffbb1f10fb1b492519f8 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Oct 6 16:51:30 2004 +0000 Added sysfs support. commit 94520969d3e0659c23e7e1c4432b47b9f87ac100 Author: Andreas Kotes <count@directfb.org> Date: Mon Sep 27 13:22:24 2004 +0000 revise accidental commits commit 0bee6d2d618c8255f9e74b4925769f24ca351534 Author: Andreas Kotes <count@directfb.org> Date: Mon Sep 27 13:21:12 2004 +0000 input device stuff commit d05e9f6175c229a3e7f9e40c2cf445673c1fa417 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Sep 27 13:00:44 2004 +0000 Removed two obsolete entries. commit 847e473ed1f5b603392c223368669b2911d277b0 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Sep 27 08:35:15 2004 +0000 Added nvidia_tables.h. commit 92f123078c92f0888bae19a0d2b5de2fe31e0fbc Author: Claudio Ciccani <klan@directfb.org> Date: Fri Sep 24 07:08:33 2004 +0000 Fixed PVIDEO limit (maximum memory offset is 0x07FFFFC0). commit 048ace6341f78ec00d3490efeac15e9add447911 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 23 06:54:18 2004 +0000 State handling hot-fixed and optimized. Corrected all pixel format settings in the tables, but StretchBlit() still doesn't seem to work with RGB16. commit 7e75f79353cdcf719b9a3c1c6d143a958422a431 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 22 10:22:12 2004 +0000 Added "<Meta>-<BackSpace>" debugging shortcut for dumping the stack of each thread of the master process. commit 4d40e2d7bdc5ed0729ef341e0526298153611eb5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 22 10:19:47 2004 +0000 Show file descriptor debug messages only if heavy debug mode is on. commit 2e3cffdf684c454b69185c12cb83af37374e7726 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Sep 20 07:58:05 2004 +0000 Always update alpha value when blitting/drawing flags are set. commit 0695114645cc9d8e3eb7843f088404eed9d8554c Author: Claudio Ciccani <klan@directfb.org> Date: Sat Sep 11 12:00:32 2004 +0000 SetSourceRectangle works now. commit 316c5021c6edf470689ef3fa9e6a20a577c54326 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Sep 9 18:00:26 2004 +0000 Small adjustments. commit 9c4891499c8e092ab62ee83ec343b398d32210ac Author: Claudio Ciccani <klan@directfb.org> Date: Thu Sep 9 14:14:58 2004 +0000 Added support for Destination ColorKey. commit 12330221f61b86dc1305f02951f1ae495bcdb0bf Author: Claudio Ciccani <klan@directfb.org> Date: Thu Sep 9 09:15:35 2004 +0000 Many corrections. commit d7b01e0701dac8e42c4162c715816c5bb152c623 Author: Claudio Ciccani <klan@directfb.org> Date: Tue Sep 7 12:43:29 2004 +0000 Added README for rivafb-smemlen patch. commit a3ca961253036221a8f4fc1ba9b97f3adde13008 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Sep 6 11:09:38 2004 +0000 Still on StretchBlit source point: not the best way, but works. commit eb5392f197b9d4e5c1cca466289f95c2d677f405 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Sep 6 10:29:34 2004 +0000 Workaround on StretchBlit source point. commit 9c77c849c96cf509974ea62780f1a92c691373ed Author: Claudio Ciccani <klan@directfb.org> Date: Mon Sep 6 08:46:36 2004 +0000 Added missing ';'. commit 495b05375e7364fedb16a30117a4a977e3a3cdf1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Sep 6 02:05:50 2004 +0000 Fixed Sop_argb1555_to_Dacc() which didn't evaluate the alpha bit. This should fix blending and other effects from and/or to ARGB1555. commit 386bff2285fe26efb285b23761a58499e460e1ae Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Sep 6 01:06:57 2004 +0000 Fixed destination color keying for RGB16. Two pixels are compared at once, but if only one pixel matched, it wasn't written. Implemented destination color keying for ARGB1555. commit 34986942f75ee05a60049d4dc3e03f01188956d3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Sep 6 00:37:15 2004 +0000 Fixed Bop_rgb15_SKto_Aop(), that's in english: StretchBlit with color keying from ARGB1555 to ARGB1555 dropped the alpha bit! commit b057d533c103acde02df60c4900df90828bbb967 Author: Claudio Ciccani <klan@directfb.org> Date: Sat Sep 4 11:11:59 2004 +0000 Small fixes. commit 9540a7fd004bc635d1f9b0a11dcacaed755f9013 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Sep 4 03:15:02 2004 +0000 Thanks to "Tom Bridgwater <genuss@gmail.com>" for this nice patch that adds support for SDL wheel events translated to relative Z axis motion events (like all drivers with wheel support). commit 51dc332295490261709738df409957714a01b4c7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Sep 3 16:36:27 2004 +0000 Added 'Claudio Ciccani <klan82@cheapnet.it>' to "Thanks To" section and "Helping Developers" for the nVidia driver. Keep up the good work ;) commit 092fb9dd484fdc1deb50593542260da97e37ad58 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Sep 3 15:19:20 2004 +0000 Set alpha value only when using transparency. commit cdc5232f68567f946586b338f566319cb8acfb4c Author: Claudio Ciccani <klan@directfb.org> Date: Wed Sep 1 17:07:58 2004 +0000 Implemented alphablending (coloralpha for blitting and srcalpha/invsrcalpha for drawing). commit 8e6c64b05387e80d91a7ea51964d32506a354c1b Author: Claudio Ciccani <klan@directfb.org> Date: Tue Aug 31 07:40:10 2004 +0000 Perform PVIDEO initialization. commit 3286a4b852ac735f90f1a8eee0c855ced2b6f36e Author: Claudio Ciccani <klan@directfb.org> Date: Tue Aug 31 07:39:02 2004 +0000 Added UpdateRegion and support for adjusting Brightness, Contrast, Saturation and Hue. commit 854e7343e20b617e46f775567fb0454cc8e459e1 Author: Claudio Ciccani <klan@directfb.org> Date: Mon Aug 30 15:56:46 2004 +0000 This patch fixes a bug in rivafb: the driver returns all videoram as usable memory while 128 Kb at the end are not usable. commit f2fa8d46fd669926f2078028d04d7fbd32be0f04 Author: Claudio Ciccani <klan@directfb.org> Date: Fri Aug 27 06:31:45 2004 +0000 Disable draw/blending until we have more. commit 93041ba7e24756812419e73e47eb986428062f6a Author: Claudio Ciccani <klan@directfb.org> Date: Thu Aug 26 17:17:42 2004 +0000 Added support for YUY2 and UYVY on primary layer. commit ccfb3c37aac2436519f26f830c75ce4a369b5c21 Author: Claudio Ciccani <klan@directfb.org> Date: Thu Aug 26 14:13:29 2004 +0000 StretchBlit supports ARGB1555 now. Added support for blit with conversion (ARGB1555,RGB32,ARGB to all). commit 825dd975904d25d3c21d64982702faace6004376 Author: Claudio Ciccani <klan@directfb.org> Date: Wed Aug 25 21:24:32 2004 +0000 Now StretchBlit works at least at 32bpp. Initial support for blending functions (only DSBF_ZERO). Some fixes and clean-up. commit 08cdc18274eccc65c8978908c72fbfec81aac32d Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 23 11:29:48 2004 +0000 Removed debug printf(). commit b7ec3e8259c0a499e940cf4fc539183ad549813a Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 23 10:06:48 2004 +0000 Start with object ID '1' to reserve '0'. commit 0764135cdef22742ebe01a1cd70bb4eba300569b Author: Claudio Ciccani <klan@directfb.org> Date: Mon Aug 23 08:47:27 2004 +0000 Added support for ARGB1555, RGB32 and ARGB. commit 903b1915fb87581a85c22101b5fae4d5edccbfab Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Aug 22 22:26:51 2004 +0000 Added CLRCF_SURFACE and CLRCF_PALETTE to avoid setting the video mode each time the palette is changed, especially with df_palette example. commit 0501dfb8e54e86c2b3732c6ffea3257b1ab37860 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Aug 22 22:18:51 2004 +0000 Added some D_ASSUME to check the clipping region in dfb_gfxcard_state_check(). commit 114ba86e1c64c8cdb4321caf740568391b16fcc9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Aug 22 22:16:58 2004 +0000 Show stack trace upon timeout waiting for empty read buffer. commit 87932454370e833e1305721add6b802057494aa6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Aug 22 22:15:36 2004 +0000 Use CoreLayerRegionConfigFlags instead of DFBDisplayLayerConfigFlags. commit 5d379c4b61874dc3f6ded589c8f9c2e860ce85bd Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Aug 22 22:10:10 2004 +0000 Removed empty besAddRegion(). It's not required. commit 51aacaa25a47346a09a8d137f483f1018dde0642 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Aug 22 22:06:22 2004 +0000 Ported to new driver API. commit ee528e1c29f18791f4eb5c7d82adc93ee98d3dc7 Author: Andreas Hundt <andi@directfb.org> Date: Thu Aug 19 15:42:09 2004 +0000 - support for cursor keys commit 616cad7dda601c2a20a75ef774ecefb518db4d6b Author: Andreas Hundt <andi@directfb.org> Date: Thu Aug 19 14:29:05 2004 +0000 - support for key repeat - support for the left mouse button (no mouse motion) commit 171919f4ca0ddb0f05e4aebb3821f97bfc8750ec Author: Andreas Hundt <andi@directfb.org> Date: Thu Aug 19 13:55:10 2004 +0000 - allocate four more bytes for images beeing loaded and scaled, this is a workaround for a longstanding off-by-one bug in the scaling code in src/misc/gfx_util.c which seems to tap one pixel behind the allocated memory. this fixes problems on darwin/osx which has obviously more preceise memory protection. commit 5a1548653580114cb0f005833a34c280ced7605f Author: Andreas Hundt <andi@directfb.org> Date: Wed Aug 18 17:04:46 2004 +0000 just assign the charCodeMask to the key symbol for now. commit 7c7229870507c287ef18806c2d985b2b452d62fe Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Aug 18 16:01:25 2004 +0000 Added shmalloc/shfree benchmark. commit 8f78bc8cd09a3316fbf950e1f094a3cb1d73761f Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Aug 18 15:59:25 2004 +0000 Added direct_pagesize() which returns the value from <asm/page.h> if present, otherwise it falls back to sysconf() which is not suitable for cross compiling. Use direct_pagesize() in fbdev code and reenable the new mmio code. commit bd892091fca1549bf4bedcb09933c61735982094 Author: Andreas Hundt <andi@directfb.org> Date: Wed Aug 18 15:19:34 2004 +0000 added support for FRONTONLY primary surfaces. this writes directly to the framebuffer. (df_dok works somehow now) commit 52af9be811f8928539a93549398ccd2f2042667d Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 17 20:07:54 2004 +0000 libfool! commit 86127909ee3fb059eaf1f9d965b65b2520a6d123 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 17 19:58:03 2004 +0000 A small debug printf, sorry. commit 0f5cefc599ea3d82fef41113438242e7dc8d8879 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 17 19:54:49 2004 +0000 Forgot some renaming. commit 5b0170e037a1e9c6a10d4a6144954c23fc9735a6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 17 19:50:07 2004 +0000 ++DFB is an advanced version of DFB++ It's an incompatible fork with fundamental changes. Applications no longer deal with interface pointers. The classes wrapping around interfaces are used a container for an interface pointer, providing garbage collection the "direct" way 8-) By overwriting certain operators, e.g. '=', the need to care about AddRef() and Release() has been eliminated. These methods aren't even available anymore. All interfaces are released automatically now, either caused by finalization of an object having interface members, or by leaving a stack frame with an interface hold in a local variable. This also eliminates duplication of code caused by the lack of a C++ equivalent to Java's "finally" block. The following code is using DFB++: void DFBImage::Load( std::string filename ) { IDirectFB *dfb = NULL; IDirectFBImageProvider *provider = NULL; IDirectFBSurface *surface = NULL; try { DFBSurfaceDescription desc; dfb = DirectFB::Create(); provider = dfb->CreateImageProvider( filename.data() ); provider->GetSurfaceDescription( &desc ); surface = dfb->CreateSurface( desc ); provider->RenderTo( surface, NULL ); } /* Work around missing "finally". */ catch (...) { if (surface) surface->Release(); if (provider) provider->Release(); if (dfb) dfb->Release(); throw; } m_surface = surface; /* Keep pointer to interface object. */ provider->Release(); dfb->Release(); } This is how it's looking using ++DFB: void DFBImage::Load( std::string filename ) { IDirectFB dfb; IDirectFBImageProvider provider; IDirectFBSurface surface; DFBSurfaceDescription desc; dfb = DirectFB::Create(); provider = dfb.CreateImageProvider( filename.data() ); provider.GetSurfaceDescription( &desc ); surface = dfb.CreateSurface( desc ); provider.RenderTo( surface, NULL ); m_surface = surface; } The last line instructs the container object 'm_surface' (member) to take the interface pointer from 'surface' after calling AddRef(). Leaving the stack frame due to an exception or a return causes finalization of the local container objects 'dfb', 'provider' and 'surface' calling Release() if they've already been assigned an interface pointer. The suggested way of passing interfaces via parameters is to use C++ references as in this declaration: void PrepareTarget( IDirectFBSurface &target ); Explicitly releasing an interface is as simple as this: m_surface = NULL; commit 9e64bb54c068f6060616297f8dde82794d845fd0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 17 17:02:07 2004 +0000 Better style of using references. commit 8cd0f1851f1ddc01e7456a45ffc0a08dbe891758 Author: Andreas Hundt <andi@directfb.org> Date: Tue Aug 17 11:24:34 2004 +0000 forgot this file commit cbe9cfd0446bfa8c6fcd18b7cbc805566eec9b5d Author: Andreas Hundt <andi@directfb.org> Date: Tue Aug 17 11:23:54 2004 +0000 - added native osx system. yes osx support without SDL. what works: - fullscreen - mode switching - keyboard (keys a-z only) TODO: - make all keys working - support frontonly modes - cleanups - joystick support - mouse support - window mode commit dd69544f332c1d05c9d6859942ddf12e395d0af5 Author: Sven Neumann <neo@directfb.org> Date: Tue Aug 17 11:20:43 2004 +0000 fixed typo commit 9f90b6afdf794932392ff9a506bef4c18c68c3ff Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 16 15:35:44 2004 +0000 Temporarily comment out mmio alignment patch for debugging. commit 5234526f633b1fc1eb0e78ae794aa23ea0265db8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 16 15:13:59 2004 +0000 Added parentheses to conditional statement in system_map_mmio() to be sure. commit 0ea07c711878b7711671da189b48eff2bc2fb2c4 Author: Andreas Kotes <count@directfb.org> Date: Sun Aug 15 13:35:48 2004 +0000 fix message commit 54a2b593e44cb9801a85532e174fe4a993e05f66 Author: Andreas Hundt <andi@directfb.org> Date: Fri Aug 13 13:12:25 2004 +0000 do not report unknown event for JS_EVENT_INIT. print note about calibrating the joystick using 'jscal' instead. commit 4aac0769b2702918e60818b1fb54b6a318d41e78 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Aug 13 10:37:41 2004 +0000 Why has dfbsummon been in non-installed LINUX_ONLY_TOOLS? commit e34adb81a0e92aaa47471e3c376e5bdd2b5fecc4 Author: Ville Syrjala <syrjala@directfb.org> Date: Fri Aug 13 08:53:26 2004 +0000 Fix for mmio alignment on mach64. commit 28eb2c80f4f10ee9afaaf726a2f7f0178caefdb8 Author: Ville Syrjala <syrjala@directfb.org> Date: Fri Aug 13 04:37:09 2004 +0000 Open /dev/tty and /dev/tty0 as read-only. dfb_vt->fd wasn't being closed with no-vt-switch. commit d5ca83dec701550826dc8adc5037f8fbb1064c9f Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 10 10:10:29 2004 +0000 Fixed NULL pointer check in dfb_gfxcard_wait_serial(). commit ff188ec45bd74ca2ec2396452aec6a6fdef47434 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 9 18:36:35 2004 +0000 Added crtc2GetScreenSize(). commit 1c1ea4d1d9938d1889b086c56e0fd3b00592ced6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 9 18:34:21 2004 +0000 Added GetScreenSize() to the screen API to get rid off the "no video mode set yet" warning. commit 2e3efaeb9f93b4c4abf58963e7a7f6f5f12d3c63 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 9 16:19:52 2004 +0000 Added new drawing function "FillSpans" which gets an y start value and an array of "DFBSpan"s containing 'x' and 'width' of each span. It's implemented in the core right now, using FillRectangle() of the drivers. For maximum performance we could add a FillSpans() function to the drivers. commit f9fdf1bda973bd8c7e3272c1d951b1ecf0e3787d Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 9 10:25:24 2004 +0000 Wait for the accelerator earlier, i.e. at the beginning of Flip(), but wait for the one before the previous one. commit 57f6b5975a3adbd64f3d3492efd2cd644404a01b Author: Ville Syrjala <syrjala@directfb.org> Date: Sun Aug 8 19:53:03 2004 +0000 More cropping fixes. commit 63afd5369435f37da08a7f58853fc797620daf13 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Aug 6 19:26:30 2004 +0000 Moved storage of serial to window temporarily. commit fd878fc3d7cc5efaf0bb483e1c8957b6e9a45cf7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Aug 6 14:50:31 2004 +0000 Added DSFLIP_PIPELINE for advanced synchronization with the accelerator, currently implemented for Flip() on window surfaces. This feature is especially for accelerators with a command buffer that can store more graphics operations than required to render one frame. Behind the scenes: Added CoreGraphicsSerial which stores the "serial" of a certain graphics operation and the "generation" of serials to handle more than 4 Giga Ops in one session. Added GetSerial() and WaitSerial() to the graphics driver API. GetSerial() returns the serial of the last queued graphics operation. WaitSerial() waits until the operation with the specified serial is finished. Added CoreGraphicsSerial to CardState. It's updated by dfb_gfxcard_unlock(), i.e. after issuing an operation using this state. At the end of Flip() the current graphics serial is stored and the previously stored serial is being waited for. commit 2ebecce1eb1d7ba026bb604c67d234719e2c4606 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 5 12:50:43 2004 +0000 Removed "-Wno-strict-aliasing" until a check for the gcc version is added. commit 5aba21cfed1871d077bee1cdc70bc7c83555b429 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 5 12:42:31 2004 +0000 Delegate writes to the file descriptor to a new thread called 'EventBufferFeed' to avoid dead locks in case the write() blocks. commit ec6bcdc9473997b48ce68f0e2b3cbd5175f0e702 Author: Andreas Hundt <andi@directfb.org> Date: Thu Aug 5 10:28:51 2004 +0000 describe workaround, better do not read it. commit 1e9966fcc8de3bac17eaa860f58a8c19481b9b38 Author: Andreas Hundt <andi@directfb.org> Date: Thu Aug 5 10:26:31 2004 +0000 found out why input is not working on OSX, added the following to README.OSX: You will notice that input does not work, that's because it seems to be neccessary to process input events in the thread that set the video mode. (under linux it works anyway but we seem to violate the specs) see http://www.libsdl.org/pipermail/sdl/2004-February/060190.html commit b422f914168d70077f97cfc6292c86e86456c0da Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 5 08:16:37 2004 +0000 Added "-Wno-strict-aliasing". commit efce9da93639ec6162c56270e6e01ecfbac34602 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 5 08:05:35 2004 +0000 Fixed gcc 3.4 warnings due to missing "const". commit b3c2d6becb841d0773266d095754c08a376c25c9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 5 08:05:13 2004 +0000 Remove "--force" again, because it removes the file "COPYING". commit 32e337f1b5d34393984ee127e6718f7c86cdcc88 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 5 07:51:00 2004 +0000 Added "--force" to automake arguments for easier version hopping. commit 4e2130a673ed7c9c6bc8a0153f75960c48a54cfa Author: Andreas Hundt <andi@directfb.org> Date: Wed Aug 4 16:28:19 2004 +0000 added some hacks for better OSX/SDL compatibility - added sdl libs to directfb.pc for OSX - added dirty "#define main SDL_main" to directfb.h for OSX, this suck because i have to undef it again in libdirect headers where directfb.h is still included. - added README.OSX containing instructions how to compile DirectFB on OSX - updated README regarding OSX support commit d5b07a6e386e7bd5ce07b6e905c6ed87c0f9c1dd Author: Ville Syrjala <syrjala@directfb.org> Date: Wed Aug 4 00:32:32 2004 +0000 Screen registration was missing from system_join(). commit b6e454e10e9ddeda8b6ec801f68c78ca46b7cba4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 3 20:56:03 2004 +0000 Don't use this driver if "no-vt" option is used. commit 9cfca31df635281553ca167bdbe337dc42302be0 Author: Ville Syrjala <syrjala@directfb.org> Date: Sun Aug 1 21:44:18 2004 +0000 Fixed vertical cropping. commit 7eac2cfeff2e132884c8eb6b1a993b110b6c46d0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 30 14:22:30 2004 +0000 Added all missing va_end(). commit 1e33035b1fbd73307b8f5e243751c373e180d9ef Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 28 19:53:44 2004 +0000 Follow Fusion API change. commit a612dd72d1914f5ee3702b23ca6dfbf607773175 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 28 18:37:49 2004 +0000 Added (disabled) debug messages before and after write(). commit a4c7cfd9b29f3a52bf9f6a25361d08409ff314ef Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 28 18:21:34 2004 +0000 Fixed debug messages. commit fc5609928469c137dd65f9eee999fb9c5916abac Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 28 17:44:22 2004 +0000 Don't wait for Fusion Dispatch Thread during emergency shutdown. commit ca092ab16f19a58ac0464ab1e6e9a470d6c639eb Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 28 17:35:23 2004 +0000 Added DSFLIP_NONE and enhanced documentation of all other DFBSurfaceFlipFlags. commit c300b97da974cd23d7b0e7e976b76c8b0dbea8fd Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 28 16:06:44 2004 +0000 PostEvent() is the only method that is functional in pipe mode. commit 535163f993d7ec106daab4ddc9eac47a3dd43dcf Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 28 15:59:56 2004 +0000 Added much text to CreateFileDescriptor() documentation. Made CreateFileDescriptor() turn the IDirectFBEventBuffer in pipe-only mode in which all other methods return DFB_UNSUPPORTED. commit 411f56f725c7e251f64ee1d7f33d19f1081321f1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 28 15:11:10 2004 +0000 Use socketpair() instead of pipe() to allow bigger buffers. commit a3098043441927ae0c5bf6b36da277cfc701d16c Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 28 09:28:10 2004 +0000 While in WM mode pass through all keys except WM keys again. commit 6eeeea6785d6f1434e0d6c8449dd667006ca3b4a Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 27 17:24:18 2004 +0000 Fixed sticky WM mode if Alt or Ctrl are released before Meta. commit 7d0e1d74789c65fc6bc90ede0d284452b69e1fe8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 27 15:50:21 2004 +0000 Support OpenGL on sub surfaces ;) commit e2bdb6b2a5bc23af565650ad759f89bbfde01770 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 26 12:52:46 2004 +0000 Thanks a lot to Ed Millard <emillard@direcway.com> for this patch: DIRECTFB PATCH The DirectFB patch implements hardware blitting on GX1 graphics though it is constrained, by hardware, to only blit surfaces whose width matches the stride of the frame buffer. In other cases it reverts to the generic software blit. The current driver in CVS only implements hardware blit on GX2 graphics which doesn't have this stride limitation. The hardware accelerated functions for line, rectangle and fill have been modified to honor dst_offset for Y so they work properly with double buffering. In the current CVS version these don't honor dst_offset and are working on the wrong buffer in double buffered mode half the time. X offset is not currently implemented in this patch which is focused on making double buffering work. GEODE COMPRESSION BUFFER The patch is disabling the Geode's compression buffer when the DirectFB nsc driver is initialized. This may be a potential drag on performance since it increases memory traffic on the video memory during refresh. The compression buffer is very problematic for DirectFB since it is unaware of it location in video memory. For example at 1024x768 the compression buffer is mapped right at the start of the second buffer. You will see display artifacts if its not disabled and you will usually crash the box as DirectFB overwrites the compression buffer with randomness. In the future the compression buffer could be moved to the end of video memory and video ram could be limited to prevent it from overwriting it. VIDEO HARDWARE INTERACTION Moving the compression buffer to the end of video RAM can result in conflicts if you are using video hardware since the geode_v driver in geode_v4l2-2.3.2 also uses video memory. In fact geode_v is currently putting its video buffers in video memory in an area that will also overlap the second buffer in double buffered mode at 1024x768. This problem can be remedied by changing geodedrv.c memory buffer offset to: #define MULTIBUFF_OFFSET 0x0 This puts the video buffer at the very end of video memory. It is currently offset from the end of video memory by approximately 512K which causes it to interfere with DirectFB double buffering at 1024x768. If you set MULTIBUFF_OFFSET to 0, shut off the compression buffer and limit DirectFB video ram to 3 MB you can run DirectFB double buffered at 1024x768 and play video at the same time. -- Ed Millard commit 629403203197b163a4d010ef71b81023eeffe2c4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 19 11:08:17 2004 +0000 Fixed usage of DIRECT_UTF8_SKIP in GetStringWidth. commit 4550b673f89f1e32ffeda84dc132a51861110790 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 14 09:08:29 2004 +0000 Added prefix "ret_" to all output parameters. Added "const" where appropriate. commit 8d5b0c2defe380aa6eb0f70ca1b9bb6779b6d850 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 14 07:16:16 2004 +0000 Use DirectList for events. commit b668d0db33012cc44bc24a54f5e4ad4b1b772d4e Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 14 04:48:28 2004 +0000 Automatically generate links if comments include function names, e.g.: "... IDirectFB::GetDisplayLayer() ..." Minor code cleanup. commit aee2cfce4fdddba5e7afb756eaa01ecc2eedb060 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 14 00:58:06 2004 +0000 Added callback definitions to types page. Added css for removing the underline from links. Fixed margin for interface abstracts. commit f0064d59d0eae23167386a724754f88dfed4ddd2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 13 22:42:58 2004 +0000 Clear key code if CapsLock has been changed to Meta. commit 2532c69c99dc33474fa8e78bbeb46cd06174835d Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 13 22:25:47 2004 +0000 Fixed capslock-meta which is a bit more complicated to implement in the core. commit 2c5dab220baaf5e23835355202f31b0855b00454 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 13 15:34:37 2004 +0000 Moved handling of "capslock-meta" to the input core. commit d4e98ec9f5f8f042d203851a27f00a0a73f10d35 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 13 11:12:39 2004 +0000 Added option "no-vt" which disables usage of VT code completely. commit ab796a5028b54b71a1dba10d6ad1637ea380c0fd Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 12 21:15:25 2004 +0000 Simplified direct_list_foreach usage. commit a818de8efaff52c9d742a8ce9900a24928547558 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 9 17:38:24 2004 +0000 Put keyboard types to the end of the types page by moving the filename to the end of the gendoc.pl command line. commit f64f7821758317cdc0b2b6d484e67d8c04ef8de5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 9 17:31:12 2004 +0000 Suppress some macros by using "@internal" within the comment. Added comments to DFB_DISPLAYLAYER_IDS_* macros. commit 1449be0c1cc185819b504589d8242b19dd8ad6b1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 9 17:30:16 2004 +0000 Improved comment parsing: options can be embedded via "@<name>[=<value>]" at the beginning of a line (after the asterisk though). Suppress some macros by using "@internal" within the comment. commit fa099ed411ca2986d818325ffe96fd2861858b4e Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 9 16:37:28 2004 +0000 Improved layout of types page. Added macros to types page. commit cedf45ffe7a41d53d3885c0d3070a3f3f4ac7f41 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 9 15:47:31 2004 +0000 Fixed hyper link generation for "const" parameters. commit 8f60a8d6793ad0a98b0ab00f02ebff2c46951b86 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 9 14:45:54 2004 +0000 Allow sub surfaces to be used a texture by adjusting the texture coordinates. commit 1859f8c8c84bfa7a011837412f14808ae82601da Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 9 12:45:01 2004 +0000 "vt-switching" is true by default now. commit 89180c26ea827653942657cc1d42dc524a6ee6d1 Author: Ville Syrjala <syrjala@directfb.org> Date: Sun Jun 27 23:52:01 2004 +0000 Corrected a mishap from RGB_TO_YCBCR() change. commit 547114fd6731429a535b809cb2de0880736e8a25 Author: Ville Syrjala <syrjala@directfb.org> Date: Sun Jun 27 15:15:33 2004 +0000 Increment trapezoid trailing edge x coordinates. commit 89c233a306acdeb24b3f335709a21aca1a02e904 Author: Ville Syrjala <syrjala@directfb.org> Date: Sun Jun 27 15:06:50 2004 +0000 Call dfb_gfxcard_sync() before FlipRegion() only if hardware has written to the back buffer. commit a36337ccaeb5483c61e97da55163b850b65973cb Author: Ville Syrjala <syrjala@directfb.org> Date: Sun Jun 27 14:55:32 2004 +0000 Made RGB <-> YCbCr conversion use integer arithmetic. commit f49b0750c11e31b67d0f931d55d4cf84c89f1c1a Author: Claudio Ciccani <klan@directfb.org> Date: Thu Jun 24 08:13:35 2004 +0000 Save some instructions in YUY2/UYVY scaling functions. commit c140da1858423e2f4684a3fb2f09a2595891530d Author: Claudio Ciccani <klan@directfb.org> Date: Wed Jun 23 16:33:31 2004 +0000 Blit 32 bits at once when scaling YUV4:2:0. commit 3e8b52f63c1b39f5330d03d70535b2f6eb0dc516 Author: Ville Syrjala <syrjala@directfb.org> Date: Tue Jun 22 19:08:09 2004 +0000 Added IDirectFBDisplayLayer::SetSourceRectangle() to configure layer source cropping. Includes the relevant changes to mach64 and matrox drivers. commit 10e0c896caf5ec281355144d9ae462cf7b0be993 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 22 07:51:59 2004 +0000 Added convenience macros and inline functions for setting state members. commit 4db272c7c57c68a178155c91ba1fd6df1c25a9c2 Author: Andreas Hundt <andi@directfb.org> Date: Mon Jun 21 22:17:22 2004 +0000 include <sys/signal.h> for sigset_t on non-linux systems. (needed by darwin) commit 772eb702f5340cb8c2193ea595d343ed6c84334d Author: Sven Neumann <neo@directfb.org> Date: Thu Jun 17 14:02:15 2004 +0000 shut up CVS commit 1a54a1f320f081e5860d45b8606034ca50a9f955 Author: Andreas Hundt <andi@directfb.org> Date: Wed Jun 16 14:17:22 2004 +0000 removed compiled module, remove windows-style <CR><LF> in Readme.txt commit d5807ce153d02febe4c646186a0d9527ee1b115a Author: Ville Syrjala <syrjala@directfb.org> Date: Mon Jun 14 23:45:24 2004 +0000 Bresenham line parameters must be calculated differently for the 2D and 3D engines. commit 6bd147d69849b232285e4b3eb2de71fbb6d58a81 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 14 14:47:57 2004 +0000 typo commit 344c1378aa7193cc2b59335dd7f8db484278c698 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 14 14:46:44 2004 +0000 Update source rectangle in region config accordingly. commit bf2c03472904994e6da4067a3244013fc19ca363 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 14 13:37:52 2004 +0000 Show module name in error message if file name is (null) due to static linkage. commit c1aeb277c13ad5d4f6e2768bfc9e29f6aac2f660 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 14 12:21:04 2004 +0000 Thanks to "Antonino A. Daplas" <adaplas@pol.net> for porting the driver according to internal API changes. commit 95f4735ee883bec7156f5c084fff054c51f09b5c Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 14 12:05:05 2004 +0000 Include C++ symbols in "nm" parsing code. commit eeacea40bef656d3d348449bed46ab625814d19d Author: Andreas Robinson <andors@directfb.org> Date: Mon Jun 14 12:04:33 2004 +0000 VIA Unichrome driver added. commit 25253d8547f20e451da7ae94e7bb142610582f1e Author: Andreas Robinson <andors@directfb.org> Date: Mon Jun 14 11:56:25 2004 +0000 Unichrome directory added. commit 2ad75b36b5d9945cb55f28e19e096629c4a82e8d Author: Andreas Robinson <andors@directfb.org> Date: Mon Jun 14 11:53:35 2004 +0000 Initial import of the renamed CLE266 driver. New features: support for multiple north bridges, the DVD subpicture layer and destination color keying in the video layer commit 02a39fcf81219512ebc7d14da990737e420cdfe3 Author: Ville Syrjala <syrjala@directfb.org> Date: Sun Jun 13 20:47:14 2004 +0000 Forgot to initialize a variable. commit e509c705cfc62378c144eed5393a97135dd95a65 Author: Ville Syrjala <syrjala@directfb.org> Date: Sun Jun 13 20:35:56 2004 +0000 Fixed yet another alpha channel problem. Non-blended scaler/texture blits didn't copy the alpha channel. commit 69248e96d7dae4a058f1bc4cb8001fe3724ec78e Author: Claudio Ciccani <klan@directfb.org> Date: Sun Jun 13 09:39:48 2004 +0000 Some improvements in YUV scaling functions. commit 6b9783f7705f437c600cfe94b54f4294f03a0a6a Author: Claudio Ciccani <klan@directfb.org> Date: Fri Jun 11 19:55:26 2004 +0000 Implemented stretchblitting for YUV. commit 7693c09cf598f7dfa2003baf31c2f6a9346f421d Author: Ville Syrjala <syrjala@directfb.org> Date: Thu Jun 10 01:58:28 2004 +0000 lite_window_event_loop() returns DFB_TIMEOUT not DFB_OK. commit 260d8c2362d2929ab25db3a86fb9bf6673ecd7fb Author: Ville Syrjala <syrjala@directfb.org> Date: Thu Jun 10 01:43:20 2004 +0000 Wrong alpha value was being written to the destination. Bumped driver version to 0.13. commit 10dd6ee2ec0f246289e506755dc2dd47ccaa458d Author: Ville Syrjala <syrjala@directfb.org> Date: Wed Jun 9 18:39:46 2004 +0000 Added support for power-of-two pitch allocations. Enabled mach64 texture engine code. commit e1aceff61c244dc646f432b1873c10339624ab6d Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 9 15:31:31 2004 +0000 Added "#ifndef __cplusplus" around bool declaration. commit a27a27a1a94a9e4335c4676f19df6f1d4e237213 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 9 14:42:49 2004 +0000 Fix non-debug builds. commit b99118a46014e21c7ee7c3f1e3c2f558e2b596f5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 9 12:02:14 2004 +0000 Added option "[no-]trace". commit 81f0f838c513d9538fbf8247cd4b179bebdeed59 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 9 11:19:11 2004 +0000 Implemented debug domains which can be enabled/disabled separately. But still a lot of code has to be changed to use domains! The new macro "D_DEBUG_DOMAIN (identifier, name, description)" is used to define a debug domain which is used via "D_DEBUG_AT (identifier, ...)". The user can select debug output now, e.g.: no-debug debug = direct no-debug = direct/memcpy This disables debug messages in general, but enables all "Direct/" messages except "Direct/Memcpy". The other way around: debug no-debug = direct debug = direct/memcpy This enables debug messages in general, but disables all "Direct/" messages except "Direct/Memcpy". commit b14e0ec540bfdbdda959a344789f0d01d22810a2 Author: Ville Syrjala <syrjala@directfb.org> Date: Wed Jun 9 00:52:59 2004 +0000 Added texture engine blitting code. The texture engine requires a power of two source pitch so the code is still disabled. commit 8b1b25dfab1e51b20537d601242dcaef81e2c9b3 Author: Ville Syrjala <syrjala@directfb.org> Date: Tue Jun 8 23:01:33 2004 +0000 Mask x and y coordinate values. Fixes problems with negative coordinates. commit 7fe49524155576faa3eacef7dd07fe7aaa746ed3 Author: Ville Syrjala <syrjala@directfb.org> Date: Tue Jun 8 22:52:42 2004 +0000 Some cleanups, mainly cosmetic. commit 605276fb0dc30ec2b464d977780e7cb78ed4bd4a Author: Ville Syrjala <syrjala@directfb.org> Date: Tue Jun 8 22:48:05 2004 +0000 Fixed GetAccelerationMask( DFXL_DRAWSTRING ). commit e61b9126c67d07090e62c35934be56503d2f8483 Author: Ville Syrjala <syrjala@directfb.org> Date: Tue Jun 8 19:00:29 2004 +0000 Implemented missing blending modes. commit 6b381d4ee31f2bbc9705a04753253da4685c2a8a Author: Ville Syrjala <syrjala@directfb.org> Date: Tue Jun 8 18:51:01 2004 +0000 Check for illegal blending modes in ati128, mach64 and matrox drivers. commit dce4be52d3af6916d554022a8e136d45043069f0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 8 10:26:26 2004 +0000 Another tiny fix. commit ff294df8db6d9717fbc238673f5ceb16c1888dd9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 8 10:16:34 2004 +0000 Minor fixes. commit 6803f282d6b488d60dd7216a70d4bd3d9e9f3a5d Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 8 09:42:35 2004 +0000 Moved fusion_reactor_attach() after ABI version check to fix the failing D_MAGIC_ASSERT() and print the default ABI version error instead. commit ce00db0008ae037f6946365c31f6590e4c76b8d4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 8 09:30:56 2004 +0000 If the file passed to load_symbols() is not existent, lookup the full executable path via "/proc/self/exe" and compare its basename with the file name of the object for which the symbol table should be loaded. Avoid recursive (most probably endless) calls to direct_trace_print_stack(). commit 3a99032c58e37451d9ccdc2567f9a36e68d11259 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 8 08:38:11 2004 +0000 Fixed format strings. commit 52fb37e5bdfe27a85dc0fc52dae0d545ebb39ef1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 8 08:22:43 2004 +0000 Apply format & argument checking to message & logging functions. commit 664521f07fc248cacc6e845c2e54edb6a93705f7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 8 07:56:22 2004 +0000 When building shared AND static, filter out ".libs" for static libraries with newer libtool. commit 97086ad9e7474a4ca1f3da911f9fb2b62eb4489d Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 8 06:54:31 2004 +0000 Replaced double with float. commit 684f705cabbb41354e2c633c5071b560668aa58b Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 8 06:35:21 2004 +0000 Cosmetics. commit 5ee8d3241d7980284b2d488ff2cb4cd3ebd6a237 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 8 05:59:02 2004 +0000 Corrected CLRCF_ALL. commit 33180cea6683bae181fc0bab5eabf30dae3d3515 Author: Ville Syrjala <syrjala@directfb.org> Date: Tue Jun 8 00:07:55 2004 +0000 Fixed triple buffering. commit 9f376b09b3f99800b01ce551065da1777c125ddb Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 4 11:38:15 2004 +0000 Initialize addrlen. commit ed5881be57ae35c3475206983175f1f973e39311 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 4 11:07:17 2004 +0000 Code moved to wm. commit 94c0b384cf29380074db0ffb76c1063fb70d78dd Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 3 15:47:19 2004 +0000 Fix scope of y. commit 4376f601189f356ae8e49534498645f094eef4b0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 3 04:33:53 2004 +0000 Sync core ABI version with DirectFB. commit 8f42360aea036d8a37409ebc5dc62ce1d19fdda2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 3 04:32:19 2004 +0000 Over 20% of all added code lines ("+..." in this diff) are "D_ASSERT(...)" ;) Finished first version of modularized window management including the WM API. All wm specific stuff from the core has been moved to the "default" wm module. The refactored code is heavily cleaned up and easier to overview or understand. Some parts are much simpler now, e.g. using a single fusion_vector_*() line instead of several lines of code dealing with (re)allocation, moving etc. Another example is the merge of all seven restacking function implementations, being a single function now that uses fusion_vector_move() after calculating the new index based on different combinations of its three parameters that all seven cases can be mapped to. Changed parameter order of fusion_vector_foreach() to "element, index, vector". Added fusion_vector_foreach_reverse() processing the elements in reversed order. Changed fusion_vector_index_of() to return "INT_MIN >> 2" instead of "-1" if the element wasn't found. In case the return value isn't checked by the caller, this will most likely generate a bad address at least. Added fusion_vector_has_elements() as a more readable alternative to !fusion_vector_is_empty(). Added fusion_vector_move() to move an element from one index to another. Added DFB_ITEMNOTFOUND with string "Appropriate item not found!". Added magic to DirectLink being asserted whenever possible in direct_list_*(). Changed direct_list_foreach*() to allow variables that are no DirectLink*: Foo *foo; direct_list_foreach( foo, list ) { } versus: DirectLink *l; direct_list_foreach( l, list ) { Foo *foo = (Foo*) l; } commit 5a196b611d1a72a7d4dafd3e152bbb2d4268cdaa Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 2 17:06:49 2004 +0000 Implemented SetRenderCallback(). commit 9cd5828f9d7aa526f2bc300e9e7dd87ac4301f4f Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 1 23:10:09 2004 +0000 Update ABI version. commit fcc9698bfb052820db5f21ff5be21bbc0afc0b57 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 1 23:09:31 2004 +0000 First step towards pluggable window management: Added wm module framework as a new core part similar to core systems. Added option "wm=<wm>" to select the window manager module to use. Moved input event handling to wm module. Everything should work as before. The "default" wm module implements the recent behaviour. commit 51685c17447a6b40adc1aa925af71a610ba3f819 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 1 21:49:17 2004 +0000 Use repeat mode for power-of-two textures. commit 82d72d044a6d965aa17013eef32faf132800e888 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 1 21:48:06 2004 +0000 Removed outdated script, use directfb-config instead. commit d01b432155b48829ce156d08639d7165b38a717b Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 1 11:14:18 2004 +0000 Implemented TextureTriangles(). commit 97630b619dd1caeae52903ae7a6ee13b8ac1aebf Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 1 11:03:50 2004 +0000 Fixed missing buffer format in dfb_surface_create_preallocated(). commit c8e98c239062a130a90145ae6167c57a48dca59f Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 27 08:39:51 2004 +0000 Added optional 'indices' parameter to TextureTriangles() for indexed setup. Added method documentation: Maps a <b>texture</b> onto triangles being built from <b>vertices</b> according to the chosen <b>formation</b>. Optional <b>indices</b> can be used to avoid rearrangement of vertex lists, otherwise the vertex list is processed consecutively, i.e. as if <b>indices</b> contains ascending numbers starting at zero. The number of <b>indices</b> (if non NULL) or the number of <b>vertices</b> is specified by <b>num</b> and has to be three at least. If the chosen <b>formation</b> is DTTF_LIST it also has to be a multiple of three. commit e5de307b0c1531a004a7796ffd654cc4fe9f5993 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 26 23:53:57 2004 +0000 Fixed __NR_gettid related preprocessor conditions. commit d91286235cd322b67b80f212bf0b1985a6142468 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 26 15:05:31 2004 +0000 Set ABI version to 17 like DFB does. commit 342f9b61b4969c187f16206f342d54a6b6be7313 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 26 10:38:46 2004 +0000 Honor $(DESTDIR) when removing old header files, thanks to Kristof Pelckmans <kristof.pelckmans@antwerpen.be> for spotting. commit ca0fbd7ff3b25d7b77105e8fc12fdefc6cf70536 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 26 05:06:29 2004 +0000 Some fixes. commit 1ab80e24df984fd77e6d7e4833b81da146bb4988 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 25 18:17:04 2004 +0000 Changed HAVE_V4L2 to DFB_HAVE_V4L2. commit 0a5534411d38008aaad6cbcc1055dfa317389e84 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 25 14:21:08 2004 +0000 Fixed bug with Z buffer bits != RGB bits. commit 3beaf31b84bff8eb9b04a18121db1fb82c3f011d Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 25 14:08:31 2004 +0000 Fixed dfb_surface_reconfig(). commit 05098202905db122564265a5b96729aaa65d209e Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 25 13:57:34 2004 +0000 Changed include order. commit 8890d5131ef1ce1c1d75d0f1522647ee5151dd83 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 25 12:48:05 2004 +0000 Clear depth buffer with all bits set. Use z compare function LTE instead of GT. Multiply Z value by 65535.0f in the driver. Remove Z value offset. Added correct InvWScale for a nearVal of 1.0f. commit 35fc3a37e603988c4cc26f531ee934c6ec7ee684 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 24 11:56:23 2004 +0000 Fix off by one that caused a segfault. commit 8492716849b66718e63287f571fa3863eefa2d90 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 24 10:44:02 2004 +0000 V4L2 has to be enabled explicitly via "--enable-video4linux2". commit 0de45b1a5a4398aeb8476eb3aa9957c6f77bb2bb Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 21 09:33:28 2004 +0000 Preliminary depth buffer support. Specify DSCAPS_DEPTH to have a depth buffer allocated and used, currently hard coded to 16 bit. Some cleanups. commit 42f6c0331fa5e610c1baf6e264d811059fe003fb Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 19 11:31:28 2004 +0000 Added pc file. commit dcf71b630b6eeae724f02dd1d4c0e0622d5829dc Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 19 11:30:56 2004 +0000 Don't allow GetWindow() on the cursor window. Added more "$(top_builddir)/lib". commit 869921f4a15f31c4e34a3e2d837cb0e6fd9cc28b Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 19 11:25:24 2004 +0000 Moved new stuff into separate file. commit 753db174215c1c9632ca7c7d19f460ab4c4af932 Author: Andreas Oberritter <oberritter@directfb.org> Date: Wed May 19 10:52:03 2004 +0000 changed argument of SISFB_SET_AUTOMAXIMIZE from unsigned long to unsigned int commit 89bc6aa53001df78979448dd1f9f216322480e42 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 19 10:46:53 2004 +0000 Got textured triangles fully working. Fractional bits of Q are now 20 instead of 16, so the driver version is not run time compatible with previous versions. Finally have a working mga_log2() again. Adjusted card limitations, added byte pitch alignment. Added some safety to calculation of register values (use masks etc.). Cleanups and optimizations, a few assertions added. commit a2fa0d5605327c5cb5503b41049d351b1176afb8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 19 03:25:33 2004 +0000 Corrected scaling of NPOT textures. commit 0e7bf78c415059b27cde21a1de4344024c0654df Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 19 03:21:38 2004 +0000 Enabled anisotropic filtering in TextureTriangles(). Removed NOPERSPECTIVE flag, adjusted mga_log2(). NPOT textures still have wrong scaling. commit ff19077eda60deac44402a15894b951b586ba820 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 18 22:42:52 2004 +0000 Implemented matroxTextureTriangles(). commit 9639284f2029684ad3cbb1f26deea624ce710c77 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 18 22:24:23 2004 +0000 Follow lite_open() parameter change. commit 63af6b0ce03e118b742111a690a76d8927d97df7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 18 21:29:05 2004 +0000 Removed AC_C_CONST. commit 419d3f7a363d080a0a70f63928061f7375e417cc Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 18 21:28:46 2004 +0000 Removed AC_C_CONST. commit 2606be70cd5f0bdc239c18763afb8534dde1c5df Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 18 14:40:55 2004 +0000 Moved Voodoo headers to public directory. Remove old include directories during "make install" (directfb-internal/direct or /fusion or /voodoo). I know that's evil, but... commit a4517ef4136461f526f942fcb0c5674b632a1277 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 18 14:20:57 2004 +0000 Fix reinitialization problem. commit 418bd2b4bd3143147da5bd46722ee2dda3960198 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 18 01:11:55 2004 +0000 Include shmalloc in SUBDIRS for single app, too. This is to clean the directory via "make clean" after switching from multi to single app. commit 2871c0321683c87643946130e536c6fa3ff6e74d Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 17 08:02:00 2004 +0000 Implemented GetID(), GetDescription() and GetKeymapEntry(). commit 2626e4824d622af2af5221ab7489ef6143804eb5 Author: Ville Syrjala <syrjala@directfb.org> Date: Sat May 15 17:38:25 2004 +0000 Updated matroxfb patches for linux-2.6.6. commit ca169d37a174d9950bcfe2eb4e447b3723702709 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 14 19:48:08 2004 +0000 Applied patch from Henning Glawe <glaweh@physik.fu-berlin.de>: - fix the 'Makefile.am's to include $(top_builddir)/lib, so the construct 'mkdir blah; cd blah; ../configure; make ' works again - include the rest of the tools in libdirectfb-bin commit 4141bc3d519ca8f2b34ce93e4500f0fdf4ee8d2e Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 14 18:05:21 2004 +0000 Fixed debug messages. Added direct_initialize() and direct_shutdown() calls to the test program. commit b9d01dfbf01b7f80857b6683057960b70a69a206 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 14 17:47:34 2004 +0000 Increased read size for header and data, adjusted loop. Added some debug messages. commit f2c70b6f72d0e68eb1b313dccfc46ca5759ada19 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 14 17:45:47 2004 +0000 Fixed streaming buffer which was broken by the list structure change. It uses direct_list_append() and direct_list_foreach_safe() now. commit 1994b6bf3699eaa3ca101a5bdf2db7712e99adc1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 14 16:48:49 2004 +0000 Moved signal handling to libdirect. commit 8951f8859fec145a1d91d0a9f0e03b075b1f330c Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 14 16:36:14 2004 +0000 Added <Meta>-<Escape> description: Press Escape to return from fullscreen mode to the desktop. (currently not advisable if the fullscreen app is still flipping) commit 6cef9e240831e46afca9895d0279227ef507c877 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 14 12:16:02 2004 +0000 Implemented IDirectFB::GetInputDevice(). Added Dispatcher and Requestor for IDirectFBInputDevice and implemented CreateEventBuffer() and AttachEventBuffer(). Replaced some old copyright headers. commit a5d7a35dcab5560d49014e28ec57423058ae563e Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 14 10:27:10 2004 +0000 Link against libvoodoo and libdirect. commit a68ffc843b64a8cda6c5351e5ae86ba200ad309d Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 14 10:12:19 2004 +0000 Implemented all remaining IDirectFBFont methods. commit 579f6ac7da39a5f49517ced5c84a35ae4fa94d1e Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 14 08:43:42 2004 +0000 Implemented GetAscender(). commit b40d72aa3f92b25d57cbd90dbc17de84e6f24b70 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 13 20:58:50 2004 +0000 Implemented IDirectFBSurface::GetVisibleRectangle(). commit 131d5d361128fa2e571dbe149f995f769dd37e7e Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 13 19:03:05 2004 +0000 Implemented IDirectFB::CreateEventBuffer() and IDirectFBWindow::AttachEventBuffer(), phew... ;) Renamed voodoo_manager_register() to voodoo_manager_register_local() and voodoo_manager_lookup() to voodoo_manager_lookup_local(). Added voodoo_manager_register_remote() and voodoo_manager_lookup_remote(). commit 9d07571c402debbb3e24963283537b8ba962cce1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 13 19:00:33 2004 +0000 Forgot to commit the description of <Meta>-'S'. commit 1f191e8d43c43e068370e7169609a74c252b50e1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 11 12:03:36 2004 +0000 Allow per file debug mode forcing via definition of DIRECT_FORCE_DEBUG. commit 00854ecc0aa9ee8a8e8d9c615205332bf17ccccd Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 11 04:21:18 2004 +0000 Changed <Meta>-'S' to raise the lowest window, e.g. to revert a <Meta>-'A'. commit bab7379a565a586d792b1e7bac2a1ca3b6f93ef0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 11 03:51:16 2004 +0000 Added DFXL_DRAWSTRING that is set by dfb_gfxcard_drawstring_check_state() when it is called by IDirectFBSurface::GetAccelerationMask() for the current font. commit e65890898b0e10e2edfa0b6a3d34799349c7e774 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun May 9 23:38:05 2004 +0000 Added #ifndef around ABS and SIGN. commit d832fca05530f36776848b1a272122b46359486c Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun May 9 21:48:23 2004 +0000 Wrong variable name. commit 9da2a52ba61f873bad7533d4bc2f811e93d76115 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun May 9 21:46:50 2004 +0000 Added FusionSoundError() and FusionSoundErrorString(). commit 5ac7f9c109d32ae9d2ac188eb68fcfab9164df2a Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun May 9 19:31:31 2004 +0000 Added pkg-config files for libdirect and libfusion. direct/ and fusion/ headers are installed to the public include directory, now. Added a simple figure of the DirectList's structure. commit 0725564dbfe1fb7814f153e4c4371601374a543d Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 6 13:14:43 2004 +0000 Remove undefined DFB_LDFLAGS. commit 3ee9df46a45d3c386537ccad1f1c02c630ea8f13 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 6 08:07:24 2004 +0000 Fix build. commit 5f1e8b422f714148cb079a239d29cf4668e05f05 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 6 04:42:07 2004 +0000 Even nicer. commit 23cc3a2e3c17b8c9637366ecf0274ccb9e80adc5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 6 04:30:34 2004 +0000 Print error message if the given mode (via "mode=" option) is not supported. commit 1c1b08ad535b9b7c7fbb16991d4e41309b08b996 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 5 21:28:36 2004 +0000 Added message "DSDESC_PALETTE and DSDESC_PREALLOCATED not supported yet". commit 97752cc3a01c49ca818a4ca25b5e8166934fa840 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 5 20:56:10 2004 +0000 Increased color hash size. commit ec74d4066d9b8f1dc9209ec616999024f8b626a6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 5 19:55:00 2004 +0000 Migrated module management. commit 1b03ab3153c08ecb00943ed7f3302b3987d9136b Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 5 19:03:04 2004 +0000 Use DirectThread. commit 894b2e4787ca0556e2f3b75a06bf171a3bad89b2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 5 19:02:49 2004 +0000 Added direct_list_append() and changed the list structure to have the first element's 'prev' pointing to the last element of the list ;) Made direct_list_*() functions static inline. Added DirectThreadInitHandler which can be installed/uninstalled using direct_thread_add_init_handler() and direct_thread_remove_init_handler(). The registered init handler function is called at the beginning of new threads. Use DirectThread all over the place. Install init handler that calls dfb_system_thread_init(). commit 19793d56446fbd7500c941dd0405ecfdd3e1befc Author: Andreas Hundt <andi@directfb.org> Date: Wed May 5 17:54:30 2004 +0000 no longer include <linux/cache.h> and define __KERNEL__ which led to problems with some kernels, define cache size macros ourserlves. commit e8a985fec62da49df5c9aaecb363d357241f43ca Author: Andreas Hundt <andi@directfb.org> Date: Wed May 5 16:54:21 2004 +0000 remove unneccessary #includes commit b5cdadf7d1e33f21f220dbeec987ed2c8f49d605 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 5 09:48:32 2004 +0000 Bye bye, DirectFBCreate() ;) commit b02bd2abca3f0b943647145771431f2f7bafb786 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 5 09:32:48 2004 +0000 Added libfusionsound providing FusionSoundInit(), FusionSoundSetOption() and FusionSoundCreate() in the manner of the DirectFB variants. No need to initialize DirectFB in order to use FusionSound ;) commit 42b58de2e5b82826a48dad1c41c21a5754cd867d Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 5 08:07:30 2004 +0000 Removed obsolete stuff. commit dae42f97a074efc2418a6e118dabf1bba7ceedab Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 5 02:04:37 2004 +0000 Implemented SetVideoMode(). commit 63bdca7dd126c4a0f0c9e2766ef5f5d5fedef952 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 5 00:46:24 2004 +0000 Flush output buffer automatically after waiting 50 ms for explicit flush. commit d697db2f759215dda1c7b08ce4607c5c51fdab74 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 4 23:31:48 2004 +0000 Wait for response in Flip() if flags contain DSFLIP_WAIT. commit 6e2128e172c179cab8089c9cf377c27cbac7cb5d Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 4 23:23:03 2004 +0000 Don't use VREQ_QUEUE for Flip(). commit 01a2da6b309059c1a98b0be541c23cacb6a89af6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 4 23:14:24 2004 +0000 Added flag VREQ_QUEUE which has the effect that voodoo_manager_request() doesn't wake up the output flushing thread. It's used for all drawing related requests to increase the rendering throughput by avoiding small send()s. Experimentally using IPTOS_LOWDELAY. commit b210ce7ae2f3b7e6df8667586d82b5c243c7eb75 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 4 18:05:08 2004 +0000 Added interface instance tracking in debug mode, showing remaining instances at exit time (like it's done for allocated memory). Added DIRECT_UTIL_RECURSIVE_PTHREAD_MUTEX_INITIALIZER. commit b5438f94a2ab7f3e5774fd66e6d9013c4607b5c0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 4 16:38:50 2004 +0000 Link executables against libfusion and libdirect explicitly. commit 86bcba1e00ed0e615d90add6401d49f68e60cbdb Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 4 16:25:51 2004 +0000 Added thread names to debug output, stack traces etc. Added direct_thread_self(), direct_thread_get_name(thread) and direct_thread_self_name(). commit f001b12fba0e4f740dd96a0e3563a4bee77ec610 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 4 14:05:02 2004 +0000 Added configure option "--enable-voodoo", default is no. commit 55f6903bb0007a20357b37034ad2a1f83f755f16 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 4 12:53:02 2004 +0000 Implemented GetOpacity(). commit dd6f6012e196f231cc0e9a903c2ba2d108251954 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 4 12:30:24 2004 +0000 Further implementation. commit e18d3829ea6cb399cae7f4054e86080e0a9f30b5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 4 12:28:54 2004 +0000 Use TCP_NODELAY, increased buffer and max. message size. commit 191ef7eb9935f9ce75d15e286add59c54567e6e1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 4 12:27:33 2004 +0000 Implemented hash table resizing. commit 6efcdc4da28ecb44dd9e8284fafdf9de69a619d7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 3 14:59:08 2004 +0000 Ongoing Voodoo... got DFBTerm running. commit a2744e73568d7b1475fd7146c8f91ed5d6d6db76 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 3 10:53:34 2004 +0000 Argh. commit 333f553eeac0e1dde6982a2a6b95c74ea4bdc225 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 3 10:36:21 2004 +0000 Added requestor template. commit c6e9685ae1f0205cfda025e447e13fb259c99cff Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 3 10:32:21 2004 +0000 Added more cancelation points to event buffer feeding thread. commit 2ca894baedf945849e1e5a2f751b65f843c48a44 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 3 10:31:31 2004 +0000 Start debug output with upper case. commit 2ca51d1e4ff5981fd998a0944f2b328d556b8884 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 3 10:30:50 2004 +0000 Link against libfusion. commit 0ba4c4ac1fc2c918b1310188930e68605cdbe959 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 30 02:25:12 2004 +0000 Improved and cleaned up thread loops, resulting in better performance. commit 4adb447e964d75fd2adb2d13a27ac313122a6d30 Author: Andreas Hundt <andi@directfb.org> Date: Thu Apr 29 23:12:11 2004 +0000 if we do not have <linux/unistd.h> include <unistd.h> for getpid commit ebe125822d3450a82a9d30843641fbd91480b6d9 Author: Andreas Hundt <andi@directfb.org> Date: Thu Apr 29 23:08:57 2004 +0000 include pthread.h which is required for pthread_sigmask() on BSD commit 4def0b9f0497bc400a81a5874ab52c46e142b1b7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 29 21:50:11 2004 +0000 Fix gcc 2.95 build. commit a1c815a4ee51d73f5c0699e18103f4178edde90a Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 29 21:37:24 2004 +0000 Comply with changes in DirectFB/lib/. commit 675d78194aa08c849a0f3015f95bf7441cc5a333 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 29 19:08:35 2004 +0000 VOODOO Added network transparency to DirectFB ;) The concept is quite simple and working great. Each interface has two new implementations: "Requestor" on client side and "Dispatcher" on server side. Between them is a very small libvoodoo which manages network connections and provides fast and powerful message encoding and decoding. Each Dispatcher instance gets an ID which is also managed by libvoodoo. The Requestor sends a request message for each method call, specifying the remote instance ID and the method that is to be called. Parameters are appended to that message before it gets sent to the server. On the server side the Dispatcher interface is looked up in a hash table using the instance ID. After fetching the parameters from the message without copying any data except for some rare cases, the Dispatcher calls the "real" implementation. Some requests have a corresponding response and some don't, e.g. all drawing related methods return immediately after sending out the request. Methods that require a response block until the response is received. Each response contains at least the result (DFBResult). Further response data is appended to the response message and returned to the application after being processed by the Requestor. Not every Dispatcher is server side and not every Requestor is client side. IDirectFBEventBuffer and IDirectFBDataBuffer have a client side Dispatcher and a server side Requestor. The server has to send events to the client side by making a PostEvent request (without response). It also has to fetch data via requests to the client side data buffer (with response), e.g. while it is dispatching a RenderTo request. The client will send its compressed data (PNG for example) over network to the server ;) Another advantage is that existing applications can be used without changes. The setup is quite simple: There's a new program called "dfbproxy" which just waits for incoming connections (currently port 2323). It doesn't even call DirectFBCreate() before clients request that. Running applications via the proxy is done by passing "--dfb:remote=<host>". Notes about performance: If DirectFB is built with debug mode disabled, df_dok produces nearly the same results over ethernet. Running both the client and the server on the same machine is slightly slower right now. Notes about the implementation status: A lot of Requestor and Dispatcher methods are not implemented yet, but many demos are running already. IDirectFBDisplayLayer, IDirectFBWindow and IDirectFBInputDevice are missing completely so far. IDirectFBFont has to be changed to use data buffers, too. Currently the filename is transmitted over network and the font file is loaded from the file system of the server. OTHER CHANGES Print a warning message in dfb_screen_rectangle() when dfb_system_current_mode() returns NULL, e.g. during initialization. Moved fbdev and sdl modules from src/core/ to systems/. Added a magic to public interface structs, i.e. use D_MAGIC_SET/ASSERT/CLEAR to detect life cycle problems. Added "const" to some parameters in the public API. Added a minimalistic hash table implementation for usage with IDs as keys. Added direct_clock_set_start() that is called by Fusion's initialization to synchronize time stamps of debug messages. Changed D_MAGIC to enable spells with less than eight characters; this macro generates a magic based on the string (spell) passed to it. Added DirectResult which is the DFBResult outside of DirectFB. Added message macro D_UNIMPLEMENTED which prints a warning once. Added a name argument to direct_thread_create(), printed during creation and termination of threads. Moved fusion_pthread_recursive_mutex_init() to libdirect, being called direct_util_recursive_pthread_mutex_init(). commit b16bb03632ba78e661f4c0ac52a4897a550f637d Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 29 14:57:56 2004 +0000 Great thanks to "Vadim Catana <vcatana@registru.md>" for this patch fixing several issues with the overlay on Radeon9200! commit 707a3102d74726f00bd81e2e7a410bada8767b1f Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 29 05:54:54 2004 +0000 Allow kern_x or kern_y to be NULL. commit 28b98a461ec9312078dd49d473cbf848a8772aef Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 29 03:58:34 2004 +0000 Follow UTF8 code changes. commit b65a2f1940c5e04072f6d21dd966ce2f7d188ee9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 29 03:57:35 2004 +0000 Wrote a highly optimized version of "IDirectFBFont_GetStringWidth()". The previous version used the bloated "IDirectFBFont_GetStringExtents()". commit 413823c2c1aa4518eaa376f5fda7d22aa4c8bbb8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 29 03:53:21 2004 +0000 Replaced 256 entries lookup table "direct_utf8_skip" by the macro "DIRECT_UTF8_SKIP" and a 64 entries lookup table which is statically defined in the header again. Replaced the non-inlined function "direct_utf8_get_char()" by the macro "DIRECT_UTF8_GET_CHAR" which uses a much smaller and inlined function for non-ascii cases. commit bfb0dbeeff67354fb11f3155c5dd16fb8fe9626c Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 29 01:42:44 2004 +0000 If "__NR_gettid" is still not defined after including <linux/unistd.h>, print a warning and use getpid instead of gettid. commit 315df6985af6cf99afe9fe1b1b3a79bedbc4bd46 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Apr 28 03:25:35 2004 +0000 Work around libstuhl's sys_lib_??search_path_spec during cross builds (untested). commit afec3553f325e9d6ad9009c33754a6a00d155850 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Apr 27 06:15:20 2004 +0000 Added internal documentation, mostly diagrams. commit 1e7fd7dda91dee85372c5c391281f0ab56c83bd5 Author: Ville Syrjala <syrjala@directfb.org> Date: Thu Apr 22 15:49:59 2004 +0000 Fixed field parity option. commit 084564e29cead69c896834729c154edb74d98b18 Author: Andreas Hundt <andi@directfb.org> Date: Wed Apr 21 14:21:23 2004 +0000 updated savagefb patch for 2.4.26 commit 6f84fca7e84bb2ee193bd9cadb21570556742a59 Author: Andreas Hundt <andi@directfb.org> Date: Wed Apr 21 13:50:37 2004 +0000 - compile fixes - disable overlay support commit 7a8869e366b93b60d2cb82a885a683096a60aa30 Author: Andreas Hundt <andi@directfb.org> Date: Thu Apr 15 15:50:28 2004 +0000 -optimized version of rgb16 blitting with destination color keying -support for rgb32 blitting with destination color keying commit 35e00c9e7e36cabde22292e96127a21331c7b65f Author: Andreas Hundt <andi@directfb.org> Date: Wed Apr 14 18:17:56 2004 +0000 unoptimized implemetation of rgb16 to rgb16 destination color keying for testing purposes. commit 856de6055c24ca9058ff3bc96c8e86f8715f2bb1 Author: Andreas Hundt <andi@directfb.org> Date: Tue Apr 13 22:33:12 2004 +0000 minor cleanup commit 144be84f594841e2796c58019f5b4ecaa0a2f321 Author: Andreas Hundt <andi@directfb.org> Date: Tue Apr 13 20:08:44 2004 +0000 build neomagic driver commit fc6ebe75205c032cbd8bbfdca64d3bbcbead8022 Author: Andreas Hundt <andi@directfb.org> Date: Tue Apr 13 20:08:26 2004 +0000 port driver to DirectFB 0.9.21 internals commit ca4e31f1aadb91e70376d6a4bac878a16931c8d5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 8 12:02:55 2004 +0000 Fix single app core build. commit 931dc2843055f679b3176a9a10a0976a86bb39e8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 8 11:22:46 2004 +0000 include errno.h commit ce584f6609ccdc97acd8ba13cee9a38e6ea2b8d6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 8 10:25:27 2004 +0000 Fix assertion caused by double destruction of the core when applying the configuration fails. commit 7527482b1c8a9222f211e0af7622e556de842bf5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 8 09:14:18 2004 +0000 Force CPPFLAGS to be included for compiling dtest. commit fd0cc4dd01780c5a9ab47bdc5d2cd3fde576e755 Author: Andreas Hundt <andi@directfb.org> Date: Wed Apr 7 15:09:34 2004 +0000 - increase minor version (0.2) - applied overlay patch from Vadim Catana (thanks!) looks good, needs testing (no radeon here to test) commit 238382b661b79fa32fda33401b1a74855546084c Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Apr 5 12:28:28 2004 +0000 Follow internal changes in DirectFB. commit f48b4bac7d6b9d490ae111240347e34679437615 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Apr 5 12:27:56 2004 +0000 Moved interface handling to libdirect. commit 649540bcd8afa16e139aa55f7b988d437525c1af Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Apr 5 10:35:19 2004 +0000 Cleanup includes. commit 9d55931f5ca7cef5a8a456d624f70111e863e612 Author: Andreas Kotes <count@directfb.org> Date: Fri Apr 2 12:34:38 2004 +0000 compare errno instead of ret with EINVAL - fixes linux_input on 2.4 commit c3b29d306934ffbb7169c3f024dae253af03e7bb Author: Ville Syrjala <syrjala@directfb.org> Date: Thu Apr 1 18:41:50 2004 +0000 Use EVIOCGRAB ioctl to grab the device. commit aee488bfed29b173e12aa858298120f59d5e10e0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 1 11:01:45 2004 +0000 Fixed manual pre buffering. commit db19d2a99bf87e74ea2594602eb025c590f9f175 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 1 10:49:02 2004 +0000 Fixed calculation of presentation delay. Removed obsolete includes, mainly from the DirectFB core. commit fcb650ef87b167d5eaa49f1e272928b03d0ef237 Author: hunold <hunold> Date: Wed Mar 31 10:13:30 2004 +0000 - fix unknown reference to MAX by includeing <direct/util.h> commit ad8797d13e1c65be90368e64d1199de60b7c7c7d Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 30 23:44:10 2004 +0000 Follow changes. commit 2b5bafc3f14dd9b34e7115187a8ac686cd664875 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 30 23:42:36 2004 +0000 Further migration. commit b742b1cee162ee36d81781ecccee973461bbaa11 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 30 22:51:33 2004 +0000 Migrating tree *creak* commit b92f364bf157c52d4466db6efc9b52633ef7c02a Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 30 21:38:37 2004 +0000 Migration. commit 9c424317a8c7e65892068456c44958c202bd5c50 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 30 19:48:08 2004 +0000 One more include was missing. Remove accidently added file. commit dcd1e2edf6ac5030c5270c9bc78c10bec412f50e Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 30 19:37:11 2004 +0000 Fix Makefile.am for static builds, copy'n'paste broke it. commit 9e0b23a846e2a394346ac1efca2cb724258884d1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 30 19:13:39 2004 +0000 Added missing includes. commit 79c27815e2d98b354ec1d6e125f8a32625d9bb16 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 30 19:00:56 2004 +0000 Follow changes. commit 48dfef70850a8786b55668d931f3d4897bc5be8f Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 30 18:57:43 2004 +0000 Follow internal header and namespace changes in DirectFB. commit 943227457616cf3c9c04c249a3c756acc37400c5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 30 18:35:08 2004 +0000 Giant cleanup and restructuring. There are three libraries now: libdirect, libfusion and libdirectfb. commit a5b43ba63b828190794208c46be861d41af9d36a Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 30 13:27:19 2004 +0000 Fix non-debug build. commit 115b24243e7de219d80237f74c94a969027bf45e Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 30 12:03:36 2004 +0000 Fixed warnings. commit a548edfedf927f3cae542924b1481f3bc9a0b6ac Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 30 10:31:27 2004 +0000 Added DIRECT_BUILD_TRACE and DIRECT_BUILD_NOTEXT. commit 51ae67bcfdd5428f37a7450f632c3a258573fe7a Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 30 10:12:58 2004 +0000 Generate and install a header file containing some defines like DIRECT_BUILD_DEBUG. commit b9035dbe990697ca3b72ecae6530a2a82297a5b1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 30 09:31:13 2004 +0000 Migrating base functionality to libdirect. commit 9e6d496157d58194ea7c47cb80b01970117bb20a Author: Ville Syrjala <syrjala@directfb.org> Date: Tue Mar 30 05:25:46 2004 +0000 Use better constants for black/white level calculation on G450/G550. commit 43fd328e78d9b7ed8fdff92f9a8687fbe5869608 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 26 18:33:26 2004 +0000 Added missing break in WaitForDataWithTimeout() to return upon timeout instead of busy looping. commit cdb8309a90477700abb0a126ab0ea77e932321da Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 24 12:26:07 2004 +0000 Return DFB_DESTROYED in IDirectFBSurface_Window_GetSubSurface() if the surface of the window is NULL, e.g. after destroying the window. commit 671918392e4fa14d61b292dfe00e9b219cbb4269 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 24 07:26:39 2004 +0000 Show total number of bytes allocated. commit 9bcb4d6eb278efff00fc3ba1ff49e6977cd6d624 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 24 07:16:14 2004 +0000 Rewrote shared memory allocation debug list handling using capacity based list reallocation like FusionVector does. No longer store local pointers to file and function names within the shared memory list entry *sigh*, but copy the strings into the list entry which stores function names with up to 48 characters and file names with up to 24 characters. Added option "-s" to dfbdump to show this list of all shared memory allocations. commit 0e9e6b734048b22228c35fe138ccc9725687cb47 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 24 03:25:47 2004 +0000 Show the reference id of new objects in debug message. commit 19e745610355a4b9d8aaf1af300ab8039cdc0b7a Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 24 02:47:31 2004 +0000 Prevent IFusionSoundPlayback::Continue() from starting an empty IFusionSoundStream. commit ae5d1a1e71eaf03f2e6643d86c873607c0352609 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 24 01:50:42 2004 +0000 Some fixes and cleanups. commit 2e3426034de39a472dc706969b366cd290cdb9b9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 23 22:00:40 2004 +0000 Reflect prebuffer amount in GetDescription(). commit b1567802b3e34acfdcafd4c536917649c31f5907 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 23 21:28:27 2004 +0000 Fix collision of "signals" with Qt headers. commit e69a4701dc2046d8860409ffefb48f097bc85ca0 Author: Ville Syrjala <syrjala@directfb.org> Date: Mon Mar 22 01:04:08 2004 +0000 Workaround for segfault due to dfb_system_current_mode() returning NULL. commit c64d36e5d4ae80cdb0de30fd119fb05219da6c91 Author: Ville Syrjala <syrjala@directfb.org> Date: Fri Mar 19 10:46:17 2004 +0000 mga_waitidle() should wait for idle DMA. commit 25fce68695b2b6c66d847095ce96ea7ad9938ea4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 16 15:15:25 2004 +0000 Changed upper mixing block size limit from 16384 to 8192 bytes. Changed maximum mix ahead from 50 ms to 80 ms. commit 4951d56d2aef27a9d88e527323d45c7f4701d5ef Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 16 14:47:09 2004 +0000 Resolve more symbols. commit ba691bdfd7cab025016f8c7a5fa7889bba4b71e4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 16 00:44:16 2004 +0000 Use device's block size, but min. 4096 and max. 16384 bytes. commit 6559b36053961aa29c5fb03f1b17bb98b43daf59 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Mar 15 18:34:13 2004 +0000 Fixed and used fusion_list_foreach_safe. commit dc9f26632de2db1866fb69b751e5182cba6be822 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Mar 15 18:33:41 2004 +0000 Print full object path in stack trace. commit 354bbf21c91ac466ecd83ed1c6cc9b21f2c80f1a Author: Andreas Hundt <andi@directfb.org> Date: Thu Mar 11 16:34:00 2004 +0000 - added pause/continue button for debugging purposes (Stop()/Continue()) is inaccurate commit b9b95e4b8962f0e02c410b4267f31b44206351eb Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Mar 8 11:50:29 2004 +0000 Turn AC_MSG_ERROR into AC_MSG_WARN. commit 26fab30bf10f416cbc77e952c02d2defd1fde912 Author: Ville Syrjala <syrjala@directfb.org> Date: Mon Mar 8 06:38:23 2004 +0000 Added sysfs support to matrox i2c detection code. Now it works on 2.6 kernels. commit ccdb0cecb337b53ccfbe16aa4661c58ee528ab95 Author: Ville Syrjala <syrjala@directfb.org> Date: Wed Mar 3 12:31:31 2004 +0000 Fixed deadlock between playlist and playback. commit ce2812c501dfee69f1d964ed7d17096bb9604b98 Author: Ville Syrjala <syrjala@directfb.org> Date: Tue Mar 2 23:59:32 2004 +0000 Millennium I doesn't support source color keying. commit d56ae483e01fe63ae8b4d67b3eef7d64b50a69bd Author: Ville Syrjala <syrjala@directfb.org> Date: Tue Mar 2 23:51:41 2004 +0000 Don't try to find the PCI device unless it's actually needed. The framebuffer address check can actually fail with Millennium I/II because matroxfb lies about the address. commit 2a5a5d22812a27619a69318fca127ebefcb7802e Author: Ville Syrjala <syrjala@directfb.org> Date: Tue Mar 2 19:33:41 2004 +0000 Added SGRAM autodetection for mach64. Removed [no-]mach64-sgram options. commit f617549fb705e1ea3def2bc76e7e2b6f3dae8db1 Author: Ville Syrjala <syrjala@directfb.org> Date: Tue Mar 2 16:17:13 2004 +0000 SGRAM auto-detection via /proc/bus/pci. Verify that we have found the correct entry in /proc/bus/pci by checking against the physical frambuffer address. Tried to make /proc/bus/pci code better looking :) Moved mdrv->g450 to mdev->g450_matrox and added device_data pointer to driver_data. Removed "#ifdef FB_ACCEL_MATROX_MGAG400" stuff. Not all instances were covered anyway. commit 295588832f120d590457d52fa999eebe6545a1a0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 27 16:17:40 2004 +0000 Remove accidently commited test of "__attribute__((const))". commit df1e165b4fd3b65907e850bb97521fd68967d44c Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 27 11:59:04 2004 +0000 Added some comments. commit 9e632b5def17fb91074fc3659b1503ab99289120 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 27 11:28:14 2004 +0000 Switch to color keyed cursor if shape doesn't have alpha or if translucent windows are disabled. Color key is hard coded to 0xff 0x00 0xff. This will change upon introduction of real cursor objects in the core. commit b0ca6c15ed3873b410f31937b4f04796ef3176af Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 27 10:43:20 2004 +0000 Fixed redefinitions of _GNU_SOURCE. commit 458a61d13665b8aeb1500e2939128a94140dc884 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 27 08:48:43 2004 +0000 Fixed failing assumption upon window destruction, i.e. assume that either the window is not destroyed or the event is DWET_DESTROYED in dfb_window_post_event(). commit 47a931d734f265f3eeb1bf31ed9b3bbbb016b66c Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 27 08:44:25 2004 +0000 Added DFB_MAGIC stuff to arena. commit 55fb47d38adcb2a6124dae687e5da05cd443ade3 Author: Ville Syrjala <syrjala@directfb.org> Date: Fri Feb 27 05:31:29 2004 +0000 Added SGRAM block write support to mach64 driver. Bumped mach64 driver version to 0.12. commit e457bfae62455f53bb62accc3dd566881a9a3b49 Author: Ville Syrjala <syrjala@directfb.org> Date: Fri Feb 27 04:58:06 2004 +0000 Added detection for Rage Pro chips. commit 531bc44bc40274bf067ebf7e74c9a0b5a8502fb2 Author: Ville Syrjala <syrjala@directfb.org> Date: Fri Feb 27 04:44:40 2004 +0000 Fixed blending once more. Some 3D registers aren't accessible unless SCALE_3D_FCN is set. commit 22ddbb31a72d8ee753b5fbd3ee3a7d9049ccd4bc Author: Ville Syrjala <syrjala@directfb.org> Date: Wed Feb 25 13:21:07 2004 +0000 Re-enabled 2x horizontal zoom with RGB32 on G400. The problem was that BESHISCAL wasn't doubled when 2x zoom was enabled. commit b71d409302e1dc8737bd9daeafdd61865f6fa5bb Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 25 03:15:13 2004 +0000 Add "-D_GNU_SOURCE" to DFB_INTERNAL_CFLAGS instead of CPPFLAGS to have it exported via directfb-internal.pc making external modules much more convenient. commit 3319099f98e4964ee1515cb76a53537771d42089 Author: Ville Syrjala <syrjala@directfb.org> Date: Tue Feb 24 09:23:12 2004 +0000 Renamed DSCAPS_FLIPPPING to DSCAPS_DOUBLE. commit f7f3ceb88b3df242385f264bd1d4f19b138a2349 Author: Ville Syrjala <syrjala@directfb.org> Date: Tue Feb 24 04:07:36 2004 +0000 2x horizontal zoom doesn't work right on G400 with RGB32. It doubles the image width and if you move the image to the right so that over half of it gets cropped the whole image disappears. Without hzoom enabled things seem to work just fine even with the pixel clock running at > 200 MHz. commit fd10e00bc33c9d48c74a048e95774bf7c81a6a28 Author: Ville Syrjala <syrjala@directfb.org> Date: Tue Feb 24 02:09:12 2004 +0000 Matrox BES overhaul: - Moved G450/G550 detection out of CRTC2 specific code because BES needs it too. - Max source width is 2048 for G450/G550. - 2x horizontal zoom pixel clock limit is 234 MHz for G450/G550 (from XFree86 source). - Handle destination cropping. - On G400 all horizontal parameters need to be doubled for RGB32. - G450/G550 can handle RGB32 without scaling limitation. - Bumped driver version to 0.7. commit bba9cd1250e9b13feb0690cc5565c1ab106b4ab8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Feb 23 22:44:44 2004 +0000 Fixed Bop_a8_set_alphapixel_Aop_airgb(), i.e. render opaque pixels of glyphs correctly onto AiRGB surfaces. commit d3de90207dc5c9153f06a66b11b7acfe2d246291 Author: Andreas Robinson <andors@directfb.org> Date: Mon Feb 23 09:05:14 2004 +0000 Long standing I420 video bug (trashed display) fixed. commit b58dc796f21ec8d682c0ba88641896dc94abc880 Author: Andreas Robinson <andors@directfb.org> Date: Mon Feb 23 08:58:13 2004 +0000 Added color adjustment code. It is disabled for now - the DFB->HW mapping is not yet producing correct results. commit 6e6ae0ebe8e576b3b5e93b6a3eab67e68bda68c7 Author: Ville Syrjala <syrjala@directfb.org> Date: Sat Feb 21 04:28:31 2004 +0000 Oops. commit 08ccb946c95f34498c000c5aefb11c7e8a6bd5f6 Author: Ville Syrjala <syrjala@directfb.org> Date: Sat Feb 21 04:25:58 2004 +0000 Destructor forgot to use dfb_layer_region_unref(). commit 7371f807f041c1cec16fa927f1eb4da848c6280e Author: Ville Syrjala <syrjala@directfb.org> Date: Fri Feb 20 22:58:23 2004 +0000 Fixed long standing typo: gAquire() -> gAcquire(). commit a55c4c9625af7abafb821fe990a216f7e779935b Author: Ville Syrjala <syrjala@directfb.org> Date: Thu Feb 19 22:43:43 2004 +0000 Added support for format conversion blits and DSBLIT_BLEND_COLORALPHA. DSBLIT_BLEND_ALPHACHANNEL, DSBLIT_COLORIZE and TextureTriangle() would require using the texture engine. Unfortunately texture pitch must be a power of two value so this would require changes to the memory allocator :( Changed alignment limits to match hardware capabilities (hopefully). Reset SCALE_3D_CNTL and OVERLAY_SCALE_CNTL driver_close_device(). Bumped driver version to 0.11. commit deb1d1bf019469a5de6a66f8bd1771b09131fac2 Author: Sven Neumann <neo@directfb.org> Date: Mon Feb 16 15:45:18 2004 +0000 Changed License field to LGPL. commit 134ab65fe5ac7015cc6b57b96babb9f59ccd1858 Author: Ville Syrjala <syrjala@directfb.org> Date: Sat Feb 14 20:58:48 2004 +0000 dfb_layer_context_set_configuration() used old data for window stack update which eventually caused a segfault in gFillRectangle(). commit 1bdb1a10c6cdd2a8188ce812e9d7baaca713b34a Author: Ville Syrjala <syrjala@directfb.org> Date: Fri Feb 13 15:50:09 2004 +0000 Initialize ALPHA_TEST_CNTL in mach64EngineReset(). Fixes blending. Bumped driver version 0.10. commit c7d03fce9f1ffef992887b93e8b50bacf1eaee70 Author: Ville Syrjala <syrjala@directfb.org> Date: Fri Feb 13 01:26:18 2004 +0000 Added DSDRAW_BLEND support for GT chips. Added mach64EngineReset() and initialized some registers just in case. Divided mach64CheckState() to GT and non-GT variants. DST_BRES_LNTH was written too early which broke blended lines. Strangely enough non-blended lines were fine without this change. Reduced top trapezoid height by one in FillTriangle(). The line in the middle was being drawn twice which looked bad with blending. Bumped driver version to 0.9. commit 8f7a2d5fd10ae2626e647f9d6f895e6fa29fe766 Author: Ville Syrjala <syrjala@directfb.org> Date: Thu Feb 12 17:06:01 2004 +0000 Bumped driver version to 0.8. commit 71761cffc62f8b79bdda330b86c0ac9c91f55e79 Author: Ville Syrjala <syrjala@directfb.org> Date: Thu Feb 12 17:04:34 2004 +0000 Added FillTriangle() support for GT chips. commit eb9ca3734c67d1ffe623961a53ec53b3f470ceda Author: Ville Syrjala <syrjala@directfb.org> Date: Wed Feb 11 10:44:46 2004 +0000 Only GT models have front end scaler -> no StretchBlit() for older models. Only set DST_LAST_PEL bit for bresenham lines. It doesn't affect antyhing else. Overlay source size is limited to 720x1024. It's actually 768x1024 for 3D Rage (LT) Pro but we can't tell the difference from the accelerator ID :( Fixed overlay source color keying. Fixed overlay source cropping for planar formats. Bumped driver version to 0.7. commit bcd78bf993f62ddaf9b494bcca2c207ff9f674ac Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 11 09:04:04 2004 +0000 Use fusion_pthread_recursive_mutex_init() here, too. Added "-D_GNU_SOURCE" to CPPFLAGS. commit 9a6545e8e81429a68a2b1b23149488b6b895e043 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 11 05:41:02 2004 +0000 Fixed segfault during destruction of input only windows, e.g. when closing the context menu of an entry in gtk+-directfb. Added utility function fusion_pthread_recursive_mutex_init() which is used everywhere now instead of several pthread_mutexattr_*foo() calls. Moved DWET_DESTROYED notification to the end of dfb_window_destroy(). Increased safety of single app core version of fusion_ref_down(), i.e. move the reference watcher call into the locked code section. Moved "-D_REENTRANT" from CFLAGS to CPPFLAGS. Added "-D_GNU_SOURCE" to CPPFLAGS. commit d873c7184ad462fe74df150927230bdf9ccbb277 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 11 05:17:58 2004 +0000 In DFB_MAGIC_ASSERT(obj,magic) do DFB_ASSERT(obj!=NULL) first. commit 31063039e29e3c2b020a65ebf58af000a4ae372c Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 11 04:39:20 2004 +0000 Removed annoying surface listener debug output. commit 244b0ff4c4259d4728eff17d14edbb39e513d469 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 10 18:56:47 2004 +0000 Specify a negative prebuffer amount in the stream description to disable automatic playback at all. Only IFusionSoundPlayback::Continue() which is accessable via IFusionSoundStream::GetPlayback() will start the playback then. commit 9e5c4b6a5b4b2a7de27e7f8b010d5835688be986 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 10 12:43:17 2004 +0000 Reset input field to zero upon Flip(). Don't wait for previous settings to be loaded when setting new ones. Use correct vertical zoom again, green line at bottom is from decoder. commit 0fddb092efae0454e3b98013159ada59b8ff77d6 Author: Ville Syrjala <syrjala@directfb.org> Date: Tue Feb 10 11:45:11 2004 +0000 Added stretch blitting support. Bumped driver version to 0.6. commit 46e5334ceb0fea0d94d2df74b657e50ded8aeee0 Author: Andreas Hundt <andi@directfb.org> Date: Mon Feb 9 19:07:13 2004 +0000 - support for powerpc (handle mmio reads and writes correctly) commit 90d96c8f8d054ee291f7dcf48fa73deb2d305648 Author: Ville Syrjala <syrjala@directfb.org> Date: Mon Feb 9 09:02:57 2004 +0000 Added source and destination color keying to the overlay layer. Fixed drawing/blitting color keying bugs. No need to replicate bits to fill whole DP_FRGD_CLR register. Removed a DSPF_RGB24 case that was left in accidentally. Bumped driver version to 0.5. commit cd532f73b7781d027a30e45b0f47314f2bc15d28 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 6 18:07:07 2004 +0000 Added DLOP_DEINTERLACING support to video layer. commit 470433d3d79c238182ceaca67c2e9a7525330054 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 6 15:29:12 2004 +0000 Fixed warnings. commit 34e921cc7e41f7ebc95caef8cce18550db073228 Author: Sven Neumann <neo@directfb.org> Date: Fri Feb 6 14:06:18 2004 +0000 shut up CVS commit 5aed191fc82c78cd644535c5f9237b9e29568ed9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 6 13:53:57 2004 +0000 Commented out annoying assumption in dfb_core_is_master(). commit 0a80ea3e036187f47b2c5e6aef10b527ecfcb0a2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 6 13:50:34 2004 +0000 Replaced all 'x$foo = xyes' by '"$foo" = "yes"' etc. commit bddff63b33c38c5cd76c1c0e07cacc94d01eade4 Author: Ville Syrjala <syrjala@directfb.org> Date: Fri Feb 6 11:56:15 2004 +0000 Initialize SCALER_H_COEFF registers. Bumped driver version to 0.4. commit e92a387d86ed3a52bad0f808c16f822bd44fa171 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 5 13:01:37 2004 +0000 Added IFusionSoundStream::Flush() which stops playback and resets the buffer. commit 0d1f448a5c13b408293aed32a5970ccdd8145a9d Author: Ville Syrjala <syrjala@directfb.org> Date: Thu Feb 5 11:54:33 2004 +0000 Added overlay support. Bumped driver version to 0.3. commit b28ff9f69c42d5c6756c50ee558420d58cc19045 Author: Ville Syrjala <syrjala@directfb.org> Date: Wed Feb 4 14:11:46 2004 +0000 Fixed state handling. Bumped driver version to 0.2. commit 359ea62ac8754978d9190e7d484ae2ebe09595d8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 4 07:47:55 2004 +0000 Some optimizations. commit 4a463d3c6ed006d772d10d73b9abf69fac3fc427 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 4 05:18:29 2004 +0000 Rewrote symbol lookup used by stack trace dumping code. The symbol list is no longer generated at build time for libdirectfb. Use popen("nm -n ...") to load symbols of any module on demand. Produce gdb like stack dumps (output formatting). commit 104d42e5c792f7ae7f467494123a17ae74e06d97 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 3 23:07:14 2004 +0000 Removed all "non-static inline" for now. commit d5b60341429292bd11b6c42e8918bb202a2cd6d8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 3 23:05:58 2004 +0000 Added DFBDisplayLayerBufferMode to the auto generated "enum value / name string" mappings in "directfb_strings.h". Added DLBM_UNKNOWN for null termination of the map. Removed top level indention of "directfb_keyboard.h". commit 3a200c014c295735db5928cf014635e33dd1dc47 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 3 17:38:33 2004 +0000 Changed audio device output buffer size (mix ahead) from 40 to 50 ms. commit 2173c24d57b786186f497beba4c4a43d8f992947 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 3 17:15:22 2004 +0000 Put DFB_DEBUG into config.h, too. commit 1304629fb2e6d966866fca7d993ab053b933ff07 Author: Ville Syrjala <syrjala@directfb.org> Date: Tue Feb 3 14:08:30 2004 +0000 Fixed cosmetic copy-paste error. commit 7faf2adef1603907f4ffa9e69a3cd2883fdc426d Author: Ville Syrjala <syrjala@directfb.org> Date: Tue Feb 3 12:57:36 2004 +0000 Added ATI Mach64 driver. commit 7908d7f1790fd27e42624734398f495eebc2211d Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 3 04:02:59 2004 +0000 Check for timeout more often (every 16384 th iteration, was every 65536 th before). commit 344f1068e072c445c070247dd57fee37d53fbd22 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 3 03:54:57 2004 +0000 Added benchmarking macros. Each benchmark runs for one second now. commit b2f63d65392a676f93209228268598c767b0e7b2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 3 03:16:13 2004 +0000 Use recursive mutexes in threaded mutex benchmark. commit 1a85345b7bfb4f56b9df63ef2705659f80b42b4a Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 3 02:56:20 2004 +0000 Replaced getpid() reference benchmark with an flock(2) benchmark. commit 7fe6de813ad803473562396e25aa8b7d93e04d1c Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 3 01:16:29 2004 +0000 Detect if device buffer underruns and print a caution message. commit e3ea9127a481d3bc9839474e77bfb3d5f14e89ea Author: Andreas Hundt <andi@directfb.org> Date: Mon Feb 2 20:52:15 2004 +0000 - set default overlay mode to YV12 instead of RGB16 (just testing) commit 02ac1ef679c119ca9d7062829a858f1ef78ef41b Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Feb 2 20:49:53 2004 +0000 Added configure option "--enable-zlib" that activates gzipped screen shots etc. commit cb1458c01f68c68fab416e51ec1f735e55963bd0 Author: Andreas Hundt <andi@directfb.org> Date: Mon Feb 2 19:48:51 2004 +0000 - if the environment variable DFB_CLE266_UNDERLAY is set, the videolayer is treated as underlay. primary layer hooks will be installed, so that the transparency of the overlay cat be set by using the primary layer interface. the GetLevel/SetLevel stuff might act strange now. will be fixed later. commit 8bd1780423c751fdd1c281b946e6c055b1a70c67 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 30 16:34:12 2004 +0000 Fixed an error handler. commit 993e3a9220bff14ac935ab136e2226e8dc622414 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 30 15:54:31 2004 +0000 Use fixed block size of 4096 (~20 ms audio). commit 30b3f1d25c058f3ca8ca6e27a15a98ae88de5bce Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 30 15:08:35 2004 +0000 Forgot to decrement num_buffers in buffer_destroy(). commit 5a5077d6e8b8f7bbcdf13c1b79c1de33ecf7f8fa Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 30 14:57:34 2004 +0000 Add -finstrument-functions to internal flags if enabled. commit c0fa9a31a1d25dd8b55893addf905d2c0f15294d Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 30 14:34:14 2004 +0000 (Re)added locking to listeners. commit 497d43ecd27187554b3fb0b75dc26a3aedc89b36 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 29 19:48:39 2004 +0000 Added IFusionSoundStream::GetPlayback() for advanced playback control for streams, e.g. pitch, volume, pan and manually start or stop. commit b40f2a64c048f750f789e3220cb4c8dcf5843f04 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 29 15:18:08 2004 +0000 Enforce realization of layer region upon GetDisplayLayer() and SetCooperativeLevel() again to fix e.g. SetScreenLocation() for layers without a surface. commit 19fe0bc3474d075e339b413f155fd90c39ec0cba Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 28 17:32:35 2004 +0000 Show layer levels. commit 7a43f301c0e2b223901b337a2f1723035254503c Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 28 17:17:11 2004 +0000 Print "unknown" if pixel format of context is unknown. commit fc1a25296fe1324f7baa57285ed9e0cce9a2bf67 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 28 08:33:38 2004 +0000 Dump contexts. commit e5de11210b19b571a47ff3c00004d8ed2b48ce02 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 28 07:44:39 2004 +0000 Avoid multiple dumps of local memory leaks at exit time. commit 2979c927f785fc79c55084ec746fc2ec156af0d6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 28 07:28:28 2004 +0000 Further finalization of the new layer code. The primary region of a layer is no longer created and activated during creation of the context. IDirectFB::GetDisplayLayer() no longer causes the layer to be shown or its surface to be created. Even IDirectFBDisplayLayer::SetCoooperativeLevel() and IDirectFBDisplayLayer::SetConfiguration() no longer cause that. A layer is allocated and shown upon: 1) IDirectFBDisplayLayer::CreateWindow() 2) IDirectFBDisplayLayer::GetSurface() 3) IDirectFB::CreateSurface() <- if primary & fullscreen Fixed failing assumption for exclusive access to additional layers. Fixed missing context and region destruction after releasing the layer. commit f153145ac8711da92e4b239ea2c1d1f77f47e300 Author: Ville Syrjala <syrjala@directfb.org> Date: Tue Jan 27 22:27:58 2004 +0000 Re-added CRTC2 sub-picture opacity handling. Don't touch sup-picture bits of C2DATACTL in CRTC2 code. Removed mcrtc2->enabled. commit e435f5cfa515eccb42cca5c7004784d5ec6f157d Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 26 14:41:52 2004 +0000 Decided to use floats in DFBVertex instead of fixed point. commit 38c8f414f0cd14bcb669a33e581d8fd38d0365c1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 26 14:36:41 2004 +0000 Fix sanity check for DTTF_STRIP. commit a60fd1a4fafdc87574ee7752864c93606abbba4e Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 26 14:25:47 2004 +0000 Initialize pthread key. commit ca5cdd584ab32b16be51f9266edd827b088e5ae1 Author: Ville Syrjala <syrjala@directfb.org> Date: Fri Jan 23 18:49:50 2004 +0000 Use DFB_COLOR_BITS_PER_PIXEL() to calculate surface palette size. commit b545132b89b811a127676300a808e1c1bd2e5efd Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 22 17:15:06 2004 +0000 Added IDirectFBSurface::BatchBlit() which increases pixel throughput of many small blits with same source and destination, e.g. custom font rendering like GTK+-DirectFB does. Benchmarks (P3 800 MHz, G450 AGP, 1280x1024, 16bit) Size.......Blit...BatchBlit (10 blits at once) 8x8..........9.....35 16x16.......36....138 32x32......144....259 64x64......326....327 128x128....363....367 256x256....386....390 in MPixels/sec commit 708bae68c06eb7fc38910c711215fb5bf9c27e84 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 21 22:00:16 2004 +0000 Fix build for gcc 2.95. commit 34818a9f9bda1b22cd3e524ee406487dbdd354d6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 21 20:53:46 2004 +0000 Revert accidently commited change. commit 006ddd597c9751ee8c7116074790584ff9b2bbfd Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 21 19:09:54 2004 +0000 Use the sample rate as buffer size if not specified in the stream description. commit 45bdc665bf4c7a39cbcf330e6881496a07b72037 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 21 18:59:50 2004 +0000 Added parameter "DFBBoolean *playing" to IFusionSoundStream::GetStatus(). commit 31084e7aa9ca07bbf4a50bf2cbf53e0803506f57 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 21 18:41:16 2004 +0000 Fixed option "linux-input-ir-only". commit 88f30c57c6ce95487f86c0109a7577858c4e38f8 Author: Ville Syrjala <syrjala@directfb.org> Date: Tue Jan 20 22:09:26 2004 +0000 Store default color adjustment into layer context. commit 1d9ecac807dfd2606164ef588ea842f817925c3d Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 20 19:36:39 2004 +0000 Added option "linux-input-ir-only" which tells the linux input driver to ignore all non-IR Linux Input devices. commit 6ba9f68f786ed958cd757d3301919ee84937b190 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 20 02:24:14 2004 +0000 Implemented DTTF_STRIP and DTTF_LIST, too. commit e24979c34a8b5079d87f972fb51b28f7339d6b36 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 20 02:21:00 2004 +0000 Fix doc for DFBTriangleFormation. commit eefb37cb8a3c8ddc3206d240f004d0a5c2e42d6e Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 19 17:31:31 2004 +0000 Take linux input code as hardware keycode. commit 87de49babbb52e72116f278697ce5adb3ae06d54 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 19 14:09:54 2004 +0000 dist fixes commit 86a349cf91e7218bb6cda8ccead1d3275d0039df Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 16 20:27:47 2004 +0000 Use CSLF_FORCE, fixes failing PlayTo() on a fresh surface. commit 1f7264083e7d5c8bf334cb7c6d9d2754b7e3728b Author: Andreas Hundt <andi@directfb.org> Date: Fri Jan 16 17:54:08 2004 +0000 do not use uc_ovl_setup_fifo(), it does not work as expected and causes display errors. commit 2e78810414fb82a3f70408877cb8026d3b25d9e5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 16 17:42:59 2004 +0000 Fix a8 font rendering for argb1555, i.e. remove alpha pits around glyphs. commit 24a55bee342c4a4bd3fedeb8bb0e7ac8e96b55ff Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 16 16:38:57 2004 +0000 Added some more details to the method description: The calculation includes any buffered data (by hardware or driver) as well as the ring buffer status of the stream. Even if the stream is not playing, e.g. due to pre-buffering, the method behaves as if the playback has just been started. commit 2042a810ee362388488f64393eca1242f91e1708 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 16 16:31:37 2004 +0000 Added IDirectFBSoundStream::GetPresentationDelay(). It returns the amount of time in milli seconds that passes until the last sample stored in the buffer is audible. commit ecea51abf206a2112017158f22386699ed3c490d Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 16 06:35:04 2004 +0000 Added DFB_MAGIC handling to surface manager and state functions. commit 50c5949636f540ae507df515ef5fc54808a4092f Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 16 06:10:04 2004 +0000 Added DFB_MAGIC handling to CoreFont functions. Reduced minimum spell length to eight (including null character). commit e07223db3674d2dd5e6b966370c7c10235110eff Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 16 05:27:20 2004 +0000 #include <errno.h> commit c315940a773940ffa21fb797acb0128ce6d19e78 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 16 05:03:20 2004 +0000 Initial version of the screen mixer/encoder/output APIs. An output is connected to an encoder which is connected to a mixer which combines selected display layers ;) Added a lot of types for description and configuration of these components. commit b46a812e8f597505839f7e716892da083807d33a Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 15 17:14:01 2004 +0000 Renamed DFBScreenEncoderTVNorms to DFBScreenEncoderTVStandards. commit 841a4e6f610b4c15fba8291ec1e358f3aba8e848 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 15 15:26:29 2004 +0000 Initial support for encoders and outputs. Added IDirectFBScreen::GetEncoderDescriptions() and GetOutputDescriptions(). Added all new types to the auto generated "directfb_strings.h" and dfbinfo. commit f8118c235c8150e3b27a7040803995dccb4277cc Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 15 13:38:45 2004 +0000 Set stack->cursor.window = NULL in window_destructor() if the cursor window is being destroyed, e.g. during shutdown. commit 972cef2f5778d120ad6d52c3f73900fba54eedab Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 15 13:19:02 2004 +0000 Ooops. commit 02298a10df1efad7a4ce66dcf6d4b3e88903a160 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 15 13:17:16 2004 +0000 Set keys[i].code = -1 in window_withdraw(). commit bb9aa1b5dbb241985aa643b7ed6ecb9225c83f8f Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 15 13:13:27 2004 +0000 #include <pthread.h> commit 492d994f87a3d6f9efd56df54b910a2ac6ec28db Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 14 14:53:37 2004 +0000 Fix plane multiplier for YV12 and I420. commit 7a4142f6b790b6348aab85720f1d75418039673d Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 13 23:54:48 2004 +0000 Moved write() call after the unlock. commit 734014b8868a23628ad943259bcdaba7a2f3931d Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 13 19:09:48 2004 +0000 Use flags for dfb_gfxcard_lock() instead of four booleans. commit 8889d1087b0ff77834699a3d911a14044bbed72f Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 13 19:08:53 2004 +0000 Argh, move magic behind link header. commit 856b3cb3b2dfc06b3989518fabf9dcaed4750371 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 13 17:44:58 2004 +0000 Use DFB_MAGIC_SET/ASSERT/CLEAR for FusionObject and FusionReactor. commit ca4faa96434e501e910e111a6ae4dfc674fc4cfd Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 12 20:34:12 2004 +0000 Readded IDirectFBDisplayLayer::WaitForSync() for convenience. commit 4013d987930a7571f68636f050d460e140fd151f Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 12 17:39:18 2004 +0000 Fixed calculation of "written" samples for triggering the playback. commit b40e3af41770d166c7fc24b8cb4034ec12f548bd Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 12 17:28:12 2004 +0000 Fixed FSSDF_ALL, thanks to Michael Hunold <hunold@convergence.de> for reporting. commit 0896b5ed31cdabe4db1ddf4f5bff68aa6b8fb723 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 12 15:28:29 2004 +0000 Added a missing lock/unlock pair. commit 49ad2ee6c6138875587bbc7be40f982cfa097111 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 12 12:44:47 2004 +0000 Speed up builtin stack trace support a lot by using thread specific data instead of gettid(). commit 3d6ad2a20f03b8d10b0843ee5409a674de926efc Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 9 11:14:51 2004 +0000 Quick solution for middle mouse button emulation: Press <Meta>-<Ctrl> + Left/Right Click generates 3rd/4th button event. commit 583397b66a7d9d790e80facdeb5f23980863c91b Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 9 10:32:28 2004 +0000 Fix Makefile for newer automake. commit 9b666f3515bc4fead73a1dcf3e2f4f9006ad3f01 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 8 19:49:55 2004 +0000 Added IDirectFBSurface::TextureTriangles() which takes a source surface as the texture, a pointer to a DFBVertex array, the array size and the DFBTriangleFormation which can be DTTF_LIST, DTTF_STRIP or DTTF_FAN. Each DFBVertex contains transformed x, y, z, w, s and t coordinates using some fixed point integers. The set blitting flags are used. Implemented textured triangles for CLE266 (only DTTF_FAN yet). Started a Matrox implementation, but don't know how to calculate perspective coordinates for the trapezoids (s, t and q). The added code is very small, but applications can now render full 3D scenes with alpha blending, color modulation (for lighting) etc. ;) But be aware of the missing Z buffer... commit b2a89e2a76bfb47a42512e4e3edd616db1ec1f8e Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 8 19:26:44 2004 +0000 Introduce IDirectFBScreen: - Display encoder and output connector settings, - input device assignment in multi head environments, - power management, synchronization. Added DFBScreenCapabilities with DSCCAPS_VSYNC, DSCCAPS_TV_ENCODER and DSCCAPS_POWER_MANAGEMENT for now. Added DFBScreenDescription with the caps and a screen name. Added IDirectFB::EnumScreens() and GetScreen(). Added IDirectFBScreen::GetID(), GetDescription() and EnumDisplayLayers() limited to the layers on the screen. Added IDirectFBDisplayLayer::GetScreen(). Moved IDirectFBDisplayLayer::SetScreenPowerMode() to IDirectFBScreen, called SetPowerMode(). Moved IDirectFBDisplayLayer::WaitForSync() to IDirectFBScreen, too. Added Matrox CRTC2 screen. Added more types to the auto generated "directfb_strings.h". Added screen information to 'dfbinfo'. Added CoreScreen and ScreenFuncs. dfb_screens_register() returns the CoreScreen pointer to the driver. dfb_layers_register() takes a CoreScreen pointer as its first argument now and returns the CoreLayer. Added dfb_gfxcard_sync() call in front of the driver's FlipRegion() call. Moved WaitVSync() and SetScreenPowerMode() from LayerFuncs to ScreenFuncs. commit 714b6483110071d09102fa2e8592312586677064 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 8 18:20:17 2004 +0000 GPM repeater support by Micha Nelissen <micha@neli.hopto.org>. commit 5ec588fb7c5c53257492f283b17db9722bddad17 Author: Andreas Hundt <andi@directfb.org> Date: Thu Jan 8 15:40:40 2004 +0000 - do not include <malloc.h> - include <sys/soundcard.h> instead of <linux/soundcard.h>, which also works on linux - put #ifdef around SNDCTL_DSP_PROFILE ioctl, which is not available on old version of OSS commit 60f65cfbe59d44c9ce9a2cd9d6a45e14cb4e8a24 Author: Andreas Hundt <andi@directfb.org> Date: Thu Jan 8 15:31:02 2004 +0000 do not include <malloc.h> which is obsolete. use <stdlib.h> instead (correct me if I am wrong) commit f12c38992b4ac64878b29623d499efa39fe36103 Author: Andreas Hundt <andi@directfb.org> Date: Thu Jan 8 15:08:15 2004 +0000 updated section about BSD commit 538a4ffa3a3ed25c212230bf0a003f298f29a893 Author: Andreas Hundt <andi@directfb.org> Date: Thu Jan 8 13:48:13 2004 +0000 remove (__compar_fn_t) typecast, this is not available on FreeBSD and others commit 77b9447ae9756c5fcb299d2ff3a19a32fbd015f8 Author: Andreas Hundt <andi@directfb.org> Date: Thu Jan 8 13:43:33 2004 +0000 also define __s32 for non-linux platforms commit 70b784d64298005614b4b971fe9ed64d07f8c4a9 Author: Andreas Hundt <andi@directfb.org> Date: Thu Jan 8 00:01:39 2004 +0000 put #ifdefs around si_codes, not every platform defines all of them. commit 30badb490ea3445c3b5e40eb4acc9e47ead4f1bb Author: Andreas Hundt <andi@directfb.org> Date: Wed Jan 7 23:33:06 2004 +0000 make platforms without PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP happy. (reviving FreeBSD support) commit ee1bee0316ea6dfbaff5d71cde8f179947d10d63 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 6 09:27:54 2004 +0000 Cosmetics. commit f69169267319da728586d5c62fb914721549a3bb Author: Sven Neumann <neo@directfb.org> Date: Mon Jan 5 15:27:31 2004 +0000 order the default set of gfx drivers alphabetically commit 26a1a960de923bfc5c570e200bfe6e542a002f0b Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 5 14:27:41 2004 +0000 Use gettid() instead of getpid() if available. commit 6d086443ffe430cbcd4ac52d8fa642d7a147c4cd Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 5 13:36:18 2004 +0000 Don't enable ELO input driver by default. It blocks during probe. commit 5842e8252d76bbe90a5f5740efc1d25a33fc9112 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 5 11:33:40 2004 +0000 Added prebuffer option to the stream description. commit 2fb01242b944bb5244d3f2d747dc575b9db994fc Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Dec 28 09:19:52 2003 +0000 Clip opaque region to window boundaries. Minor cleanups. commit 7891d5625b0d26ca5506e42eca974aded4a68076 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Dec 28 03:08:07 2003 +0000 Added IDirectFBEventBuffer::CreateFileDescriptor() that returns a file descriptor that can be read from including support for select(). If only the file descriptor is used the buffer still needs to be flushed via IDirectFBEventBuffer::Reset(). Reduced reference up/down in window stacking code. commit 9421c92d391feac85e2ccc9e45435758247a38e5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 19 20:35:21 2003 +0000 Fixed recognition of "a1-font" option when no attributes are specified. commit 3dbe49b124c5ec7c9df42812fb75c8b86a98972f Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 19 12:47:03 2003 +0000 ELO Touchscreen driver, thanks to Brandon M. Reynolds <breynolds@comtime.com>! commit 0b56002fdf16c481a076428d3e227475cc8a8426 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 19 12:01:08 2003 +0000 Added /dev/misc/psaux. commit 327ca686a48e958d00e772da39d4e70485957bb7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 18 15:42:30 2003 +0000 Added "a1-font" and did some updates. commit da6336529b63b4862254c5a46061ecdf05560a13 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 18 15:26:51 2003 +0000 Added "a1-font" option. commit de20f813f6cf1af872bb43b078a53b9127e22575 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 18 15:11:42 2003 +0000 Implemented all Bop_a1_set_alphapixel_Aop. commit dd03d03ba33fdacbab242d2e11177048d13e0eb7 Author: Andreas Hundt <andi@directfb.org> Date: Thu Dec 18 13:10:42 2003 +0000 - fix segfault, overlay still does not work for me (never did?) - remove XBOX specific code for now. commit 5e8ec08b08ae862fabca7e47c03fdc724925bb2d Author: Andreas Hundt <andi@directfb.org> Date: Wed Dec 17 20:24:06 2003 +0000 build nvidia driver by default commit 964953e44c9f71ccd0a388c45de01d04af6f9071 Author: Andreas Hundt <andi@directfb.org> Date: Wed Dec 17 20:19:26 2003 +0000 updated nvidia driver (follow internal layer/region api changes). I couldn't test if it still works, at least it compiles. commit 0a739673580b257c9dd0da9688a5bcd99943af5e Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 17 03:14:18 2003 +0000 Speed up kerning cache. commit faf9876dfc07754067aecf54771a320db9571731 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 17 01:02:19 2003 +0000 Align the surface width to be a multiple of eight pixels. commit b5fefd537696597c49b26a5169f2646b60dabae8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 17 00:10:47 2003 +0000 Rubbish. commit b9465d4cd089eb9c295d2d3203678be91e4477ad Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 16 23:41:44 2003 +0000 Drivers can choose between byte/pixel pitch alignment, or even use both. commit ae630e568666412bf865c354f16d6422b2968818 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 16 22:58:56 2003 +0000 Preliminary DSPF_A1 support. Added DFB_PIXELFORMAT_ALIGNMENT(format) which is non-zero if alignment is required to do byte aligned access, e.g. 7 for DSPF_A1. Added DSPF_A1 support to FreeType2 font implementation. Implemented Bop_a1_set_alphapixel_rgb16(), "df_dok --mono" works using A1. commit e91fac3f6eff151676d2e02ae79b94b633b1a9c9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 16 22:30:16 2003 +0000 Optimized glyph info prefetching code, speeds up DrawString in df_dok by ~10% on my Matrox G450 (P3 800E). commit 7b8ecee801e19525c4d0720f732428d9ef1d4570 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 16 20:49:32 2003 +0000 Don't rely on correct kernel headers. commit 09975184a1d4f99ece54e8a2748f3306783cb66c Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 16 06:51:34 2003 +0000 Readded missing call to dfb_windowstack_flush_keys() during context switch. E.g. pressing Return in an xterm to start a fullscreen app didn't send the corresponding release event, because the fullscreen app was already running during the real release of the key. commit 1d581b0ab1bc8fb4864ba5728080e7048fa271d7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 16 02:44:26 2003 +0000 Fix failing assertion [stack->cursor.window != NULL] in windowstack.c:350. It was triggered by setting the cursor opacity to zero. commit b599e240e9b099360e90e328e72b30b7e547f048 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 11 02:25:27 2003 +0000 Added DFB_PIXELFORMAT_INV_ALPHA(format). commit 714d832a8dfcffe5da54fe6299e685a32e9e681b Author: Andreas Kotes <count@directfb.org> Date: Wed Dec 10 21:17:25 2003 +0000 revert strange side-commit commit 787abb9a3d46f86e4c0a38e3b9e3aee8819fa4ea Author: Andreas Kotes <count@directfb.org> Date: Wed Dec 10 21:15:48 2003 +0000 repeat a liiittle later commit f9cb70c2f01b591e0a568d528025880cf100c1d2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 10 19:56:29 2003 +0000 Use DSBF_ONE for destination alpha if DSBF_INVSRCALPHA is used. commit 0f1b805c87f0ecc2d68f1e282ab95305578e73de Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 10 19:01:25 2003 +0000 Fix format conversion blits from non-alpha to alpha surfaces by enabling alpha channel writes and fixing uc_map_blitflags(). commit a8150942177a97d17f21158bad06de57c388816b Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 10 17:59:52 2003 +0000 Finally remove DSPF_RGB15. Fixed enum name generation for constants with lower case characters. commit 91a55500cae447fe181676f916dbc0a67c531141 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 10 16:04:00 2003 +0000 Reset repeat counter only if symbols differ. commit 838fa2ad266c7c4796d73d856d536458cb6fab5c Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 10 15:49:03 2003 +0000 Fix copy'n'paste bug. commit 7d68a53a5a2a74d5e25d5a879f69dcd61efba8a3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 10 14:14:09 2003 +0000 Reset repeat counter. commit d3a0e089a392a7ce6f57d561403c34234e506f1a Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 10 13:50:40 2003 +0000 Fixed assumptions. commit 57f3a7c73214356098357224a235b8673c0424ef Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 9 21:24:31 2003 +0000 Use software fallback for broken blitting from non-alpha to alpha surfaces. commit 2f8cce6b7aba0cf99586e7cc5dcb83ce27a3b6d3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 9 20:28:07 2003 +0000 Hopefully fixed blitting of surfaces with an alpha channel, but without using DSBLIT_BLEND_ALPHACHANNEL. commit 779a098c1f43c772fc1751619af43580e675ca0b Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 9 20:25:34 2003 +0000 Emulate keyboard like key repeat behaviour using select() with timeout and a counter to drop the first two repeats. commit ef44d77b322f12e97f5d2576648f993263498bab Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 9 15:46:45 2003 +0000 Added diagonal cursor keys. commit 45b1cbcdae7f128e29b7d1dc94d113fc14ff844d Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 9 14:57:14 2003 +0000 Don't destroy object pools during emergency shutdown. commit 49d9a0b9533947ae71b6b98587d2dd8565de105f Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 9 14:51:41 2003 +0000 Added support for DSPF_AiRGB. commit d7aa86cec7793327a751c6ba290f207aeb0ce9a4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Dec 8 20:55:32 2003 +0000 Color bug seems to have reappeared after I readded the W component. Enabled dithering again ;( commit 85e483fe7dae0e68d1382f6592c4793c113ed63a Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Dec 8 18:28:19 2003 +0000 Added new pixel format DSPF_AiRGB, i.e. DSPF_ARGB with inverted alpha channel. commit f31738c706e139cf5e9ff126ae1da4e0e2aedeb9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 5 15:13:56 2003 +0000 Added debug message after module registration. commit 681a7be9e7b5bb69ec0fa9c1ca63aa1befbd3a1d Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 5 13:42:34 2003 +0000 Corrected to DFB_GRAPHICS_DRIVER(cle266) to match library name. commit 097bac636f36b2b384d0aac80caa707766675ec3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 5 12:19:56 2003 +0000 Added DSBLIT_DEINTERLACE support to gBlit. commit 14188ad426b7327c2013619a08ff6f378061452c Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 5 05:49:01 2003 +0000 Set 64k stdout buffer. commit ce912964c1359817e316c8ffa784f82de27e8b67 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 5 04:01:06 2003 +0000 Updated copyright header. commit dbcfd6214db52610e1ac1ebcd2ae5dd7c3ba9bf1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 5 00:17:44 2003 +0000 Added DFB_MAGIC_SET, DFB_MAGIC_ASSERT and DFB_MAGIC_CLEAR. commit f163a2f73b9784232a99d1b9cc18d90fe645e3d6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 4 20:43:45 2003 +0000 Add local reference to primary region of primary context. commit 21de00a5d5fc61bec4a371daaa2d764c3344b55b Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 4 19:15:24 2003 +0000 Show layer name in debug message of destructor. commit c1a059d6b23cb4bd2b93e9ddefd40985bf5d6c1f Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 4 18:07:04 2003 +0000 Link the primary region into the window to fix the destruction order of objects. commit 9e083274e418151cf10f3adcbfcd8e4b6be9c651 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 4 18:05:02 2003 +0000 Added timeout to fusion_sync(). commit 7df0d946fae81874d010d4394b40ee985820fcbf Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 4 17:20:49 2003 +0000 Clear the stack pointer after destruction. commit c6c466f75310662ea5bb06e0f10651e24c962e03 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 4 15:43:07 2003 +0000 Added call to dfb_system_lookup() to fix initialization. commit bd562f76d999828ca7c26d9df042e5af7ee5ef62 Author: Sven Neumann <neo@directfb.org> Date: Thu Dec 4 12:32:57 2003 +0000 Do not build the wm97xx driver by default. The kernel header seems broken and until this is fixed, you will have to enable the build explicitely. commit e26839d242693efd1a158018aae0e7d2d4185c70 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 3 19:08:26 2003 +0000 Added "bcast true" support to fb.modes parser. commit 5fee2d09c8cf2154d5c615d057f3319275c261c5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 3 19:07:41 2003 +0000 Added another sched_yield(). commit a582c66f7712cb1bda026b870c3dd0d63f722c52 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 3 18:47:31 2003 +0000 Back to local uc_fifo ;( commit 7e59edf3764175cd0553d622c07fd418137b9244 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 3 18:33:11 2003 +0000 Made struct uc_fifo volatile. commit cb3c02bfdc9eb0610813d8d20cff716da745f120 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 3 16:57:24 2003 +0000 Removed function pointer from shared memory. commit 7f43a7d5d26d455b4f25762228970125b13372e3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 3 16:51:40 2003 +0000 Increase surface reference counter in grabbing thread. commit db49c9782324ec733767b8b5b4ebfc368fffeef3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 3 13:55:06 2003 +0000 Use +0.5f/-0.5f instead of +0.6f/-0.6f for vertical field alignment on the destination when DSBLIT_DEINTERLACE is used. commit bd86f4f44f704c0e5fef0ab473fc7d024fd9305d Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 3 13:51:53 2003 +0000 Added deinterlacing support for grabbing mode, i.e. added dfb_surface_set_field() calls to grabbing thread and added second frame callback to the loop (to make 50Hz out of the 25Hz of v4l). Made grabbing thread CTT_INPUT (with nice value -10 having the same priority as input threads). Made grab mode surface listener be aware of video memory surfaces. commit 755acf026fcde72c5b675183b32ddf6772a6d8e6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 3 13:04:52 2003 +0000 Added option to disable WM97xx driver. commit e51ffea956af5a95c3499d6fede86344b04ab85c Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 2 08:44:03 2003 +0000 Fix screen location. commit c868a1c9b499f11d08dacacb652a2ce2ecccbada Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 2 06:18:18 2003 +0000 Beautifications. commit 73f43162c74557d5f3279874a2f45c383edd939e Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 2 05:36:04 2003 +0000 Optimizations and cleanups. commit aa48f0af5db23d12971ce8dca0f3ae9c0d11d3d0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 2 04:28:44 2003 +0000 Remember clipping region and only update hardware if the clip changed. commit c925940e3a36b3303a6e8ec22eb2814e03ca81cb Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 2 04:16:36 2003 +0000 Added state (in)validation for color2d and colorkey2d, invalidating each other during validation. commit db6f08e9ad704a6fb935d87cf343954c70843a27 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 2 03:39:43 2003 +0000 Use one set of flags instead of several booleans for state validation. commit 839a36e01a6b7d1a7436429d392dfdbe0bff8d00 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 2 03:25:55 2003 +0000 Use one uc_fifo struct for all processes. commit 949f717f6271bae8e856e2c84ea5496503c23481 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 2 02:55:49 2003 +0000 Minimize state changes during text drawing. commit 1b4d59d640150b606058c61b9f83cb6c2ef72cf8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 2 01:26:01 2003 +0000 Define FBIO_WAITFORVSYNC ourself if it's not defined by <linux/fb.h>. commit 17569cbb0eb1ccbf593445a154fd247fea26872f Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Dec 1 18:41:29 2003 +0000 Readded W. commit 346fe69aba1e2b86fc1587671039f33e8b85c7bb Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 28 16:59:13 2003 +0000 Implemented DSBLIT_DEINTERLACE. commit aa1d26ed9b8825c344973560a93073800e031600 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 28 06:06:14 2003 +0000 Disabled dithering again... ... because: I fixed the triangle (rectangle) color bug! ;-] *jump* *jump* Use HC_HShading_FlatC instead of HC_HShading_FlatA, so the hardware takes the color value from vertex C which is the only vertex being written twice, i.e. once for each triangle. It seems that the hardware (which got the color via vertex A only once for both triangles) kept an RGB16 version of the color and used that for the second triangle... To clarify this in the code even more, vertex A and vertex B have a '0' instead of 'ucdev->color3d' written to the FIFO. I also changed uc_fill_rectangle_3d() to use the "HC_HVCycle_AA, HC_HVCycle_BB, HC_HVCycle_NewC" sequence to use HC_HShading_FlatC instead of HC_HShading_FlatA. Heavy DMA problems with v4l overlay capture some to be gone! ;-] *jump* *jump* Still some minor glitches are noticable under huge GPU load. But these appear just for one frame. There are no dead regions (bunch of lines which can't be written to for several seconds) anymore. The fix seemed to be setting 'ucdev->must_wait = 1' after flushing the FIFO in uc_emit_commands(), it was never set to 1 at all before. Fixed the broken fonts problem! ;-] *jump* *jump* Added uc_flush_texture_cache() which simply writes four entries to the FIFO. These entries were written in uc_set_source3d() before my changes... Use correct state invalidation now, e.g. no longer set 'v_source3d = 0' if the source wasn't changed ;) Removed UC_FIFO_FLUSH(fifo) from uc_set_state() again :-} Use UC_FIFO_PAD_EVEN(fifo) at all places where 'cmdA_End' was replicated before, doesn't give any performance improvement though... Changed the FIFO depth from 2000 to 4096 entries to finish a complete string without intermediate flushing, even if the string has more than ~70 characters. Added timeout error message to uc_waitcmd() and uc_engine_sync(). Fixed passing of the destination format to uc_map_blending_fn(). commit eba7584a163c14ebdd85a459c007a8986d919a06 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 28 01:14:39 2003 +0000 Fixed removing an active context while the session is suspended. commit f1a8923dc6a4499e0bb24814e3e251753850043b Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 28 01:12:48 2003 +0000 If a dlopen()'ed module did not register itself, try to dlsym() and call the default contructor (filename without "lib_" and ".so"). commit 02c5dbd24431dc9489c72155089affe65b61c009 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 27 11:12:07 2003 +0000 Readded the FIFO flush and HC_SubA_HPixGC setting, text rendering was suddenly broken, though I tested it before the commit. commit d1c8456af0f340ee57c21c8b166bf8ca115789f9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 27 10:55:38 2003 +0000 Added some comments to guess meanings of HC_Hen*_MASK. Andreas Robinson, please check those, thanks. commit a43e0ac46ecd2c57113607996bc77d487a19d0f4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 27 10:48:31 2003 +0000 Use HC_HenDT_MASK to enable dithering, triangle color bug almost invisible now. Added UC_FIFO_ADD_XYCST, don't send W coords, saving four FIFO entries per blit. Invalidate texenv also if source changed (texenv depends on the source format). Don't set HC_SubA_HPixGC. DRI does it, but we don't seem to need that. Don't flush the FIFO in uc_set_state(), it's flushed shortly after anyways. commit 4f7523ba01efee8a4897eeee731ad51270fd0927 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 27 06:50:51 2003 +0000 Call iopl(3) in each waitretrace(), not just once. commit 6f44278e08d5c4522d5fc25fbbf521041401e6ad Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 27 04:12:11 2003 +0000 Added "^[OH" for DIKS_HOME. commit 7324e6ab0fe13dac35fc9d83baf91553525e2a0d Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 27 01:04:45 2003 +0000 Use fbdev to map registers, obsoletes cle266vgaio! Code still works with cle266vgaio for vesafb users... Made all register pointers volatile. commit 32d8bf490131f1c9e3a99627b34d62bd75fc8190 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 26 13:14:28 2003 +0000 Forgot to add CLRCF_DEST to CLRCF_ALL. commit 6b60c3be92cd724a2026aaadff8128b4748d3996 Author: Andreas Hundt <andi@directfb.org> Date: Wed Nov 26 13:12:25 2003 +0000 fix some layer specific stuff commit 8f50421259290c0514a6863a60282815522a0451 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 26 13:07:39 2003 +0000 Forgot to add that. commit dcac37122f80c8184c474959bbb6d41b956c011f Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 25 23:09:18 2003 +0000 Option "force-desktop" supports stretching now, e.g. using "mode=". commit ef2ac0adeb2f0f57d2491696a4d22f1d933663ea Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 25 22:53:42 2003 +0000 Install symbol map for dynamic library if --enable-trace is used. Shows static symbols in stack traces now. commit 3ae7aec7743c85d927ce5f529c89e9fecbc471bf Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 25 21:55:02 2003 +0000 Allow --enable-static and --enable-trace at the same time. commit 85f6db10a0019c6c0d6c72e4fb9770692be08bd1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 25 17:03:27 2003 +0000 Fixed VT switching. commit c9361b0aa96b76e4176ddbbc4a2a2a5481264b72 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 25 16:12:22 2003 +0000 Set hardware palette in region surface listener only if the region is realized. commit 7df2baa067ae385521970b74b20c26bea6bcda31 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 25 15:35:16 2003 +0000 Fix width and height of primary surface as set by SetVideoMode(). commit 1da80e7698efa86752f83d82ba8a5a1cb0674a35 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 25 15:28:22 2003 +0000 Use negative ABI versions for debug enabled builds. commit 8a0e5f631660c401148c9527a275384b9d227c73 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 25 13:11:01 2003 +0000 Added DFBLocation which is like DFBRectangle but has normalized coordinates. Added macros to compare rectangles, regions and locations. Added preliminary dfb_screen_rectangle() which behaves like the removed dfb_primary_layer_rectangle(). The final version of this function will be done upon introduction of screens. commit a16b9e42fe5c87803e808185c17032aa6d0226f4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 25 12:19:25 2003 +0000 Be aware of layers without DLCAPS_SURFACE. commit f1af06ff3b0ebb8b2619bc5310087c3fa53b4aba Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 25 12:11:10 2003 +0000 Fixed usage of layers without configuring them. commit 599988f97b57535d7c482c9049fb7c3496e8eb2e Author: Andreas Oberritter <oberritter@directfb.org> Date: Tue Nov 25 10:57:30 2003 +0000 added two more header files to make "make dist" happy again commit 7249619191a1aba73a6f49a5ac86b58829385cfc Author: Andreas Oberritter <oberritter@directfb.org> Date: Tue Nov 25 10:53:48 2003 +0000 - divided driver into multiple source files. - removed stretchblit (not supported by hardware). - added some more compatibility definitions, so a driver built with and old sisfb.h can use the features of new sisfb versions. - cleaned up sisfb version check. - set state->accel = 0 for DFXL_FILLTRIANGLE. makes it a lot faster, but I don't know why, because this function is not supported anyway. - added "xabre" to supported fb accel ids (SiS 330). commit f3158e5df082608dc847163128dfeeb1c2b745d6 Author: Sven Neumann <neo@directfb.org> Date: Mon Nov 24 18:52:01 2003 +0000 don't generate trailing whitespace commit 6c3eb929b030bd26883f12cb2305cc434eb89601 Author: Andreas Hundt <andi@directfb.org> Date: Mon Nov 24 18:24:27 2003 +0000 forgot to port uc_ovl_disable commit 42abc000fa7a84e82fa84ff3a6ff8eaf259ebc21 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 24 17:55:41 2003 +0000 Added boolean to dfb_layer_get_primary_context() to activate the context if no other context is already active. commit 723ffe33fedaefab2cad17a5afbbcf2ac0a9ddc8 Author: Andreas Hundt <andi@directfb.org> Date: Mon Nov 24 17:15:14 2003 +0000 build cle266 driver by default commit aadfe5ac8a0580f4ea83e3ba0bee58c9e0c8347c Author: Andreas Hundt <andi@directfb.org> Date: Mon Nov 24 17:09:33 2003 +0000 ported to new internal layer/region api commit 9848bb5f939bba6be889b4ee501881b8019af3ee Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 24 16:49:35 2003 +0000 Fixed shared window palettes. commit 6db29052d2c0db950ff12395382ed9b4aac0728d Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 24 13:08:30 2003 +0000 Refactored display layer core. Added contexts and regions allocated within a context. Drivers are only aware of regions now. Usually a driver supports one region per layer. Hardware windows are implemented via regions. Not yet compiling drivers are disabled in configure.in (default of --with-gfxdrivers contains ported drivers only). Sorry for the driver API driver change, but it's much cleaner now. Added DFB_COLOR_BITS_PER_PIXEL and DFB_ALPHA_BITS_PER_PIXEL, pixel format constants changed, too. Some other changes and improvements. commit 814009fb7faa6377862d7dc2074467e18c887ecb Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 21 15:07:36 2003 +0000 If CheckState() reports other functions than the requested one as supported, don't ask for them again. commit 50c4767be94b54cac58ac65c3264001235ef77d4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 21 14:58:54 2003 +0000 Reject format conversion blits which are unsupported. Minor state handling fix. commit aa44468092464b0b5f5229f65385a84bea6fd486 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 21 14:00:43 2003 +0000 Parse preceding comments in enums. commit 01724602af1373b1fa7bf4f788480464259c6672 Author: Andreas Oberritter <oberritter@directfb.org> Date: Thu Nov 20 14:30:59 2003 +0000 fixed make dist commit 2f49ac11e807fb5b13f31d9a3cff3cc498d5e4ef Author: Andreas Oberritter <oberritter@directfb.org> Date: Thu Nov 20 14:28:02 2003 +0000 removed non existant sisfb patch commit f45dda572a20b62f86a8b48625021e2f60abaa69 Author: Andreas Oberritter <oberritter@directfb.org> Date: Thu Nov 20 13:09:29 2003 +0000 compatibility definitions commit 53980785f92e97b4059cd43910ff7561a62181a9 Author: Andreas Oberritter <oberritter@directfb.org> Date: Thu Nov 20 10:39:46 2003 +0000 removed obsolete patch. please use sisfb 1.6.23 or above. commit c7e50e5a6d66bc187e307465c4a6763867c65c0d Author: Andreas Oberritter <oberritter@directfb.org> Date: Thu Nov 20 10:38:37 2003 +0000 - use 32 bit access only - configure sisfb so that it does not always maximize vyres (requires version 1.6.23 of sisfb) - added destination color keying commit 498f8d98a90661106fc8a9ce1f99bc81efb1c029 Author: Andreas Oberritter <oberritter@directfb.org> Date: Thu Nov 20 10:33:18 2003 +0000 require <linux/sisfb.h> for sis315 gfxdriver commit 5d7ed91179ac2cd73003c1ff9c8e066aef30afb8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 18 22:45:18 2003 +0000 Removed AC_C_CONST which defined "const" to nothing if -Werror was used, argh! commit 6129fcb53475bffd6c9899f59ada0ce9fbbaa20d Author: Andreas Hundt <andi@directfb.org> Date: Mon Nov 17 20:32:44 2003 +0000 added hack for forcing grab mode if environment variable DFB_VL4_GRAB is set. (this is for broken hardware with broken busmastering) commit 9440abb22bd202bbd14796cf52f22a20c6a80c39 Author: Sven Neumann <neo@directfb.org> Date: Mon Nov 17 11:02:54 2003 +0000 Use the recommened way to include freetype headers. commit feeb770ee07dbad6ac4f7dc8e167c828a4a42ffc Author: Andreas Robinson <andors@directfb.org> Date: Thu Nov 13 13:43:37 2003 +0000 Added video underlay mode. Updated Readme.txt commit 3f46eb7e83ffc266455d74d990bb4d51efc6664d Author: Andreas Robinson <andors@directfb.org> Date: Thu Nov 13 12:41:51 2003 +0000 Print error message on startup if cle266vgaio module can not be accessed. commit 5970a1600f540b42b1e815fc6f851ebae4250634 Author: Andreas Hundt <andi@directfb.org> Date: Mon Nov 10 16:53:06 2003 +0000 - remove libmpeg3 video provider, it has been moved to DirectFB-extra and includes FusionSound support. commit f597aeb3bc878451e078630becc933ab45c0f091 Author: Andreas Oberritter <oberritter@directfb.org> Date: Fri Nov 7 05:00:31 2003 +0000 include sisfb patch in extra dist commit f033956fd415a4db7db6802a6c64fa62ba84f39b Author: Andreas Oberritter <oberritter@directfb.org> Date: Fri Nov 7 04:11:30 2003 +0000 sisfb does always set vyres to the maximum. this patch allows to set custom vyres resolutions and therefore makes directfb's accelerated blit working. commit b3237924252b09b18ee64f0fc9c526593f888656 Author: Andreas Oberritter <oberritter@directfb.org> Date: Fri Nov 7 04:04:27 2003 +0000 - added drawing of rectangles - added source colorkeyed blits - fixed clipping - refuse blit with color format conversion commit 0adff149f2aeeacb1fc92e9a4b4a23ff61ebc675 Author: Andreas Oberritter <oberritter@directfb.org> Date: Thu Nov 6 18:50:11 2003 +0000 new driver for SiS315 chipset with line drawing, rectangle filling in 8, 16 and 32 bpp, blit in 8 and 16 bpp, clipping commit b52450602059f7b65b48d9764d61f30220e6c5b1 Author: Sven Neumann <neo@directfb.org> Date: Thu Nov 6 15:56:53 2003 +0000 Removed the notice about multi-image powers. Not needed any longer now that the version number has been increased. commit 3bf11e77561e2db1461aeb25a1ea87fa674e76ad Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 5 23:55:28 2003 +0000 Don't pause() after kill(). commit 881c6c1a4eb4786e80ec9eb53fc7f20ee4ac3acf Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 5 16:24:58 2003 +0000 No need to SetOpacity() before RequestFocus() for input only windows. commit 014d792936f01f05bef661396ac6b3fcc8d86d5c Author: Andreas Robinson <andors@directfb.org> Date: Wed Nov 5 13:39:17 2003 +0000 Define UC_ENABLE_3D. (I forgot to restore it after testing.) commit 55b5b7c345a65009eea74c319b72386d28318724 Author: Andreas Robinson <andors@directfb.org> Date: Wed Nov 5 13:36:23 2003 +0000 The driver can now be made to avoid the 3D engine by undefining UC_ENABLE_3D in unichrome.h commit aafe251418f54f1ad6cd141756c4468c4350af61 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 4 22:01:05 2003 +0000 usleep(20000) -> usleep(10000), much smoother input commit 145ac49c488752486bf8e712f8342e3485375287 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 4 21:55:13 2003 +0000 Restore file content. commit bdac023a0ba082c77195ab723170c7d7f0160e3d Author: Andreas Robinson <andors@directfb.org> Date: Tue Nov 4 08:43:57 2003 +0000 Added devfs-free compilation options. Minor cleanups. commit a760fb19ecb6bce5e3077b946cd24706fbfacab0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 1 03:14:44 2003 +0000 Major code cleanup. Introduce new structure "CoreDFB". Nearly rewrote src/core/core.[ch] in the way of FusionSound's core. commit 0a9066211cb54c04fa9b1cfaa2edee8fc6e834fe Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 29 18:32:54 2003 +0000 Added option "force-desktop" ;) commit 52ed5e6d0c3c1dc4f427f9eae91443c7d5236324 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 29 17:00:18 2003 +0000 0.9.21 commit 4891a5b88caa183fb6d1624ded58e9373313d7c1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 29 16:59:43 2003 +0000 0.9.21 commit 65528e96e99859e13c781f7729968a2914556145 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 29 16:59:22 2003 +0000 Follow internal API change. commit 10a6b8872855da5f52b38d001463a189877a7c8a Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 29 16:59:02 2003 +0000 All <object>_unlink() functions take a pointer to the object pointer now and write a NULL into this location themself. Fixed warnings. commit 2bf0b10263ce2383004b3723f606f498ab852093 Author: Andreas Robinson <andors@directfb.org> Date: Wed Oct 29 13:37:10 2003 +0000 Benchmarks updated. Minor cleanups. commit c937d39055eef2807ea29b6cfaa8d7f7de1abe68 Author: Andreas Robinson <andors@directfb.org> Date: Wed Oct 29 12:44:42 2003 +0000 Performs userspace PCI-bus probing and memory mapping. Depends on /proc/bus/pci/devices and /dev/mem. commit 8b7ba2909e0aa7aaeeea65d06da3720f7a6a5a09 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 29 01:48:44 2003 +0000 Removed an assertion. commit 92e9ccc7fe03ef33390301ce574720fed6b3c830 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 29 00:03:07 2003 +0000 DisplayLayer is now called CoreLayer. Indention fixes. commit 723aa1dee06266439a6a8fc91cbeceda87d76b0e Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 28 21:36:06 2003 +0000 Set default screen location back to fullscreen. commit e1e1d4ed744f1c4b2de202fa6abf59401930247e Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 28 21:31:11 2003 +0000 Increase the reference counter in dfb_layer_enable() if it's already enabled. commit 8120a2db671e34b1958a34bb50f237be119099bc Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 28 21:25:51 2003 +0000 Introduced new object for allocation of hardware regions within layers. Work in progress, behaviour is still the same, but automatic deallocation of layers (disable) is already working. Test with: "dfblayer -l 1" (should show the overlay for a really short time) commit b3cfbc1659873a451da8bc5f726cc441eab3aab0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 28 20:48:02 2003 +0000 Added global ABI version for shared memory. commit 4c7d26d446d7b2d4c904e99b33be2167545da296 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 28 18:47:44 2003 +0000 +#include <config.h> commit d249eec0c3964b3238b9ef82df9e830a869b3957 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 28 16:33:16 2003 +0000 Added functions for DFB_ASSERT and DFB_ASSUME to save binary size in debug mode. commit ef7f6a1705a88b46d2a606788c61a0ace7bf173f Author: Ville Syrjala <syrjala@directfb.org> Date: Sat Oct 25 10:51:12 2003 +0000 - Free buffer on stop. - Clean up old stuff if PlayTo() called multiple times. - Return DFB_FAILURE if timidty init fails. - Use IFusionSoundStream::GetDescription(). commit 3d25aec5bd98de96e995969df6e6d9a8352023e0 Author: Ville Syrjala <syrjala@directfb.org> Date: Sat Oct 25 10:31:00 2003 +0000 Added IFusionSoundStream::GetDescription(). commit 7cd990d09885d20ab91ee1460a68bd7da947abc6 Author: Sven Neumann <neo@directfb.org> Date: Fri Oct 24 23:38:44 2003 +0000 Mention the multi-image functionality in the usage string. commit b40555f2ae6e5054fe0e87639f7cc8180aed727e Author: Sven Neumann <neo@directfb.org> Date: Fri Oct 24 18:49:53 2003 +0000 Tweaked name mangling routines. commit 04a520acde92e0dd8bd2735870575bc3954f27ec Author: Sven Neumann <neo@directfb.org> Date: Fri Oct 24 18:21:39 2003 +0000 Do variable name translation for the case of multiple images as well. commit c3b15976a2c89f5a5c9a4cad4ce957941fe9e049 Author: Sven Neumann <neo@directfb.org> Date: Fri Oct 24 16:16:35 2003 +0000 Dump an array of names and rectangles when processing multiple images. Document the new feature. commit e8e1a4a06cb6572d40d5f1c5f30bbd9a3fe8038b Author: Ville Syrjala <syrjala@directfb.org> Date: Fri Oct 24 14:44:10 2003 +0000 Fixed a compiler warning. commit ae7a49bc503cb4fc5811faa784d99c44f71e9b42 Author: Ville Syrjala <syrjala@directfb.org> Date: Fri Oct 24 14:42:22 2003 +0000 Fixed a few typos. commit 4860226fb2863977073bd3e77f6471bdf6284e11 Author: Sven Neumann <neo@directfb.org> Date: Fri Oct 24 13:46:46 2003 +0000 Started to add support for combining multiple images into one surface. Lacks a few minor features still but shouldn't change the existing behaviour. commit 5d60974710c2229011adf18a8b865d7994cdd065 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 24 07:07:14 2003 +0000 Use SNDCTL_DSP_GETOSPACE instead of calculations. commit 1a6bb6c5ef0ab781a62800c659b675340cab29ea Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 24 04:36:04 2003 +0000 Added option "--fusionsound" for statically linking with fusion sound. commit b3567f0b42f0f3f68ab1f8beb2f4b9a725018348 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 24 02:55:24 2003 +0000 Fixed internal include dir. commit 6bb813905765a7252f3be74252116003d1463580 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 24 02:45:35 2003 +0000 Don't write silence to the sound device if nothing is played. commit 43883900f1fcb234f7a2f8bbe8f4905fcd0ee96c Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 24 00:24:36 2003 +0000 Applied patch from Ville, but changed CONFIG_FILE to "/etc/timidity.cfg" and added an example. commit 1e016cc09a353e1ed1fe93a977c17baaca893adb Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 23 21:36:47 2003 +0000 40 ms mix ahead ;) commit a6695a466e1658b28bcf064462f9ea8452f8691a Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 23 16:32:12 2003 +0000 regenerated commit 7d9e53cb891e934504d42b204ee81af5002d47ec Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 23 16:30:55 2003 +0000 readd with executable flag commit e99cf70d2187c19d967bb9459d812b976f319fdb Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 23 16:30:32 2003 +0000 temp. remove commit a0dc28df72b8257818c831dc7daf9990eef97548 Author: Andreas Hundt <andi@directfb.org> Date: Thu Oct 23 16:23:54 2003 +0000 changed andros email address commit 049616da2bd03dbcab874f79f804afe9c803ba8c Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 23 16:01:07 2003 +0000 Updated. commit a1e88551f85249f548b3ca108697bc6c6023543c Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 23 15:09:40 2003 +0000 Reset timer on buffer underrun. commit aacf5d4520c6ef04be7f2ac72d300a00e081e35b Author: Sven Neumann <neo@directfb.org> Date: Thu Oct 23 14:12:00 2003 +0000 minor code formatting changes commit 11d6406a5c511e94f6d263d72727f92f297f225a Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 23 12:03:41 2003 +0000 Corrected OSS usage for rate setting. Use configured rate as resampling target, 44100 was still hardcoded. commit c14d814af5c858c90f42e45d343f9aa0cb6f62f3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 22 23:30:56 2003 +0000 Try 48 kHz output first. commit f1cf19c64eca38e6eb48ae6a7bd8e5b8879ee4a1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 22 21:55:08 2003 +0000 60 ms mix ahead commit 52025bde045f6399572645977a1c760e23b794e2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 22 19:04:26 2003 +0000 Mix ahead buffer 50 ms -> 100 ms. commit 77cf502f80d79cb70c200e58ca835632390caa2d Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 22 18:55:49 2003 +0000 Changed mix ahead buffer size from 50 ms to 150 ms. Changed maximum block size from 1024 to 4096. commit 5f2dce31898b6945116c1edfdbbb3dfbdfbc9e5a Author: Andreas Hundt <andi@directfb.org> Date: Wed Oct 22 09:01:14 2003 +0000 added Andreas Robinson <andro134 at student.liu.se> commit b654880727c4709c95f4a9c581054ca73bdb49ac Author: Andreas Robinson <andors@directfb.org> Date: Tue Oct 21 23:24:10 2003 +0000 Updated changelog for v0.3.0 commit fd55e198fdfd4112978868ad4408a3e5a1ce27cd Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 21 16:24:15 2003 +0000 Added "--disable-examples". commit 5f481a40e34079d6d74db83acaae30cbce529376 Author: Andreas Hundt <andi@directfb.org> Date: Tue Oct 21 15:30:03 2003 +0000 - version number = 0.3 - imrovements to state handling - workaround for font rendering in some applications commit b4e22eb8a01b8e6fc97a0d23330cae9ea8237cc9 Author: Andreas Hundt <andi@directfb.org> Date: Tue Oct 21 13:56:31 2003 +0000 another state handling fix. commit e4c656cb8df311fb6db09c9cc9c05345adbd5313 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 21 13:19:32 2003 +0000 COMPILE WITH GCC 2.95!!! commit 924de35c6c6c19c29be5bbc822337cb9421e865a Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 20 20:04:32 2003 +0000 Compile with gcc 2.95. commit 75253aec7f5f4b182055604253c0fba72ad5abc8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 20 18:38:52 2003 +0000 Added option "--without-lite" to disable lite based examples. commit 8497262cc2d34cae2b8d710e7ac5b17ebcacf1ba Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 20 13:39:30 2003 +0000 Fixed warning. commit 3fcbdf1fb7bdf5a19d26729b66f5fb47aa1ce320 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 20 13:39:14 2003 +0000 Added missing ranlib call. commit e02bf2c3cb58ba92d4bd15c059d693fdf3c0bf3a Author: Andreas Robinson <andors@directfb.org> Date: Sun Oct 19 22:49:56 2003 +0000 Added AfterSetVar() function. May help with VIA-drivers crash bug. commit 76b933ae5b41d7948986da541c3fd30babdecf3a Author: Andreas Robinson <andors@directfb.org> Date: Sun Oct 19 22:44:20 2003 +0000 Fixed some compiler warnings. commit 72d1f1682c9335ba3b2ff71e1bc03531e7279500 Author: Andreas Robinson <andors@directfb.org> Date: Sun Oct 19 22:39:31 2003 +0000 Print debug msg before writing to hardware register. commit e7fd0fbdb44022543badc0303082057c4566acd3 Author: Andreas Robinson <andors@directfb.org> Date: Sat Oct 18 11:51:41 2003 +0000 Made the driver use EmitCommands(). commit 45d6d92927dc92ac1fc8478a2b13ddd8868bc5ba Author: Andreas Robinson <andors@directfb.org> Date: Sat Oct 18 11:50:01 2003 +0000 Removed an unused variable. commit 562c4f918dd6f6a47e89e4c9ec205754cb6cc54e Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 17 16:12:18 2003 +0000 Fixed warnings. commit 43d56afae8ddc8d84c495ce4273b7dea678a7928 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 17 16:09:25 2003 +0000 Added graphics driver function EmitCommands(). It's called when a state is released. Drivers can flush or emit any kind of command buffer. This is an advantage over flushing after each command, especially for dfb_gfxcard_draw_string() and dfb_gfxcard_fill_triangle() with semi acceleration. Made dfb_clip_blit_precheck() static inline. commit 2bd54e3f72512e52f59ccc2a63a235f248c7cdf0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 17 05:34:55 2003 +0000 Updated, too. commit 239a4965630d9e02a294a62a3e52ea934d30f1f1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 17 05:32:02 2003 +0000 Added getpid() benchmark as a reference value for system calls. commit ba4d5f186b126a74b477cdefe0d913de2d4a7966 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 15 21:41:49 2003 +0000 Added error checking to IDirectFBSurface_Window_Construct(). commit 8aeb95838c0572f30af4d285c54476aa0af6de18 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 15 21:07:19 2003 +0000 - sync/sleep before each test - use simple version for mutex/skirmish with one thread - added recursive mutex benchmark - added reactor_attach/detach_global() benchmark commit 283a996ea772a288002d554a33696e4aba6cfe51 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 15 17:01:29 2003 +0000 Use dfb_surface_data_offset() in dfb_surface_dump() to support DSCAPS_SEPARATED. commit a86ea87a041bd6f5add62297dd7bb97025a58bfb Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 15 16:41:17 2003 +0000 Added dfb_surface_data_offset() which calculates the data pointer for a given coordinate (x/y) based on the pointer and pitch passed to it. It also handles DSCAPS_SEPARATED depending on the surface which is passed, too. commit 1c85042724e8b733e0f427584635a34d8d9a24e5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 14 07:59:00 2003 +0000 Updated. commit 019fc07ab06906f4a464649a55936a85e4a34c1e Author: Andreas Hundt <andi@directfb.org> Date: Mon Oct 13 17:15:50 2003 +0000 fix state handling commit c5e8b10aab4e3ab1a415b6227c781284964d2f82 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 13 04:08:16 2003 +0000 Don't attach the font state to the destination to avoid increasing its reference count until the font is destroyed or used on another surface. Lock original state, too. commit 9ffde3df5ae0769d999dfb60ed32a4c6571be8dd Author: Andreas Robinson <andors@directfb.org> Date: Sat Oct 11 11:22:11 2003 +0000 Increased pixelpitch alignment from 16 to 32 to overcome a limitation in the video overlay hardware. commit d3031d2ebafb6081d8432641084865a1d8f5af9d Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 10 19:35:46 2003 +0000 Higher video priority buffers always kick out lower priority buffers. commit 8433220f469d2fd61e1a98b144cbfb387d702dbb Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 10 19:16:40 2003 +0000 Indicate locked buffers. commit e3fec9a655c7462d5583e6084230fff2a8a88ca9 Author: Andreas Robinson <andors@directfb.org> Date: Fri Oct 10 16:11:52 2003 +0000 viafb problem workaround rollback - it worked once, but not twice. :-/ commit 0e65489ee6b8c3a6357c846d7d208068ea7ca199 Author: Andreas Robinson <andors@directfb.org> Date: Fri Oct 10 15:26:52 2003 +0000 Worked around the problem which hangs the computer hard if e.g viafb is installed. I don't know why VIA's own drivers don't need the same fix ... commit af5c3cc162f5cf1607e2e06d20d616d1672ca0f4 Author: Andreas Robinson <andors@directfb.org> Date: Thu Oct 9 17:17:28 2003 +0000 Made DSBLIT_COLORIZE and DSBLIT_BLEND_COLORALPHA work in df_neo and df_dok. commit ec5ccd43f39e51a85d6b20741c10c0ba2c60420c Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 9 14:00:22 2003 +0000 Small fix. commit 68dcd5ca801bcd184f59713467347a5e30ae601e Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 9 13:57:17 2003 +0000 Improved output. commit e21d5f94950f8238b27d6b42ca306a516aa51503 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 9 13:37:34 2003 +0000 Show window id. commit 5a83bc9115286373039442e86c4c56d818f6c8d2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 9 12:59:39 2003 +0000 Print "DESTROYED" if window is destroyed explicitly but object is still alive. Show reference ids for further investigation via /proc/fusion. Added table header to surface list. commit 6f372207d30b0272eb66421b51b5251b8e7c8e74 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 9 12:57:37 2003 +0000 Don't remove the window from the stack in dfb_window_destroy(), but in the window destructor (object finalizer) after remaining references went off. This way dfbdump can show (not fully) destroyed windows. commit b0ec0e30491543f143e8c81dc3a608ad3e806a56 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 9 02:13:16 2003 +0000 Print "GHOST" for ghost windows. commit 1267fc18565416505f0bb9378074c74d04ed2bc5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 9 02:09:06 2003 +0000 Silently mask out DWOP_ALPHACHANNEL instead of failing in SetOption() if it's not supported. commit c873b06ebfe9aeb1fb78638ab561caf11c04f4b4 Author: Andreas Hundt <andi@directfb.org> Date: Wed Oct 8 17:08:55 2003 +0000 fix off by one bug for blended filled rectangles commit 2a9513faf71efcdf9fce08c858bb50ae6bdb18bd Author: Andreas Hundt <andi@directfb.org> Date: Wed Oct 8 16:50:43 2003 +0000 - correct pixelpitch and byteoffset alignment for surfaces - fix off by one error for 3d clipping - reenable 3d blitting commit 3efd2530401af6d01ec8eb143e5106506e6fedb9 Author: Andreas Hundt <andi@directfb.org> Date: Wed Oct 8 16:13:44 2003 +0000 fix off by one bug in uc_stretch_blit() commit 862b5965b7b73ad526572eb06a4fff12fb11d835 Author: Andreas Robinson <andors@directfb.org> Date: Wed Oct 8 15:23:31 2003 +0000 Partial fix for 3D-blitting size problem. Blitting arbitrary (non 2^n) sizes works much better now, but there is still a one-pixel-off error in df_window. commit 2af2bd3d65b835bf01eca618d63338461c855ac1 Author: Andreas Robinson <andors@directfb.org> Date: Wed Oct 8 14:00:55 2003 +0000 Fixed LUT8 blit bug. The driver erroneously tried to do a LUT8->LUT8 stretch blit, which isn't supported. commit 485126ab97e797826ebaeef5b4ef5bb8408f8c2b Author: Andreas Hundt <andi@directfb.org> Date: Tue Oct 7 16:54:06 2003 +0000 remove check for VIDEOONLY surfaces, disable blit_3d stuff because it is broken. commit 5a8ce171861b0eda510e2eb6ad0ff6dd8f6d6c2c Author: Ville Syrjala <syrjala@directfb.org> Date: Tue Oct 7 12:14:47 2003 +0000 Added DSFLIP_ONSYNC support to fbdev layer. commit 13c94ded77477363f01f06d702ef97db9ce31a7a Author: Andreas Hundt <andi@directfb.org> Date: Tue Oct 7 11:17:32 2003 +0000 fixed optimized 8bit colorkeying for little endian. disable it on x86 since it is much slower. have to test on my little endian arm machine. commit 1a8d500ba8eda04b28a85a2753331a34941b0b37 Author: Andreas Hundt <andi@directfb.org> Date: Tue Oct 7 10:09:27 2003 +0000 removed my stupid debug message commit e7acfd4be08e50f51660c41d862ce8cc80f9989a Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 7 10:00:17 2003 +0000 Removed evil artifact. commit 29d3c0334d0cb4a3451d92994a52ab7aa483e924 Author: Andreas Hundt <andi@directfb.org> Date: Tue Oct 7 09:52:58 2003 +0000 enable dok's 8 bit colorkeying optimization for all big endian architecures PowerBook G3 400Mhz df_dok --dfb:pixelformat=LUT8 --blit-colorkeyed before: 13.16 after 42.70(!) commit ab7e65a35a535dfa657b7305804af800dd1af802 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 7 08:04:14 2003 +0000 Build examples after library. commit b1b3a015dae59ed6502526fc8f20bbe6f3511b39 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 7 08:03:47 2003 +0000 Open sound device write only. commit ea35317ab285ad9bf8ddf29b6e8bc432b9ec7e27 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 7 07:56:55 2003 +0000 Added null pointer check. commit 1dc1312bfe281addce79ffbe429e19b4d10a570e Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 7 07:53:59 2003 +0000 Fixed segfault. commit 72eef2f506f36a5fc23097c9aacf17552053273b Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 7 07:13:55 2003 +0000 Wrote two complex 8 bit color keying implementations optimized for alignment, currently only enabled for MIPS Big Endian for testing. 1) (sx & 3) != (dx & 3) -> 30% boost 2) (sx & 3) == (dx & 3) -> 120% boost Should be tested on other platforms. Little Endian is not supported by 1), yet. commit f88d3a3f8dd5435b67aa5e863ab6086401027e06 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 6 21:45:25 2003 +0000 Start with 0x00000001 in DFBDisplayLayerBufferMode which can be used as flags. Sorry for binary incompatibility. commit d548d69994d024b7137f7ef4b451e1ce4314e085 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 6 19:29:29 2003 +0000 Fixed 'for' condition. commit 6fa41938153b2815cb953101fd071384d8c85b6c Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 6 19:18:59 2003 +0000 Clean up dfb_scale_linear_32() and dfb_copy_buffer_32() parameters. Destination offset is now handled by these functions, fixing rendering to field separated surfaces with an offset != 0, 0. commit 0d4d2dba153e4ea79211c011ad6a00d7be4ac471 Author: Andreas Hundt <andi@directfb.org> Date: Mon Oct 6 17:53:15 2003 +0000 fixes for multi-application support - move vq stuff from driver_data to device_data - allow cle266vgaio device to be opened more than once commit 2ac36d3e587002ff96cca0b827de565b98fb8baf Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 6 09:42:17 2003 +0000 Added some keys to id_to_symbol(). commit 7b024144488e57826f394251b6fa00b287ff340e Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 6 09:41:44 2003 +0000 Minor simplification. commit cf72b56db892497c6672fbf96744d3e215113ffc Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 6 09:38:37 2003 +0000 Added DFB_KEY_INDEX macro. commit 8a4c7d1be28586c2b09cfe420f102f447fd89b2f Author: Andreas Robinson <andors@directfb.org> Date: Sun Oct 5 11:59:27 2003 +0000 YUV planar mode bugfix. U and V planes were not set up correctly and did not look right. commit aa1c81f7f81f26c978b6023d14327703c0ff8ef1 Author: Andreas Robinson <andors@directfb.org> Date: Sun Oct 5 11:33:11 2003 +0000 Added WaitVSync() to video overlay. commit 561d695d2bf7ecec8e8095166c4b52a447cd077f Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 4 19:30:53 2003 +0000 New version for VMware Workstation 4.0, supports switching of bits per pixel at run time, can disable acceleration at run time. Also fixed palette mode. commit 4aaae87c1b9572853df7397a2553d496de5487b5 Author: Andreas Hundt <andi@directfb.org> Date: Thu Oct 2 17:54:14 2003 +0000 fix FillTriangle() for non 32bit modes commit b9a6e63dcbb0542cbf563ad50319aab265881f64 Author: Andreas Hundt <andi@directfb.org> Date: Thu Oct 2 16:44:19 2003 +0000 bugfix for blended FillRectangle(), DrawRectangle() and DrawLine() in non 32-bit modes. (while performing 3d operations, the source color is always 32 bit ARGB, not in the destinations's pixelformat) commit d769aa4937bdf54641e75c3a2e3025b505f67d26 Author: Andreas Hundt <andi@directfb.org> Date: Thu Oct 2 15:42:48 2003 +0000 - removed surface allocation for vc buffer, use dfb_gfxcard_reserve_memory() instead. - added note about vram command line boot parameter - removed bug note about wrong driver announcement commit 5d4c1e7d7e939cc940d2e6a248bcc27506475b9e Author: Andreas Hundt <andi@directfb.org> Date: Thu Oct 2 12:31:07 2003 +0000 check for libtool and run libtoolize --automake, fixes build for me. commit 0040a5698a575787a2331e305efd921395c988ae Author: Ville Syrjala <syrjala@directfb.org> Date: Wed Oct 1 20:41:25 2003 +0000 Fix for CONFIG_FB_MATROX_MULTIHEAD. commit ceafba96eef8161909930b8169b12597aff3487d Author: Ville Syrjala <syrjala@directfb.org> Date: Wed Oct 1 17:32:36 2003 +0000 Patch to set the clocks on a G400 to proper values. commit 26e24bd633adf79e4ca4af942ba6560bf46d11ec Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 1 12:28:35 2003 +0000 Commented out assertion. commit 45cf404c12027db827c1b17a976938256ce255c3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 1 12:03:49 2003 +0000 Fixed dfb_colorhash_invalidate() which did not invalidate the first entry. commit 9236c4548c7b9d27e0b631adcfd7db9e557a3a72 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 1 12:02:18 2003 +0000 Removed debugging artifacts. commit d73a23fa09b57f18b727cb60fde34df8a1ee342c Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 1 12:00:32 2003 +0000 Forgot to add that. commit 20d4cf1a29b166b373428ea4e755ec5b610bcb18 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 1 11:59:58 2003 +0000 Removed bogus flag. commit eb7796df28e8c762ffed4485e9388b7e3cf2bf52 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 1 11:40:14 2003 +0000 Added new display layer buffer mode DLBM_WINDOWS where the layer itself has no surface, but the hardware is aware of each window and displays the window stack. Added DLCAPS_WINDOWS and three display layer driver calls to add, update and remove windows. commit 1a0a2e4f1b505b1abb20c9e50c21cc2c7f2bdac8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 1 11:25:21 2003 +0000 Pass real alpha value to conversion routine. commit c7dbd0e4656b042ee1b086076f624e325c96c821 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 1 11:20:34 2003 +0000 Added "void *device_data" to InitDriver(). Drivers can store a pointer to the shared device data in the local driver data, e.g. to access the device data in display layer functions which only get the driver data passed. commit bd189db4e963eb4509ea1620ace896d2d313d80e Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Sep 30 14:59:54 2003 +0000 Don't blend pixels with black when loading images with alpha to non-alpha formats. commit 0cd1d62c5fed01a9670d4d16862ea40d730cdc21 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Sep 29 14:37:12 2003 +0000 Fix for v4l2. commit 66e5423fcdc5c14da59502982a1aa652a3083079 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Sep 29 13:42:36 2003 +0000 Video4Linux 2 support by Michael Hunold <hunold@convergence.de>, thanks! commit d37b5d90a0f278fa4bf805e80727ef1a67bd52ce Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 25 06:35:12 2003 +0000 Creating a fullscreen primary with a pixel format set in the description took the pixel format specified via "pixelformat=" option if the current pixel format already was the pixel format set in the description. Make sure the "primary-layer=" option used for slaves enables the display layer before usage. commit b916326e4eeafde64c422adb50a5ddc57e937abc Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 25 05:23:58 2003 +0000 Include <sys/io.h>. Build CLE266 driver on platforms with sys/io.h only. commit a07f1f0272ebfd8e68703ccc063b22e0fae9d683 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 25 05:21:41 2003 +0000 Compile fixes for 2.95 commit 7b76b469d759d8d833b4e12648644bac3dfb80ed Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 25 04:30:57 2003 +0000 CLE266 driver by Andreas Robinson <andro134 at student.liu.se>, thank you! commit ca271e02747c86c00e88aff7cb45821d08acdb3f Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Sep 23 20:35:22 2003 +0000 Added "LL" suffix to constants of multiplication to preserve long long type. Otherwise the session uptime turns negative after about 25 days, e.g. using dfbdump to display it. Yes, my working session is up for "29 days, 10:02:37" now ;) My secondary session (dedicated to XDirectFB + streamtuner + xmms) is up for "36 days, 05:48:40" !!! commit bd288a776bc69d170e8dfd459bca993c23548378 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Sep 23 14:38:27 2003 +0000 Don't set alpha value of color key palette index to 0xff. commit a42b6759c6f3b29a577ca81855d731da3d9920ed Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Sep 23 13:11:30 2003 +0000 Simplified Bop_a8_set_alphapixel_Aop_lut8 for monochrome fonts. commit d4118854c73912a533bbeb4de439d2c86f697081 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Sep 22 20:25:29 2003 +0000 Ignore r, g and b difference if alpha is zero. commit 2b49dc202687883cc1f00d658a4086f0066cc3e1 Author: Ville Syrjala <syrjala@directfb.org> Date: Fri Sep 19 01:17:21 2003 +0000 PIXEL_RGB24 is gone, use PIXEL_RGB32. commit 184090db8eb237002bb4cfd925a5aeacf840160a Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Sep 12 21:41:16 2003 +0000 Remember and compare the Fusion ID of the last state's owner. Fixes cases where state pointers equal but don't belong to the same application. I wondered for a long time why two instances of e.g. df_andi running windowed mixed up their blits. commit 8e7b5602dc9b3f4ee45826406d762546be9ef8a5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 10 08:17:45 2003 +0000 Show actually allocated bytes for each surface (video + system). commit 87733c28aa29cee2cffff1f4d09cc3243f460ea8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 10 02:14:32 2003 +0000 Less weight for alpha. commit 54c0a89735543499f7dba2a7d24a7e8e5b95389f Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Sep 9 18:33:25 2003 +0000 Multi app related stuff. commit ecfede23d0e9550b24ce7da5cff8a05a4b994892 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Sep 5 12:19:08 2003 +0000 Restore KD_GRAPHICS after switching back to DirectFB. commit 7bd63a145351bad21587fd1fec75ddafcaac68f6 Author: Ville Syrjala <syrjala@directfb.org> Date: Mon Sep 1 11:44:48 2003 +0000 Enable dithering and filtering for RGB modes instead of YUV modes. commit 23e412b8ce9c6fc86d8aa4c3d33f24f265290148 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 28 17:32:01 2003 +0000 Use the generic conversion routines for surfaces with DSCAPS_SEPARATED. commit c1db9e241e3701dd738c89254208973bf928c6b8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Aug 27 17:43:25 2003 +0000 Call driver's SetOpacity() only if the opacity changed. commit b73abf5d2d7ba256cb3a457393b490efd8a0e786 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Aug 27 17:42:00 2003 +0000 Call driver's SetScreenLocation() only if the location changed. commit 292839add3bac966386165e8d40539242f9b1cb5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Aug 27 17:39:15 2003 +0000 Don't call dfb_window_init() for each IDirectFBWindow_Construct(), but only for the first time. commit 67fb4661bb6704e9d54536bf1ac5b83eb3e99b72 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Aug 27 16:38:55 2003 +0000 Commented out assumption. commit ed6c1bf5292a2098b125eabd7001becbe6ae20c3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 26 16:32:57 2003 +0000 Added some more exit points to the grabbing thread. commit d9482155ef4f59f552c74e30b32a12d7cfaf82b8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 26 16:29:12 2003 +0000 Don't support A8 destination on a G200. It doesn't support it as a source, too. commit 1bb2c3e3ebab26a3d25f571255032d24e40e9eef Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 25 17:37:11 2003 +0000 Align glyph offsets to a multiple of four. commit 0063479f433f7bdb1cfbc47c652a279d15c9c13e Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 25 17:27:37 2003 +0000 10% DrawString() boost by changing __u16 to __u32. commit d689e99d3068c243173b7cf11770af49419b2cab Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 25 16:40:45 2003 +0000 Lookup color index for layer's background color. commit 2f697d6f809a9d555b062e8e33b03da455ff395e Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 25 15:13:30 2003 +0000 Support DSCAPS_SEPARATED in dfb_copy_buffer_32(), too. commit d1b95d9d25e369eaa48a60346fdee2302c2b8820 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 25 14:43:00 2003 +0000 Support DSCAPS_SEPARATED in dfb_scale_linear_32(). commit aedb46b7e1db965269ff9df499fb1bc76392c671 Author: Sven Neumann <neo@directfb.org> Date: Fri Aug 22 11:36:27 2003 +0000 Define major and minor version number in config.h. Include config.h from all .c files and use the version number for the driver. commit 4ff8d5fcf2327fccfb5439a01bc04914b9f48fd5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 21 17:57:41 2003 +0000 Don't optimize repaints for restacking. commit c92b04950861cf5b0451c83ceb84df8756bc92cc Author: Sven Neumann <neo@directfb.org> Date: Thu Aug 21 17:11:22 2003 +0000 Added support for END. commit 393c60561f1d8fcff47faad9def03500034b1841 Author: Sven Neumann <neo@directfb.org> Date: Thu Aug 21 16:02:08 2003 +0000 fixed a stupid bug in the keypad hack commit 238aebc44df9b89ab19310f370442b710854b4cb Author: Sven Neumann <neo@directfb.org> Date: Thu Aug 21 15:16:08 2003 +0000 rewritten in a more obvious fashion commit c4ff4c86f8c3f6ccf845ba3c726ff60026a1ae9e Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 21 15:12:07 2003 +0000 Translate DIKI_KP_0-9 to DIKS_0-9 instead of DIKS_HOME etc. commit 0d519869775efb72bd4718643019f398f8e85ccb Author: Sven Neumann <neo@directfb.org> Date: Thu Aug 21 12:21:44 2003 +0000 quick hack: emulate numbers as coming from keypad commit 957affefce3f06bb673e939663365505a15ace11 Author: Sven Neumann <neo@directfb.org> Date: Thu Aug 21 12:00:57 2003 +0000 Bumped version number to 0.3.0. commit 9ab0a86b84ca286a4e9ed5bba952d70587beaa2e Author: Sven Neumann <neo@directfb.org> Date: Thu Aug 21 11:58:23 2003 +0000 Added divine_send_identifier() that allows to dispatch key events by specifying key identifiers instead of key symbols. commit 1413fa17c1fae2534d3b457d90316fce3631b7cd Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Aug 20 07:38:53 2003 +0000 Added support for color keyed PNGs. Instead of converting an 8 bit palette PNG (with tRNS) to ARGB, convert it to RGB and generate a color key. commit af70e6a23abec16acfc4e3b8c82677692828891e Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Aug 20 00:16:20 2003 +0000 Applied a great patch from Maurizio Monge <monge@sns.it>. When repainting the stack due to a window update, e.g. a Flip(), skip those regions which are hidden by opaque windows above the window that changed. This increases performance and reduces artifacts. Example: Terminal with tons of debug messages under opaque window caused the opaque window to be updated, too, within the intersection of both windows. Another example: Run a fullscreen app in windowed mode, e.g. df_andi, and see how frame rate increases as more of df_andi is hidden by opaque windows ;) commit 73f0ad283a03ed088557ebd556361317c421dceb Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 19 18:25:19 2003 +0000 Fix warning for builds without MMX. commit d85ceab93ecd4827c81ccc4197844bf9897a756b Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 19 10:45:49 2003 +0000 Set SBF_WRITTEN if hardware writes, too. Fixes garbage after VT switching (in case the surface has never been written to in system memory and therefor was not properly restored). commit 9fafe00f378080fe74ecf779479b72179e986c28 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 19 01:15:51 2003 +0000 Fixed warning. commit 67785b48226cf23afc156c919777d612d5ba84a2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 18 20:15:44 2003 +0000 Don't automatically flip in SetOptions(). commit 1d5052a2fb100c0f1781fc9d102e541ea6daca4e Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 18 17:27:30 2003 +0000 Added IDirectFBSurface::Dump(), e.g. for debugging. commit 7fdf409cd2f23d1f8a386e8caa1b049cf58edee5 Author: Ville Syrjala <syrjala@directfb.org> Date: Mon Aug 18 14:35:12 2003 +0000 PIXEL_RGB24 is gone, use PIXEL_RGB32. memset() needs string.h. commit 748d8bf79a3d5a693f495d9087bd9ce3582b90c6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 18 12:40:14 2003 +0000 Added "-lm" to libmpeg3 module. commit e014db19a718da18743cb336e3a36a43be2a8bd3 Author: Andreas Hundt <andi@directfb.org> Date: Sun Aug 17 09:29:25 2003 +0000 use -module flag, which causes libtool to create mach-o "bundles" on darwin/osx instead of dynamic libraries which cannot be dlopen()ed commit 1a30be08ea5c1c37fe8f1c339f64f029d5d753fb Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Aug 15 18:22:31 2003 +0000 non-debug apps in a debug session break shared memory assertions commit fa81c6583daf14c848e720ed5fc47614413fcf63 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Aug 15 15:58:30 2003 +0000 Updated. commit e44c645719565c4fd24ba0ab6369be46b6c1d12d Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Aug 15 15:56:05 2003 +0000 Enable key repeat. commit adced8db12eb1795865343bf22576d4b90f565ed Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Aug 15 15:11:00 2003 +0000 Added the obligatory "other bug fixes" line ;) commit 34855e0345f501b223958db584a6610eacb95f49 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Aug 15 13:48:05 2003 +0000 Updated. commit 15b67b79834af201cb81ceea477639e1eff80f9a Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Aug 15 13:04:46 2003 +0000 Added WM97XX Touchscreen driver, thanks to Liam Girdwood <liam.girdwood@wolfsonmicro.com>! commit f487f74e1e8ca28ddcc66568b35994b3fb107196 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Aug 15 11:59:12 2003 +0000 Increased timeout from 100 to 200 ms. commit 6817712e18fe545e8f47d01ede8681185ac29b06 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Aug 15 11:57:10 2003 +0000 oops commit 39b0c525540d88b5ee89304d529186e50e1e2e63 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Aug 15 11:39:13 2003 +0000 Call tracing has to be enabled via "--enable-trace" now. Show stack trace of all threads when a signal is received. Include <config.h> everywhere. commit 66eeb5c72ef3af8baa306b3c2c5409774e5626bf Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 14 16:06:57 2003 +0000 Fixed warning. commit b7b2a52cf15b74424e5b2d88f847df4a0029eb8d Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 14 16:06:09 2003 +0000 Allow signal handler in slaves again. commit c667284cd84485ef00fdae1578dc39822ab81807 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 14 16:04:23 2003 +0000 Added new debugging method "dfb_debug_print_stack()" that dumps the current stack trace. But it just includes functions that are compiled with the gcc option "-finstrument-functions", currently all of DirectFB when --enable-debug is used. commit 10b10d22a96e1b833f8f08f0be0e77ff00be3da3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 14 14:54:26 2003 +0000 Include <config.h> at least in all files depending on FUSION_FAKE. Switching single/multi app between builds should be working now. commit b40c289d517bd59fecb7add77f662869a81e9c4c Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 14 00:42:18 2003 +0000 <Meta>-<Print> now stores the alpha channel of the window, too. It's a pgm and is stored with the same file name except the extension. To convert from ppm/pgm to png do: pnmtopng -alpha dfb_window_0000.pgm dfb_window_0000.ppm > dfb_window_0000.png Minor debug changes. commit 595818cdb1ec763cd075de26006883c7668463a7 Author: Andreas Hundt <andi@directfb.org> Date: Wed Aug 13 17:39:42 2003 +0000 build pixelformat conversion utilities only on linux systems. commit 3390dcb2a4d10b96c20737c7591eb7619b300b69 Author: Andreas Hundt <andi@directfb.org> Date: Wed Aug 13 17:34:49 2003 +0000 use setpgid() instead of setpgrp() to restore darwin and probably other BSD compatibility. commit 0afa6eb90431402d6024c8e23b07da46e9626687 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 12 12:10:36 2003 +0000 Added another lock check. commit 92907473feeefb43e5cc5601d59899150090f658 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 12 12:09:24 2003 +0000 Added a lot of necessary locks. IDirectFBDisplayLayer::GetWindow() is safe now, too. Was an urgent fixme. commit 70934ac3d6a89da84cfe5a59922127e66b93effc Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 11 16:49:51 2003 +0000 Skip copying from system to video memory during auto video buffer upload if the buffer has never been locked for write access. Enable upload of auto video buffers for write only GPU access, too. Speeds up surface create/clear/release cycles, nearly as fast as for video only surfaces. commit 27dcc549b52e0bfffa377e65cf420abbce2d89c4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 11 16:09:56 2003 +0000 Indicate if segfault has been cured. commit 4b9be667e85bb8e17a59b02a1383f05646ea3667 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 11 15:59:31 2003 +0000 Hot fixed rare segfaults which occur if a valid shared memory pointer is derefenced but the address lies in a new region which hasn't been mapped locally yet. Added "bool fusion_shmalloc_cure( const void *ptr )" which is called by the signal handler to recover such segfaults by remapping the file immediately. It returns true if the segfault is cured and the signal handler may drop it. This is a hack until there's a better solution, maybe via Fusion Kernel Device. commit bcb98df83ec26b6f85c3893fbbe40a78f42b025a Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 11 13:23:33 2003 +0000 Show faulting address in case of SIGSEGV. commit c2d57d6eed7b5f2acda053760463f366951dcbc9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 11 13:22:49 2003 +0000 Converted assertion to assumption, added another assumption. commit db8969b35610232046ae1389f454eb5215705d56 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 11 13:20:04 2003 +0000 Added debug messages to __shmalloc_brk() and __shmalloc_react(). commit 50afa6f82552d29fc7a7573c375015614af65045 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 11 10:19:35 2003 +0000 Fixed button events, thanks to Tim Wright <tim.wright@iosystems.co.uk>. commit 960473810e39d9ba24233454e2a444edcd266cf3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Aug 8 23:17:03 2003 +0000 Removed a caution message. commit 1a4895b0ec854bc41b4318c04686a47ee5760beb Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Aug 8 23:10:58 2003 +0000 Block signals in slave threads and fusion read (master & slave) thread, too. Enhanced debug, minor cleanup. commit 92855f15661bd23324283d377c4d8bbe2e9fb8a6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Aug 8 21:52:49 2003 +0000 Cleanup, enhanced debugging and safety. commit 8683c48420d5f20b39cd649c1c16eb80552764b3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Aug 8 19:39:29 2003 +0000 Waiting for pthread_create is required, but it's done later now. commit ec9ec6272838f49a8fb4fe01b7fd70329fb73b3c Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Aug 8 19:10:27 2003 +0000 Create a new process group early during initialization. Send SIGTRAP to process group leader instead of the calling process in DFB_ASSERT and DFB_BREAK. Otherwise the signal would be blocked if the assertion or break happens in a thread, e.g. an input thread. Call pause() after sending the signal, otherwise execution continues until the signal is caught. commit 1453745874d5e9d62ff78baa5d7acdb082c60171 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Aug 8 18:16:47 2003 +0000 Use pid instead of pthread id in debug messages. commit fd7080b1a71f7d435547a2a6ce3607eb6d7a7ab4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Aug 8 18:10:16 2003 +0000 Added DFB_ASSUME which is like DFB_ASSERT, but doesn't send SIGTRAP and has "(?)" instead of "(!)" at the beginning of the debug message. Failing assumptions are not fatal. They can be used to unveil unusual behaviour, e.g. dfb_thread_join() called while already joining/joined. Optimized creation of new threads by not waiting for pthread_create completion in spawned threads. Also don't enter the main routine after initialization if another is already joining. This is useful if DirectFB is initialized, but deinitialized shortly after. In this case the fusion_read_loop() is not entered. On a P3 800E with only fbdev (systems) and matrox (gfxdrivers) installed I did "while true; do dfb_init_deinit &> /dev/null; done" where 'dfb_init_deinit' (slave) just calls DirectFBInit/Create/Release. This results in about 170 iterations per second and looks like 5.8 ms for a complete init/deinit for slaves, but bash is consuming a lot of CPU, too. Debug messages show that a complete DirectFBInit/Create/Release (as a slave) takes 3-4 ms ;) commit 93a3e94a69897239f4610b5cb399bf14b4f4a470 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 7 16:46:19 2003 +0000 Check desc.width and desc.height for being positive in CreateFont(). commit 640d8d255bdbce4bb39a8d83abe9f171123cde4d Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 7 16:42:11 2003 +0000 Added error handling to glyph surface creation. commit cf85555e82c93ec26ec51a7d78057aa9a62c3b0d Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 7 16:26:38 2003 +0000 Added some assertions and argument checking. commit 4c26f3dcaa8242afbe4d770bb2171bcf634e864f Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 7 16:05:27 2003 +0000 Don't filter all print keys. commit 5ee697e6b0e59f961abf7e47bf8acbcf0a40081e Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 7 16:00:20 2003 +0000 Added <Meta>-<Print> hot key to make a screenshot of the focused window ;) Added dfb_surface_dump() which is used for screenshots now, replaces static function dump_screen() and will store the alpha channel to an extra pgm soon. commit 7bf4f7ad0f405e98e85afa9c998a249448043eac Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 7 00:46:50 2003 +0000 Check if the font is already set in IDirectFBSurface::SetFont(), saves just a few CPU cycles though. commit 05de94bd9be5d4d52306f3fe7d22420d453fa236 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Aug 6 17:52:20 2003 +0000 New environment variable "DFBARGS" is now parsed like everything after "--dfb:" on the command line. New order: system /etc/directfbrc user <home>/.directfbrc system/app /etc/directfbrc.<app> user/app <home>/.directfbrc.<app> environment $DFBARGS command line commit e3137b83b254ddfc8740cada13b01159bc3ee8b1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 4 19:09:28 2003 +0000 Need long long. commit 6fd06aa07fc046fa25b2db1ad87f29f969a2e519 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 4 19:00:13 2003 +0000 Reject very large surface creations (> 4096*4096 pixels). commit 39368f0436ec7267eae8432c1d482a8340a507fc Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 4 18:39:03 2003 +0000 DWOP_SHAPED support for color keyed windows, thanks to Maurizio Monge <monge@sns.it>. commit cd5c4b8b34b3f15bf314648a56ce7e206b13fa0a Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Aug 2 19:35:40 2003 +0000 Added IDirectFBEventBuffer::WakeUp(). Wakes up any thread waiting for events in this buffer. This method causes any WaitForEvent() or WaitForEventWithTimeout() call to return with DFB_INTERRUPTED. This method should be used rather than sending wake up messages which may pollute the queue and consume lots of CPU and memory compared to this 'single code line method'. commit 4133a4efd9a628e4e0ee70ec703269634f6c5a48 Author: Andreas Hundt <andi@directfb.org> Date: Sat Aug 2 15:52:05 2003 +0000 updated package version commit c1282ad0a2dc5613d67c9f0b5546245c542d7cfd Author: Andreas Hundt <andi@directfb.org> Date: Tue Jul 29 13:05:13 2003 +0000 version number 0.9.19+0.9.20WIP-1 commit 771162e2b83d0079f21f1a7d773301d7067f8946 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 29 04:00:11 2003 +0000 Fixed non-x86/ppc builds. commit c85bc934af9604c65f01c7bb9a4218a91bea4822 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 29 03:46:37 2003 +0000 Don't segfault in slaves if no graphics driver is used by the master. commit dc421ed0b976aa61d92892f8a36ef8caf18d59cb Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 28 20:53:13 2003 +0000 Added "memcpy = <method>" option to save a lot of startup time. "time dfbinfo" went from 0.080 secs to < 0.010 secs! commit b849e25a6475473a4691f61caa1acc979a15b485 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 28 19:36:47 2003 +0000 0.9.20 looks fine. Updated copyright in banner. commit 5d39a6da0a02907f568d141ba93a1687ca23879a Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 28 18:44:16 2003 +0000 Include URL http://www.linuxbase.org/spec/gLSB/gLSB/libpthread.html commit 5edaaaf1ff9290a45229b1c12cc88b9b51f1d1a1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 28 18:40:26 2003 +0000 Added: LSB violations (from http://www.opengroup.org/personal/ajosey/tr28-07-2003.txt) ------------------------------------------------------------------------------- 215 Applications must disconnect from the controlling tty before calling 216 pthread_create. 225 Threaded applications cannot use SIGUSR1 or SIGUSR2. commit 351431ada9916c90ba680432f31fa36e2a04f5cc Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 28 14:21:52 2003 +0000 Added DWOP_SHAPED that adds shape support to cursor movements, i.e. ignore the window if alpha is zero at the cursor location. This is based on a patch by Monge Maurizio <monge@linuz.sns.it>, thanks! commit 2f729c9cc1ba11c4c43f4af7b666e4d2a594a347 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 28 13:47:39 2003 +0000 Restore layer opacity during resume. This way one can switch to the linux console and do "dfblayer -l 1 -o 0" to disable the Matrox BES or any other overlay if it covers the whole screen and makes the session unusable. But "fbset -accel false" might be needed on that console. commit 7d312dd530d5a89a54dd51f835d0250c758abfc2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 28 12:01:54 2003 +0000 Fixed undeclared "dfb_fbdev" for builds with FBIO_WAITFORVSYNC defined. commit fab9fef07740ea23371d0f773057db10a99b1f32 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 25 12:47:23 2003 +0000 Have fusion-full-linux-2.60-test1.patch.bz2 in EXTRA_DIST. Remove old and broken patch. commit 753862e12a9f518226b74fdcfe5eafc0304a3928 Author: Andreas Hundt <andi@directfb.org> Date: Thu Jul 24 11:44:48 2003 +0000 working patch for 2.6.0-test1 (support new internal devfs api) commit def4946a0eb8339166c9cd2d706946a72f911a7e Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 23 14:36:19 2003 +0000 Don't show "make" message if configure failed. commit 781b19d8189d89754278ce3630b4a920fdb8b0fb Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 21 13:06:00 2003 +0000 Generated ChangeLog. commit a90237e4f3803c59884ddc4969cc86f5893119c4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 21 12:00:02 2003 +0000 Updated. commit a1927e4e9551046da4a21d326feae196d2931381 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 21 11:24:21 2003 +0000 Removed automake -ldl issue. commit f8679858acf44b8551051952dfeb972f4720efe9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 21 10:57:10 2003 +0000 Do not cover the whole screen by default. commit 571c2c1a9150fd8f67281911a868d008f4f92e20 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 21 10:55:02 2003 +0000 Added parameter for opacity changes. Also useful to disable an overlay. Show layer options in configuration dump. commit 13e834b74cb35711dc071beaa5e48001cb757fed Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 16 16:28:05 2003 +0000 Moved min_toleration to shared manager data. commit a88097485ec3cbbe0fd5bac5fc3bbe91f9241fc6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 16 03:55:06 2003 +0000 Cleaned up debug messages. commit 931bf8281416b9050e94f624f4f6c9fba7aef853 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 16 03:05:44 2003 +0000 Removed "soft lock" hack that just increased the lock counter. Use dfb_surface_hardware_lock() now as we can maintain the lock until the video is stopped. commit 6061bc28321bb1c29af3067791061c99b5108da8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 16 02:49:09 2003 +0000 Removed front and back buffer locks from surface. Locking is provided by the embracing surface manager lock. This saves two system calls per drawing operation and even four system calls per blitting operation. Locking a surface won't block anymore. Currently any number of concurrent read/write accesses by cpu/gpu are allowed. Locking is a way of pinning the surface buffer to a pool. The hardware lock fails if the system memory instance is locked. Check the benchmarks, some values nearly doubled ;) BEFORE Benchmarking with 1x1 in 16bit mode... (16bit) Anti-aliased Text 3.00 secs ( 626.97 KChars/sec) Anti-aliased Text (blend) 3.00 secs ( 633.18 KChars/sec) Fill Rectangles 3.00 secs ( 0.14 MPixel/sec) Fill Rectangles (blend) 3.00 secs ( 0.13 MPixel/sec) Fill Triangles 3.00 secs ( 0.06 MPixel/sec) Fill Triangles (blend) 3.00 secs ( 0.06 MPixel/sec) Draw Rectangles 3.00 secs ( 128.37 KRects/sec) Draw Rectangles (blend) 3.00 secs ( 125.77 KRects/sec) Draw Lines 3.00 secs ( 737.33 KLines/sec) Draw Lines (blend) 3.00 secs ( 718.00 KLines/sec) Blit 3.00 secs ( 0.10 MPixel/sec) Blit colorkeyed 3.00 secs ( 0.10 MPixel/sec) Blit with format conversion 3.00 secs ( 0.12 MPixel/sec) Blit from 32bit (alphachannel blend) 3.00 secs ( 0.09 MPixel/sec) Blit from 8bit palette 3.00 secs ( 0.11 MPixel/sec) Blit from 8bit palette (alphachannel blend) 3.00 secs ( 0.09 MPixel/sec) Stretch Blit 3.24 secs ( 99.88 MPixel/sec) Stretch Blit colorkeyed 3.23 secs ( 100.16 MPixel/sec) AFTER Benchmarking with 1x1 in 16bit mode... (16bit) Anti-aliased Text 3.00 secs ( 675.60 KChars/sec) Anti-aliased Text (blend) 3.00 secs ( 677.32 KChars/sec) Fill Rectangles 3.00 secs ( 0.17 MPixel/sec) Fill Rectangles (blend) 3.00 secs ( 0.16 MPixel/sec) Fill Triangles 3.00 secs ( 0.07 MPixel/sec) Fill Triangles (blend) 3.00 secs ( 0.07 MPixel/sec) Draw Rectangles 3.00 secs ( 168.70 KRects/sec) Draw Rectangles (blend) 3.00 secs ( 159.00 KRects/sec) Draw Lines 3.00 secs ( 833.00 KLines/sec) Draw Lines (blend) 3.00 secs ( 809.33 KLines/sec) Blit 3.00 secs ( 0.15 MPixel/sec) Blit colorkeyed 3.00 secs ( 0.15 MPixel/sec) Blit with format conversion 3.00 secs ( 0.21 MPixel/sec) Blit from 32bit (alphachannel blend) 3.00 secs ( 0.16 MPixel/sec) Blit from 8bit palette 3.00 secs ( 0.20 MPixel/sec) Blit from 8bit palette (alphachannel blend) 3.00 secs ( 0.15 MPixel/sec) Stretch Blit 4.41 secs ( 110.36 MPixel/sec) Stretch Blit colorkeyed 3.14 secs ( 103.09 MPixel/sec) commit 0031ed38aaa3079dc9648cc37489a7e842120699 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 16 02:11:27 2003 +0000 Removed dfb_surface_destroy() from exported API. Destroy surfaces in the destructor only. Saves a skirmish and some code. commit b602b630a2749a338dabcd6ffd2054bb7adfa3e3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 15 05:28:10 2003 +0000 Wrote generic enum to string table conversion script used for key symbols, key identifiers and pixel formats. commit 4175cb431e34036df58414464efb308f640ff9f8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 15 01:49:51 2003 +0000 Added buffer mode changing. commit 4a114eb6b92f3ecae88f421c9decd586d231e92c Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 14 17:22:18 2003 +0000 Added "dfblayer", a display layer configuration tool. Added generation of pixel format names into the new directfb_strings.h header. commit 93e88d3ca68130bbf54a8c375253fa90bda685ed Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 14 16:18:02 2003 +0000 Added DLCONF_NONE = 0. commit 7aa02fba8d0ed92e0016e62588cac69683fc1c1d Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 14 15:19:55 2003 +0000 Fixed "primary-layer" option for the master. commit b93ef403fb0387279c661aa43c1442bc5e1c48a3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 13 22:26:17 2003 +0000 Platform independent radeonWaitVSync() by Michel Dänzer <michel@daenzer.net>. commit ef14c095e2af8824530bcc61534ea4f427da93d2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jul 12 17:34:09 2003 +0000 This is the initial version of a Radeon acceleration driver by Michel Dänzer <michel@daenzer.net>, great thanks! <quote> I've tested the driver on an M9 in a PowerBook and a Radeon 7200 in a Cube. It's based on the ati128 driver, but has only basic acceleration so far. </quote> commit 62f285f9e40991ca984e995654819ba7c0f2da37 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 11 20:24:43 2003 +0000 Fixed "primary-layer" option for fullscreen applications. commit b9a943d05406e69078055a48664a459597af002c Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 11 20:15:25 2003 +0000 Added option "primary-layer=<id>": Selects which layer is the "primary layer", default is the first. Check 'dfbinfo' for a list of layers supported by your hardware. All fullscreen and windowed applications should run with this, for the application the first and the primary layer are swapped. commit 2c99152e4f2b48b38421ce7f26d19da4fa9cc03b Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 11 18:57:28 2003 +0000 Fixed dead lock due to thread safetiness added recently. commit f92302138cc8726e1b877b680f4bb93df2ce7b80 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 11 16:57:06 2003 +0000 Made implementation thread safe. Fixes assertion when implicit (by surface listener) and explicit (by ::Stop()) v4l_stop() calls are running simultaneously. commit 01d13bf2b53fb8dc8b1d74b448708e601e46d4e0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 11 15:07:39 2003 +0000 Don't handle enter/leave/focus while the builtin wm hack is active (e.g. during resize via <Meta>-<Ctrl> and mouse). commit 03e750905ebf6478524b8331e169bada0f9f7eb5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jul 10 17:37:30 2003 +0000 Work around a bug in the DVB kernel driver (more likely) or the DVB hardware. When using buffers with a pitch much higher than the width suggests (e.g. using DSCAPS_STATIC_ALLOC and downsizing), the lower part of the video is cut off. - b.width = surface->width; + b.width = buffer->video.pitch / ((bpp + 7) / 8); commit 44cec7458b19ae60f2e3f66630cc85ec4d01e6ab Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jul 10 17:11:28 2003 +0000 Stop the video playback if the size or format of the surface changed. Fixed dead lock between overlay thread and surface listener calling v4l_stop() by adding additional break points to the overlay thread. Only 99.999% safe, but the v4l code should be rewritten anyway. commit 676e3197fe73b8f6bab9587aa0018f872107cd5a Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jul 10 09:36:53 2003 +0000 Don't include "-ldl" if linking statically. commit 7ffbd9c84fc4a6d53f287016200a18d66d633f81 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jul 10 00:22:18 2003 +0000 New patches. commit d9843e7ae2518bc8e69d8acbef9f76647572a71a Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jul 10 00:17:35 2003 +0000 Drop bone collector threads completely, which have been three per session. Use new fusion_ref_watch() instead of creating a bone collector thread for each object pool where each thread polled all references ten times per second: 1) Create a FusionCall in fusion_object_pool_create() with the pool being the call context pointer. 2) Call fusion_ref_watch() in fusion_object_create() after increasing the reference counter to one. Specify the call created with the pool, pass the object id as the call argument. When the call handler is executed (in the pool owner's messaging thread) upon zero reference, it gets its pointer to the pool (call context) and the id of the object (call argument). The handler looks for this id and calls the object destructor if the id has been found and the reference counter is still zero. This has several advantages for single and multi app core: - Removed three threads from master (window, surface and palette pool). - No more polling of each object's reference counter ten times per second. - Objects are destructed nearly immediately (even a direct call in single app). - Less shutdown time (100-200 ms or more waiting for sleeping bone collectors). The same applies to FusionSound with two object pools (buffer and playback). Commented out debug message for key events. commit 3cee608af1af0107e1d47268670558e23ff9f321 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 9 15:43:08 2003 +0000 Added missing free of root data (allocated once per session). Moved shared memory leak dump into shared memory deinitialization to show leaks after the our last free, no leaks left ;) commit bfb471d66ac0d188a2aa14192a2388e0f854d219 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 9 15:14:57 2003 +0000 Do not cancel the fusion read loop thread, but send ourself a message. commit 718f76451604ca6a7d25059093fbde0d77daf856 Author: Sven Neumann <neo@directfb.org> Date: Wed Jul 9 14:59:09 2003 +0000 fixed a typo commit 8ddbc32997b728307b1a4185e1733ec8d8378138 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 8 21:05:06 2003 +0000 Fixed multiple free during destruction of the window stack (grabbed keys). commit b938aceca9b7bcd15bb9610db625e1dd8d37558c Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 8 20:43:53 2003 +0000 Have to use new shared memory macros now. commit 1415a628c01d2cffd7b9674e9bf192123b6144c0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 8 20:37:57 2003 +0000 Added the same debugging facility for shared memory as for local memory. The master shows during shutdown which chunks in the shared memory are still allocated. commit 75d0bbe326639e275101a113b5ed7213b87d174a Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 8 20:28:20 2003 +0000 Fixed typo for single app. commit 356521bf569414139db3d9ed9c6c83256276728e Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 8 20:10:19 2003 +0000 Removed invalid assertion. commit b779d782d321bf4cb922efaa79dc7121a1889638 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 8 17:54:55 2003 +0000 Use ERRORMSG instead of DEBUGMSG before sending SIGTRAP. commit 3d61a1b89664562a0c7bb9b5add5952c58d1e4f5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 8 17:54:38 2003 +0000 Added many assertions, most of them for the fusion file descriptor. commit ec5b7967bb614dc81d31f50ee95c4e2996ba7c7e Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 8 17:14:13 2003 +0000 Removed obsolete prototype. commit fbdbedd895b1c9de0cc56c063daae923b277fe6a Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 8 16:58:50 2003 +0000 Added missing include. commit 82cdf8f03ad44c0203b653d1040b0d3a6edb3219 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 8 16:55:30 2003 +0000 Use dfb_memmove() and dfb_memcpy(). commit 84935169e85b57bc10ae4892ec0d5b4a84e48cb4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 8 16:37:23 2003 +0000 Cleaned up pixel conversion stuff. commit 4f6663a446bb42617e395c7b7c9b8bb58f19890c Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 8 15:37:04 2003 +0000 Show number of bytes allocated for each chunk in final allocation debug output. We don't need PAGE_SIZE. Cleaned up some includes. commit 976469d99c64a05aadd686c64964e064eb09a00f Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 8 15:09:46 2003 +0000 Use dfb_memcpy() everywhere. commit 3d10bd92dd701a04336c88037ed3d4abc2ed8a55 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 8 14:41:29 2003 +0000 Documented clipping header. Use DFBBoolean instead of int. Use DFBEdgeFlags instead of unsigned int. Split up dfb_clip_rectangle() into dfb_clip_edges() and a simpler version still named dfb_clip_rectangle(). commit cd671a1f0793aad1c5cdf432c20a6abe61a03e54 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 8 13:48:26 2003 +0000 Right patches now. commit e2017f228fa55337c9612d1f2a432f692f2daa17 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 7 18:04:25 2003 +0000 FusionCallHandler is always declared here, now. Update linux/fusion.h or get multiple definitions. commit 67ba3f518c778f64f2426b11fe6db8b1afe4b8c1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 7 17:44:07 2003 +0000 Made mutexes used by fake mode (single app) recursive. commit f3002fc75d18091d4b3e7d9cb967c86cc22d761f Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 7 17:25:36 2003 +0000 Further single/multi compatibility. commit d1db40d82a3316591120c378ceaf3a2267641e63 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 7 17:07:26 2003 +0000 Forgot fusion_is_shared() in single app core. commit 80b45479703a84ddf14a98c8f3e4d7d9b6e1774b Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 7 16:37:53 2003 +0000 Made single/multi app core binary compatible for drivers and other modules, in addition to the single/multi app binary compatibility for applications. Running a multi app libdirectfb with single app modules and vice versa is possible, now. commit f4c1d67ef479952a702a0644bfb4824d58f16fb6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 7 14:50:31 2003 +0000 First entry sounds nicer now. commit f776a3b1e3850940c01af54654ad461b5d0d7672 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 7 14:48:16 2003 +0000 Wrote summary for 0.9.19 which looks like a major multi app enhancement. commit e07394060fba47f7a7b0209ffca46633ee94b4be Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 7 13:24:02 2003 +0000 Set DWOP_ALPHACHANNEL automatically upon window creation only for DSPF_ARGB. commit 003be9fba06d14e4644f546a7a74d3dd5b274126 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 7 12:55:58 2003 +0000 Show live updated playback position. commit 3629a4c59c55b1d0d8d1480f1f490aa8f8dd13d8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 4 18:42:14 2003 +0000 Removed obsolete hack. commit 4ea5d1aeb3574cc8db06c4797599b4d71a09fce2 Author: Andreas Hundt <andi@directfb.org> Date: Fri Jul 4 18:34:49 2003 +0000 fix dependencies commit c39602228949fe90269d56927800ce57d247d4e1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 4 18:03:37 2003 +0000 Fixed "Volume" label width, set filename as window title. commit d47a5b8601daa919a92cb4d0c94e427321b09b79 Author: Andreas Hundt <andi@directfb.org> Date: Fri Jul 4 17:53:49 2003 +0000 debianized commit f0a493c6be67c13aa41c126728697658845f798c Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 4 17:38:52 2003 +0000 Remove installation prefix hack. commit c1f22ef8d9a05df8415bff061cc210dc183cd8c9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 4 17:34:38 2003 +0000 Use moduledirname to preserve the install prefix. commit a3ddb36051d2b450dfebeda71c77231cf0997ce3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 4 17:30:22 2003 +0000 Added "moduledirname" to pc file which is "moduledir" without libdir. commit aa812314684e853caeecf6bf11a973c0b57b887d Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 4 17:18:09 2003 +0000 Added example that uses LiTE, if it's found during configure. It plays a file with IFusionSoundPlayback and has sliders for live control over Pitch, Volume, Pan and Start. Put loader into an extra source file with header. commit 7a63c4c39c0fd672a3956f4a378f305c3294855d Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 4 17:09:49 2003 +0000 Fixed seeking via Start(). commit b050333e9a1e8d7af735f55b002be6c1b218de0b Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 4 17:07:06 2003 +0000 Added $(DESTDIR). commit bec28d3924041b915795718091f5c2dc661f3803 Author: Sven Neumann <neo@directfb.org> Date: Fri Jul 4 12:49:23 2003 +0000 respect --disable-sse and skip checks for SSE support commit e3b9da5cb7754076d26ee7d5e1a083557a6bbff5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 4 01:37:41 2003 +0000 Removed stuff that prevented warnings that are no longer enabled. commit 9a6f7d2423a8b9f60e54be25d7f740822813f1fd Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 4 01:19:01 2003 +0000 Completed API documentation ;) commit 1a39407d8f73b8cb1d1c07a2d174143e8e13f015 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jul 3 20:14:20 2003 +0000 We want hardware/software codec support for streaming. commit ff304d2a11494abeb22d4addd8d53cb1a5d8ab9c Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jul 3 20:04:20 2003 +0000 Clear core playback's running flag if playback ends. Fixes bug when using IFusionSoundPlayback::Continue() without Stop(). commit 5e4fc7979c0b4f3aa754e08e8aa70eba573962d2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jul 3 19:32:41 2003 +0000 Enhanced functionality of IFusionSoundPlayback::Continue(). ... The playback will begin at the position where it stopped, either explicitly by Stop() or by reaching the stop position. If the playback has never been started it uses the default start and stop position which means non-looping playback from the beginning to the end. It returns without an error if the playback is running. This can be used to trigger playback without having to check if it's already running, similar to simple playback via IFusionSoundBuffer::Play(), but rejects multiple concurrent playbacks. commit cec082fb634ba2dfec30b12045b2de1468d19f27 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jul 3 19:09:16 2003 +0000 Added IFusionSoundPlayback::GetStatus(). Made all parameter references in documentation bold, methods stay italic. commit c0b575990dd25ab0251fe30011f3742c8e343621 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jul 3 16:10:19 2003 +0000 Made pitch test linear and range from 0.5 to 1.5 only. commit 1a99380390c6452d946a910a5f3f69f42bf447b1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jul 3 02:27:39 2003 +0000 Generate API reference. commit 8ca5e446818a4bd611b20ce088ccd0f237568352 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jul 3 01:28:07 2003 +0000 There two ways of playing a buffer now. The simple playback is still controlled by IFusionSoundBuffer::Play() & Co, but with the limitation to one looping playback at the same time. Advanced playback including live volume, pan and pitch control is available via the new interface IFusionSoundPlayback. It can be retrieved by calling IFusionSoundBuffer::CreatePlayback(). Each IFusionSoundPlayback provides one concurrent playback of the buffer and can be started in looping mode or for a limited sample range. Added advanced playback example testing each available feature using the file specified on the command line. Involved minor refactoring and the introduction of "Playback Objects". Ported IFusionSoundBuffer and IFusionSoundStream to use the playback object. commit ff9b345b9ab983a22abb03aa768fb2040089ab0f Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 2 19:08:54 2003 +0000 Updated CFLAGS setup (-fno-inline in debug mode, -ffast-math, extra warnings). Check for DirectFB-Internal only. Output DFB_CFLAGS from configure. commit 2cdd96d14ee5ffab10bc74847f776282488c4ae1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 2 16:36:13 2003 +0000 Fixed many warnings produced using "-std=gnu99 -pedantic". commit e2bd9aef0b206016ada6701fa9ac6d35bfe2bb45 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 2 15:11:51 2003 +0000 Reverted making a function static that really should be exported. commit a9698c2989d802508a96cb9e0ccc4aea7cbd9300 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 2 07:35:49 2003 +0000 Added "-ffast-math". commit 97d178b9fa211e19bff30f30f654330fc47161ee Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 2 05:00:39 2003 +0000 Avoid discarding qualifiers. commit 7119afe4e809b57f2793abcf72ab9a8ecb887d49 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 2 04:54:37 2003 +0000 Removed option to disable RGB332 support, it has no impact anymore and having such a switch for one format only looks odd. commit c0c3c1b4d4e71a9d4ef597278a64bc4214db3e87 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 2 04:40:24 2003 +0000 Added configure option "--enable-extra-warnings" adding: -W -Wno-sign-compare -Wno-unused-parameter -Wundef -Wcast-qual -Wcast-align -Waggregate-return -Wmissing-declarations -Winline Fixed tons of warnings, most of them were related to qualifiers, some were aggregate returns, some other... commit 61af1ed23be541abfd94c5e826bb1ae3796b1111 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 2 02:13:38 2003 +0000 Don't discard qualifier in cast. commit c7cb0d6c89dd55fd5ac796b331132c07a6d672cc Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 2 00:15:02 2003 +0000 Destroy CoreThread structure after joining. commit c98305f3bc3cf66148d7d3514b95aded71ee0819 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 1 19:48:02 2003 +0000 On <Meta>-X do not only switch the focus but also leave the window under the cursor if it's not the focused one. This is the behaviour of RequestFocus() and causes the focus to return to the window under the cursor on any cursor move or window resize. commit 8b9de1d286d6b83f88c2ab759146b327a31837b4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 1 19:40:07 2003 +0000 Simplified forward declaration macro for interfaces. commit 9be790fcf616ebf18456d8614d0a5f187d68af0c Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 1 15:04:18 2003 +0000 IFusionSoundStream::Wait() now accepts a zero length (of free space) waiting until playback has finished completely. commit e85c552ce04c14313b56952f0887fbb2ae955905 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 1 04:39:44 2003 +0000 Honor opaque region even if opacity is < 0xff or color keying is used (just turn off alpha channel blend for that region but keep other things). commit 8dc875c6cd540f9266dbc11afaa09dad87fe3511 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 1 02:54:10 2003 +0000 Do not probe graphics drivers as a slave, but load the running one. commit 1557811458c0156dcd30696553f37a0380fb3f79 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 1 01:58:38 2003 +0000 IDirectAudio -> IFusionSound commit 434f5c442bfda89371ee7f6ebcedab1a71284c97 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 1 01:52:49 2003 +0000 DA* -> FS* commit f2b865bfb09902f417f695d1730411390c4c4996 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 1 01:44:19 2003 +0000 Avoid heads rollin'... commit 1fe6d2b1eb039780713a3de5b22921f38d23b038 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 1 01:01:35 2003 +0000 Added "tmpfs" option. commit 734802002d1f1b2b7aead9ba78cfed98e2c301e6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 1 00:31:32 2003 +0000 Reject tmpfs mount points with less than 4 MB of free space. commit b442a1603099e08716399f3d894d6eb8c3c04cbf Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 30 23:54:22 2003 +0000 Moved all global variables of the software driver to a new struct called GenefxState. Genefx (pron. 'genie facts') is the new name for the virtual GPU being emulated. For each CardState a GenefxState is allocated the first time the software driver is used with this state. It gets freed when the CardState is destroyed. Removed global software driver mutex, doubles software driver performance when multiple threads are rendering on an SMP machine. The pipeline parts are called GenefxFunc instead GFunc now. These functions get a pointer to a GenefxState now. Nothing else outside is referenced. Surprisingly or not, the software only got faster though much dereferencing of GenefxState pointers is done. I guess removing the mutex and avoiding the global offset table made it faster. FillRectangle(1x1) throughput got increased by ~16% on my P3 800 E. This change was necessary to modularize pixel formats. commit 51f88eca40a0736b544cfd975b0634eb50d54619 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 30 16:44:33 2003 +0000 Fixed patches. commit 19a8cbbc323f2537ef467d4eaecb297e364f80b8 Author: Andreas Hundt <andi@directfb.org> Date: Fri Jun 27 22:25:06 2003 +0000 cleanups for cvs debian packages, removed udeb stuff commit 2b63a3b8a60f138739e8c89ae1a6ab9cd3a56170 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 27 20:40:33 2003 +0000 Handle enter/leave/focus if a window is resized. commit 9de75b23b9cec2df1d593bce05e50fd4f56d9a2b Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 27 19:44:29 2003 +0000 Don't focus the window under the cursor when releasing caps-lock or meta. commit 074712388568fe3b8225de34a1408b2d8e9df62c Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 27 17:19:46 2003 +0000 Added timestamp to window events. commit 7a818974ae41b46a305ae308ede8eaf880832afa Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 27 14:28:49 2003 +0000 #define _GNU_SOURCE commit f37ad7a97be2971bc262b9a8b51fc7ab9a660c6a Author: Sven Neumann <neo@directfb.org> Date: Fri Jun 27 13:46:51 2003 +0000 cleaned up include order commit 274695f487a9a87709093010ec64d8fb2cc43234 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 27 13:11:23 2003 +0000 Added 720x576 50Hz. commit ebfaec2cc64b1528025e1794a8c560774a43e93e Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 27 12:36:55 2003 +0000 Fixed -Werror-implicit-function-declaration[s] <- removed this character commit 71f13cb17d8c82a876f890ad2292dde4d5d96e68 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 27 12:36:45 2003 +0000 Fixed -Werror-implicit-function-declaration[s] <- removed this character commit 065e83f29fae9e0966f0dedd7acf8c5b6d982272 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 27 11:15:56 2003 +0000 Added "-lm". commit 51f316eb6cb6182bd5160ce6a607d7d9a1f27e15 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 26 15:48:15 2003 +0000 Made fusion debug/error messages look like DirectFB's again. commit 19d8455284d2416faf96daec35503f3d81b20e3f Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 26 13:49:43 2003 +0000 Added DFB_BUFFERTOOLARGE. commit 1d0e29c6481811281fa87403b490245b51da17e7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 25 13:30:57 2003 +0000 Fixed static gif provider linking if specified as lowercase. commit 6cac8fb729f8e12610d0ba41b25a36bc0d718ba1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 25 13:10:30 2003 +0000 Fixed static-only builds with -j2 or higher. commit 8e4fb0c0f6d54084fc1aaf6ddf7d5bec04b1f5c4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 24 14:41:12 2003 +0000 Don't cancel the v4l thread, but just indicate it should stop after this frame. This avoids dead locks caused when the thread is canceled while it's calling the frame callback. commit 7d390bf0f73d15fa47a9af4e9cb0af628ee4c374 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 20 10:42:54 2003 +0000 Changed James Su's email address to suzhe@turbolinux.com.cn. commit c7ba3c60b803dfecc3fb51485aeb96400907a101 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 19 19:08:56 2003 +0000 Added "fake arena" for single app builds of DirectFBGL and DirectAudio. commit 47b6160ee4d39249ba09788c915d9c38378f5c5e Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 18 15:08:26 2003 +0000 If fusion_arena_exit() is called without a pointer to a leave method, it refuses to leave the arena and return an error instead. This way a master can wait for slaves to leave before shutting down. commit a70e3123c09e731071b6e82f36a768f1a549690c Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 18 14:05:56 2003 +0000 Added dfb_get_micros(). commit 1efc92da25a2f446b5537bea4b67b9b9458e26e2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 18 10:45:39 2003 +0000 Added IDirectFB::GetInterface() that loads interface modules not starting with "IDirectFB". This is a preliminary way of loading extensions and other Fusion based libraries, e.g. "IDirectAudio" offering another bunch of new interfaces. Removed "object methods" fusion_object_ref(), _unref(), _link(), _unlink(), _attach(), _detach(), _attach_global(), detach_global() and _dispatch(). Added an "object methods" template macro using a special object type and method prefix, e.g. "dfb_surface_ref( CoreSurface *object )" etc. Replaced "object methods" dfb_surface_*, dfb_window_* and dfb_palette_* by FUSION_OBJECT_METHODS(CoreSurface, dfb_surface) etc. Added fusion_list_foreach_safe() acting like fusion_list_foreach() but allowing to remove or free the current element. commit a9f66e8ffc7dc04c0d8e3704ad285eb9d3a93a0c Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 17 15:05:36 2003 +0000 Added window manager key 'E' to focus the window under the mouse cursor. Useful in this situation: - Have an X11 window under the cursor. - Have a DFBTerm on top of the X11 window. - Switch to the DFBTerm via <Meta>-X. - Switch back to the X11 window via <Meta>-E instead of abandoning (lower) the DFBTerm via <Meta>-A or moving the mouse out of and back into the X11 window. commit 3e4bf767e2153dfbb7fdf9fa71aa9b971d936180 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 16 21:33:12 2003 +0000 Don't fill background of primary layer with the background color if a background image is loaded anyways. Nicer startup of new sessions with bg-image. Display session uptime in dfbdump. commit 3de42c762771012049b4b98fa97577dfe8523307 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 16 20:03:38 2003 +0000 Automatically unset SDL_VIDEODRIVER if it's "directfb", which doesn't work if DirectFB is running on SDL itself. commit 7c8e91812940c7b0605deb880a37bff9eae43af5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 16 19:21:05 2003 +0000 Fixed "make clean" if man2html is not present. commit 8400a00da3ee848115888245d0fef78fb19f5cc5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 16 17:50:33 2003 +0000 Updated, too. commit 39dae2efce95e3683a85a7d2948ecd0ffe9e3248 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 16 17:47:05 2003 +0000 Added support for multiple multi application worlds. Added option "session=<num>": Selects the multi application world which is joined or created. Starting with zero, negative values force creation of a new world using the lowest unused session number. This will override the environment variable "DIRECTFB_SESSION". Shared memory initialization looking for "tmpfs" looks for "shmfs", too, now. commit 57523553df09eadb177da0d3b8c696f02b4ae0ab Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 12 20:01:16 2003 +0000 Lock surface manager before software driver lock to avoid dead locks when gAcquire() is entered with the surface manager lock already held, e.g. each dfb_back_to_front_copy(). commit 02c63c94b91dd4a714f74df730c8b3fd6821386b Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 12 18:23:39 2003 +0000 Don't ungrab explicitly grabbed keys of a window when its opacity gets zero. commit 01b41de31054a58f4d5e9ac89ab45deee06e2e96 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 12 15:40:58 2003 +0000 Added note about font sharing and run time single/multi app core selection. commit b07d99b86e5b7b44005fe810014ab221a4aa0eb6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 12 13:44:48 2003 +0000 Don't switch cursor on during close of keyboard device, but during shutdown. This results in better looking VT switching. commit 1934c853ec9cdf2146f1046f38f50a552e708f89 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 11 21:55:29 2003 +0000 Print a warning when a video only buffer is locked by software during suspend. Call dfb_surfacemanager_assure_video() in dfb_surface_hardware_lock() for video only surfaces, too. To have it fail during suspend. commit 4572ea45a16ea42a8535cabaf1d86a74d7bbdfb9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 11 20:53:58 2003 +0000 Got rid off global variables exported by modules (dfb_fbdev, dfb_vt, dfb_sdl). commit 26e65b865faba5e7b3231720ae101b2e6f7013db Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 11 20:03:47 2003 +0000 Updated modification time. commit b729cecd32d1ce2cfebaf6a3bd83b492f96ce751 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 11 20:00:15 2003 +0000 Updated dfbg man page and usage information printing. Changed default background color. commit 98cda8f84369b6170d3c9e9ad5cef957320ea55a Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 11 18:45:15 2003 +0000 Must implement switching support during exclusive access to a layer. commit 5085ccbbd766a0811c407e1b13c1c36ba321f95f Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 11 18:36:52 2003 +0000 Do not restore auto-video buffers while DirectFB is suspended. commit 5f40d6b8ee99ab51ecd41f49e18e08b8181cdd71 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 11 18:07:38 2003 +0000 Bumped version number to 0.9.19. Core systems (currently FBDev and SDL) are no longer builtin modules by default. Generate html versions of the man pages if man2html is present. Fixed bug message during deinitialization if prior initialization failed. commit 7cb87ee73b38ada2e2fce0e71fc3fb78b322cae1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 11 13:46:32 2003 +0000 Minor change. commit 2108f9e516c2bf1b9cf773e43575d180db53212e Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 11 13:44:11 2003 +0000 Major update. commit bbea70f6ad204a6ee92b7edc4e9b7da68737e65a Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 11 12:56:16 2003 +0000 Made size of duffs device configurable (2, 4, 8 or 16), kept default of 8. Implemented last missing one of five key event fixup cases. commit ededb0cbd83435a1bea3d11fd0e5b22a780efcd9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 10 20:10:24 2003 +0000 Pressed modifier keys are now released during switch from DirectFB. VT switching with XDirectFB plus native applications seems to work fine, though XDirectFB may continue writing to the video memory. Implemented key code & symbol lookup from key identifier for devices with a map. commit f3291be5e2c24a4f0975d45cd5730efeea7c64a7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 10 18:19:34 2003 +0000 First working version of vt switching support for single and multi application core. Still unhandled are video only surfaces and other buffers stick to video memory due to locking. Try (with --dfb:vt-switching) - start df_window as the master - switch to the previous console by pressing <Ctrl>-<Alt>-<Fn> - start df_andi - switch back to the DirectFB console - you see df_window again with df_andi running in a window (due to vt switch) Applications are not blocked at any time during "switch off". So in the example above df_andi consumes all of your CPU rendering to the window back buffer (in system memory) with the software driver. I haven't tried XDirectFB, yet. Will do so now. Most probably the permanent locking of the window surfaces causes a problem. commit ca7e36f8e9e1ea581c1b1fe9cf4a563e5e1b06c1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 5 14:51:45 2003 +0000 Applied fix by J.P. Delport <jpdelport@csir.co.za>: Replace hardcoded default size of 768x576 by the values queried earlier from the capture driver. commit 5cef9f3ab4b327f9663cc1de04cbbb5ad5f849dc Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 4 19:09:39 2003 +0000 Before shutdown the master now sends a SIGTERM to all slaves with a timeout of 5 seconds, after that it sends SIGKILL. It looks cool quitting X (my master) while having several DFBTerms still running. The terminals disappear one after the other before shutdown. To use this feature you must update Fusion including the header, otherwise the feature will be silently disabled. This automation will be removed before the next release, forcing an update then. It uses this new function (intermediate solution): FusionResult fusion_kill( int fusion_id, int signal, int timeout_ms ); Sends a signal to one or more fusionees and optionally waits for their processes to terminate. A fusion_id of zero means all fusionees but the calling one. A timeout of zero means infinite waiting while a negative value means no waiting at all. commit d3cf68f75bff721df78a4a295e213f26b2e59158 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 4 16:03:53 2003 +0000 Fixed error checking at the end of fusion_read_loop(). commit 5319d9e9818ac11dc5d108d6aa1d644f0c7f024a Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 4 14:42:47 2003 +0000 Move "--libs" output to the end, fixes undefined references in static build. commit 8f4ebc6f579785a2a5e6212a7ba22a5acee7f3f6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 4 14:10:46 2003 +0000 Use one cpuid macro for both PIC and non-PIC. commit 3fe59c16a2ea2cf08c8cf6264e740f727bcd61d3 Author: Sven Neumann <neo@directfb.org> Date: Tue Jun 3 00:13:01 2003 +0000 Everyone seems to be starting the Description field with an upper-case letter, now we do so as well. commit ae0fb423a41814a5bd28620231c8a59541d065e2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 2 17:13:59 2003 +0000 EXTRA_DIST fixes, updated patches. commit 500f538aea1769a1077ff1126245d4ac9d077c5f Author: Andreas Hundt <andi@directfb.org> Date: Mon Jun 2 17:11:21 2003 +0000 fix compilation on ppc commit b59c635fcdc1242c3dbed85a3cf4362d9fc1fba7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 2 16:58:41 2003 +0000 Updated for 0.9.18 ;) commit e75e23cbe0cca617e1fef732009b62ebefb39e8f Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 2 15:33:52 2003 +0000 Major namespace/static cleanup. commit 7721709cdba1a65b3c25e6feed7b3c7c561372f1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 2 15:08:18 2003 +0000 Fixed namespace for global "pfuncs" and "pdriver_data". commit af378d81577e40e8e058b620f70ab3447f4dee6f Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 2 14:47:32 2003 +0000 Underscores for "fusion_shared". commit e03726f5e8f3c27284e81377297e7881761e1d5c Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 2 14:44:51 2003 +0000 Added underscores to internal global variables fusion_id and fusion_fd. commit 29c98be5225d8b0a57cf0276dc259e9dddffcf18 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 2 14:43:12 2003 +0000 Made remaining items (GFunc arrays) static. commit 7dbfeacf6f00566f07df2e6686ed712f69944012 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 2 14:42:12 2003 +0000 Renamed global variable "mmio_base" to "cyber_mmio", should be fixed anyway. commit 6a3c0285927b91c01af83ac44ac8730b7b583f24 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 2 14:19:36 2003 +0000 Everything static. commit 66884830cf4bc767ee33b6ee66d0602f453efaf4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 2 14:18:57 2003 +0000 MMX routines are included now as a header. No global variables anymore. commit e9604f0f30bc469b3ab72a2c2a0718a414ae2bb7 Author: Andreas Hundt <andi@directfb.org> Date: Mon Jun 2 12:17:35 2003 +0000 - fixed state handling - version = 0.2 commit 640f1ee7cb0086d10c4ce7b6b2187421f9d241a7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 2 11:58:38 2003 +0000 Added missing call to fusion_object_activate(), fixes CAUTION message. commit f3abf93be5cd6e8ae13ca20d1733dc278d368f25 Author: Andreas Hundt <andi@directfb.org> Date: Sat May 31 15:01:58 2003 +0000 - added support for RGB332 - fixed strechblit bug in ARGB1555 mode commit f0b559a64dec03e29ec2ee2c8cfb34bcd3dee983 Author: Andreas Hundt <andi@directfb.org> Date: Sat May 31 14:01:25 2003 +0000 ppc inline assembler is now asm volatile(...) gcc-3.x broke the code when compiling with -O2 or higher. commit 85cf240a6e60a629416c6d6d070f2917295a4c7b Author: Andreas Hundt <andi@directfb.org> Date: Fri May 30 15:45:29 2003 +0000 fix for line drawing (invisible lines in df_dok). commit 12fd28529ff022fb6d0657f21aea6b3901f82255 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 30 15:20:38 2003 +0000 Forgot to add Florian <florian.fernandez2@wanadoo.fr>. commit 5d58fc31df459be26051b41f7ccd6cd27ea08be8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 30 15:14:05 2003 +0000 nVidia Overlay support by Oliver Schwartz <Oliver.Schwartz@gmx.de>: The driver contains a XBox specific register setting which is necessary because of the shared memory architecture on XBox. For plain NVidia graphics adapter you need to change line 618ff of nvidia_overlay.c (uncomment line 618, comment out line 620). This will hopefully be unneccessary once the xbox can be identified by the driver. Readded surface manager's optimizations due to them being fixed with this patch. commit d6c917b5752f896851efe2296a5a8532ab0df08c Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 30 14:56:32 2003 +0000 Updated savage patch, didn't test it, thanks to Florian <florian.fernandez2@wanadoo.fr>. commit 2d26dfffe389e50cede5e29fbf1c95e9c632c58c Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 28 20:06:56 2003 +0000 Added IDirectFB::GetClipboardTimeStamp(). Added optional time stamp return value to SetClipboardData(). commit 8ab6a0474a6bd020c6fcfd54d04d2cc2944bacf7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 26 20:08:31 2003 +0000 Leave the entered window if focus is explicitly requested by another window. commit d72041ba3040d066c19ec4d2dd65b244a307e344 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 21 19:33:57 2003 +0000 Changed while to for loop in RUN_PIPELINE. commit 4b33e99d8c388cc06913a5fff1da0abdc30ec608 Author: holger <holger> Date: Wed May 21 15:10:43 2003 +0000 try to improve primary input device detection commit a019d0250d19a5ccf1ee3866884648c45f1adc5e Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 21 14:48:11 2003 +0000 Force DICAPS_ALPHACHANNEL if PNG is indexed because the palette may contain transparent pixels. FIXME: Add detection if transparent entries exist. commit e0b7ebcd1fdc2d50dc7df264e6cfcb6be4b90055 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 21 12:51:04 2003 +0000 Don't call destructor on incomplete objects but print a caution message. Incomplete objects exist if a process dies between the object creation and its activation, e.g. during dfb_surface_create() or dfb_window_create(). commit b7b25626ad691b6ff2ef9039be1ce377c9e34f2f Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 21 12:25:14 2003 +0000 Removed an assertion in dfb_layer_update_region(), region is allowed to be NULL! Thanks to Johannes Stezenbach <js@convergence.de> for pointing it out. commit 10da285ef8f674a5a107ac2e5de835ce84bfee8b Author: Andreas Hundt <andi@directfb.org> Date: Sun May 18 19:40:12 2003 +0000 replaced hallon at debian dot org's email address with mine, don't want him to receive emails, because of my broken packages. commit e4040df569666650ed786897e8277091c11b390c Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 16 13:07:12 2003 +0000 Use font->height+1 as glyph surface height as debug messages showed that glyph bitmaps are sometimes larger. commit 98364c73d3dfe080ec0a6e9af8cc190cf8de2658 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 16 12:55:33 2003 +0000 Fixed glyph surface height calculation. Ascender + Descender was not enough, had to add 1 for glyphs reaching from ascender to descender. commit 9350f55a5697f553e5c48ae99dee86af8ed6af36 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 13 20:48:27 2003 +0000 Fixed dead lock in layer configuration recovery. Cleanly destroy arena if its initialize method failed. commit 80b7c6956aeda9e465aed107bafb3202da34c6ce Author: leitner <leitner> Date: Tue May 13 20:01:19 2003 +0000 remove gcc 3 prototype kludgery from string.h commit b38239102c53d8b07d72c0984728cda0fd4e949a Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 13 18:01:10 2003 +0000 Reverted dead lock fix. It probably introduced insafetiness and is obsolete anyway. commit f9976c0ef2dcec721e7b22e1bb0f41855499b105 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 12 16:19:25 2003 +0000 Set byte offset alignment to 512 to make ZORG happy. Have to add support for different alignments. commit 8c8e53fac1fd8f42a5ed8a538d606f2758490e09 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 12 14:07:08 2003 +0000 Added note about reducing sched_yield() usage. commit 06b9c7cd4c7fece8a3f14dfb38d973de3af73712 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun May 11 18:08:18 2003 +0000 Reverted ref/unref as it currently causes that windows are not destroyed unless the event buffer is released, too. commit 6b20f84bfa1472dc90874223c9e5e09027f66abb Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun May 11 15:42:41 2003 +0000 Fixed cursor/blank off in master. commit defa4efa4f43781f3185ad2d8cf10091441b2210 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun May 11 13:25:06 2003 +0000 Ref/unref attached windows, avoids fusion error if window is released before event buffer. commit ed3ece1c3651c5a5ebdbb008c1393ae55b4c0964 Author: Ville Syrjala <syrjala@directfb.org> Date: Fri May 9 23:37:34 2003 +0000 Fixed reversed CRTC2 SetFieldParity(). commit c2f08f1be4d32c62deb9baec6ebb7905d8f7fc44 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 9 14:51:34 2003 +0000 New mga memory patch: 1. Don't touch maxdisplayable, but use len instead of len_usable in get_fix. Fixes too high virtual resolution resulting in garbage after scrolling a lot in the console. 2. Disable hw cursor by default, otherwise matroxfb writes the cursor image into DirectFB's memory and the cursor appears (blinking) as soon as DirectFB overwrites it. commit 9b909787a7288929f8dbbe0cfde7ce31a4c11a29 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 9 12:55:44 2003 +0000 Fixed two evil brain bugs in lock/unlock with flags. Removed flag execution from unlock() again, works well now. commit 6b16c1f9d0ab7b4ec563d8cc70c809c3e8dd5f69 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 8 17:47:39 2003 +0000 Fixed dead lock in dfb_back_to_front_copy(). Unlock surface manager earlier. Do engine reset and state invalidation to dfb_gfxcard_unlock() again but keep the cleanup in dfb_gfxcard_lock(). commit c01763408ee7229539b5518a197a6439d008d8ee Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 8 13:33:34 2003 +0000 Fixed bug introduced yesterday. commit bee62177bb620488eee6622f7647cd6bf46423ee Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 7 23:36:52 2003 +0000 Added DFB_KEY_IS_ASCII. Disable cursor and console blank each time a mode is set. Show cursor on escape during auto grab mode (not the ideal solution yet). Also holdup graphics card property on Ctrl-Alt-Break. commit 52041116368be9153374a259677a2da945506fd7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 7 12:16:57 2003 +0000 Added a new option for windows with an alpha channel: DWOP_OPAQUE_REGION. Along with IDirectFBWindow::SetOpaqueRegion(x1, y1, x2, y2): * * Disable alpha channel blending for one region of the window. * * If DWOP_ALPHACHANNEL and DWOP_OPAQUE_REGION are set but not DWOP_COLORKEYING * and the opacity of the window is 255 the window gets rendered * without alpha blending within the specified region. * * This is extremely useful for alpha blended window decorations while * the main content stays opaque and gets rendered faster. * commit cd3d35592f2c9820296472b8f24207c123292260 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 6 17:59:08 2003 +0000 Fixed dead lock in write to stderr ;) Scenario: OpenGL app locked the graphics card to do OpenGL stuff and writes debugging messages to stdout or stderr. The DFBTerm it's running in reads these debug messages and starts to render them waiting for the garphics card lock. But if the io buffer in the kernel is full the write of the OpenGL app blocks while it doesn't allow the DFBTerm to acquire the lock. Solution: Made graphics card lock a Fusion Property, like the lock for display layers (shared/exclusive access). DirectFB graphics operations are handled by the software driver now if an OpenGL context is locked. That's not the best solution yet, but at least the dead lock is dead. Fortunately moving a window over an OpenGL window always uses the hardware because the lock is synchronized via the blocking surface buffer locks. If a window is moved not touching the OpenGL window it gets slow ;( commit 0fd471733b9fb74556f3cea48522555f8fce2259 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 6 17:13:55 2003 +0000 Moved state invalidation and engine reset from dfb_gfxcard_unlock() to dfb_gfxcard_lock() by setting flags for the next lock. This is for the case that the process that locks the hardware dies. Alwass blit from top to bottom if source and destination buffers differ in the software driver. commit a188d3bb0de0f0ebab14400efa971231f1772e40 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat May 3 23:05:03 2003 +0000 Pass the CoreSurface to the Constructor of IDirectFBGL. commit 085f9271d27bc380bff1d0fb68c5b440e3f9eac9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Apr 29 19:37:26 2003 +0000 Added DFB_FORCE_DEBUG which can be defined before including coredefs.h in order to enable debug messages for specific files if overall debug is disabled. Accept zero length as an automatic value for MMIO mapping, too. Print an error if an orphaned arena is being entered. Nicer debug output (show time in seconds with three digits after the comma). Added DFB_BREAK which acts like a failing assertion. Send signal to current process only, not to the group. Cosmetic changes. commit 072182f5a65ed4e5dee38047e038403178adc3c2 Author: Ville Syrjala <syrjala@directfb.org> Date: Tue Apr 29 06:08:13 2003 +0000 Return DFB_UNSUPPORTED if pixelformat isn't supported. commit bef0c9a458eaf4dfd4eaa901bfa6df49fb47d911 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Apr 28 16:51:23 2003 +0000 Added GraphicsDeviceFunc 'EngineReset()': + * Called after driver->InitDevice() and during dfb_gfxcard_unlock( , true ). + * The driver should do the one time initialization of the engine, + * e.g. writing some registers that are supposed to have a fixed value. + * + * This happens after mode switching or after returning from + * OpenGL state (e.g. DRI driver). Moved one time register writes from InitDevice() to new matroxEngineReset(). commit c3736101ccb2d36976fe6d7197b17e4f88bc5834 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Apr 28 16:05:12 2003 +0000 Synchronize the content of the front and back buffer of the window stack before entering fullscreen mode. Otherwise old window stack content is shown if the application does not clear immediately (and maybe even then). Added dfb_gfxcard_sync() to dfb_gfxcard_lock(). commit cd51543873c406bfd42b77d9f17e9bf154eddc82 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Apr 28 15:50:49 2003 +0000 Fixed automatic mouse grabbing for button events. commit cc4541e55f883dafede4f9edbff503b5f37fd3ac Author: Ville Syrjala <syrjala@directfb.org> Date: Sat Apr 26 11:09:09 2003 +0000 Added Matrox TV output cable type selection. commit 93f032f19ee2e7aa3377dcf420d069c1f5d5a98d Author: Ville Syrjala <syrjala@directfb.org> Date: Thu Apr 24 08:56:29 2003 +0000 Reorganized matrox blit code: - Moved TEXORG & co. back to matrox_state.c. DrawString() gained some speed. - Did the same for SRCORG in the name of symmetry :) - Made DSBLIT_DEINTERLACE work with DSCAPS_SEPARATED. - TW8A and BYPASS332 are G400 only so planar TMU blits can only work on G400. Looks like 2D blitter on G400 doesn't care about BYPASS332 so planar 2D blits have a chance of working on older chips too. I doubt anyone has tested this since older cards can't output planar YUV :) commit b6940c1e9dd3a9a3f87bf610a96d07b5272ebf32 Author: Ville Syrjala <syrjala@directfb.org> Date: Thu Apr 24 07:03:07 2003 +0000 Made nsc driver respect --with-gfxdrivers. commit e6d39a7ccb62c0209d9f173640c1eb713f4cd76e Author: Ville Syrjala <syrjala@directfb.org> Date: Wed Apr 23 19:28:16 2003 +0000 Fixed G200 automatic argb-font for multi-app. commit 72b866c1787c4234126f8d8f7af62882143f402d Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Apr 22 13:49:08 2003 +0000 One more item (at the end). commit cb352b1d67e04baeaf962ee728ab6e2656ffb0d3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Apr 22 12:31:33 2003 +0000 Fix segfault in MPEG2 image provider by avoiding alloca. commit d6b18c6a61525087a6c99857c693010c763a4e5e Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Apr 22 11:46:25 2003 +0000 Do not probe graphics drivers if DirectFB is running on non fbdev systems. commit d227ffcec8a4efcb6ffaa1dfd9c1230162b4be9f Author: Andreas Hundt <andi@directfb.org> Date: Tue Apr 22 10:31:16 2003 +0000 extra null pointer check. fixes segfault when probing driver while using SDL. we really shouldnt probe gfxdrivers when using SDL. commit 959d612c0f782679aa6523410e7498a0b92fb764 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Apr 22 08:11:01 2003 +0000 Fixed fix. commit 884b3c9c750ce4a1158ef32905e75e783b48bfc4 Author: Andreas Hundt <andi@directfb.org> Date: Mon Apr 21 14:32:23 2003 +0000 debianized. based on the official 0.9.17 debian packages commit 26bbf1a3805feacb8e24e7ec1b0f07711f2ccb3c Author: Andreas Hundt <andi@directfb.org> Date: Mon Apr 21 14:18:20 2003 +0000 build fixes if top_srcdir != top_builddir commit 51ffc9371712808a8944f93915c094393daf6f1e Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 18 20:22:04 2003 +0000 Add support for running multiple multi app core instances (fusion worlds). commit 3bfba86247a2fdb9d8382223e53e2bba4db5cb89 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 18 18:33:48 2003 +0000 Added "-Werror-implicit-function-declarations". commit 69c441c6d7533c5d727237a1c543fc57bf707922 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 18 17:54:57 2003 +0000 Fixed PNG and sys/io.h check when configuring with CFLAGS="-Werror". commit 7d08237522aea87f61ddb2e531d989fe17451ffb Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 17 12:27:09 2003 +0000 Added -Werror-implicit-function-declarations. commit 66e7b50d3f0ff6fdd3b9b876b596b8880aa660f3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 17 11:45:57 2003 +0000 Cleanup, autoconf 2.52. commit c1cbb1d8d3cda0683441be070df4d4a82facbdab Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 17 11:14:37 2003 +0000 Removed DFB_CFLAGS, instead prepend to CFLAGS directly, much simpler. Prerequire autoconf 2.52. commit c65bf6a6faf6b75558a907d4725873dd16443d6d Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 17 10:38:52 2003 +0000 Set cmap.len before calling the fb driver. commit a50cfa843556208d74b9b2149bcb1cf88594b48b Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 17 10:11:46 2003 +0000 Do dfb_gfxcard_sync() before swapping a buffer back from video to system memory if the hardware wrote to it. commit 96ebec3ad895b2ba897f8f377778adf12e2a4035 Author: Andreas Hundt <andi@directfb.org> Date: Wed Apr 16 22:00:18 2003 +0000 fixed extremely stupid bug, which resulted in black screens with some framebuffer drivers and was presend since 0.9.16. commit 970c491ed70f4ce3b567d1b52703344e30dc82a1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Apr 16 19:54:26 2003 +0000 Reverted CFLAGS change. commit 0ae730d50e2d7303565993d29a09613da5605f61 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Apr 16 18:38:06 2003 +0000 Use AC_PROG_CC. commit 8d84339b5faa4d9ca64eeb275c3d0cbe5e8605e7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Apr 16 16:47:26 2003 +0000 Adopted changes from Sarma Kolluru <Sarma.Kolluru@nsc.com>. commit 1d7928d92f10cac1563092922f8177bef1a419d7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Apr 16 15:32:22 2003 +0000 Be able to configure even if CFLAGS is exported containing "-Werror". Fixed warnings. commit a6251b758f5e95d73697d27483914e1cccc56b45 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Apr 16 14:56:13 2003 +0000 Few more warnings fixed. commit 72642fc6d40042b74f0a222ad16d686b2dde476b Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Apr 16 14:50:09 2003 +0000 Be able to configure even if CFLAGS is exported containing "-Werror". commit fe0a2627fc691265c72ee03bf6a8d6dfe278e905 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Apr 16 14:22:02 2003 +0000 Fixed tons of signed/unsigned warnings produced with -Wall and gcc 3.3. Made all unsigned width, height in the API signed. Fixed many other warnings. DirectFB compiles with gcc-3.3 -Wall -Werror. commit eef0cba18d7b17fdec8409db12b7d3860e2dd567 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Apr 16 11:34:16 2003 +0000 The cursor is no longer enabled during DirectFBCreate(). It gets enabled automatically when the first window is created unless the cursor wasn't enabled/disabled before. Option "no-cursor" now forces the cursor to be disabled forever. No window resource is created. commit 08a0fdb0800f065efb56e3562d383c7e9cf202fe Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Apr 15 08:50:49 2003 +0000 Moved into docs/. commit dcf4dcd30cf7bf6cf9d97b20c37c4c89d768d4b0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Apr 14 13:54:56 2003 +0000 Applied license header patch from Sarma Kolluru <Sarma.Kolluru@nsc.com>. commit 46af1c988458bed7b59f64c10192cf5c28b627ff Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Apr 14 12:05:58 2003 +0000 Made data pointer of memory based data buffer "const". commit 434487d86868de5ea898dfc99172cbb9e5f86d78 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Apr 14 11:49:15 2003 +0000 Let "argb_font" override "no-argb-font" ;) commit 0ce4d7c94d0663cd83b2f8cdb0a021ee41cca3b9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Apr 14 11:44:24 2003 +0000 Made node mutex recursive. commit 31e0780998c503356a694ec9d25f181ab21cef56 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Apr 14 11:15:42 2003 +0000 Made "no-argb-font" work for G200 (where argb-font is set after config loading). Reenabled the optimization in repaint_stack() which flips the layer's surface's buffers if the whole screen is updated (instead of blitting the whole buffer). commit 4d049ae507fd527fb7a3fcff91d32cdccd5cf910 Author: Ville Syrjala <syrjala@directfb.org> Date: Mon Apr 14 07:44:29 2003 +0000 Restore interrupts after soft reset. commit 74c27faace5513e966f4d57b21fd3b2ff0421877 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 13 23:25:29 2003 +0000 Assign the destination surface to the window stack render state each time repaint_stack() is called instead of attaching a listener to the surface. This saves CPU usage in each slave by not getting notifications anymore (for each flip etc.). df_flip (slave using RPC for flipping) went from ~22000 to ~53000 FPS. Running df_flip as the master (no RPC) results in ~144000 FPS. commit 9c25655a4b90fec7b99bcf4c764ebb8fb4521d46 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 13 22:44:04 2003 +0000 Do soft reset on G200 only. It trashes my screen until reboot on G550. commit f033dc226924b89e9835353a2f30175b79dad0f5 Author: Ville Syrjala <syrjala@directfb.org> Date: Sun Apr 13 10:31:58 2003 +0000 Bumped version number to 0.9.18 commit 2fb1a91569915fdee79cf6de5abc4aee31ff04c7 Author: Ville Syrjala <syrjala@directfb.org> Date: Sun Apr 13 10:03:53 2003 +0000 Added DPMS support via IDirectFBDisplayLayer::SetScreenPowerMode(). commit cad61261aee656c4b53554c9efb97560c4b2b240 Author: Andreas Hundt <andi@directfb.org> Date: Sat Apr 12 10:59:24 2003 +0000 use AM_CFLAGS instead of CFLAGS (thanks to obi for the hint) commit c49b0d632651e338bed60f2e51b01da2c651c87d Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 11 16:59:46 2003 +0000 Simplified surface manager chunk loop in dfb_surfacemanager_allocate(). Added restriction that 'video low' surfaces are not allowed to kick out 'video high' surfaces. Create font surfaces as 'video low' instead of 'video high'. commit 2de275bae6954dab81d5c439293e6868b17180c9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 11 16:17:21 2003 +0000 Added workaround for a strange TMU read offset bug on G200. See matroxSetState() for more information about the bug. Added soft reset to driver_init_device() in case the workaround doesn't work (unlikely). commit ca583b051bb496ef4c47cc7697eabcc8ce289d65 Author: Andreas Hundt <andi@directfb.org> Date: Fri Apr 11 00:22:50 2003 +0000 i don't believe that they belong here... commit 00b2c796e7be7bf0601effc08faf61f3d2b137bc Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 10 15:39:55 2003 +0000 National Semiconductors Geode driver by Sarma Kolluru <Sarma.Kolluru@nsc.com>. Great thanks to NSC for their support!!! commit 4212b252b435d12c4f680eda4557f720f81ffd6c Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Apr 8 13:42:07 2003 +0000 Forgot one more printf. commit 15350c5a5bb7114451d50e82cd29f8885f5c2346 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Apr 8 13:36:22 2003 +0000 Create grabbing thread with default priority. commit 37431805c1a3447f2d7c31a27fd45bd4b6c38a92 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Apr 8 13:30:21 2003 +0000 Removed debug printfs. commit eac7475ab3735919b927eb35aa5c88a20478f33d Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Apr 8 13:25:44 2003 +0000 Forgot to add the handler to the switch. commit 099812d3afd8f015300dce765346deba9cf1b3af Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Apr 8 13:12:43 2003 +0000 Fixed two bugs causing video playback to system only window surfaces to fail. commit 3ca8019f2a5697a1d24769e4de5b15b8258c7f55 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Apr 8 12:47:39 2003 +0000 Finished SDL multi app support by adding RPC palette changes. commit 16778d879dbd2db3cc77534be41c4d278f1b8dce Author: Andreas Hundt <andi@directfb.org> Date: Tue Apr 8 09:22:53 2003 +0000 fixed broken --dfb:help output. vt-switch was not mentioned, others had wrong descriptions. commit 32813818554e77785a57bd26d6675a8aa51c7ad1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Apr 7 16:58:34 2003 +0000 Added multi app support to SDL backend. TODO: palette mode. commit 747d963190282ac25c3fce6f7c41e9c996b1bbdf Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Apr 7 13:21:25 2003 +0000 Added Ville to main developers (not doing drivers only). commit 2c4912a9c8d81241d3687d322928eed847d15542 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Apr 7 13:10:47 2003 +0000 Updated 2.4 patches. commit 98ce3e4005d7f7922850e3d862de19c00db7d198 Author: Sven Neumann <neo@directfb.org> Date: Mon Apr 7 12:47:20 2003 +0000 Added username <-> realname/email mapping for Ville. commit c818b97381a192ce7e0f65d59431b1ba734efe85 Author: Ville Syrjala <syrjala@directfb.org> Date: Sun Apr 6 15:55:53 2003 +0000 Fixed matroxfb 32mb patch. commit 2006e7369fee19c6fe20d8a42d3724874234350c Author: Ville Syrjala <syrjala@directfb.org> Date: Sun Apr 6 15:41:22 2003 +0000 Added README describing Matrox TV-out functionality. commit f1a6d6cb34037d124eb994f2f88fbe70a8fa53c8 Author: Ville Syrjala <syrjala@directfb.org> Date: Sun Apr 6 15:14:47 2003 +0000 Made text drawing honor DSDRAW_BLEND flag. commit 959e7692f2824d8d5c8cf560b6cc3670e61327dc Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 6 00:22:49 2003 +0000 Updated patches. commit 83c83594df4941986eedd336cede4d2d43547160 Author: Ville Syrjala <syrjala@directfb.org> Date: Sat Apr 5 21:04:23 2003 +0000 Improved matroxfb vsync patch. - Move wait queues to the matrox_fb_info struct. Should allow more than one card to work at the same time. - Enable irq only when /dev/fbX is opened. I think this should eliminate XFree86 hanging on startup. - Use vline interrupt on the first head simply because it's easier to turn on/off than the vsync interrupt. It's programmed to trigger on vblank start. - Check card type before trying to use the c2vline interrupt. commit 4f5029495285e157b7ec54681167843b76f2c1a9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Apr 5 02:52:25 2003 +0000 Small single app fix. commit dc54be529bce28d67091dc4c095452e12b3b19dc Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Apr 5 02:48:27 2003 +0000 Use new FusionCall for RPC based fbdev ioctl. commit c50b8ee81e70b769c04ddb97a0666ccaf2de809d Author: Ville Syrjala <syrjala@directfb.org> Date: Thu Apr 3 18:35:00 2003 +0000 Splitted DSFLIP_WAITFORSYNC into DSFLIP_WAIT and DSFLIP_ONSYNC. commit 126ffdc5f43602c167119dbb5c575f72388e996d Author: Ville Syrjala <syrjala@directfb.org> Date: Wed Apr 2 23:17:40 2003 +0000 Fixed DSCAPS_SEPARATED with planar formats. commit ad30d652bc2d892e80b0b32c97aab2ec31595ff0 Author: Ville Syrjala <syrjala@directfb.org> Date: Wed Apr 2 17:56:47 2003 +0000 Fixed a typo. commit a15f400beedf167ff5e873999aa577366efd3c94 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Apr 1 19:09:08 2003 +0000 Fixed cursor reference counting (inc. global, dec. local after creating), now slaves enable a display layer correctly without trashing it via exit. Repaint window stack if the layer configuration is set in administrative mode. commit 14557ea4623d236812f7e6c6d31654f6b6c9a2a9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 27 14:19:50 2003 +0000 Allow IDirectFBSurface::SetFont() while surface is locked. commit 622103f2e74d57c41a44b93d1d16ad3a014b9209 Author: Andreas Hundt <andi@directfb.org> Date: Thu Mar 27 00:08:37 2003 +0000 applied patch by Antonino Daplas <adaplas at users.sourceforge.net> which improves error handling. commit e83068fef8841cfdcc5fbaccead49d4e6ffb5432 Author: Andreas Hundt <andi@directfb.org> Date: Wed Mar 26 17:22:29 2003 +0000 replaced dfb_system_wait_vsync() with dfb_layer_wait_vsync() commit 448408368f76bbbf77a483504ccff25edf4ee860 Author: Andreas Hundt <andi@directfb.org> Date: Wed Mar 26 17:10:52 2003 +0000 dont build i810 driver if <sys/io.h> is not present. commit b62c3e11cbc8a48c62ab72e7a53a4e494f2ffcfb Author: Andreas Hundt <andi@directfb.org> Date: Wed Mar 26 16:51:13 2003 +0000 - added Intel i810 driver from Tony Daplas < adaplas at users.sourceforge.net > please see i810fb.sf.net for more information commit 587065b4a3dd84de7e790e4f35dc852a91b5d1a0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Mar 24 13:39:09 2003 +0000 Fixed panning, division of byte offset by pitch was missing (dfb_fbdev_pan() takes y offset, not byte offset). commit 7b532173a68ca94e83a8230491ff3509c5d43d6d Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Mar 24 10:12:23 2003 +0000 Palette size fix from Ville Syrjala <syrjala@sci.fi>. commit ae8270db46a35f8cd4393d057f8f83a1fef35a07 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Mar 24 01:27:11 2003 +0000 Applied patch from Ville Syrjala <syrjala@sci.fi> adding triple buffering support, many many great thanks ;) commit 4a71db2190387263831c985613a7dca2730f8b8f Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 20 16:35:24 2003 +0000 Applied patch from Ville Syrjala <syrjala@sci.fi> adding DSPF_ALUT44. This is a new pixel format having 4 bits of alpha and 4 bits being an index to a color lookup table. Great thanks! commit 246a265d6c16203e63e10ceec976c3c67c6d8c94 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 19 16:42:20 2003 +0000 Sop_lut8_to_Dacc() speedup, thanks to Ville Syrjala <syrjala@sci.fi>. commit e67cb29538dd8302d159080f4c27edfee4265438 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 19 14:07:10 2003 +0000 Sop_lut8_Kto_Dacc() and Sop_lut8_SKto_Dacc() implemented by Ville Syrjala <syrjala@sci.fi>, thanks! commit 7fd85d37f1fe650890d3d2aeaa44643d523284aa Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Mar 19 14:05:08 2003 +0000 Naming fix, thanks to Ville. commit 8ee3c737dc1114526040b36f694d891363bb934c Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 14 16:16:35 2003 +0000 Fixed tiled background image bug (clip wasn't set and resulted in invisible parts of overlapping transparent windows). commit 19ffe9a53ff0ae4976cb4970b655d7e60cbf57f5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 14 15:27:31 2003 +0000 The window needs to be refed in GetWindow() because IDirectFBWindow_Construct doesn't do that. commit 9b270f6b6e28396744a22bb880498359b14ee32b Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 14 12:49:33 2003 +0000 Disable layer normally even during emergency shutdown, because the global reaction of the surface has to be detached. commit 9185037f40f5ade94dec6c6b2a8edc5d94cf6d7d Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 11 15:37:31 2003 +0000 Added James Su <suzhe@gnuchina.org>. commit 643babead9ee1ffa25a86a418696f628f009d130 Author: Sven Neumann <neo@directfb.org> Date: Tue Mar 11 13:30:34 2003 +0000 Applied a modified version of a patch from James Su <suzhe@gnuchina.org> that fixes a potential problem with PS2 mouse initialization. commit 10d488cac9448f5bb185446d787f6c194608782c Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Mar 10 12:39:09 2003 +0000 Reverted an optimization, just a guess. commit 78eae1b6f2f8db1e0d3500ec2ff2496794f78687 Author: Sven Neumann <neo@directfb.org> Date: Fri Mar 7 12:00:28 2003 +0000 fixed a typo commit 4808e7b6b3f95eb211981f4c3320fbc752e1dbb1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 6 13:59:44 2003 +0000 Avoid writing to the original message data. commit 9d6a4b70c0cebc40fe60e3e11fad78e2f8b4c11d Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 4 21:04:57 2003 +0000 Added DFBInputEventFlag: . DIEF_GLOBAL = 0x200 /* Only for event buffers creates by . IDirectFB::CreateInputEventBuffer() . with global events enabled. . Indicates that the event would have been . filtered if the buffer hadn't been . global. */ commit 89458a1bed734755336648f97a8a73daeeebf656 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 4 16:11:27 2003 +0000 Non global input event buffers now also get events if any window of the application is focused. commit 6917028685c2dbc36525dacc02b614db8fd2b2d0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 4 11:39:33 2003 +0000 Added extra checks for *argc and *argv being non NULL. Thanks to Sebastian Ley <sebastian.ley@mmweg.rwth-aachen.de> for pointing out this bug. commit 00393231230df60d437aa865d90ca3c87d9de617 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 4 10:24:19 2003 +0000 Install directfb_version.h, too. commit 10305776ad6bbf270dda96f4a87d14bb9fed5679 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 28 20:18:55 2003 +0000 Updates for 0.9.17 release. vmwarefb patch for older kernels. commit 4ebbdeb74a1fd0b7c237559eea617cef2d51664d Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 28 20:11:29 2003 +0000 Fixed blitting within one buffer by using late software fallback. commit fab5042adc68b8e8188ae04b5a368b42d4a65795 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 28 19:59:24 2003 +0000 New patches. commit 708f92fdc975c27c568fec6e0f04336ec5570a50 Author: Andreas Hundt <andi@directfb.org> Date: Thu Feb 27 00:16:41 2003 +0000 various build fixes for non linux systems - disable ppc asm on darwin and openbsd - do not build dfbsummon and fusion_bench on non linux systems - add -I/sw/include to CPPFLAGS on darwin (for fink) - add -L/sw/lib to LDFLAGS on darwin (for fink) commit 956ba30e4c3d447d778c37a558987019f8e356f1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 26 15:09:46 2003 +0000 Eliminated all strcpy, strcat and sprintf usage. commit 0344e781f46db2d4684c9fd82ea30bce94740ee5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 25 19:02:15 2003 +0000 Reject YUV modes, thanks to Jiri Svoboda for pointing out this bug. commit a4dd565b6379b4a6a6046ac383f703b4ea10cadb Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 21 22:26:05 2003 +0000 Readded DSPF_RGB15 (= DSPF_ARGB1555). commit 9c364f5a1d829af73de2a294e6a25cd44bd6205d Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 20 21:30:37 2003 +0000 Print GetSurface() warning only if DLSCL_SHARED is set. Beautified the output of dfbdump. Install dfbdump. commit f5adaad0d29d82f29f82142d9c8e666be220ac1a Author: Andreas Hundt <andi@directfb.org> Date: Wed Feb 19 21:53:06 2003 +0000 fix for neomagic check commit f76f6764df7c8b7b1901c02373dd41183e9206a2 Author: Andreas Hundt <andi@directfb.org> Date: Wed Feb 19 21:43:23 2003 +0000 --with-gfxdrivers=none builds no gfxdrivers commit ae3d89678b39e31f6349ba7611a49db970e46e94 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 19 21:34:13 2003 +0000 Beautified output. commit 88a0f94dec5a6a3a6181404bfafd0039a941ee9c Author: Andreas Hundt <andi@directfb.org> Date: Wed Feb 19 21:15:59 2003 +0000 it is finally possible to specify which gfxdrivers should be built. ./configure --with-gfxdrivers=<list> list is comma separated, all compiles all drivers (default) commit c14184e30fb10267c2253cb9873ec2f773b2da2b Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 18 21:57:15 2003 +0000 Commented out two assertions. commit 3decb592a4da32861d973c565fa02b7a6882b306 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 18 20:49:03 2003 +0000 Added tons of assertions. commit 2709a9b4c312eb763f27912f3a2d6def112446fc Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 18 17:38:21 2003 +0000 Added cooperative level restrictions to many functions. In short: cursor and background changes only in ADMINISTRATIVE, configuration and appearance in ADMINISTRATIVE and EXCLUSIVE. SetFieldParity() is allowed with EXCLUSIVE only. GetSurface() will be restricted to EXCLUSIVE soon. commit 67a157227064b428cf987ddd98ae6cdeba0b3f95 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 16 13:29:18 2003 +0000 Fixed destination color keying for blended drawing. commit 0d1e5c4a8f6fa04bcc506e25cd6613721b42888f Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 14 12:43:38 2003 +0000 Sorted functions a bit. commit a1a217246b4b7b4c128bbcf8d14fb02a6b048de6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 13 21:14:37 2003 +0000 Muted some often appearing debug messages. commit 10ad1e07b0d47dd5c9ad2719a46f09fb5b61fddc Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 13 18:20:43 2003 +0000 Various bug fixes. commit 55d71aca197ed227be33962c1063e0a7cee6c4e8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 13 17:35:47 2003 +0000 Small fix from Ville. commit 50ed9d7601c1311bde2c82a28d4e0a6d2ec944d2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 13 15:56:00 2003 +0000 Even field -> top field. Odd field -> bottom field. commit a74482f2d7c7b5221a6908425e4eaf2b44aeeb93 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 13 15:47:56 2003 +0000 Another patch from Ville Syrjala <syrjala@sci.fi>: I just stumbled on DLOP_OPACITY and DLOP_ALPHACHANNEL and thought that the CRTC2 sub-picture layer should honor these. So here's a patch to do just that. commit 7268ed86f1f46b1fe3fa240e4c1e2027a18844ba Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 13 15:32:19 2003 +0000 Applied patch from Ville Syrjala <syrjala@sci.fi>: I'm sure everyone remembers Brian's CRTC2 troubles. Well I think we managed to fix it off list some time ago. The problem was caused by displaying the fields in the wrong order. Here's a patch with the solution I came up with. It adds a new method IDirectFBDisplayLayer::SetFieldParity() to select which field is displayed first after a Flip(). This behaviour isn't always the best choice so I added {DLCAPS,DLOP}_FIELD_PARITY flags. commit 6b49e441ee9cf85dce9531fb3f6a4c8cf0189755 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 13 15:23:56 2003 +0000 Added FIXME note. commit 2e6183326b48db5c826ccb86b855473c71ba55ce Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 12 19:44:21 2003 +0000 Added 'bool' return values to all acceleration functions. Implemented 'late software fallback' for FillRectangle, DrawRectangle, Blit and StretchBlit. Graphics drivers are now able to return false in these functions to trigger a software fallback. Useful if blitting direction cannot be configured. commit b5a7d158bbe102a2b58e6f12390119b14029d12d Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 12 15:53:20 2003 +0000 Moved core part handling code from core.c to core_parts.c adding four new functions: dfb_core_part_(initialize|join|shutdown|leave). Added some debug messages. commit 59e7e902ed86344a7b54e2f60b4101bb4581baa6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 12 14:50:11 2003 +0000 Added 'core parts' being the gladiators entering the arena. Each core part has an init, join, shutdown, leave, suspend, resume and information about the local and shared data size. Core parts are system, input, gfxcard, layers and colorhash. Moved colorhash core part to core directory. Moved clipboard code from core.c into extra core part. commit fa93548698fc65b4cbe82bc7e9cfc7bee23a8127 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 9 22:13:13 2003 +0000 Made memcpy benchmark more 'blitter like'. commit fc0e42031e3d86928332e401b0a285deda087f45 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 5 13:41:45 2003 +0000 Added Scott Brumbaugh <scottb.lists@verizon.net> to the ThanksTo section. commit 11c2209547ccfec0906df72e03f799373ce59588 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 4 20:11:55 2003 +0000 Commented out recently added cleanup of local reactor nodes (crashes sometimes and produces a bug message). commit 661f8b7c54ea038b73ce9d0d32ecf1ee9798ea3d Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 4 17:15:01 2003 +0000 Lock the node list in _reactor_free_all(). commit e2882d384c598154b95e79ff358b9388f9512d5d Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Feb 3 19:23:53 2003 +0000 More cleanups and comments. commit 361190234249fa3fff3c52d0c359e23b06860539 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Feb 3 18:19:45 2003 +0000 Completely commented. commit b8f1133c58efcc3736ef65720e30801627f49a4e Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Feb 3 12:36:06 2003 +0000 Code cleanup, minor optimization in dfb_gfxcard_state_check(). commit bc50cdd7e2b2bdd8dee077a1949624b85586f6f5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 31 18:43:36 2003 +0000 Use dfb_layer_wait_vsync() now. commit fef80277b99d283c5bc5753ce1042ff2e84952f6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 31 18:40:29 2003 +0000 Removed dfb_system_wait_vsync(). IDirectFB::WaitForSync() uses the primary layer's WaitVSync(). The FBDev primary layer's WaitVSync() is now implemented. commit dbe698a70c7e8c03adea1f22dbdead96beca39e2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 30 20:42:41 2003 +0000 Fixed input device ID unification. Added recursive helper function make_id(prefered). commit 57aa4bf6bb945d3e6becb47907498b9d20b63cd5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 29 18:31:12 2003 +0000 divine_send_ansi() changed to divine_send_vt102() with broken function keys of minicom. Thanks to Carsten Wentzlow <knuckles@directfb.org>. commit 68ab1cebbce5cca6d31a2d27dcfd50ff96cce2de Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 29 18:11:11 2003 +0000 Input devices still get same IDs sometimes. commit 560d631bc151b8f89dea26e54e23a73c1fcac101 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 29 15:41:45 2003 +0000 Added "FBDev" and "SDL" to primary layer names. commit f508d8ad1247891d8c800999f48c56f011d4e9dd Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 29 15:39:41 2003 +0000 Added enumeration of display layers. commit 180036bc85a9d62b7550b07a3facb8324632e589 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 29 14:29:31 2003 +0000 Beautified code. commit 50355ff5c8f70ff7381c3d9c3aeb66cdd9a8fb51 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 29 14:20:21 2003 +0000 Added workaround which avoids 100% CPU usage if poll() doesn't work. commit 13c416825cb016f4b11c1da960fedbff063b7687 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 29 14:12:30 2003 +0000 Adapt to input driver API change. commit b0f9841a3a6127a0c12c19c9db7b006ad9e03c46 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 29 13:23:58 2003 +0000 Moved input device name and vendor to DFBInputDeviceDescription. Added new tool "dfbinfo" which currently enumerates input devices, but needs some beautified output. commit 24d8c48c898a5271d6fc942029c0a7ab1b942185 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 29 13:19:13 2003 +0000 Added special thanks for Ville. commit 8a6c41b2d87f3b41adf3ad787375817d73494477 Author: Sven Neumann <neo@directfb.org> Date: Wed Jan 29 12:33:53 2003 +0000 Added input driver for Microtouch serial touchscreens. Since this driver has to be configured by adjusting a couple of defines in the source code, it is not build by default. Enable it using the --enable-mutouch configure option. commit 40707724289379a83e9faed7ed3155d7c6fd1d71 Author: Sven Neumann <neo@directfb.org> Date: Mon Jan 27 14:52:53 2003 +0000 Bumped version number to 0.2.0. commit 1159954af36befd2423fce2e1c16598e058599d9 Author: Sven Neumann <neo@directfb.org> Date: Mon Jan 27 14:41:26 2003 +0000 Added divine_send_ansi() by Carsten Wentzlow. commit 3138e94cd4751250eaa98a25d489567f1796d9ce Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 24 19:19:18 2003 +0000 Fix for planar formats by Ville Syrjala <syrjala@sci.fi>. commit 2b07efc4a20db64448dd30604720c861e2725f32 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 23 21:12:53 2003 +0000 Reverted change to use FusionLink. commit 2c2b947299c5e93bebedf9a810274c57123946fd Author: Sven Neumann <neo@directfb.org> Date: Thu Jan 23 20:11:05 2003 +0000 Return DFB_OK from load_default_cursor() if the file was missing and created an empty cursor. commit 618f381302c88f041ffc2a5e0cebf2a32b280402 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 23 17:00:16 2003 +0000 Fixed segfaulkt during shutdown. commit 45e8fac66223c3d2cf4980fa7badb15546c12e99 Author: Sven Neumann <neo@directfb.org> Date: Thu Jan 23 15:59:08 2003 +0000 Compile the default font into the default font provider. Don't install font.data any longer. commit 17b9fd1455c76ee736b1c8527bcbc8e30e595dc4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 23 15:37:21 2003 +0000 Hold the surface manager lock during the whole dfb_back_to_front_copy() work. Use FusionLink for local list of input devices. commit 646e76b9e55579caa5df8c4d81820f07e1c3b40f Author: Sven Neumann <neo@directfb.org> Date: Thu Jan 23 15:11:32 2003 +0000 Initialize the cursor window as empty in case the cursor file can not be opened or is smaller than the expected size. commit 6615dbbed032201d181f3bae79cc774dff0ab441 Author: Sven Neumann <neo@directfb.org> Date: Tue Jan 21 20:04:16 2003 +0000 Check that fb_dev is not NULL before trying to release it in system_leave(). commit cc8e5c008dafbf1e5668acdfba29c3e31d70e0ae Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 21 15:25:33 2003 +0000 Started to write an overview of the initialization process. commit 09a908f03ef5d9ec9c3deedb16349bce9ef7d279 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 21 15:17:19 2003 +0000 Fix "could not adjust heap offset message" if the primary layer surface consumes the whole video memory (thanks to Ville Syrjala). commit d8d74b686b0c3df3b192fe6250fbeba8e86327fa Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 21 15:15:35 2003 +0000 Don't segfault in dfb_core_get_clip() if no clip is set. commit 566eee41028bdce57dbdc86a666bbc8db7a335ee Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 20 19:48:20 2003 +0000 Minor code cleanup. commit 8cf9f02a926b9b9a5dd64de386379502511bf59c Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 20 19:05:17 2003 +0000 Open framebuffer device before initializing the vt. Don't open extra framebuffer device in vt code. commit 97f7ce3b86fd8b5984ac06afd8891d190362e103 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 20 17:42:43 2003 +0000 Removed obsolete usage of shcalloc. commit 32b074d9be0a02cbfb6c3f84113a32f8583389fa Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 20 17:13:54 2003 +0000 Use dfb_gfxcard_lock() in dfb_gfxcard_shutdown(). Removed workaround that was needed because of lacking support for recursive locks. commit 2f7528b1a3781c307efa885ef8fec0f009afdd9a Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 16 15:22:17 2003 +0000 Added minimalistic clipboard functionality via IDirectFB::Set/GetClipboardData() including mime type. This is an intermediate solution that will be replaced. commit 545b308ffdf4532042740c1e87becd2817c65541 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 15 13:09:05 2003 +0000 Added PPC sources to EXTRA_DIST. commit 6fb3ca80481b63237871ac4a534335e8623f524f Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 15 12:58:29 2003 +0000 Added 1280x1024 at 75 Hz. commit 4fc792524165b88b290824e02810b1ca9c43805c Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 14 16:33:41 2003 +0000 Added patch. commit 86e8644dd58aed35ab3946718c9c4fe6404242fd Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 14 16:31:26 2003 +0000 Updated ChangeLog and NEWS for release. Added comment to arena code. commit bb37a7488ecea81235b56e27295601b8b92db24b Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 14 15:16:36 2003 +0000 Updated patch. commit 45a8c42ce04fceca9d593919572fad8813f8c5bd Author: Sven Neumann <neo@directfb.org> Date: Mon Jan 13 19:29:05 2003 +0000 set data to NULL in case of error to avoid a possible crash commit 5c5d0ec9a7dba121bebf25ee029229dcd389ad3d Author: Sven Neumann <neo@directfb.org> Date: Mon Jan 13 13:18:42 2003 +0000 Updated the spec file (added dfbg and its man-page). commit f4b5e4954f4d3ad6b5283636c5e597a1207173ad Author: Sven Neumann <neo@directfb.org> Date: Mon Jan 13 12:57:20 2003 +0000 Removed the avifile and flash video providers. They are now part of the DirectFB-extra package. commit 961aef164df4770bf86f731bc09d10bde775c52c Author: Sven Neumann <neo@directfb.org> Date: Fri Jan 10 15:20:04 2003 +0000 Reverted my latest change since they need autoconf > 2.13. Will instead move this code to DirectFB-extra and do it correctly there. commit c3294591a682cdb522a0c953876287a3840946b2 Author: Sven Neumann <neo@directfb.org> Date: Thu Jan 9 16:46:24 2003 +0000 Fixed a typo and separated the comon from the exotic pixel formats. commit 0b568d8423ebd372f131a44b1106b835f42d6135 Author: Sven Neumann <neo@directfb.org> Date: Wed Jan 8 15:47:01 2003 +0000 AC_LANG_PUSH C++ before checking for libflash, AC_LANG_POP afterwards. commit 216339a89a5584fa861dbe43316ebfe7773c569a Author: Andreas Hundt <andi@directfb.org> Date: Sat Jan 4 21:25:20 2003 +0000 - moved ppcasm_memcpy and ppcasm_memcpy_cachable into two seperate files - ppcasm_memcpy_cachable is only built on linux TODO: do not build ppcasm_memcpy_cachabe by defaut since this will create machine specific code. commit 9e3ec006c8ddd38e6f29751d07f8f66251101e8d Author: Andreas Hundt <andi@directfb.org> Date: Sat Jan 4 20:46:41 2003 +0000 removed hardcoded CACHELINE_BYTES, uses values from <asm/cache.h> instead commit 5eb1521913af7efd34ea04a24b72b689c8865895 Author: Andreas Hundt <andi@directfb.org> Date: Sat Jan 4 20:18:40 2003 +0000 - dont call AC_PROG_CC twice commit a993647941ae448a596a4b5108365d060773c901 Author: Andreas Hundt <andi@directfb.org> Date: Sat Jan 4 20:10:37 2003 +0000 - fix build problems with automake 1.5 when compiling assembler source - removed AM_PROG_CC_STDC macro which is obsolete, use AC_PROG_CC instead "This macro is a relic from the time Autoconf didn't offer such a feature. AM_PROG_CC_STDC's logic has now been merged into Autoconf's AC_PROG_CC macro, therefore you should use the latter instead. Chances are you are already using AC_PROG_CC, so you can simply remove the AM_PROG_CC_STDC call and turn all occurrences of $am_cv_prog_cc_stdc into $ac_cv_prog_cc_stdc. AM_PROG_CC_STDC will be marked as obsolete (in the Autoconf sense) in Automake 1.8." commit ed0bbe9cb8acc904f5b4e19cea58000f0997dc64 Author: Andreas Hundt <andi@directfb.org> Date: Sat Jan 4 19:58:56 2003 +0000 - bugfix for ARGB primary. someone did copy&paste from RGB16 values... commit 4d5bd2f637fd765bb1e6bb9ad412f62ac4aa0a3b Author: Andreas Hundt <andi@directfb.org> Date: Sun Dec 29 17:50:03 2002 +0000 fixed fix commit 5ce552989be8de0c6af67fce53a81574c4073bbd Author: Andreas Hundt <andi@directfb.org> Date: Sun Dec 29 17:39:23 2002 +0000 fix handling of palette alpha values commit dd2c8f1708323db1c653083ef7f2b5dd9205881a Author: Andreas Hundt <andi@directfb.org> Date: Sat Dec 28 19:36:54 2002 +0000 bugfix for ARGB1555 pixelformat commit f05157464edb933b825d25eff19e4df03f09e5d3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 27 21:25:35 2002 +0000 Removed some debug code. commit b4f2a5926f9260dcda3cf747d070579f7a3dba11 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 27 20:58:42 2002 +0000 Fixed 15bit color keyed blitting. commit afd3ce2d8f5b43400c8d972fe4b4c2bf2b1ceb14 Author: Andreas Hundt <andi@directfb.org> Date: Fri Dec 27 19:41:19 2002 +0000 integrated optimized ppc memcopy from xine this is evil and breaks at least compilation under OSX. should be disabled by default. commit 08828669d5a73fac34e427b9441e82ea25bc512a Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 27 19:39:12 2002 +0000 Added enums for indices of global reactions, removes some FIXMEs. commit fcf9fd7ba39fe2edfcc3554b870ac08b26e8d84f Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 27 17:50:08 2002 +0000 Changed DSPF_RGB15 to DSPF_ARGB1555, untested. commit 212f2740b401634bcd2978b9b66a615d4d0de038 Author: Andreas Hundt <andi@directfb.org> Date: Fri Dec 27 17:42:51 2002 +0000 small compile fix (follow changes to layer naming) commit 74c66befbe9cd47f1f5d467d1e15b267828f695d Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 27 05:26:36 2002 +0000 SetVideoMode() resizes the window of windowed fullscreen applications, untested. commit 792c4b56cd934f6110595c6a7078389ec1a603cb Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 27 03:39:28 2002 +0000 Made summarize for upcoming 0.9.16 release. commit 83468fe052e2a6947507fe240a1a5a2fd10434bd Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 19 20:53:37 2002 +0000 Ville Syrjala moved the layer name into the layer description and removed IDirectFBDisplayLayer::GetName(). Thanks! commit 52ec3c16c3c9b704bca40ece400fcca16773aa67 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 19 19:07:02 2002 +0000 Applied patch from Ville Syrjala <syrjala@sci.fi> that adds TV-Out and sub picture layer support for G450 and possibly G550, too. Thanks! Fixed two bugs related to (de)initialization of additional display layers by slave applications. commit f2fd1fba857fed54e46d87fcc277f02c8e78b83a Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 18 21:34:52 2002 +0000 Focus the window under the cursor after abandoning a window with Meta-A. commit 519361d3a02c496cc1a5098bbd59f9f33cbf85eb Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 18 17:53:44 2002 +0000 Don't send SIGTRAP if shared memory limit would be exceeded, return NULL. commit 8ae7ee99015471795ab02fa547937bd674e06566 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 17 20:55:14 2002 +0000 Added FusionObjectState enum and fusion_object_activate(). commit 5ca7111d2859cf5fcc01c084f8960c341bc569d3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 17 19:53:45 2002 +0000 Added dfb_gfxcard_lock() and dfb_gfxcard_unlock(bool invalidate_state). It's used by dfb_fbdev_set_mode() to workaround accelerator register writes by the framebuffer driver during FBIOPUT_VSCREENINFO. commit 65179acc9e172f98fc6edb935af9dd165ae12255 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 17 19:51:27 2002 +0000 Force SDL disabled if multi application core is enabled. commit be52dde2c9f0c058dab8b24fc9f83bd0e3bf81de Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Dec 16 14:13:56 2002 +0000 Removed unnecessary newline. commit bc67490469b502ed82a83b9524417de9eb8bf078 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Dec 16 12:24:59 2002 +0000 Forgot to update this one, too. commit 075ab0173bb882d7fc708629e9867af321c42f8d Author: Sven Neumann <neo@directfb.org> Date: Sun Dec 15 21:54:58 2002 +0000 Only check for a working C++ compiler if the avifile provider is going to be built. commit 33d235cda9926c3e90ca83890514267659467f02 Author: Andreas Hundt <andi@directfb.org> Date: Sun Dec 15 13:59:45 2002 +0000 if PAGE_SIZE and _SC_PAGE_SIZE (for sysconf()) are undefined, theni still guess page size. commit 3ba3594eebc2d61745ded78f73d452f8bef60df5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 13 18:36:17 2002 +0000 Added "block-all-signals". commit a5b1e845db316181528c71d391c16ca712d07be6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 13 17:57:44 2002 +0000 Don't guess page size if PAGE_SIZE is not defined, use POSIX sysconf(3). commit 76328b6d9a06540372401ac3bd03fbedfd608c5c Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 13 17:24:23 2002 +0000 In multi application core Ctrl-Alt-Break sends a SIGKILL to the process that has exclusive access to the primary layer. No need to login from network or kill everything if a fullscreen app hangs. commit fa39fbf10307ae5acef119a472abe5aecbf63b3a Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 13 16:48:07 2002 +0000 Added threaded mutex and spinlock benchmark. commit be35d3eda8dd3b320ad4b343d506e54a909f5850 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 12 19:01:38 2002 +0000 Use first system found as a fallback if the requested system hasn't been found. commit 45d92cabb9b60f6425bc2cb2bd4513cadb30f1dd Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 12 18:43:12 2002 +0000 Added DFB_COLOR_EQUAL macro. commit 621dd8f003f2f67b137ebb71d161a0112c7e29ad Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 12 16:41:14 2002 +0000 Include strings.h. commit b607f7b663bdeba2d9793fdce3fbdd5d90592390 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 11 16:50:13 2002 +0000 Added missing <linux/fb.h> includes for accelerator ids. Removed ifdefs because configure already checks for the definition. commit eeb2800b84589f8ff95a397f248b2bdddfdda3aa Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 11 16:45:12 2002 +0000 Added "\n" to debug message. commit 07968a837c74faad3f326178d4ab7027d06685b1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 10 19:03:33 2002 +0000 Added new cshortcut. commit 704ae6c4bce276900277b5fd203f888b7eddfe9f Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 10 19:02:31 2002 +0000 Added <Meta>-P shortcut that enables the cursor and sets the opacity to 0xff. commit 11b292f8c3bbb81d6d9563a4e2c5db7a66700c1c Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 10 18:56:20 2002 +0000 (Temporarily) set DWET_POSITION_SIZE in window event flags to avoid endless waiting. commit b4217b59537575c21b6f469221b85b17390b0834 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 10 18:10:15 2002 +0000 Check return value of WaitForData() to avoid endless looping on unexpected EOF. commit 2ae9ee500bb7fec08f4a89b489d76d3f854b2c07 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Dec 9 18:14:59 2002 +0000 Added a dfb_thread_testcancel(). commit 6547a1a375185db87a2458efdc53f7bc9fca2092 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Dec 9 14:57:08 2002 +0000 Always default to fbdev system. commit 9b228e9766f694246b4a30d85092394f069bc201 Author: Sven Neumann <neo@directfb.org> Date: Fri Dec 6 19:17:18 2002 +0000 try to workaround a crash in the OverlayThread commit 99f157275b74fb50b17b5803673dc90cfcac6ad5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 5 18:22:47 2002 +0000 Don't set window->stack to NULL in window_remove(). commit bf9094b4c6d056ec65bb6a4804fdde937634865d Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 5 17:51:44 2002 +0000 Open fusion device in non-blocking mode and use select(), fixes blocking in valgrind. commit 4d0565ef50e996f2c07cf8f7c0c257a7ccb9758e Author: Sven Neumann <neo@directfb.org> Date: Thu Dec 5 17:48:35 2002 +0000 Added configure option --without-tools that allows to disable the build of the tools. Useful for cross-compilation. commit f4a6612437b981c16fb113484a3def13e143c47e Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 5 16:43:36 2002 +0000 Removed a bit debug. commit 68f4e63effd9a2bf73de4d561ab3d8ec0008f0d0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 5 16:42:07 2002 +0000 Added some debug output. commit 43bb3f3ced220200b6e096d920845862de52ed1f Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 5 12:00:52 2002 +0000 Some experimental code from Ville Syrjala to avoid tearing. commit 0dac28d8292ed1a8371c051559da86c96e931c5c Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 5 12:00:06 2002 +0000 Patch from Ville Syrjala adds IDirectFBDisplayLayer::GetName(). commit bd7fd946619dad739fd3b0d4fe8a865f5d8fb01a Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 5 11:57:34 2002 +0000 Added IDirectFBWindow::GrabKey() and UngrabKey() which take a key symbol and a modifier mask, useful for panels etc. commit 6f271e78f27ffc314ac5159571829bd0bcfe4fce Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 3 20:14:16 2002 +0000 Added all required locks that were missing because recursive locks were unsupported. commit 7130b58967bfb5d6d1204a49ad6d2390860e0721 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 3 19:20:03 2002 +0000 Added configure option "--disable-text" which reduces the stripped library size by ~20k on my system by removing all init, debug or error messages. commit 9b170df039e0c474cb2688ee9d59103d7c8ff29a Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 3 18:06:33 2002 +0000 Removed obsolete fbdebug code. commit b9a38b67852e81519e115be1d9372e010e3b57c7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Dec 2 18:26:24 2002 +0000 Fixed some error handling code that infinitly looped. Fixed reactor related reinitialization bug. commit 0ab8188aa76c1886250ad8a0d261b2330574f844 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Dec 2 17:05:18 2002 +0000 Fixed two reinitialization bugs. commit fde50bffa2b6bcc26f916cdf8bfbfadd63d9796b Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 29 20:09:02 2002 +0000 Detach global reaction from layer background surface before unlinking it. commit df2b6313330bd8839c9fe5baa0fdd3992c8bdcfb Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 29 20:02:32 2002 +0000 Slave processes on a real VT have to detach the thread going to mmap the MMIO regions. commit 40b783025ffb2383bcaef36650121f7085b6f137 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 29 19:20:09 2002 +0000 If graphics-vt is disabled (default) at least temporarily switch to KD_GRAPHICS during FBIO_PUTVSCREENINFO to avoid redraw (clear & text) of the text console when fullscreen apps start. commit fd483259d0efa015afd42b97b9a66ce0b15d3eb7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 29 18:57:28 2002 +0000 Added RPC mechanism to let fbdev ioctls be executed by the master only. DirectFB now only detaches from its tty if it's a real VT and only if vt switching is enabled. This looks like a clean and working solution. The only limitation left is that the master must not call DirectFB functions that do fbdev ioctls within a thread that was created by the application, but only if the application created any thread before DirectFB got initialized. And of course this only applies to master processes started from a real VT. Added fusion_is_shared(void*) which returns true if the pointer specified points to shared memory. commit a4991722c3718c8d282ef2feb10b18141be153ca Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 29 12:40:39 2002 +0000 Updated vmwarefb patch. commit 34f6b2fe27b6a6fbcf5971c98b15628b4197cefa Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 29 12:23:18 2002 +0000 Clear a layer (dfb_windowstack_repaint_all) after enabling it. commit b9b9cc4169eb5d6679168ee0ff416e10291a63eb Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 27 19:48:49 2002 +0000 Added setsid() call, to slave init. commit 6b77fc1c0815363a37bdb4b0e92b3f2387406114 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 27 17:20:13 2002 +0000 Added output of stacking class. Window order is now the real one. commit 0a58ddd84782549459d4de0acbe1aaddb08d22aa Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 27 17:19:45 2002 +0000 Fixed three bugs related to stacking class. commit 618ba23ec81a228a8c3c78fc9ff165199d3dda76 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 27 01:42:09 2002 +0000 Moved dfb_system_lookup() call to dfb_core_init(), fixes fusion_bench segfault. Wait for a thread's initialization to be completed after creating it. commit 904f9d90dcec6854d8fce60686f86b0218dda495 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 27 00:12:13 2002 +0000 Detach slaves from their terminal, too. Disabling console acceleration (which resulted in a kernel side card programming) in slaves is not necessary anymore. Also fbdev ioctls are ensured to act directly on the global state instead of the tty bound one. Not all threads get detached yet, if the application created a thread before initializing DirectFB. commit 9f536f80adc619fc9f5a77482331e19c4b6ccee3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 26 22:49:39 2002 +0000 Modified the glyph surface width calculation to use 8192/font->height. commit a10827cc91a1ea395469e4266a62c128b3937467 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 25 15:23:55 2002 +0000 Made dynamic code safe for binaries with statically linked in interfaces. commit 6ce52601bc1dd44113d3ed0a772527a0876f3016 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 22 21:36:17 2002 +0000 Input device listeners installed by the windowstack construction code are global reactions now. Additional layers can now be used in windowed mode even after the process that enabled the layer exits. Remaining TODO is to auto-disable layers via reference counting. commit 08a9fbb8ce08d8cdb91f255ec2354cc81f9e0249 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 22 21:22:51 2002 +0000 Fixed warning. commit df237a220e754751134c302251aa99600c3f7491 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 22 21:18:00 2002 +0000 Implemented the ability to attach "global reactions" to a reactor. A global reaction will always be called directly by reactor_dispatch(). Global reactions can be attached/detached by any process. Global reactions don't die if the process that attached it exits. Made layer_surface_listener, layer_bgsurface_listener and surface_palette_listener global reactions. Removed layer palette workaround removal TODO. commit 09c2b41b2c44358b8014fa1487550314b05610ba Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 22 18:13:56 2002 +0000 Minor updates. commit 740a730765aa01cdc84a0890f213f574135df0f1 Author: Sven Neumann <neo@directfb.org> Date: Fri Nov 22 11:26:13 2002 +0000 Use DFBBoolean instead of defining true and false. Updated tools README. commit 9f3fe39c806df2cfe7ba778d5ba0c051481cfc9c Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 21 21:23:24 2002 +0000 Minor fix by Antonino. commit 418d6efb9c6f32f24d7e00ff64a244d44e05f173 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 21 19:06:59 2002 +0000 Color adjustment support on primary layer (via gamma ramp in direct color mode) by Antonino Daplas <adaplas@pol.net>. commit a69bf2db7bd3af559781d5d9b1bce378a9c5f3d7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 21 18:21:46 2002 +0000 Check for reactions != NULL, fixes default font. commit 3892db68dfcf841019e95e129e2f767e31f0034c Author: Sven Neumann <neo@directfb.org> Date: Thu Nov 21 15:50:53 2002 +0000 Allow to unset a surface's font by calling SetFont() with a NULL. commit 5b28b8bedc82517f01bf563248f68db2453e0c95 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 20 20:31:39 2002 +0000 Dump windows of all layers. commit becf487f04235894673f48e46c585a1ab4b14d38 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 20 17:40:15 2002 +0000 Support direct color visual, thanks to Antonino Daplas <adaplas@pol.net>. commit 5a3d3bf783644dd81fe0419b0e363bf72cf73b52 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 20 17:38:36 2002 +0000 Forgot "-Wl,-udirectfb_fbdev". commit 519453c9e7f3e52323ca986003861e72f487be65 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 19 18:03:10 2002 +0000 Some focus behaviour fixes, especially for non-cursor mode. Link layer surface to layer while layer is enabled. commit 872749aa2fd32eb735d83c9668b69722e8575103 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 19 16:41:47 2002 +0000 Default background mode of new layers is DLBM_COLOR (0, 0, 0, 0) now. commit ce62d80b1326bc3f34415ff1996134c9a50cd9b8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 18 21:59:39 2002 +0000 Allow passing NULL to unbind a shape and release its surface. commit 307dd9d9b3c266a0d88b28e68fd3d03eea12cb4b Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 18 21:46:08 2002 +0000 Added IDirectFBWindow::SetCursorShape(), untested. commit be8c1e770850774d92af650a268277027a5a6aa0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 18 20:54:14 2002 +0000 Added options "--input=foo,bar", "--graphics=foo,bar" etc. that will output all required flags for statically linking the specified drivers or modules. commit a9555c23398542209386bf9f3d998073959e9dcc Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 18 18:42:43 2002 +0000 IDirectFBDisplayLayer::WaitForSync() added by Ville Syrjala. commit 12c71534a6a76fd5ec547f7dc3a3d8bec38a3083 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 14 22:36:06 2002 +0000 Added IDirectFBWindow::SetColorKeyIndex(). Made IDirectFBWindow::SetColorKey() lookup the index if the format is indexed. Fixed warnings. Bumped version number to 0.9.16. commit 21ba790dc6f73367fe783f2d3f27718833e7c4ca Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 14 22:06:05 2002 +0000 No need to do DirectFBCreate(), just DirectFBInit() and fusion_init() ;) commit c26660ce132bbab3bee21f1f2ded158d813bb7e9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 14 22:05:11 2002 +0000 Made memory allocation messages a HEAVYDEBUGMSG. commit 506c29cb1282ede678a634a968ae284baec73bc4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 14 19:56:48 2002 +0000 Patch for using the whole 32MB of Matrox G400 etc. commit 38b54fb58755215b1b2fc8edeb8944767644998a Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 14 18:56:54 2002 +0000 Divide squared alpha diff by 16 to have it less weighted in color decision. commit d7e673e0d7376e0e648f9669d614da4417bbc24b Author: Sven Neumann <neo@directfb.org> Date: Thu Nov 14 15:34:24 2002 +0000 a more reasonable algorithm to find a good color match commit 9a9eee0672f48e1907abd3a6c596ed5a66f43ffa Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 14 03:55:01 2002 +0000 Don't do cursor magic if app is not running windowed. commit 23e39aeeb8e09ecb14aba8f1c4e9608d94d0a592 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 14 03:48:29 2002 +0000 Don't disable cursor on escape. commit c28cbd1eb0dea7af5a45b46f96ce134035bac92f Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 14 03:27:30 2002 +0000 Pressing a button or a key while a windowed primary is focused disables the cursor to achieve a vmware-like grabbing for fullscreen apps running windowed that need raw mouse events (e.g. df_knuckles). The cursor is released (shown) if Meta is pressed. commit 4a5ca7793b11fbcfafcc6706b8c393da8e7dd68f Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 14 01:25:58 2002 +0000 Added 640x400 mode. commit cb69e068ea2d35648e411d23f44eaa23eee00491 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 14 01:19:41 2002 +0000 Minor speed improvement. commit ed07a3e324acdda11fc520de082354b82e527f8e Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 14 00:56:32 2002 +0000 Added 320x200 mode, fixed 320x240 mode. commit d6825770eb79342043146f6728d0a3e9622a4566 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 14 00:28:42 2002 +0000 Pre render glyphs before rendering string to avoid a rare deadlock. commit 866ec65ff18265c23d0ff48ee74e3d7e22e63096 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 13 23:38:11 2002 +0000 Added dfbsummon, a surface manager debugging monitor. commit 0f7b274455becbde060a6f156f0b6ef22f35bcca Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 13 21:22:20 2002 +0000 Added some layer palette/surface related TODOs. commit 28833e44ed8fb1edf4c07ee516d56074f5d8ea6b Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 13 21:13:45 2002 +0000 Fixed layer palette updates in multi app core (a bit workaroundish). commit f5e340a3ed06a34e794faea629a2ec277d837552 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 13 19:17:26 2002 +0000 Commented out last change. commit a9605c63212e7849d3bf13dd9fec5e2069d9b656 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 13 16:59:31 2002 +0000 Correctly blit from LUT8 to LUT8 even if source and destination palette are different. commit 6b1c7efe82d49ac4e683482c4b43af6b7b65db84 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 13 01:26:12 2002 +0000 Added *.diff. commit 0cf3aed594dec2a25bd7b43f9997bd0fbde7d71a Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 13 00:21:06 2002 +0000 regenerated commit 90285f8243765ec87c8fb25ce08deb5f7e897ee2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 12 23:59:01 2002 +0000 Added Fusion patch again, we don't need an extra tar ball for it. commit 4c43eb2ebde39e8ac6b7bf55ed9d6b6ea7806e88 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 12 23:26:20 2002 +0000 Good bye, ipc_cleanup, you've been a nice friend, but your time is over... commit 75aafdf700bb206555a160e59c4d971ae29d24ba Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 12 23:23:23 2002 +0000 Updated for 0.9.15. commit 420f489edf9876d68a94f831953f434f9e40251a Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 12 22:56:07 2002 +0000 Moved description of Linux Fusion prior to how to build with multi app, because users maybe don't read further before doing that. commit 35200ab40b90c9ef838907ede84e60dd0bbd60ee Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 12 22:46:31 2002 +0000 Vsync fix from Ville Syrjala. commit 46e4d1afbe4535331af9e2e51e69d2574c7c98db Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 12 22:19:29 2002 +0000 Improved ioctl error handling (EINTR, EINVAL etc.). commit f45d573f7a71592bf3724f6d6564f702c75f89be Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 12 21:19:55 2002 +0000 Some bug fixes. commit 6b4a455c176b3be912426f38b1927e45beecfe32 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 12 20:48:45 2002 +0000 Rewrote FusionArena code using shmalloc and linked lists. No remaining bit of SysV IPC! There isn't even any SysV IPC header included. commit ae6e3e9d4d125e2ff283660accb47aca7cb40b59 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 12 19:17:30 2002 +0000 Fixed DLBM_TILE : DLBM_IMAGE order. commit 44d52ca252ebb662ea5e589ca88f53ecd783cbdc Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 12 18:50:54 2002 +0000 Check layer->shared->stack before repainting. commit 4c0c4366521d10c0af710512a2adccfeec34223d Author: Sven Neumann <neo@directfb.org> Date: Tue Nov 12 15:11:16 2002 +0000 Added --color option to dfbg. commit 57a9fe8647ee28d49fdf292619a0474b570eb68c Author: Sven Neumann <neo@directfb.org> Date: Tue Nov 12 14:22:36 2002 +0000 Added a man-page for dfbg. commit 2f50cbf1a1714d961ffb38e80de006939efad064 Author: Sven Neumann <neo@directfb.org> Date: Tue Nov 12 14:08:11 2002 +0000 Added --tile command-line option to dfbg. commit b326bf1dbc57cd286f2e62a8eac1a7c2dd45940e Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 12 02:42:17 2002 +0000 Added background configuration tool. Updated ipc_cleanup. commit f240d3714138f220f03e6d00e5477b1a19ae7225 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 11 17:33:55 2002 +0000 Updated vsync irq patch from Ville Syrjala. commit 09cbc66c3e7e8610d263999cd1a1de3b2b1c96bb Author: Sven Neumann <neo@directfb.org> Date: Mon Nov 11 15:32:30 2002 +0000 check prog != NULL before calling strlen() on it commit 3fb48318ed7c8da924adcf84a9fde4d99d87a244 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 11 15:01:54 2002 +0000 Made dfb_back_to_front_copy() thread safe as skirmish is now a recursive lock. commit a95d4a3e8eab447bb2397a1d073b3e604f48ce6e Author: Sven Neumann <neo@directfb.org> Date: Mon Nov 11 15:00:29 2002 +0000 Fixed some spelling errors and documented the new behaviour of 'no-hardware'. commit 325293ec542a85884bf7e4c7f44856023c35bff3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 11 05:33:09 2002 +0000 Use hardware key code for auto grabbing pressed keys (using the symbol was buggy because of modifiers being changed while a key is pressed). commit 375631844924fa5395c6bfb25c9e5fe8fe201ef9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 11 05:16:41 2002 +0000 Check return value of iopl() instead of segfaulting. commit 3ac73664a0e7c5e76655ed8a8f39f885a7de3b4f Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 11 03:58:51 2002 +0000 Rewrote multi app reactor code, *much* simpler and cleaner now. Improved performance and stability. No message queues anymore. Old version via message queue: reactor attach/detach -> 8.03 k/sec reactor attach/detach (2nd) -> 323.21 k/sec reactor dispatch -> 333.33 k/sec (100% arrived) New version via Fusion Kernel Device: reactor attach/detach -> 375.09 k/sec reactor attach/detach (2nd) -> 403.88 k/sec reactor dispatch -> 754.15 k/sec (100% arrived) Now the master is the only DirectFB application with more than one additional thread. Only one single SysV IPC resource is left (shm segment of arena). Everything else is already handled by the Fusion Kernel Device. Support for multi app without kernel device is dropped. commit eae999f9dc3e97489484c2eb145a8bb939f0f284 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Nov 10 19:40:05 2002 +0000 Don't block signals in DirectFB threads of slaves. commit a89f93d02ea728e3ba4519afb88168823991d4f9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 9 01:20:19 2002 +0000 df_dok related bugs are fixed. commit 607229177b623f2ea434b190ce4de7096b9422f4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 9 01:18:15 2002 +0000 32 was the old value, not 16. commit b634e78a91ea36379e27e13648f8eb17ec5e7dc6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 8 23:15:23 2002 +0000 If multiple arguments are passed, use the first one for output and others for input. commit 188b5b4956edb2e6585e78bf3f3f398491418a44 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 8 22:57:08 2002 +0000 Attach listener to glyph surfaces to have at least one listener attached. Set glyph surface size back to the old value (maxadvance * 32). commit 2b70c8359757d7ee5bb7e29ffac7725aa4f980d4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 8 21:33:08 2002 +0000 Fixed off-by-one bug in image loading code (multiplication by alpha). Fixes broken color keyed blits in df_dok. commit c7c12eeef97a64551aa8c4916db361ec10020721 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 8 21:09:01 2002 +0000 Fullscreen applications not calling SetVideoMode() and not setting the format in the surface description of the primary take care of the "pixelformat=" option. commit d246298a82f99242fd0a20835678aaf6706406a0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 8 20:16:20 2002 +0000 Fullscreen applications that are started with the "mode=" option and don't call SetVideoMode() now switch to the mode specified with the option. commit 1f4080147391a9f588b5a701b4c5ecd00bbe6d46 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 8 17:41:22 2002 +0000 Implemented additional config file loading for each application. E.g. running "df_dok" or "/foo/bar/df_dok" will look for config files "/etc/directfbrc.df_dok" and "~/.directfbrc.df_dok". 'no-hardware' now only disables acceleration, but driver is loaded and additional layers are used. commit 0e3cd6173ea63e0a9e45934c0e31b8c4a76e4fdd Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 7 23:41:34 2002 +0000 Check for desc != NULL. commit 872447f29a179f361489e3cc1a237d1e8c69ae33 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 7 22:17:24 2002 +0000 Check for NULL. commit 115efd890d566c1e01629aeb9acfa2a1440bf0c4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 7 22:00:58 2002 +0000 Added system hook ThreadInit() that is called at the beginning of new threads. The fbdev system detaches the thread from the controlling tty. Otherwise mode restoring done by input threads (if layer is orphaned) goes to the tty the app has been started from. The main thread has been detached eversince. commit c30f9fa5a6b4d831fcdf354f1b0d32d4e8487cf9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 7 21:40:40 2002 +0000 Fix deadlock during lease of orphaned layer. commit 98beff28a9eb3a6cf77f0f4eabc9cb2914d19934 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 5 22:57:44 2002 +0000 Show window of windowed fullscreen apps on first Flip. commit 6423f0879866238b21eb0e3cded47b598c2f4fe0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 5 22:49:04 2002 +0000 Commented out state locking in listeners to avoid a deadlock between state/reactor lock (locked in different order by two threads). commit 7a964df9c394d8d90241ebf993a8e6cd7d7eed56 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 5 17:10:14 2002 +0000 Interpret EINVAL like EIDRM in receiver. commit 17260aea820fecff16159b2df560b68a08049cd0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 5 14:48:56 2002 +0000 Made skirmish recursive mutex in single app core. Multi app skirmish has to be made recursive, too. commit e19241a150340c1fc6c19d33e4a92cda25c28d12 Author: Sven Neumann <neo@directfb.org> Date: Mon Nov 4 19:19:25 2002 +0000 check if the window has a surface before trying to access its palette commit c9c136115ce00f789bf74848f2528364aae6a1f2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 4 19:04:11 2002 +0000 devfs support commit 75b3fa0ccd7ec1f2b07762406317e6591b5c875d Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 4 17:40:16 2002 +0000 Added state locking to dfb_state_set_source/destination() and the installed listeners. References to the surfaces are now increased/decreased. More stable now, but had to use Unix98 recursive mutex. commit 5f84191c2212d32feb8e414fa2a69ab8ac3b2eb5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 4 16:42:21 2002 +0000 Use new in-kernel fusion property. commit f2382dfb9c86c805c98def6f73aca9b648950700 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 2 05:20:21 2002 +0000 dfb_surface_attach() was called too early. commit decdaac99fda82242008b175f60db0c1f72dea34 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 2 01:44:40 2002 +0000 Use Fusion Kernel Device. commit b76ce0bb04ae3a79ae22e88bcf45b29d1d5ac66b Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 1 23:06:35 2002 +0000 Added DFBBoolean. DFBWindowEvent fields cx, cy, buttons, locks and modifiers are always set now (except for DWET_DESTROYED). API change ---------- IDirectFB::CreateEventBuffer() no longer attaches input devices and doesn't take input capabilities. IDirectFB::CreateInputEventBuffer() implements the old behaviour with an additional argument "global". If global is DFB_FALSE events will only be delivered if this instance of IDirectFB has a focused primary (either running fullscreen or running in windowed mode with the window being focused). Version is 0.9.15 now. commit 58dabf0cde6d5cef26e5e18dc31efb7bcecd27b2 Author: Sven Neumann <neo@directfb.org> Date: Fri Nov 1 22:37:42 2002 +0000 Don't write out of bounds if the default cursor is loaded into a non-ARGB surface (--dfb:no-translucent-windows). Switch the display layer palette to the one of the focused window. Added TODO item since this needs more changes. commit 263b1549e5baccfa6ca6f4dcd7fa7bf2cf0a4999 Author: Sven Neumann <neo@directfb.org> Date: Fri Nov 1 21:38:20 2002 +0000 notify listeners about a palette change in dfb_surface_set_palette() commit c024e49791e449a68ba291570993d8bb6921f022 Author: Sven Neumann <neo@directfb.org> Date: Fri Nov 1 21:37:44 2002 +0000 Use the size of the palette in dfb_palette_generate_rgb332_map() instead of assuming 256 entries. commit 54d03df4f5000d31d01b1135b822cbf8604c6a1d Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 1 17:26:09 2002 +0000 Implemented implicit grabbing of keys when they are pressed. Subsequent events of this key are sent to the owner. Releasing a key ungrabs it. If a window is closed while grabbing a key, the window gets a pseudo release event. If fullscreen mode is entered all keys are flushed (ungrabbed sending release events). commit b5b77ad5daf033e8afc32c5aa6da3fade4c305e0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 1 13:38:21 2002 +0000 Added threaded skirmish benchmark. commit fb1a3fae3aa6bc5e4f63eabae2088bb76c1159e4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 30 19:45:42 2002 +0000 Number of reactor_dispatch() calls depends on single/multi app config. commit 7f00497df6498388739fb5733d531d07fa97afc6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 30 19:40:01 2002 +0000 oops commit f81fa71a1c29a91a4b360bdf209189360b0b2d71 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 30 19:39:11 2002 +0000 Added reactor_dispatch() benchmark. commit 5634a44dd5f686e95cc4aeeaf037ca890cb806cc Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 30 19:17:14 2002 +0000 Added reactor attach/detach benchmark. commit 22e0df5bba69b00bc8aca3badb017d200cadbaea Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 30 18:12:23 2002 +0000 Forgot initialisation of waiting counter. commit 8702a216f37bd91b0db2bba34621bb99355ae9f9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 30 17:57:23 2002 +0000 Only call pthread_cond_broadcast() if someone is waiting. commit bc7223328c94a52f302d2b9da17a9cc3a1e75ff0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 30 17:52:38 2002 +0000 Added missing pthread_cond_init. commit e2c4accb665b8b418999f7553ec2ee42961f7713 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 30 17:38:42 2002 +0000 Added Fusion benchmark application. commit d5a7f93d5c22680bd11aa839f33074d8e8a978b0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 30 14:25:24 2002 +0000 Use stderr for the banner, like all other messages. commit cac8cc70c0925b84539afcd6701caa2bdfe2ea6f Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 29 18:39:31 2002 +0000 Don't interpret negative ref count as a negative errno until ref counter bug is fixed. commit cb125aeb7f14f3a6d4f7b8e528b67dcb4178a74b Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 29 15:10:46 2002 +0000 last commit before 0.9.14 release commit ff4a9571567ba135ea37ab175dbbf9d717aa0ad8 Author: Sven Neumann <neo@directfb.org> Date: Tue Oct 29 14:54:56 2002 +0000 added a note about dfbdump commit a6985f74f977fbee3b012a5f11c0d8bbd1672cc9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 29 14:41:18 2002 +0000 updated commit bee14a47b118b0683aa4a6c267dc13a0cbd719f5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 29 14:40:45 2002 +0000 Has an extra CVS module now. commit f8f052ebf67f216bca5f99983a375bf7016896cc Author: Sven Neumann <neo@directfb.org> Date: Tue Oct 29 13:57:58 2002 +0000 Added support for DFDESC_FIXEDADVANCE. commit 3ac041050e8e7edabec80b042f3959f706528615 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 29 13:42:43 2002 +0000 Added DFDESC_FIXEDADVANCE as a workaround for using proportional fonts fixed. Added DFFA_NONE. commit 7743e4f9d1e5048677ff5e235c2411bd06afa230 Author: Sven Neumann <neo@directfb.org> Date: Mon Oct 28 19:50:21 2002 +0000 Assure that glyphs with an empty bitmap are inserted into the glyph cache with zero width and height. Simplifies some checks performed when rendering. commit c4c24b2fa8c940cdb2357110ac3c02d30f173bff Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 28 19:28:48 2002 +0000 Use larger glyph surfaces to reduce expensive switching (caused by reactor attach/detach). commit 04c4d41e7f2865137ac09dee0d5f03a5685ae523 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 28 19:22:49 2002 +0000 Use CoreThread with new type CTT_MESSAGING. commit e38d92cb96684744b3c69e9abecb5d93d31f14dc Author: Sven Neumann <neo@directfb.org> Date: Mon Oct 28 19:19:18 2002 +0000 indentation commit 7cd55fd06ea3e8f15e156455ecc7d9461e4209a8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 28 18:58:00 2002 +0000 Check x too in simple pre clipping of dfb_gfxcard_drawstring(). commit 08f9ed3458ca32158a17e7b067018024495acb0d Author: Sven Neumann <neo@directfb.org> Date: Mon Oct 28 18:27:04 2002 +0000 Added a description of the builtin "window manager". commit bcae600e798df938ed707c84238b19f24c91ac7d Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 28 18:23:08 2002 +0000 DFB_CFLAGS are behind CFLAGS again. Otherwise "-g -O2" may override the debugging/optimization options of DirectFB's configure script. commit c7e6ec291924706f7ed314591cb0d4866b4d4e5d Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 28 17:43:00 2002 +0000 Multi app related. commit 3b4a858beb388ee96a05e7987154a2e1ba3fe7ad Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 28 17:36:16 2002 +0000 SetOpacity() for sub picture layer fix by Ville Syrjala <syrjala@sci.fi>. commit 37f63b342a9097a61e08e3e9217587c7477150ba Author: Andreas Hundt <andi@directfb.org> Date: Mon Oct 28 17:22:21 2002 +0000 - added OpenBSD to the list of supported operating systems commit 29afc314c55bf34bbc097384249693c808a23ab7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 28 17:19:28 2002 +0000 The linux-fusion module doesn't only give performance, but also more stability. commit 9c03ef46e49da0fec24b0f496067da91f9d3bea9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 28 16:01:27 2002 +0000 Fixed fusion_object_destroy() for calls outside the object destructor. commit 1999736ad9e82c8701762e1716fc39b8ae2e0458 Author: Sven Neumann <neo@directfb.org> Date: Mon Oct 28 15:24:26 2002 +0000 Added sdl.h to SOURCES. commit 8c8b5823b00e9bd53d2ab1aec8d903542ee2ad7f Author: Sven Neumann <neo@directfb.org> Date: Mon Oct 28 15:12:19 2002 +0000 added more ifdefs around MMX and SSE code commit 18b9e85a2e9d84fd900780c5260e140137ffa302 Author: Sven Neumann <neo@directfb.org> Date: Mon Oct 28 13:31:57 2002 +0000 Updates. commit 258b63376e4b5772f45e0ffd9b8f8428a5c92c97 Author: Sven Neumann <neo@directfb.org> Date: Mon Oct 28 13:20:41 2002 +0000 Check if binutils support SSE assembly and compile the SSE code conditionally. commit f003aa5a6ee0ebf9a6280d983cacc100f5580d4f Author: Sven Neumann <neo@directfb.org> Date: Mon Oct 28 12:39:41 2002 +0000 oops commit 1c21bf783d340a7f83a9743cc10c80c9ae45b59a Author: Sven Neumann <neo@directfb.org> Date: Mon Oct 28 12:35:53 2002 +0000 Simplified the configure tests for MMX, fbdev and sdl. Set SDL_CFLAGS and SDL_LIBS using $SDL_CONFIG so that people can specify which sdl-config to use. Use SDL_CFLAGS and SDL_LIBS in the Makefile. commit 3ae8eb618ea4cf5fbbf87e46cc1af8ba1815eaad Author: Sven Neumann <neo@directfb.org> Date: Mon Oct 28 12:07:17 2002 +0000 Corrected spelling of frame buffer. commit a16602230461339fa699e365b4e4dc6677306a53 Author: Sven Neumann <neo@directfb.org> Date: Mon Oct 28 11:56:52 2002 +0000 moved some lines around commit c0fc87b3421f3edb0a56c21fc2bd6ab9bb23a257 Author: Sven Neumann <neo@directfb.org> Date: Mon Oct 28 11:32:27 2002 +0000 Don't build MMX code if MMX was disabled by configure. commit e265759961a68b279a082770bbf8a7821327fda0 Author: Sven Neumann <neo@directfb.org> Date: Mon Oct 28 11:13:24 2002 +0000 Reformatted some comments; no changes. commit e1a64a38820371f443ab8df8593bff476e63941e Author: Sven Neumann <neo@directfb.org> Date: Mon Oct 28 11:03:20 2002 +0000 Document the new pixelformat parameter in directfbrc. commit 8976c0c9c472c650cc32c999e75c8b26994a658f Author: Sven Neumann <neo@directfb.org> Date: Mon Oct 28 10:37:59 2002 +0000 Fixed obvious typo which caused --dfb:depth to fail. commit 29a90abc9ded81ee43b2a0b566cf1145196f0508 Author: Sven Neumann <neo@directfb.org> Date: Sun Oct 27 18:17:16 2002 +0000 Improvements to the spec file by Till Adam. commit e57466f9f7b8bc1f8a3916b0687b8af2925dca59 Author: Sven Neumann <neo@directfb.org> Date: Sun Oct 27 16:56:26 2002 +0000 Include the generated spec file in the tarball as well to make it possible to build RPMs directly from the tarball. commit a951621daa198a0b3a3e994b03addcf9c2f054f6 Author: Sven Neumann <neo@directfb.org> Date: Sun Oct 27 13:19:44 2002 +0000 code cleanup, no changes commit 524ecb10f1bb0c2d0960acf15cedd8583ebf7b20 Author: Sven Neumann <neo@directfb.org> Date: Sun Oct 27 13:01:29 2002 +0000 Explain how to use the multi-application core. commit dd1d1d8498cc96fec77416eb5ae88720b111c341 Author: Sven Neumann <neo@directfb.org> Date: Sun Oct 27 11:28:41 2002 +0000 Call libtoolize since newer versions of automake don't do this for us. commit 972e1e3df8fa40b495e5f024672c52b9d50e39c9 Author: Sven Neumann <neo@directfb.org> Date: Sun Oct 27 11:18:22 2002 +0000 Removed cflags_set hack from configure.in. We don't need it any longer since we don't touch CFLAGS. commit 23179f711ba2a49249a85496037a540b1ec54ee2 Author: Sven Neumann <neo@directfb.org> Date: Sun Oct 27 11:12:00 2002 +0000 Applied patches from Andreas Oberritter <obi@tuxbox.org>: Call libtoolize from autogen.sh since newer automake versions don't do this for us anymore. Use AM_CFLAGS instead of CFLAGS, which is a user variable. Check for C++ compiler in configure. commit f517047ea3bbf6b70f02dac8a6743ebc93051019 Author: Sven Neumann <neo@directfb.org> Date: Sun Oct 27 10:58:39 2002 +0000 Added directfb.spec.in based on a spec file provided by Till Adam <till@adam-lilienthal.de>. commit a8ae81b36e401fd22beab07fdd14a7b29b7dbee1 Author: Andreas Hundt <andi@directfb.org> Date: Sat Oct 26 19:21:53 2002 +0000 - dont use RTLD_GLOBAL if it is undefined (compilation fix for OpenBSD) commit 60dc872a9ac579bcb794ddc7d1b0993c6f05beb2 Author: Andreas Hundt <andi@directfb.org> Date: Sat Oct 26 19:15:58 2002 +0000 - dont use RTLD_GLOBAL if it is undefined (compilation fix for OpenBSD) commit 3351b0d9caaca1cdf5446da51c868766d361d38f Author: Andreas Hundt <andi@directfb.org> Date: Sat Oct 26 19:10:42 2002 +0000 - fixed typo, mention OpenBSD - initial OpenBSD support (incomplete) commit 28b8a259425b9ab1f8e278e72c24f4b84e3b2fc0 Author: Sven Neumann <neo@directfb.org> Date: Sat Oct 26 18:20:16 2002 +0000 reformatted commit 67081316cacf6b2ba70a3038ee6f7c159a42b07b Author: Andreas Hundt <andi@directfb.org> Date: Sat Oct 26 16:01:15 2002 +0000 - added section on supported operating systems commit 42ccf3f0defbbdffa7a0f48859fce5f5b02e0b3f Author: Andreas Hundt <andi@directfb.org> Date: Sat Oct 26 12:58:51 2002 +0000 - NetBSD compile fix: only use ENOTSUP if it is defined (missing in NetBSD) commit 4b253770636b4c1ee26434ec2ac8920d9d3e3c37 Author: Andreas Hundt <andi@directfb.org> Date: Sat Oct 26 12:53:41 2002 +0000 - added support for NetBSD (tested on NetBSD-1.6) commit cef20e49dbb89402adcdea4ad219e36f6c1232bc Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 25 17:14:55 2002 +0000 The option "pixelformat=" does work with windowed fullscreen apps, too. If ARGB is specified, the window will be alpha blended. commit 2e3ef3019acdcea1fa3798cb732eb3b6851ef8de Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 25 16:30:04 2002 +0000 Windowed fullscreen apps can now be given a window size via the mode= option. commit 1a6fb8b5e2bf280805986de654d637e4ed0c6e8a Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 25 14:51:53 2002 +0000 Whuuuhuuu, Cyber Pro DirectFB driver release in 0.9.14 ;) commit 55daa6697a2c11d83e4b9db00e12a0d692c3cd70 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 25 14:25:01 2002 +0000 Moved all static variables into instance struct to make GIF loader thread safe. commit 21cd89150883ecef5096503e034be0692286a9c8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 25 13:52:14 2002 +0000 Fixed evil bug: wrong parameter order to qsort resulted in unsorted color map in FindColorKey. Fixes color keying of a very few GIFs. commit bc722f3b1d4756c8e1af6d0211555a14e7376c9b Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 25 13:12:56 2002 +0000 Applied patch from Johannes Stezenbach <js@convergence.de> fixing some keys. commit 97693660e424e0fe94b97178ba30f5d2fc553f18 Author: Sven Neumann <neo@directfb.org> Date: Thu Oct 24 11:32:30 2002 +0000 improved README commit 21efc94ad9c3f112d0e5f96043324a6650d3392f Author: Sven Neumann <neo@directfb.org> Date: Wed Oct 23 16:59:30 2002 +0000 updates commit 2cd9c43b5fd0b0f614d5cb21fa55bda173fc9b4c Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 23 16:11:22 2002 +0000 Updated cvsignore files for automake 1.6. commit ddd9be0ad6762aaf5e4825aab77b1d238c1f3ae3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 23 16:00:18 2002 +0000 Use thread functions for bone collector loop. Added thread type CTT_CLEANUP with priority -15. commit 43afcb8e384b3f9b32ef5893842e22f92c8f0ed0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 23 15:59:30 2002 +0000 Update from Ville, return -EFAULT if argument is not a valid pointer. commit 273424f5ccd7110bf537a126b3a7018f94b74fae Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 23 15:58:22 2002 +0000 YUV 4:2:0 chroma plane setup fix from Ville Syrjala <syrjala@sci.fi>. commit c27a0f5888137aee0f9ad608811a99cb8e8d9686 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 23 15:23:38 2002 +0000 Use 0x20000000 instead of 0x70000000 as the shared memory base address to avoid collision with stack on MIPS. commit 67c32e53e6dad75b18206f86b4b894b4fab6d2c2 Author: Sven Neumann <neo@directfb.org> Date: Wed Oct 23 14:56:19 2002 +0000 Reverted my changes regarding the primary surface for NORMAL mode. The old behaviour made more sense actually. commit 353101270b380302f63ad0feae474b4bab9388de Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 23 13:12:17 2002 +0000 Changed WM keys a bit: A (abandon) - lower focused window to bottom S (show) - raise focused window to top X (eXchange) - cycle through windows (not having DWOP_KEEP_STACKING set). commit e24814f174308e07a3c989eac48cbbacd8e6f8f2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 23 12:49:59 2002 +0000 Don't try to destroy dead reference. Default to graphics-vt only if vt-switch is disabled. commit b80ffa4425abf25a669e5485da28881c2e4c91e5 Author: Sven Neumann <neo@directfb.org> Date: Wed Oct 23 12:14:18 2002 +0000 Defined THREADFLAGS=-D_REENTRANT and added it to the cflags given by pkg-config and directfb-config. commit 983de2c37dbc97fcfa49c9f3dd35ced97d97f2d5 Author: Sven Neumann <neo@directfb.org> Date: Wed Oct 23 11:10:50 2002 +0000 some cleanup commit 3fc31acf47a714fa30971a362a19307e3acf1102 Author: Sven Neumann <neo@directfb.org> Date: Wed Oct 23 10:55:54 2002 +0000 beautified configure output commit 8ab677b03021b1bd283b13c0f967ae0959da54a8 Author: Sven Neumann <neo@directfb.org> Date: Wed Oct 23 10:02:41 2002 +0000 Creating a primary surface in normal mode will now result in a fullscreen window with options set to KEEP_POSITION, KEEP_SIZE and INDESTRUCTIBLE which is probably what people expect. commit edd7eba3955e6565ec65a74aa647ed758c2d0dfc Author: Sven Neumann <neo@directfb.org> Date: Wed Oct 23 09:50:04 2002 +0000 Initialize the primary width, height and bpp from the primary layer instead of using some arbitrary values. Ignore width and height from the surface description when creating a primary surface in NORMAL mode since we do that for the other modes as well. commit 157efe371863ede34d0e8bc78525487efa158be5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 22 21:56:35 2002 +0000 Windows can now be cycled via WM-S (to front, focus). Pressing WM-X puts the focused window to the back. commit 0d638b263d576dc119830123d2ac0bdc4af52fab Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 22 20:33:20 2002 +0000 Null pad opacity. commit 280be9e01d5f314c6f978d03e5cf9e6b69cc1a57 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 22 20:29:07 2002 +0000 Added "[no]capslock-meta" enabling mapping of CapsLock to Meta on keymap level. commit 67faba53f021b270eef1d677d1b4e66534299112 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 22 19:54:03 2002 +0000 Ensure a focused window in dfb_window_set_opacity() only if window disappeared. commit aa9d20bd77e2832431d98b0f2cff0b2776be6522 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 22 19:48:12 2002 +0000 Use base level symbol if shift level symbol is null. Fixed debug message new lines. commit 9dddaa6153e64d1250345b73894b19eec089073a Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 22 17:36:05 2002 +0000 Add "0" argument to vsync ioctl. commit 2ecb93bb3e9f1c06313a08dee8738b6d86a01ce9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 22 17:31:33 2002 +0000 Don't detach bg image listener manually, keep the reaction in local memory. commit d803ac00b111179d85e774c9aabb7c800b7b9deb Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 22 16:34:37 2002 +0000 Fixed crash when a foreign reaction is removed. Foreign reactions are now disabled during detach, but removed during the foreigners reaction loop. Relase background image surface after setting it. commit 073787201ff1a9311f8012e2e8241e19e4574a17 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 22 16:08:37 2002 +0000 Accidently committed signal change in DFB_ASSERT. commit dcecf047f713bb23ee1c79f94fddc768fe46cf97 Author: Sven Neumann <neo@directfb.org> Date: Tue Oct 22 16:07:09 2002 +0000 some updated to the NEWS file commit c83a20bf14a2837301d4bb14a1da76a67e8fecc8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 22 16:00:12 2002 +0000 Reverted change that seems to break mode switching if started via suid root from console. commit b82fd384bb6614f59e0b3888d57d92b5d1196e2a Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 22 15:56:04 2002 +0000 Use LUT8 if depth is 8 (e.g. default mode or SetVideoMode()). commit 86cecb5e6e638cf5267d055583532b0c446bff21 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 22 15:34:45 2002 +0000 New vsync irq patch from Ville Syrjala <syrjala@sci.fi> with support for the second head. commit 5de8f80d3a8bf20cfcf778900545c2477b11d4a0 Author: Andreas Hundt <andi@directfb.org> Date: Tue Oct 22 15:21:25 2002 +0000 enable RGB332 support by default. commit cc92d4fd013877198e30867c2f2fc3a03ee9464e Author: Sven Neumann <neo@directfb.org> Date: Tue Oct 22 15:12:33 2002 +0000 minor code cleanup commit 50aa6a28f8e3a6287a4363c23bdc97791f509539 Author: Andreas Hundt <andi@directfb.org> Date: Tue Oct 22 15:08:18 2002 +0000 declare ModuleDirectory as extern to fix linking problems on darwin commit c7528e751c171aa5631cedbaffe1a560476d599d Author: Sven Neumann <neo@directfb.org> Date: Tue Oct 22 14:37:26 2002 +0000 Fixed --dfb-help output. Documented the directfbrc parameter matrox-tv-standard. commit da118317b4ebd1a45ac6d25c9faf1601ba6ec395 Author: Andreas Hundt <andi@directfb.org> Date: Tue Oct 22 14:22:53 2002 +0000 - fixes for automake 1.6x on non-linux platforms commit dbc5d38f0c1c1c668221d7c32076a02bc01aed3e Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 21 19:37:54 2002 +0000 Use graphics-vt by default. Use no-vt-switch by default if started without root privileges. Open mouse device O_EXCL. DirectFB now works while gpm is still running. commit af51d4a6c01a7b84b08580029c19a5b70827e67e Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 21 18:31:16 2002 +0000 Fixed crash in debug mode after shutdown. commit cd6a7c3b69ec4481942d516599ccd52ce42a9a2c Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 21 15:57:15 2002 +0000 Fixed memory corruption caused by a too early free. Really use fusion_get_millis() now for debug output. commit bdf40ade4c6245239c5f26eba72adf126032819d Author: Andreas Hundt <andi@directfb.org> Date: Sun Oct 20 13:11:22 2002 +0000 - applied patch by Till Adam <till@adam-lilienthal.de> which fixes build on MDK9. (This also fixes problems with autoconf-2.53 and 2.54) commit 0064f922863ee6f0371581807ffb55a2048c5d5f Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 18 19:27:20 2002 +0000 Fixed segfault in IDirectFBSurface_Window_Flip() if window is destroyed before its surface. Removed unnecessary fusion_ref_zero_lock() in reactor_free(). commit e609a4b877308b57729d7418546cb16e8ab19117 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 18 17:34:03 2002 +0000 For a windowed primary surface, accept setting of width and height in the surface description as a second way to set the size (first is SetVideoMode). commit c68333c1e784b3255b85e844db15be81773006d3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 18 15:49:09 2002 +0000 Assertion message shows pid and milli seconds now. Added more safety and debug output to window destruction code. Added fusion_get_millis(), debug messages of all fusionees have a synchronized milli second counter now. Added some safety and assertions to reactor code. commit 5e61fc4a42ed3e606af86c20d8bb477e2b8c35fd Author: Sven Neumann <neo@directfb.org> Date: Thu Oct 17 08:55:54 2002 +0000 Set the button mask in DWET_MOTION events. commit 0291fdc6a92cd8ae54cdda6dfbaf2c1f2d4d9c90 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 16 12:48:22 2002 +0000 Added quick guide. commit bb60470edc0519ca071aad8928bab7cdbec7245c Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 16 12:43:09 2002 +0000 Added experimental kernel device for a much better implementation of the fusion concepts. For now FusionRef is implemented in kernel space. The old implementation using semaphores doesn't work properly because undo counters are hold per process id. But the reference should be valid for all threads (processes with the same fusion id). You have to apply the patch to test it, configure checks for linux/fusion.h and uses the old implementation if the header isn't found. The patch is here for quick testing. Will add a new cvs module with all new files directly checked in and a patch for the modified. The new implementation should be even faster as there is only one system call per fusion_ref_* user space library call. The undo stuff is working as supposed now (per fusion id), but fusion_ref_zero_lock() is not implemented in kernel space yet. commit 5da2f4330b9fd8e8795d974c12f150c5fa656639 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 16 11:43:09 2002 +0000 No inlines if debug is enabled. commit 9737b15b1e871f2c6df87cddf0b53b757e46bd6f Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 15 21:05:36 2002 +0000 Better error handling. commit 92baa32be41ec4cc7348a71778b6b0254be156fb Author: Andreas Hundt <andi@directfb.org> Date: Tue Oct 15 19:42:59 2002 +0000 include missing signal.h, fixes compilation on freebsd 4.7 commit 82b18f908609d7c80a44bd8f5865ad19768d7e88 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 15 18:30:54 2002 +0000 Fixed blocking in fusion_ref_down() if reference counter is already zero. Prints an error message and returns FUSION_BUG now. Improved debug and error output. commit bf9351e5f3c05178562c2253938fd2fb7dabe729 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 15 16:55:18 2002 +0000 Added magic value for debugging memory corruption related stuff. commit 50ee35079a508d3e7c34a6cb711c26db65d00df1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 14 20:49:28 2002 +0000 Decode first picture only. commit 4387733d8fb6b4eec8dfd76bddbc2dfa73c6bcc5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 14 18:57:34 2002 +0000 Moved all global variables into instance struct. Removed some more unneeded stuff, got MPEG2 code < 5000 lines of code. commit 5aae3239b2c5f6b0a7b1dc88be1b19e807e5ccab Author: Andreas Hundt <andi@directfb.org> Date: Sat Oct 12 17:19:06 2002 +0000 added filter for incoming events, much smoother now commit bd126091806f94ff89e838a8d5cd553590b82f71 Author: Andreas Hundt <andi@directfb.org> Date: Sat Oct 12 15:17:05 2002 +0000 added driver for ucb1x00 based touchscreens (used in the "tuxscreen" device). TODO: - do not hardcode touchscreen config (read from config file) - filter incoming events, there is too much noise commit 8d9fa5242bc5de866b9ae1d09686b113d7cdc764 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 11 18:36:10 2002 +0000 Added prefix to all non-static methods. commit 3f5ee601c25bdbb1f32175f330f28d0669c54c3b Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 11 17:49:51 2002 +0000 Fix crash due to static variables. commit a6b7a26447917aac963215c0b9a42732822cceaf Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 11 16:02:53 2002 +0000 Added MPEG2 I-Frame image provider derived from mpeg2decode (mpeg.org). Need to move global variables into instance struct. commit 5ab7e6ca2f9cfcd5f094aef528f07ad027ba69dd Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 11 16:00:35 2002 +0000 Fixed keyboard handler for screen dump and sending SIGINT. Fixed debug messages (newline). commit a80459a3e0b3d46bf14802dac661bd61569baf5c Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 11 15:59:09 2002 +0000 Added simple test if flipping (updating) a window is necessary. commit b44edec5e5ab6ea4aead2e2f5ea87837ace8b1e1 Author: Andreas Hundt <andi@directfb.org> Date: Fri Oct 11 01:38:59 2002 +0000 updated driver to compile again commit 80670ec105ccae04ee6e88a7dc8cd8cd5c85ca8f Author: Andreas Hundt <andi@directfb.org> Date: Thu Oct 10 16:27:27 2002 +0000 if the video mode was tested/set successfully, check if there is enough video ram (this is for broken framebuffer drivers). maked DirectFB work of tuxscreen. commit 617ca157470464dcad0290a6fdfaa367cbe4d963 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 10 16:01:30 2002 +0000 A '|' too much. commit 12c8b2b46330d958f11c6e5fad8e82996ffcf88f Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 10 16:00:39 2002 +0000 Fixed system back buffer fallback. commit ab21f925b728c4ef8db05782c75f283f17cad5f2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 10 13:40:15 2002 +0000 Minor change in focus handling. Leaving a window unfocuses it. commit 48b3b54cd5df4eb25a7ea74621e67ae4e034ce25 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 9 19:32:42 2002 +0000 Return NULL in window_at_pointer() if cursor is disabled reulting in the top most window getting focus. commit 633f508e9b1f72b102fce6a91c6f84a18de36d78 Author: Sven Neumann <neo@directfb.org> Date: Wed Oct 9 18:28:47 2002 +0000 Added -lm to the linker flags for libpng. Don't install dfbdump. commit b5071efa0f26623825e06ffb87678c4817c128e6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 9 17:22:38 2002 +0000 Fixed RequestFocus. Added window opacity to dfbdump output. commit dc65bfd87a3b23507e99e1bd15472d1c1e378529 Author: Sven Neumann <neo@directfb.org> Date: Wed Oct 9 13:09:16 2002 +0000 fixed typo in a comment commit 21dc6579b799ff1f38759b0a5fb7327dbbd99d1f Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 8 19:38:38 2002 +0000 Invisible windows are not allowed to request the focus. commit ae00cfa7b389194cf0d523096dd89d3555f6a0a3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 8 17:38:49 2002 +0000 fixed bug message commit d268c462861674375caeb42ec4221617ec8ce050 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 8 16:09:32 2002 +0000 removed debug line commit 0261a9e78bb8dcf406a3fbaf05fcfaed6adcb6fe Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 8 16:02:03 2002 +0000 Fixed joining, got broken an hour ago. Added assertions. Lock/unlock fix in arena code. commit 41b7ab030a33b163f4cca24ccf69ba4fec9df8ed Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 8 15:02:49 2002 +0000 same for single app commit 0b1f25c4e1095de06a48fc65e7a223baed526344 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 8 15:00:21 2002 +0000 Better error handling in init code. commit ee0cb85b717770d68e8b2dc18d4ab2d201835308 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 2 19:37:23 2002 +0000 Moved layer config stuff from IDirectFBDisplayLayer_Construct to IDirectFB. commit d7f6738c5f4f18ac58b6edfe8fa380023104c34e Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 2 18:37:15 2002 +0000 Cleanup of DirectFBCreate. commit a67bf6c0af13261e28361dd104270fe0c5e71569 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 2 17:42:03 2002 +0000 Speed up reactor_attach/detach by writing reaction information to a provided memory location which is also passed to reactor_detach. Check depth specified in the configuration. commit 286d23436e30c0f489dfb5aa51b84ac0a3b498fb Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 2 14:48:22 2002 +0000 Don't detach reactor threads. commit ce761a54fc883f879bde627e5fa99bb56dbc62c7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Sep 30 17:09:10 2002 +0000 arg, ref/unref typo commit 7c0901730957d2bdc8c3a0b63a5806f19e87de65 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Sep 27 18:31:15 2002 +0000 Event buffers created by "IDirectFB::CreateEventBuffer" will discard raw input events until the application is fullscreen or has a focused window (primary). Buffers that always get input events can be created via IDirectFBInputDevice. commit ab05499e6350551acf23245f93a56101d648a56d Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Sep 27 17:23:54 2002 +0000 oops commit 925b248798fa7627ee278033710b078b9d0a6f61 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Sep 27 17:02:21 2002 +0000 Removed more unused stuff. commit bcc7c4c604663ec248a43d9502f5581b818d392d Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Sep 27 16:50:21 2002 +0000 minor optimization commit ff53e701d4fe411f5346e9d89567f35ce2cc092e Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Sep 27 15:52:49 2002 +0000 Fixed copy'n'paste error. Don't print error message if opening /proc/... failed. commit aa0037716dbe73b529afce119f3fba732cc09165 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Sep 27 14:16:27 2002 +0000 Fixed MMX test. commit d2ff259de54af8f675fc0459b8c0267ff475da29 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Sep 27 14:15:02 2002 +0000 minor fix commit a3437ed8163af1d42278896800f6f039b4a25265 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Sep 27 13:54:43 2002 +0000 Assembler routines converted to inline assembler, thanks to Johannes Stezenbach <js@convergence.de>. commit 12013430c0a1b9ea8f8389af1b7a124f00cde2ec Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Sep 27 12:51:04 2002 +0000 Added Billy Biggs <vektor@dumbterm.net>. commit 444e10319e0a456a2e26bb478632cede3a679c61 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Sep 27 12:50:50 2002 +0000 Applied patch from Billy Biggs <vektor@dumbterm.net> adding IDirectFBDisplayLayer::GetCurrentOutputField(), experimental and may change. commit b05256f758d208a246c04e4783689b45fa92a67a Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Sep 27 12:37:45 2002 +0000 Destroy windows only in IDIrectFBWindow::Destroy(), do unref otherwise. commit 1d003c191c32b7444af01724ad6dce8adf6bbb8a Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 26 16:25:14 2002 +0000 Use new module handling for core systems. Added fusion_ref_stat() for debugging. dfbdump now displays the number of references in front. commit c755b5b071e46d2170b0297542db96f891bf1692 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 25 14:54:39 2002 +0000 Fixed multi app build. commit 2bca0eca6df894ed0738fd848ff9feb7e623a22b Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 25 11:18:42 2002 +0000 Graphics drivers are handled via new module functions now. Removed obsolete abi version stuff from graphics and input code. commit 6cd3eff8809dbb17f9b84c75cccca3c77b85a313 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 25 10:21:16 2002 +0000 Added the ability to change a window's opacity by holding Alt while holding CapsLock or Meta moving the cursor on the x axis (for wheel less mice). commit 764a9d32fc1308f5be2ac6ca13c775921e664cb8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Sep 24 17:38:02 2002 +0000 Added another assertion. commit 0115d9cd04d3ad572063a82570a6ac3a4118d09b Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Sep 24 17:35:21 2002 +0000 Added new module management functions featuring module references/unloading. Input driver modules are already handled this way. commit 96a06c05c51ac94ccc4420461c0d4602ed112d46 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Sep 23 15:22:21 2002 +0000 Implemented Bop_a8_Kto_Aop, Bop_a8_SKto_Aop, Sop_a8_Kto_Dacc, Sop_a8_SKto_Dacc and Sacc_to_Aop_a8. commit 5d09bfa1218a4834624f91aba72ad74fd32923c9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Sep 23 14:57:11 2002 +0000 Add "-ldl" and "-lpthread" or "-lc_r" conditionally. commit a0abdc42925f10673c191765bb76f69e9970ef26 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Sep 23 13:58:09 2002 +0000 Updated static build script including support for sdl. Uses pkg-config now to determine prefix and module directory. commit 57cffccd07db9f49b755a389f86839b94c4a6852 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Sep 23 12:48:24 2002 +0000 Added required quotes for test in case CFLAGS have been set. commit f55e050dad82d7f20c46ff3b56168c4b53824f74 Author: Andreas Hundt <andi@directfb.org> Date: Mon Sep 23 11:47:55 2002 +0000 icheck for target host type before libdl and pthreads commit dc4e00d3462a9a33d500c5684c8413781677a860 Author: Andreas Hundt <andi@directfb.org> Date: Mon Sep 23 11:42:01 2002 +0000 do not check for libdl on freebsd, check for phreads in libc_r on freebsd. commit d6894a2b896630203468087a2b98baaef5bc676e Author: Andreas Hundt <andi@directfb.org> Date: Sat Sep 21 22:12:43 2002 +0000 FreeBSD sync: include <sys/param.h> before <sys/user.h> commit b4ee07d00c228782a402791aa2766029cfb39378 Author: Andreas Hundt <andi@directfb.org> Date: Mon Sep 16 22:51:46 2002 +0000 only include asm/page.h on linux commit 08df666a07b796ec5a3b29a5e22963f5eda4bf87 Author: Andreas Hundt <andi@directfb.org> Date: Mon Sep 16 22:35:32 2002 +0000 do not build arena.c fusion.c lock.c util.c and fusion_shmalloc.c when compiling without single application core commit a3cb2a8364949d437e326659acd8ca28b80ce5ba Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Sep 13 14:26:18 2002 +0000 Fixed flag definitions. commit 520ded2cd03d47f5c174730f679839f47a7a8b08 Author: Andreas Hundt <andi@directfb.org> Date: Wed Sep 11 23:54:23 2002 +0000 build tools on non-linux platforms. do not use <asm/byteorder.h> in raw32toraw24.c commit 9778c03696eae28a3023634f1ec8a868532a6889 Author: Andreas Hundt <andi@directfb.org> Date: Wed Sep 11 23:29:51 2002 +0000 include <sys/types.h> because darwins <sys/mman.h> depends on it and doesnt include it by itself... commit 2d1242ef5fbac23888819deb83d59670f61b56d2 Author: Andreas Hundt <andi@directfb.org> Date: Wed Sep 11 23:26:15 2002 +0000 - added extern to declaration of dfb_memcpy() to avoid problems with non-gnu linkers. - only include <asm/page.h> on linux, guess PAGE_SIZE = 4096 on other platforms (bad) - only define MIN and MAX when undefined (fixes problem on darwin) commit a3e333635ec5288e50730f8cd52b735e695a4a4b Author: Andreas Hundt <andi@directfb.org> Date: Wed Sep 11 23:14:59 2002 +0000 only build gfxdrivers, tools, inputdrivers and v4l provider on linux commit 09d0632730c73e25b8d439e9e92005adfd42107a Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 11 15:58:05 2002 +0000 Avoid naming conflict of log2 with tgmath. commit c7be5e5e9e0353d74801dfd3a20a654b5ba5f15c Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 11 13:08:32 2002 +0000 updated commit 1af2113e9e73a05d6c0b5335c92c1a3818541c32 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 11 12:39:16 2002 +0000 Color hash is multi app ready now, palette seems broken though. commit a64ab7f3a8176a2d78bac873076ba172e48eb561 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 11 11:05:47 2002 +0000 Force window creation without alpha channel if "no-translucent-windows" option is used. commit 61dded44f448fc905496631e591b4750cc0ce55c Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 11 10:47:07 2002 +0000 Added debugging tool dumping information about existing windows and surfaces. commit 35886fb6038458ce6a3bcccdbfc0ed064d351c98 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 11 10:29:37 2002 +0000 Send CSNF_SIZEFORMAT notification. commit 40cbab080dc1cdc82a271d98e5c6e8ea77295cb0 Author: Andreas Hundt <andi@directfb.org> Date: Tue Sep 10 23:37:54 2002 +0000 use AC_C_BIGENDIAN (AFAIK even works when cross-compiling with automake2.53) no longer include <endian.h> which seems to be linux specific, use #ifdef WORDS_BIGENDIAN instead of #if __BYTE_ORDER == __BIG_ENDIAN commit 3a8011e9fa9d7c67952598fc06218da178a89def Author: Andreas Hundt <andi@directfb.org> Date: Tue Sep 10 21:47:33 2002 +0000 oops commit 919cdb0e376407c0a4961bbf4d50a91c1fde5a85 Author: Andreas Hundt <andi@directfb.org> Date: Tue Sep 10 21:42:03 2002 +0000 do not include <asm/types.h> directly. added dfb_types.h which includes <asm/types.h> on linux and <sys/types.h> on other platforms commit 96fda3c1457333c488030c69f399852233832ebd Author: Andreas Hundt <andi@directfb.org> Date: Tue Sep 10 20:31:35 2002 +0000 added AC_CANONICAL_HOST and AC_CANONICAL_TARGET to avoid this problem with libtool on darwin ltconfig: you must specify a host type if you use `--no-verify' Try `ltconfig --help' for more information. configure: error: libtool configure failed commit 3a41798d38f2c7ae0802ba49e522a774925e7e6a Author: Sven Neumann <neo@directfb.org> Date: Tue Sep 10 18:18:13 2002 +0000 s/dfb_fbdev_wait_vsync/dfb_system_wait_vsync/ Include <linux/fb.h> in order to get FB_ACCEL_* defines. commit 96bf6f9ca3f3dc3dbb460409263ab1f60ad8b691 Author: Andreas Hundt <andi@directfb.org> Date: Tue Sep 10 16:35:53 2002 +0000 no longer include malloc.h (sync from my OSX tree) commit bcc976d9e6b01c6ceeea8ad81396d0cbfc5ef1a3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Sep 10 16:14:25 2002 +0000 Use high priority for video threads, detach from surface correctly. commit a736f041db97604f9d0a7b87d7ef485fdefd3f38 Author: Andreas Hundt <andi@directfb.org> Date: Tue Sep 10 15:41:13 2002 +0000 support for building DirectFB without fbdev support. (first sync from my OSX tree) commit f710f1c66046b74292b9deccb17f5ea9dc711d9b Author: Sven Neumann <neo@directfb.org> Date: Tue Sep 10 15:22:30 2002 +0000 Assign new width, height and format before checking if a reallocation is necessary in dfb_surface_reformat(). commit 8bf89978ba0f5d06aadafad5f56c2e6cb26e52e4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Sep 10 14:50:39 2002 +0000 Finished key translation. commit b2173c135469c60fb0bde12851ff2f274220221d Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Sep 10 12:51:56 2002 +0000 Two 0.9.14 TODOs. commit e331cf4233bb67c7176a36e12ff4286d95fd94ba Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Sep 9 17:30:04 2002 +0000 color hash for multi app is broken commit 67ec8a0a4c7bce83d3457d09bf54ce37efcf493e Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Sep 9 17:01:23 2002 +0000 minor clarification commit 3e1bd82ffd032c2ecc02e633f08732f129bccb92 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Sep 9 17:00:06 2002 +0000 update commit e72de04277ef69d5b3ff1570e8989db15edde11e Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Sep 9 16:43:33 2002 +0000 updated commit 638246a87dffcfe28714998de7072f198a5b3826 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Sep 9 16:25:15 2002 +0000 debug output adjusted commit 9c2968f24bd1c13124bc82b93ac723e0e4b33bab Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Sep 9 16:15:08 2002 +0000 Added orphan detection to FusionProperty. The window stack and video mode are now restored even if a fullscreen application simply exits or gets killed by any signal. commit afeddd49f3de304f18dac8f7329c9196ae614e9e Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Sep 9 14:26:50 2002 +0000 Added function for retrieving the window pool from a layer. commit 922bdddf1329438b7ce364b91e4838d44d3ff697 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Sep 9 14:02:04 2002 +0000 Added fusion_object_pool_enum() for enumeration of all objects. commit 6e61a6d7145d77e4351ae2201b8d09050afa7e2d Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Sep 9 11:30:56 2002 +0000 Now half line, not half texture ;) commit 218e7d9bf46545b95592b928fa34a0ef2f177872 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Sep 9 11:21:28 2002 +0000 Half line adjustment for deinterlace blits. commit c6fcfb79e8959db86c4a4525efeddaba6e805521 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Sep 6 17:25:54 2002 +0000 Fixed CreateWindow with DWDESC_SURFACE_CAPS. commit d5a1b39097f4c4a0c37a4a4967c2ef46aae9824b Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 5 17:41:11 2002 +0000 Made black RGB332 entry transparent for testing. commit e72f93259400b7d15c43ea3d075bbc56e51f476c Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 5 17:29:08 2002 +0000 Reexported "dfb_fbdev" as a hot fix to have the Matrox driver compile again. commit 770d2be4f271e94721e4ad74589f53b479b2a9f4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 5 17:00:38 2002 +0000 Changed LED behaviour. commit 6790cbb35db0b4e4959c7e1de861a09aa2e5caa4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 5 15:55:59 2002 +0000 Added Meta (or Windows) key to wm hack. commit e7a587a7c2dc46af3a8d251a589e15cb35e3dd4c Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 5 15:52:40 2002 +0000 Don't generate RGB332 entries if palette already existed. Generate RGB332 entries after creation of layer palettes. commit bea25135f76724ebab6c97401dc5e663bf510327 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 5 13:12:11 2002 +0000 Added IDirectFB::CreatePalette(). Added IDirectFBSurface::SetPalette(). Added IDirectFBPalette::GetCapabilities(). Added IDirectFBPalette::CreateCopy(). commit 464d69698dc88a05f75d7795bb8e081764e9a07d Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 5 12:07:41 2002 +0000 Fixed warning in "layers.c". Small fix in SDL input driver. commit ca19ddcf64082a77de4ad79b95848fa93ce40694 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 5 11:54:46 2002 +0000 Fixed summary (SDL support yes/no). commit 85046c9a5fa5cee34f65e7bf1af40312a0546ae1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 5 11:48:03 2002 +0000 Another patch from Ville Syrjala <syrjala@sci.fi> adding planar YUV blitting. - DoBlit2D_Old(), DoBlit2d and DoBlitTMU() initiate the blits - The are called from Blit2D_Old(), Blit2D() and BlitTMU(). - StretchBlit() and Blit3D() simply call BlitTMU() with proper arguments. - Clipping registers are updated for chroma planes also. - Register programming is not done in validate_source() or validate_Source() anymore. All source related programming is done from the blit functions. - I changed the code for all cards. Only tested on G400 as I've misplaced my G200 smewhere and I don't own any other cards. Added him to "helping developers" in AUTHORS. commit 049818eeb139dd3be40004d9ef8ac2bc841a79f5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 5 11:36:22 2002 +0000 Second head support via additional layers by Ville Syrjala <syrjala@sci.fi>. New option "matrox-crtc2" to activate this. commit 9d2818c7e55378becc82458963d4bd7fa9073e35 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 4 16:12:32 2002 +0000 This patch from Ville Syrjala <syrjala@sci.fi> adds YUV rectangle filling support for planar and non-planar formats. commit 0d92ecb0e0981497266c5061fdca6fd48325fa05 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 4 16:03:57 2002 +0000 Millenium -> Millennium (thanks to Ville Syrjala <syrjala@sci.fi>). commit dd9e7f1be8c679261ac82432385a37265b8f5bdd Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 4 16:01:17 2002 +0000 Added Matrox CLUT as a todo item. Set DSCAPS_INTERLACED in the surface description of the v4l provider. commit ed5a3c19fc16ffff7bf2ab437d07e375d1656ffd Author: Sven Neumann <neo@directfb.org> Date: Tue Sep 3 11:37:19 2002 +0000 Document the new system parameter. commit 80bdc5efafe2112b63cba1986dd3e976a443e7a4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Aug 30 19:12:12 2002 +0000 Fixed crash with debug mode (with linked in modules). Fixed multi app core system init. commit f91075b320fa153ab2c36fe542ce19a051fd3dac Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Aug 30 17:49:58 2002 +0000 Started abstraction of the "core system" featuring the "fbdev" system like before and a new experimental "sdl" system. Yepp, DirectFB running on SDL. Use "--dfb:system=sdl" to run applications under X. commit 185253fa0ad89db0a22e48399dfcfeb32f8e332e Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Aug 30 11:55:58 2002 +0000 Fixed driver, compiles again. commit a8c23dc40331d408849a3cb7cd963e49d94d0bfa Author: Sven Neumann <neo@directfb.org> Date: Thu Aug 29 00:45:09 2002 +0000 Removed a spurious space that broke the build. commit 7bad83c881a1031968398c6df4c73d0796ab3b9f Author: Andreas Hundt <andi@directfb.org> Date: Wed Aug 28 21:34:58 2002 +0000 - fix for big endian hosts, driver should work now - wait for 4 instead of 3 fifo slots for line drawing ( this fixes crashing of df_dok on my Geforce 2MX commit cb4da84f482cc299b913e12dc700cefc77070907 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 27 17:41:18 2002 +0000 Outlined some inlines. commit 5ab3a02ac4447f3adb354c005ba8d91aa0c3a3a3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 27 17:23:30 2002 +0000 Added missing call to colorhash_detach(). commit a95aee429967f857320ebf3e1e7a1fa1df915e40 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 27 14:03:26 2002 +0000 Added IDirectFBSurface::SetSrcColorKeyIndex() and SetDstColorKeyIndex(). Added LUT8 and RGB332 acceleration to NeoMagic driver (now version 0.3). Added referencing of the window to IDirectFBSurface_Window implementation. Increased version number to 0.9.14. commit f91bc0287a4d1ce34a21386b3fad74be840c42e7 Author: Sven Neumann <neo@directfb.org> Date: Mon Aug 26 22:28:30 2002 +0000 Call 'libtoolize --version' instead of libtool. commit 79387cf9eb15a0a75c956cc68257ea323c819919 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 26 19:21:01 2002 +0000 DSCAPS_SEPERATED -> DSCAPS_SEPARATED commit fae6fe5a85ec5f1ecfdd10287bba2c31bebdc140 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 26 17:47:24 2002 +0000 Use DSBLIT_DEINTERLACE if window surface has DSCAPS_INTERLACED. commit 3594fdfd39c7cd05412fb2cfec8d2869975602fe Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 26 17:44:55 2002 +0000 Added experimental blitting flag DSBLIT_DEINTERLACE and implemented it in the Matrox driver, not tested yet. commit 70af58bfedcc544f3bc7cf0cbd283b85860831a7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 26 17:13:17 2002 +0000 Added CSNF_FIELD as a notification causing the 'source modified' bit to be set. commit 24b6def8cb65fdae3bb486dd9e79a736454bb267 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 26 15:42:39 2002 +0000 minor update commit 393bf59b86600d972e4eab00946d023a78b351ad Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Aug 23 18:26:45 2002 +0000 removed field switching todo commit 15d62cd593c9424aca239e01d7e956fc70db0baf Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Aug 23 18:26:14 2002 +0000 Added IDirectFBSurface::SetField() which enables applications to manually control the deinterlacing of layer surfaces (with DLOP_DEINTERLACE enabled). commit 1b30e86ad024a0bbfa4b51d53c5121694859d248 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Aug 23 18:00:37 2002 +0000 Keep alloc_list after debug outputting it to avoid crash by further deinits. commit 6a767de7c231201423e523c5d3cb39f5b3530539 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Aug 23 15:24:50 2002 +0000 fixed init/deinit related things commit cf397cbfc473d6cbdeb3621c00569828f8b47130 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Aug 23 14:06:27 2002 +0000 Fixed two mem leaks (two unreachable blocks after exit). Don't reload input and graphics modules. commit 025f1e9aa100648d2a97e514537e2992140489fe Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Aug 23 13:12:55 2002 +0000 Use shcalloc instead of shmalloc. commit 3c57dc9c6e1fff87d7da306fb58c1fefe0750901 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Aug 23 12:43:49 2002 +0000 Added "-g" to non-debug mode to have line numbers in gdb without enabling the DirectFB debugging code. commit 8412ba96ea13a6f9f8e9a5713769f903214da545 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Aug 23 12:24:28 2002 +0000 Added missing closedir(). commit 8021d6a6052398970beb5b8c9bff903ec0f1f622 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 22 22:40:23 2002 +0000 updated commit fbaa2571aeca3f609074639a70e7113f766cf217 Author: Sven Neumann <neo@directfb.org> Date: Thu Aug 22 22:20:54 2002 +0000 Updated NEWS. Forced directfb.h into 80 columns. commit 1e6912e025a98cad83cc0e11f4d4913f8a0a6a41 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 22 22:19:51 2002 +0000 cheating ;) commit 5b8032be7084b3d73354916fc6416bd472ab5321 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 22 22:15:23 2002 +0000 Do a skirmish_prevail during shutdown if it's no emergency instead of the skirmish_swoop loop. commit 0721c8ac02489be35c7f83da99acbb0bbdeac45a Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 22 22:05:44 2002 +0000 Added "do { ... } while (0)" to debug macros. Don't print an error if message queue id is removed, but print a debug message. commit 775c31d6da41285c7adbee2d683c00c2f7139204 Author: Sven Neumann <neo@directfb.org> Date: Thu Aug 22 21:58:22 2002 +0000 Made init_modes a static function again. Call the original InitLayer function and modify the configuration instead of doing the whole setup in savagePrimaryInitLayer(). commit 7350fc81c933e9216f450042184f68f3583473d0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 22 21:54:52 2002 +0000 Shutdown input core before anything else to stop input threads early enough. Don't create a palette for non indexed surfaces by default. Create it on demand during surface reformation. Fixed missing initialization of semop flags regarding global references. commit 5e42308883cae850a859769aad3a53a58be6295f Author: Sven Neumann <neo@directfb.org> Date: Thu Aug 22 21:06:45 2002 +0000 Made the GIF provider less verbose. commit ab757525907413bc0b5907d0737b66d44ea50bb3 Author: Sven Neumann <neo@directfb.org> Date: Thu Aug 22 20:42:37 2002 +0000 Added a global (per process) color hash table to speedup palette lookups. commit 96e2dce9e405e4a11d9262845964eeb6c841af30 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 22 19:16:57 2002 +0000 Made event thread robust against EINTR. Use new core thread functions. commit c034bcefff925a68b344af7d9818c2584bb4ba55 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 22 19:03:20 2002 +0000 Added core functions for thread management to have input drivers pthread independent for easier porting. Input threads get a higher priority now. commit bbb5370ee7fe5f5918358f25900a2d7c9fbe7f85 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 22 17:48:40 2002 +0000 Fixed dead lock in recently implemented FusionProperty (multi app). commit abcf5116e02a4cca965b298598becfbcb30cc419 Author: Sven Neumann <neo@directfb.org> Date: Thu Aug 22 12:28:11 2002 +0000 Applied a patch from Alex Song <alexsong@comports.com> that add flipping support to the secondary layer. Export former internal function init_modes() as dfb_fbdev_init_modes(). commit ea8e281f9cfa108c94067f02cb1410134772bb30 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 20 19:55:00 2002 +0000 Modules are installed to ".../lib/directfb-0...-debug/" if debug is enabled to avoid dynamic linker errors. commit d9c50ab9a6711c3714f78f03f00ca47db5eaee31 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 20 19:35:23 2002 +0000 minor update commit c03e159f4f8dd4b83724bbe3990b3b04fb31a486 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 20 19:10:48 2002 +0000 Added malloc/calloc/strdup debug output. Beautified debug output and made fusion debug output like the core's DEBUGMSG. commit 2eea56839bceeb5b4e79c4a178b6019ab2822eef Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 20 17:53:13 2002 +0000 Surfaces can now be created (in core) using the palette of another surface. Window surfaces are now created with the layer's palette (real reference). commit 0cb47ba756fc6afdc1a9a3f1dd302424842113f5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 20 17:24:46 2002 +0000 Removed locking recently added. commit 55d9933c1f47c29c866f88477118fc81aa8059c6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 20 17:15:59 2002 +0000 IDirectFBPalette is now completely independent from surfaces. Added palette notification for entry modifications and palette destruction. Attach a palette listener to a surface's palette to notify surface listeners. commit f7cf8de3688b55999d1f76dbf2cc7fd4eb2245ef Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 20 16:10:54 2002 +0000 Unref surface after linking it instead of unref during window destruction. commit c5f8f0cb485dae882dd9aee76cbcd6b1834c4a61 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 20 16:04:28 2002 +0000 CorePalette is a FusionObject now with its own pool. Currently each surface creation causes the creation of a palette object, it's then linked to the surface object and unref'ed. commit 39e43e392ea00ff5415b827819adc286bc6c0eeb Author: Sven Neumann <neo@directfb.org> Date: Mon Aug 19 18:21:54 2002 +0000 Indentation. commit 45ac939ffaabe063fd492c55e2da7a5d52512fe6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 19 16:23:48 2002 +0000 Provide shmalloc/shfree debugging for single app core. Avoid calling shfree() with NULL. commit e53e5064410475b75c2b10514df2f1d4f34b3dee Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 19 13:29:45 2002 +0000 Fixed cursor alpha blending. Added 'CAUTION' messages to unimplemented cases of surface heap adjustment. Added locking to window stack cursor handling. commit 7adca67032e6b45a2ef7e66036cac3a11ca66804 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 19 13:03:37 2002 +0000 removed obsolete entries, sorted entries by priority commit 637a1c2a91010da804144b984f936df427986c1c Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 19 12:49:15 2002 +0000 Added DWOP_ALPHACHANNEL to enable/disable per-pixel blending after creation. Only supported by windows with the capability DWCAPS_ALPHACHANNEL, which have it enabled by default. commit a4ae71f2965f220dd4f3a58664a3690f8a09d834 Author: Sven Neumann <neo@directfb.org> Date: Mon Aug 19 11:35:29 2002 +0000 Removed bashism (function keyword). commit 0ab0a8637f74162bc1b5a715b8db848a3ad2f350 Author: Sven Neumann <neo@directfb.org> Date: Mon Aug 19 11:35:06 2002 +0000 Removed bashism (function keyword). commit 6ba55f17c2726496cf3ec73b192ff18b63b25c0d Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Aug 16 18:40:19 2002 +0000 minor simplification commit cb271c77b697b8e5ae75b94c29059a9ce6a11576 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Aug 16 14:14:43 2002 +0000 Added DSCAPS_STATIC_ALLOC and DWDESC_SURFACE_CAPS. commit 573c565430aaea152529f6617e76a13df5972533 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Aug 16 13:15:51 2002 +0000 Fixed bug introduced last night. commit 692a4ca293f77c5559e5a9fcf0381f640abca197 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Aug 16 12:15:15 2002 +0000 Don't lock/unlock buffers during surface destruction. commit 007b6cb06f50cb93cdae116c6922a22ffa9620c4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Aug 16 08:32:28 2002 +0000 Framebuffer is now mapped by 'fbdev' instead of 'gfxcard'. Reordered initialization/shutdown/join/leave calls in 'core'. commit 205d8a423ad8b88727f14d5dacba2b0aaf8c8545 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Aug 16 03:45:06 2002 +0000 EnumVideoModes handles bpp again. commit 1cc3c5bb941d63b1a528cf7ecf756ac5af251e00 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Aug 16 02:51:00 2002 +0000 Implemented FusionProperty in multi application mode (via three semaphores). Implemented backup/restore of the layer configuration before/after excl. access. commit 0b876569e2a03127085453ca679b0df4501cf7fe Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 15 21:46:48 2002 +0000 A bit work on cooperative levels. commit c5b9b7a560bcdf95267f8df5da6e80eba330e7ab Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 15 21:00:29 2002 +0000 Avoid endless waiting during deallocation. commit 9476e636625bf940cc4abac0a6e86121c6b1afe6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 15 18:53:55 2002 +0000 DirectFBError() and DirectFBErrorFatal() return the error code now for easier code (e.g. return DirectFBError(...)). commit 0a6360eca46118222722c00c5546638bf668e667 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 13 19:10:13 2002 +0000 Made debug message an error message (background surface vanished). commit 765824aadf41a59cc9a4185e737153f784f414d4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 13 17:49:42 2002 +0000 Background image is now persistent (application can exit after setting it). commit 2db3eb090023731bb02304da690a1512202c2c19 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 13 17:08:49 2002 +0000 Fusion debug messages are printed only if debugging is enabled at runtime. commit d00b2894c7e5cfc20187afd47e979ff6d24e835f Author: Sven Neumann <neo@directfb.org> Date: Tue Aug 13 16:43:20 2002 +0000 Updated the Makefile accordingly. commit 683b0e1dec31d9c09d4f6653e32141c327151c9d Author: Sven Neumann <neo@directfb.org> Date: Tue Aug 13 16:42:23 2002 +0000 Updated savagefb-0.4.0 patch based on a patch from Alex Song. commit 0b50ef53fed7af34cb559d40d8c5e4eea12dafb7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 13 16:32:12 2002 +0000 Implemented ovlFlipBuffers(). commit 0819e441f1ab8742ba466f3eb52a20611930b515 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 13 15:15:50 2002 +0000 CardState is a local resource now, using a mutex instead of a skirmish. The state for window stack updates is now located in the local layer data. Added deinitialization of the surface manager. No resource leak by starting/exitting a small application. commit 15d59c025572010ba2b150608a59426bee4e3617 Author: Sven Neumann <neo@directfb.org> Date: Tue Aug 13 11:56:04 2002 +0000 Implemented Sop_lut8_Sto_Dacc() and Sop_a8_Sto_Dacc(). commit f4c64bd77fbe45721c84d13d13b8aa88e38822f3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 13 11:01:39 2002 +0000 more compile fixes commit 21d0351157a148d08a34a91d9184e0d1f3b6ba9e Author: Sven Neumann <neo@directfb.org> Date: Mon Aug 12 23:58:50 2002 +0000 cleanup commit f3d3f9a5034c2ac644a659d9e49a6399e261777c Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 12 20:42:25 2002 +0000 Hopefully compiles again. commit c6b0d63024ff3035c8350269872d47106a051eb5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 12 19:30:44 2002 +0000 Another TODO item: synchronous messages commit a224317c241dee4211c410bfd82a4cc9193fe8ed Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 12 19:27:53 2002 +0000 Added TODO item for making CardState local only. commit aa3eac47031a78975bbf88f160921641a3582355 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 12 19:11:33 2002 +0000 Don't install signal handler for slaves. commit 3ee5854577d2637ac153aba2d61e89865480da7f Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 12 18:59:36 2002 +0000 Made CoreWindow a FusionObject. commit 0c132f42a0428211e79bf0b227410f8b6eaf2df9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 12 17:43:57 2002 +0000 Each object pool has a name now. Added shstrdup(). commit 27cd209d227a378d111a36116351b7f2568338ce Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 12 16:41:22 2002 +0000 Added FusionObject which is currently used for surfaces and will be used for windows (dynamic resource) or static resources like layers, input devices... Each FusionObject has a reference counter which is automatically decreased if the process dies that increased it. Added bone collector thread that checks for dead objects (zero reference) and calls the destructor (master only). Replaced dfb_surface_destroy() calls with dfb_surface_unref() calls. Each IDirectFBSurface instance increases the reference counter, so be careful to release all sub surfaces. commit fe6adfc2f803a4e42d6043ddceaef84e478ba5ac Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 12 14:44:26 2002 +0000 cleanup commit d435c45f6bd3258204b92b579a6973b05456eaa1 Author: Sven Neumann <neo@directfb.org> Date: Sun Aug 11 14:32:37 2002 +0000 Reverted my last change since the compiler seems to like the old code better. commit 865739f917f90a015d616ca5186af037d2d4e110 Author: Sven Neumann <neo@directfb.org> Date: Sun Aug 11 14:26:15 2002 +0000 Cleaned up Bop_a8_set_alphapixel_Aop_rgb24(). commit cef004a1e1012adc965bc1306badc2b1034517e9 Author: Sven Neumann <neo@directfb.org> Date: Sun Aug 11 13:30:45 2002 +0000 Removed unused locking code. commit e62f8d8890ed55e9e0a02bb68f68094443603c6d Author: Sven Neumann <neo@directfb.org> Date: Sun Aug 11 12:52:18 2002 +0000 Aligned configure output. Don't use duffs device for Bop_a8_set_alphapixel_Aop_lut8(). commit 55116b98bd235597303c3eb82705e33e34f743da Author: Sven Neumann <neo@directfb.org> Date: Fri Aug 9 17:35:43 2002 +0000 A better implementation of Bop_a8_set_alphapixel_Aop_lut8(). Much slower but correct for AA glyphs and reasonably fast for monochrome ones. commit bbae4fac76aa45eca8a9d9e4ba9291c7b81e24b0 Author: Sven Neumann <neo@directfb.org> Date: Fri Aug 9 14:18:34 2002 +0000 Reuse Bop_a8_set_alphapixel_Aop_lut8() for RGB332; it's the same code. commit dc0d6fb4d5a0221acbc22dc742a6b055eb442548 Author: Sven Neumann <neo@directfb.org> Date: Fri Aug 9 13:37:08 2002 +0000 Set the color_index in the font_state as well. Added a simple implementation for Bop_a8_set_alphapixel_Aop_lut8(). commit b53dbe488c331539f20647af966b33a5aabbe6e8 Author: Sven Neumann <neo@directfb.org> Date: Fri Aug 9 12:05:09 2002 +0000 Document the disable-module directfbrc option. commit 26e472e21974e588f0f9bbd4828ed881c82936b7 Author: Sven Neumann <neo@directfb.org> Date: Fri Aug 9 10:37:10 2002 +0000 Introduced an enum for the stage to improve code readability. Check if we reached our final stage in the inner loop of push_data_until_stage(). PNG images load again :-) commit dd8f99b316f90ec1b72d5a783542b6fb7895fcfc Author: Sven Neumann <neo@directfb.org> Date: Fri Aug 9 09:46:34 2002 +0000 Check that png_ptr is not NULL before calling png_destroy_read_struct(). commit 43ccc81580cbcd1eb2d7a65e29e125df9e51eb00 Author: Sven Neumann <neo@directfb.org> Date: Thu Aug 8 20:02:42 2002 +0000 Added inline function span_rgb32_to_rgb332(). Added support for RGB332 surfaces to directfb-csource. commit 9acbe1c2e4d6b87f980900bc09e4cee5fdeb824a Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 8 17:28:03 2002 +0000 Added a bool "global" to fusion_ref_up/down(). A global reference is not bound to any fusionee (anonymous reference) and won't be automatically decreased if the fusionee that increased it dies. This will be useful for resource cleanup if a core object is linked to another one (e.g. surface linked to window). commit 5bfc541847eb4acc18655fead9577879c4f61a79 Author: Sven Neumann <neo@directfb.org> Date: Thu Aug 8 16:56:59 2002 +0000 Removed unnecessary include of core/fbdev.h from savage3d.c. Include core/fbdev/fbdev.h from savage_streams_old.c :-( commit 6cf60a8c12a1e163947ff68398473c03c607c1b6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 8 16:41:45 2002 +0000 Moved framebuffer device specific files to "src/core/fbdev/". Only "gfxcard.c" still contains a bit fbdev code. Other files modified depend on the fbdev code which has to be fixed. commit d451b6e9ef650b709639756cd869fcfc3f7c8c84 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 8 16:00:34 2002 +0000 A filename is now contained in the common private data of data buffers. It is set if the databuffer is created for a file. Image providers that do not support data streaming can use it as a fallback. commit 51562d51675db2919e39071d4308ebb6cb6a0d0a Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 8 15:32:42 2002 +0000 minor cleanup commit 85970d7ad115511529a8e293bcc2aa764c14e8a3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 8 15:14:01 2002 +0000 Abort data streaming if error is detected. commit 79d3a8429918c26e882b3926e98e666e10222d6d Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 8 15:06:21 2002 +0000 Added DFB_UNIMPLEMENTED returning methods for SetRenderCallback(). Forgot to add a "return" if no system memory could be allocated. Started implementing the render callback for PNGs, not working yet. commit a559d31a2d2f5a54529dbf9713158fe224887bcb Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 8 14:58:07 2002 +0000 signed/unsigned switch commit 5dad1d33a9136df54cd843c6c11b7785b16469b6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 8 14:57:50 2002 +0000 Added WaitForData() call before peeking 32 bytes. commit 10fe1a06206d1af286f4f48df6632e5391a75715 Author: Sven Neumann <neo@directfb.org> Date: Thu Aug 8 14:54:22 2002 +0000 Added another format conversion by reordering the switch statement :-) Put palette info into the DFBSurfaceDescription. commit ef7fa845ee1619693b8e19352db183e891b7394a Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 8 14:42:42 2002 +0000 Added DSDESC_PALETTE which can be used to initialize the surface's palette. Added IDirectFBImageProvider::SetRenderCallback() that is not implemented yet. commit db62c19693b6244ce47b8343603966cd17b256cc Author: Sven Neumann <neo@directfb.org> Date: Thu Aug 8 14:20:09 2002 +0000 the final touch commit 73ba2b01f0a827d04d27c67a115f8a5a09780bff Author: Sven Neumann <neo@directfb.org> Date: Thu Aug 8 12:02:35 2002 +0000 Updated NEWS and ChangeLog. Mention the current problem with EnumVideoModes() in BUGS. commit 99c8913d591b49b19d55c9422c1682ffaf1a0d6d Author: Sven Neumann <neo@directfb.org> Date: Thu Aug 8 11:45:05 2002 +0000 Also dump the number of palette entries. commit 476d933abfa7013925a3a7a1fffdf3a1369343d6 Author: Sven Neumann <neo@directfb.org> Date: Thu Aug 8 11:19:22 2002 +0000 Dump palette from PNG file when the destination format is LUT8. commit a67a726305bd708d751968c3779d9f50ce27b033 Author: Sven Neumann <neo@directfb.org> Date: Thu Aug 8 10:16:55 2002 +0000 Allow to create LUT8 surfaces from indexed PNGs (need to add a way to dump the palette). commit 014977573bb22b48f2fea83205d61439c4b9cc86 Author: Sven Neumann <neo@directfb.org> Date: Thu Aug 8 08:50:30 2002 +0000 Align the pitch to multiples of 4. commit 697a81750023e7b16b0a8e28959bf297eafd9f1c Author: Sven Neumann <neo@directfb.org> Date: Wed Aug 7 23:14:19 2002 +0000 Fixed loading of grayscale PNGs into A8 and added support for loading RGB PNGs w/o alpha-channel into RGB24. commit d99866bae096916a55aa37d94a17e9f90dbc2e1c Author: Sven Neumann <neo@directfb.org> Date: Wed Aug 7 22:23:31 2002 +0000 Added two Makefile rules that might be useful to build only parts of the DirectFB package: 'html' creates the HTML docs 'directfb-csource' compiles the directfb-csource utility commit b3d34a58c70d3429ce08a45484b7bd3ec8bb38e6 Author: Sven Neumann <neo@directfb.org> Date: Wed Aug 7 22:00:00 2002 +0000 Added a man-page for directfb-csource. commit b1fb60939273bb8f13370ff7f9d1f16d61d17e12 Author: Sven Neumann <neo@directfb.org> Date: Wed Aug 7 19:07:12 2002 +0000 Added span_argb_to_a8(). Added Tim Janik to the list of contributors since I used some of his gdk-pixbuf-csource code for directfb-csource. commit a140b2eb4cc5668e05dfa9bef341bbf6c2cc0902 Author: Sven Neumann <neo@directfb.org> Date: Wed Aug 7 18:57:32 2002 +0000 Allow to specify the destination format on the command-line. commit 0e22f4b9c5946ad2a0caeff533d6eaa0fd7e79aa Author: Sven Neumann <neo@directfb.org> Date: Wed Aug 7 15:48:37 2002 +0000 Added directfb-csource, a tool that creates a C header file from a PNG image that can included in a DirectFB application. Based on gdk-pixbuf-csource. commit 1bb6971b3b94a48e1b395d998ef8086b294cd56a Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 6 19:12:05 2002 +0000 Forgot to lock/unlock during Flush(). commit f6ebe1e474522ceb18d80509dfbf082882f2ce55 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 6 19:11:05 2002 +0000 Completely implemented streamed data buffer, completely untested. commit b7d1c486fb79cb161823209f83fb013061f20ea3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 6 17:14:06 2002 +0000 cleanup commit e42871e1398fd46e73242b24c262768a713da5b2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 6 16:25:03 2002 +0000 Return DFB_BUFFEREMPTY in PeekData() instead of blocking forever. commit 81b53a34e438ac68937820f7fde5844e4658bc66 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 6 16:02:21 2002 +0000 Image providers now read data from an IDirectFBDataBuffer. JPEG and GIF providers cannot fully handle streamed buffers yet. IDirectFB::CreateImageProvider() implicitly creates a data buffer now. Added IDirectFBDataBuffer::CreateImageProvider(). commit 7cc036011c47758fb8be659619ba27337a3c920a Author: Sven Neumann <neo@directfb.org> Date: Tue Aug 6 13:27:35 2002 +0000 typo commit 4af91c64a409406da9a3cc95ddf56b9fc590917f Author: Sven Neumann <neo@directfb.org> Date: Tue Aug 6 12:24:04 2002 +0000 Call AC_INIT() with a sane value. commit 43e618956375f7c456c62709f62d741023a26cc5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Aug 2 17:21:59 2002 +0000 Don't reconfig front buffer if policy stays the same. commit 88140b6dd11d5fa7f181765857e1e10a8596beae Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Aug 2 13:16:05 2002 +0000 Implemented IDirectFBDataBuffer_File::PeekData(). Made "offset" for PeekData() signed. commit 9ff4d2a59ae55b08030eb9d0d4effffc33326c3f Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Aug 2 12:53:05 2002 +0000 Moved mode probing to primaryInitLayer(). commit 118d59bd6ea364c5bbd4aed1e9bd51070d4e6f26 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 1 13:48:28 2002 +0000 Reject RGB332 in IDirectFB::CreateSurface() if it's not compiled in. Initial work on data abstraction for image providers, etc. commit 5837463f42095d16a5f9de80267057654003eea9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 1 13:36:29 2002 +0000 Fixed typo, fixes a crash when blitting from LUT to RGB. commit 49c17ad43b1b208f35be31fcba223c4038056148 Author: Sven Neumann <neo@directfb.org> Date: Wed Jul 31 13:13:56 2002 +0000 Removed the version number from the README file for the matroxfb-vsync-irq-patch. commit c4185e2f583680e5cbc97bd3064e5872b6f1baee Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 29 22:47:18 2002 +0000 Added IDirectFBPalette::FindBestMatch(). commit fdb4c8fd1c6f19e4f93bcb611671a45a4871286a Author: Sven Neumann <neo@directfb.org> Date: Mon Jul 29 19:24:26 2002 +0000 Removed unneeded calls to IDirectFBSurface::GetCapabilities from RenderTo() functions. commit 140fbadf7729b41d0fad3106a5eeaa0c5654c87d Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 29 17:24:03 2002 +0000 Typo. commit e069f47632a77d9b01bd57a0046c26a055b87c66 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 28 23:09:25 2002 +0000 Added configure option "--enable-profiling". Added "alpha present" bit to LUT8, because the LUT has alpha values. Added LUT8 support to image providers. Added option "pixelformat" which overrides "depth" for the default mode. The value specified is e.g. "RGB332" or "LUT8". SetPalette() for display layers is now called by the core after setting a new configuration (for LUT8 only of course). Added dfb_palette_search() which (really slowly) looks for the best matching palette entry for a specific color. Generate a RGB332 like palette as default palette for LUT8. Allow other alpha supporting pixel formats than ARGB for alpha blended windows, too. IDirectFBSurface::Clear(), SetColor(), SetSrcColorKey() and SetDstColorKey() now lookup the right color index for indexed surfaces. Much more support for LUT8 in software driver. commit 8e30c980ea8da61209b28b51718bd19bd2829e71 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 26 16:28:33 2002 +0000 Fixed centering of primary surface window. Converted some unsigned ints to signed ones. commit 932e6c2392867b7ded7122248e06298ddf3b3d83 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 26 15:32:58 2002 +0000 two more bugs commit 741aec12afe6989678bedfe62f5ad4f51639fa4c Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 26 14:19:05 2002 +0000 Added another bit to the pixel format definition indicating an indexed format. Added DFB_PIXELFORMAT_IS_INDEXED(format). Added IDirectFBSurface::SetColorIndex() for indexed pixel formats. Enabled drawing functions for DSPF_LUT8 in the software driver. commit d1d08d8025d498195c72a637a14372b912295bdb Author: Sven Neumann <neo@directfb.org> Date: Fri Jul 26 13:53:46 2002 +0000 Declared the return value of DirectFBCheckVersion() as const. Assure that directfb.h fits into 80 columns. commit a441f469a8bef417043e3cc8d1d9e4d8f8fe6952 Author: Sven Neumann <neo@directfb.org> Date: Fri Jul 26 10:59:35 2002 +0000 some smaller README updates commit 37fc8263fca8153ab353896e2f2a332868b26612 Author: Sven Neumann <neo@directfb.org> Date: Fri Jul 26 10:49:19 2002 +0000 Updated ChangeLog and NEWS file. commit fd89587733a4cc8480726e67032a2e49de9bf7da Author: holger <holger> Date: Fri Jul 26 10:32:29 2002 +0000 implemented direct glyph mapping without charmap, toggled by the DFFA_NOCHARMAP flag commit 17e2e0d43832f40fb4863cb679b3c5ba252fb192 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 26 04:10:28 2002 +0000 Forgot to increase the ABI version. commit d20bdff707cd6f4100e8c9d3df9944bb8aeb934e Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 26 04:06:33 2002 +0000 Added SetField() to layer driver API, removed surface listener stuff from Matrox driver and implemented SetField(). commit a105b14d28c102df50ab58734eaf297cb992a02c Author: holger <holger> Date: Thu Jul 25 15:33:02 2002 +0000 fixed nasty off-by-one bug commit 62ea6a0e9a0c8fe26b36ebfba8ee89a2f8863a35 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jul 25 14:54:31 2002 +0000 Added DFBDisplayLayerTypeFlags for a basic classification of the layers' purpose a la DFBInputDeviceTypeFlags. Classification includes graphics, video, still picture and background usage. Added DFBDisplayLayerDescription containing capabilities and type for now. Display layer enumeration callback gets the layer's description now. Removed IDirectFBDisplayLayer::GetCapabilities() and added GetDescription(). commit 7b7f6668800158850f8f73cfca93ecac60863882 Author: Sven Neumann <neo@directfb.org> Date: Thu Jul 25 14:11:43 2002 +0000 small cleanup commit 08053094860209c41b56a277858c9b200d945d73 Author: Sven Neumann <neo@directfb.org> Date: Thu Jul 25 13:35:37 2002 +0000 Implemented input_only windows (windows w/o a surface). commit 67825aa7461002b2eb7a2889590b0f5b4547a617 Author: Sven Neumann <neo@directfb.org> Date: Thu Jul 25 08:24:28 2002 +0000 Declared DFBRectangle and DFBRegion as const function parameters for all functions that don't change them. This documents the API better and keeps us from accidentally modifying the passed structs. commit e7648dcedceb19557165ffca9b77fbf349e6495c Author: Sven Neumann <neo@directfb.org> Date: Thu Jul 25 08:19:46 2002 +0000 Check for pkg-config >= 0.9. commit 74c46dce26053101cee895e4d46c60b17130b711 Author: Sven Neumann <neo@directfb.org> Date: Wed Jul 24 19:12:57 2002 +0000 Declared name and value parameters of DirectFBSetOption as const. commit 66f001333016e4e050b387747c42579829c3e31e Author: Sven Neumann <neo@directfb.org> Date: Wed Jul 24 11:19:25 2002 +0000 Updated email address. commit 78b7263f99f680a8d3f281a9b34fefbbc92649ad Author: Sven Neumann <neo@directfb.org> Date: Tue Jul 23 09:56:40 2002 +0000 Applied a patch from Ville Syrjala <syrjala@sci.fi> that removes the unneeded call to dfb_surfacemanager_assure_system(). commit fbef7a03f099251f711b725ddb2d1ebb9822fd24 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 19 00:57:39 2002 +0000 New patch for 2.4.19, thanks to Brian J. Murrell <a40e8119bbddbe7b3d281db117f19b32@interlinx.bc.ca>. commit ef2469de1d75311ce10cdf2b1d62686925936ea6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jul 18 17:52:28 2002 +0000 Applied patch from Ville Syrjala <syrjala@sci.fi> enabling acceleration for the second head of a dual head Matrox. commit 1e7b46212c1476820dcec333b408909bfd0193b3 Author: Sven Neumann <neo@directfb.org> Date: Wed Jul 17 15:17:08 2002 +0000 spell checking commit f291216fc589551996884ad28658cea415a8ffc2 Author: Sven Neumann <neo@directfb.org> Date: Wed Jul 17 15:04:30 2002 +0000 Replaced '\344' in Ville's name with a plain 'a' as he requested. commit 01e7813aecbfef7689aa0252688b828fe8ff23b9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 17 14:23:51 2002 +0000 Added Alex Song <alexsong@comports.com> to "Helping Developers" (Savage driver). commit 985094acbe3df066be810f32acf0782a56121a34 Author: Sven Neumann <neo@directfb.org> Date: Wed Jul 17 14:09:13 2002 +0000 Applied a patch from Alex Song <alexsong@comports.com> that completes support for the old streams engine as found in the Savage4 family. commit 091a06c2c9b251c344e079d57afc207a981ab609 Author: Sven Neumann <neo@directfb.org> Date: Wed Jul 17 14:00:00 2002 +0000 include <sys/time.h> for gettimeofday(). commit b23b194e7b54485d605429a12ed2dcfee551923c Author: Sven Neumann <neo@directfb.org> Date: Wed Jul 17 13:52:33 2002 +0000 Made the core fill in the InputEvent's timestamp field if it hasn't been set by the inputdriver. Reviewed all inputdrivers once more and removed some calls to gettimeofday() since dfb_input_dispatch() takes care of this now. commit 8912f20a747bac1224832714cb326c158324055f Author: Sven Neumann <neo@directfb.org> Date: Tue Jul 16 14:50:42 2002 +0000 Always set the flags field of the InputEvent before dispatching it. This is needed since the core modifies it, so we can't reuse the flags next time we use the event struct. Also made sure that all inputdrivers either always or never set the timestamp. Don't set the DIEF_BUTTONS flag in the linux_input driver, it is set by the core when the buttons field is calculated by fixup_button_event(). commit b828db4a9d4f620cdbb678283fea6f96bb22bef8 Author: Sven Neumann <neo@directfb.org> Date: Tue Jul 16 14:46:19 2002 +0000 Also call fixup_button_event() for events of type DIET_AXISMOTION. Fixes the buttonmask for motion events (needs some fixes to the input drivers that I'll commit next). commit fe3b99469d84781d8826ba2b31f2afd0fa8ab07d Author: Sven Neumann <neo@directfb.org> Date: Tue Jul 16 11:31:24 2002 +0000 converted a C++ style comment to /* ... */ commit afddbad65bb48e811794c2c77b0b0dbb0ede098a Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 15 13:05:06 2002 +0000 Applied patch from Mike Pieper <mike@pieper-family.de> fixing locking of the surface buffers. commit acc6b67a3185067d87a9a37a7e6cd0754390f007 Author: Sven Neumann <neo@directfb.org> Date: Mon Jul 15 12:28:51 2002 +0000 Applied a patch from Alex Song that changes SetSrcColorKey() to accept r g b values instead of a 32bit key and sets the device pointer in dfb_layers_hook_primary() and dfb_layers_replace_primary(). commit 122c72f1310605c3cd2150b873ddba3e268b374e Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 12 16:20:13 2002 +0000 Added support for interlaced surfaces with seperate field buffers to all drawing and blitting functions. commit fdc6032b759cd10d4d7988776979718675046325 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 12 13:41:22 2002 +0000 Added DSDRAW_XOR ;) commit d490bb40569b046d37731bad267c5d8e7334876e Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 10 15:10:53 2002 +0000 Added "dfb_layers_replace_primary" which acts like "dfb_layers_hook_primary", but replaces the complete function table allowing drivers to use the default methods for surface allocation by setting function pointers to NULL. commit 44d10c689ff7caa8b55f5d5580dfcf3d9bb8a7f7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 10 13:40:09 2002 +0000 Added DLOP_OPACITY which enables usage of the global alpha factor specified by SetOpacity(). This way drivers have the chance to forbid opacity changes during usage of the alpha channel or color keying. commit b17c15b5c784e8f8a7a14d7fc24b8b59addd0368 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 10 10:35:53 2002 +0000 Automatic grabbing mode for grab-only devices or flipped surfaces by Mike Pieper <mike@pieper-family.de>. commit 1e7b2bc67c7d3b0dc7362fd7f6a91e7d4544cd32 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 10 10:33:05 2002 +0000 Some cleanups by Ville Syrjala <syrjala@sci.fi>. commit 04324b781b494484772b3b5b0e9fb64364f96e6f Author: holger <holger> Date: Tue Jul 9 14:33:25 2002 +0000 some more keydefinitions, use 16bit only for all keycodes commit a25f7c9ec2117e30fdebe90a8839f574df445782 Author: holger <holger> Date: Tue Jul 9 11:23:58 2002 +0000 - DIKI_XXXX are now Unicode keys in the private area - fixed GetKeyState table lookup commit 51286d851119a07b5d659e433f373a0d51997467 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 8 14:53:06 2002 +0000 Reverted Holger's change, because it breaks IDirectFBInputDevice::GetKeyState() and other things. commit ac06883cc9c2758cc43cbf3a4f2940012e7e14ee Author: holger <holger> Date: Mon Jul 8 08:50:54 2002 +0000 Rewrote the linux input keyboard driver, key mapping is done via table lookup now. You can distinguish DIKI_XXX codes by testing (DFB_KEY_TYPE(key) == DIKT_IDENTIFIER). We still have to implement keymap handling... commit a368c9884d18159094a457857912740636038a45 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jul 6 20:13:43 2002 +0000 32bit destination color keying fills fixed by Ville Syrjala <syrjala@sci.fi>. commit fd6e003ab7f80337b3f776b257b63f9c210ffe30 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 5 16:08:02 2002 +0000 Another set of patches from Ville Syrj\344l\344 <syrjala@sci.fi> adding planar YUV support and some fixes to the grabbing code. Thanks. commit 8052ecceb19f713dc19976b2ae10df79922131ab Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jul 4 13:56:22 2002 +0000 Reset source surface pointer in window stack rendering state after blitting. commit 32b0fc7b32f99a56d6895ec1e828e93a02214db7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 3 19:56:32 2002 +0000 Enhanced documentation of DFBResult and DFBDisplayLayerCapabilities. Renamed DLCAPS_INTERLACED_VIDEO to DLCAPS_DEINTERLACING. Renamed DLOP_INTERLACED_VIDEO to DLOP_DEINTERLACING. commit 90f48fee8dc25fa5115be5e17ca6c8c87c0aa4b4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 3 16:16:47 2002 +0000 Added new surface capability DSCAPS_SEPERATED for usage with DSCAPS_INTERLACED. Removed top level indention of directfb.h which looks strange but saves five characters that can be used for documentation of enum or struct entries. Minor documentation beautifications, started to write complete sentences with a capital letter at the beginning and a full stop at the end ;-P Removed "universe has collapsed..." print after "while(true)" loop. commit 739733971a78b0d0aad47d29ee16975f70b64a79 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 3 13:22:00 2002 +0000 Don't print an error message for EINTR. commit 9e4902f0957c330835cdb295a50e06c42b338d5f Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 2 17:03:01 2002 +0000 Added macro DFB_ALLOCATE_INTERFACE_DATA saving 4-6 lines per file. Added freeing "thiz->priv" to DFB_DEALLOCATE_INTERFACE saving 2 lines per file. commit 755bdad26908701dba84969652377ba79b93b296 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 2 16:21:10 2002 +0000 Unlink shared memory file during shutdown. commit 187e096b6f50329e7c78ac7e840cf51085a6592c Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 2 15:22:53 2002 +0000 Debug version compile fixes. commit 6e677b80385bc75425372257413841b7220b36ba Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 2 15:13:28 2002 +0000 Small fix for compiling without rgb332. commit 4c539af7fa02bbd0f4408c87670ad2c3d3f62bf8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 2 15:10:45 2002 +0000 If no depth is specified use 16bit if supported or keep current. commit b4776f1c2fd413422225bf7da47152f19a2f228b Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 2 15:05:38 2002 +0000 Added surface notification for palette updates. Added display layer driver function "SetPalette" called by the surface listener of the display layer core listening to the layer's surface. commit 47f01c07467cc37c6e67781ad489136b53acf1bf Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 2 14:36:55 2002 +0000 s/id/window_id/ commit e5d44019d412d1795e6c6e3dfcef866411e570c3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 2 13:58:15 2002 +0000 Cleaned up vertical retrace handling by passing the flipping flags to the driver (with DSFLIP_WAITFORSYNC eventually set). commit 53ea313fac073a01730ea38c8f7faa05700130db Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 2 09:45:38 2002 +0000 More work on grabbing support by Ville Syrjala <syrjala@sci.fi>. commit b4cb5939f8233b8e2567e313c36007693a00959f Author: Sven Neumann <neo@directfb.org> Date: Mon Jul 1 16:46:16 2002 +0000 Added input_fake.h to libdirectfb_linux_input_la_SOURCES. commit e1777366e118f827fbd2a74787e8ec6cb3fddf66 Author: holger <holger> Date: Mon Jul 1 14:44:57 2002 +0000 use <input_fake.h> for definitions missing in <linux/input.h> commit 1096402a70953939d062e7bdf288095c86affa0e Author: Sven Neumann <neo@directfb.org> Date: Mon Jul 1 11:51:57 2002 +0000 updated copyright headers commit 2920f8184686b643650d60b36d9d2fee7de1a66d Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 30 22:06:19 2002 +0000 Use flags instead of booleans for each state entity. commit 512c7aa5aacdeda969a144a3ed4607ab5bac84bf Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jun 29 23:40:30 2002 +0000 fixed a typo commit 578c4d1b5be71e53d39d5bdd810ebba7e3347d4d Author: Sven Neumann <neo@directfb.org> Date: Fri Jun 28 16:57:47 2002 +0000 Use one bit of DFBSurfacePixelFormat to indicate if the format has an alpha channel. Added new macro DFB_PIXEL_FORMAT_HAS_ALPHA(). Use the new macro from the GIF ImageProvider. commit 8e43429377afd90079d8dcba9599c6b48fe0f33c Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 27 21:09:09 2002 +0000 An own FrameThread implementation for each capturing method, thanks again. commit 229e5b3a272c9bde22ff0d688ba7c2d51e2b98db Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 27 19:34:38 2002 +0000 Video provider now detects system only surfaces and does grabbing. Thanks to Ville Syrj\344l\344 <syrjala@sci.fi> commit e7f92f356d46d679ad545f4d35d377b30f182a03 Author: Sven Neumann <neo@directfb.org> Date: Thu Jun 27 14:46:14 2002 +0000 Nicer (and slightly faster) rounding code that yields the same result. commit 6f433462b372b9ca8a7e6d6187653b27ee8ab333 Author: Sven Neumann <neo@directfb.org> Date: Thu Jun 27 10:41:30 2002 +0000 A better fix for the rounding errors on scaling. commit fdff8497d30b16099577a7da465792c97f773407 Author: Sven Neumann <neo@directfb.org> Date: Wed Jun 26 23:04:03 2002 +0000 Do the right thing when rendering to surfaces with alpha channel. More code cleanup. commit d26669671de7e340f3c0d39674008ec15df84804 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 26 18:34:32 2002 +0000 Initial version of color lookup table support. Added DSPF_LUT8. Added IDirectFBSurface::GetPalette(). Added IDirectFBPalette with - GetSize() - SetEntries() - GetEntries() Support by the software driver is in a very early stage. Played around with the method table grids of generated interface pages. commit 4c85141949cd3d15c62dec451207fc8abda594e6 Author: Sven Neumann <neo@directfb.org> Date: Wed Jun 26 17:46:40 2002 +0000 Looks as if we had a rounding error in bilinear_make_fast_weights(). This change seems to fix it but it needs more testing. commit f9aac64e5771321b24ac463c04bcd82a9c86df01 Author: Sven Neumann <neo@directfb.org> Date: Wed Jun 26 17:09:38 2002 +0000 Added a function that searches for a color that is not in the colormap and tries to pick one that is far from all used colors. Use it to find a suitable colorkey to use for the transparent pixels. commit 71d7fbec1989578b603ed60b485816e9336f0d57 Author: holger <holger> Date: Wed Jun 26 15:27:16 2002 +0000 build linux_input driver only when ./configure was called with --enable-linux-input commit b78660ccc94064eec53805212ea0f7417ceb1340 Author: holger <holger> Date: Wed Jun 26 15:14:53 2002 +0000 arrgh! commit 2392285d826fa06f91812e8b9bd72e520a5904b1 Author: holger <holger> Date: Wed Jun 26 15:07:07 2002 +0000 - input driver for /dev/input/eventX devices - you have to explicitly disable old keyboard and mouse input drivers using the disable-module option if you don't want to get these events twice... commit f9a553be54c352df9eaef9fa168578008b0eec4e Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 26 14:18:59 2002 +0000 Applied patch from Daniel Mack <daniel@convergence.de> to avoid usage information printed out. commit 0dc5a0d1b8048efc149296613cefdd9958df409b Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 26 13:08:27 2002 +0000 reremoved commit 49e497d0396a637f9f015d21360a19cc381ce607 Author: holger <holger> Date: Wed Jun 26 12:29:41 2002 +0000 You can disable modules now by specifying disable-module=<modulename>. We need this for the generic linux /dev/input/eventX driver commit f2b4974f87d3d5c6af01d796c350dfeec1a8b465 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 26 02:00:43 2002 +0000 Handling DSFLIP_BLIT now. commit 0b39a51b49d9b55ec218183d8215b93da0efea3f Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 24 18:50:49 2002 +0000 last try... commit f6f9e92c1c3a31ee1972b046337aa8c9276eee7f Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 24 17:56:54 2002 +0000 Trying to synchronize buffer deallocation and stopping of DMA. commit cd26640af9a95ebf846e94d984f9a68715e2c30d Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 24 17:36:50 2002 +0000 Removed CSNF_VIDEO from flags causing the video to stop. commit 17fe6402e7a13f523565f3f47178475afb77ad24 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 24 17:22:22 2002 +0000 Use surface listener to stop DMA when surface is destroyed or resized. commit 65c9973940884c23aba17d97a0c6e820969a2206 Author: Sven Neumann <neo@directfb.org> Date: Mon Jun 24 12:36:46 2002 +0000 Use the values yes or no for $have_x86 in order to get $have_mmx defined correcly. Problem spotted by Wout Mertens <wmertens@cisco.com>. commit 797aed0042e6e1302696e2e7c7d4d317328393e9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 23 22:16:29 2002 +0000 Added sanity check to Resize(). commit a6276bfc85979173a3db6783d7c4153203ede637 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 23 20:31:56 2002 +0000 Added pre/demultiplication to drawing functions. commit 041e97f65cc1b52b5dc8237ba1b9153bbb212539 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 23 18:49:46 2002 +0000 Destroy state during destruction of font, otherwise listeners will crash. commit 0b5c86c5a402d40939332f1dde0054f1f2396506 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jun 22 23:07:40 2002 +0000 #include <string.h> commit 922a647e9c35c1dfb770becdea92a122d79d4b79 Author: Sven Neumann <neo@directfb.org> Date: Fri Jun 21 00:02:03 2002 +0000 Updated the copyright notice added by gendoc. commit f010697781b94a719bafe5c75e21d489fdfd133b Author: Sven Neumann <neo@directfb.org> Date: Thu Jun 20 15:57:30 2002 +0000 Made DirectFB-Internal require the exact same version of DirectFB. commit af1ae28608abd196151210d52b2cc32650bab56d Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 20 15:30:45 2002 +0000 Added IDirectFBDisplayLayer::GetWindow() returning an interface to an existing window identified by its window id. Increased version number to 0.9.13. commit 33e49faeee121b1126081526575e7fa5d1bd084a Author: Sven Neumann <neo@directfb.org> Date: Wed Jun 19 21:06:27 2002 +0000 Added savage_bci.h to SOURCES. commit db71c15f1ea76d24fe928ba47751e1d004d4bc20 Author: Sven Neumann <neo@directfb.org> Date: Wed Jun 19 20:58:40 2002 +0000 Updated ChangeLog and NEWS for 0.9.12 release. commit 6af05be6dabed2b29a0cbc871d56f4a1fe3dc744 Author: Sven Neumann <neo@directfb.org> Date: Wed Jun 19 20:26:44 2002 +0000 Slightly improved description of IDirectFBFont API. Create glyph surfaces with with a height of ascender - descender instead of using font->height. Don't bail out if setting the encoding failed in the FreeType2 font provider. Users might want to use symbol fonts and should be allowed to do so (they just need to know what they're doing). commit 296a2e151d8caef100b8ed9c28330af39cde5458 Author: Sven Neumann <neo@directfb.org> Date: Wed Jun 19 19:49:34 2002 +0000 oops, one more place that needs to be adjusted commit 89f719052bf7d4e83ae427cf171af23a7cd166da Author: Sven Neumann <neo@directfb.org> Date: Wed Jun 19 19:41:07 2002 +0000 Corrected my last commit: Set height to 24 (vertical offset to next line). Fix descender as well (it's supposed to be a negative value). commit ffddb9426586f4034a8fd5a771c54ce749c7d40c Author: Sven Neumann <neo@directfb.org> Date: Wed Jun 19 19:37:36 2002 +0000 Set the font height to 24 for the default font. Font height is supposed to be the vertical advance to the next line. commit a703012e1ca5e74a029baf55d262552dfab05cd9 Author: Sven Neumann <neo@directfb.org> Date: Wed Jun 19 17:46:01 2002 +0000 Some smaller updates to the README. commit d750221af9bc1afec84c9e711b6a209b2e3ebb9a Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 19 16:53:04 2002 +0000 Added Alex SONG <zzaleson@uqconnect.net>. commit 7f53f9c90050d01952356adb038d8e8b79a16bcf Author: Sven Neumann <neo@directfb.org> Date: Wed Jun 19 16:40:06 2002 +0000 Removed global font_state and added state and pixel_format to the CoreFont. Both are initialized to default values by dfb_font_create() but may be altered by the FontProvider. This gives the FontProviders control about glyph surface format and glyph blitting. This change makes it for example possible to write a FontProvider for ARGB fonts. commit 69b1c2f3ed8471cf77f0ba1cea86590be9e2aaed Author: Sven Neumann <neo@directfb.org> Date: Wed Jun 19 14:20:52 2002 +0000 added DIKS_EXIT and DIKS_SETUP commit 67299bff7bc399b36d594dc9020e760a44fed83d Author: Sven Neumann <neo@directfb.org> Date: Wed Jun 19 12:51:50 2002 +0000 Updated ChangeLog. Started to summarize changes in 0.9.12. commit cf00f7adecd62842cf9106b4419a037a9651a8f2 Author: Sven Neumann <neo@directfb.org> Date: Wed Jun 19 12:34:39 2002 +0000 Applied a patch from Alex SONG <zzaleson@uqconnect.net> that fixes savage4SetState() for src colorkeying. commit 7495c15142fbc2e103c089f4e8e891aab2e34ec7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 19 03:12:46 2002 +0000 Removed two bugs ;) commit 5918c9b52046c38de5bd9cc0dbc33f8113c015e4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 19 02:34:19 2002 +0000 Use diffused alpha if source format is RGB32 to force the alpha values to 0xff. commit 93559c107b69919b8f237b2228f13f13f0aae367 Author: Sven Neumann <neo@directfb.org> Date: Mon Jun 17 23:25:21 2002 +0000 Declared some local variables in inner loops as register variables. Declared local variables in SET_ALPHA_PIXEL_ARGB as __u32; commit 710c5e5d41be5b8bd63638f8ad2ecd07381e6bd3 Author: Sven Neumann <neo@directfb.org> Date: Mon Jun 17 22:46:00 2002 +0000 Added macro SET_ALPHA_PIXEL_DUFFS_DEVICE() which implements Duff's device with a depth of 8. Use it for all but the RGB24 Bop_a8_set_alphapixel_Aop_* functions. Undefined the SET_ALPHA_PIXEL_* macros after usage and removed lots of unneeded brackets. commit 91cd40d25b1f4c28883a5ece7dd6e864c5d972dd Author: Sven Neumann <neo@directfb.org> Date: Mon Jun 17 21:54:01 2002 +0000 More work on the Bop_a8_set_alphapixel_Aop_* functions. Use Cop instead of the color struct, cleanups. commit b1a6474615cadee807f8a974afb7e78d9488c852 Author: Sven Neumann <neo@directfb.org> Date: Mon Jun 17 21:32:29 2002 +0000 Cleaned up Bop_a8_set_alphapixel_Aop_rgb[15|24|32], register variables locally. Gives 7% speedup in the 32bit case. commit ac1be09d195d3a657d75fec52b673d27e48e1090 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 17 19:30:40 2002 +0000 Wait for initial DWET_POSITION_SIZE event in IDirectFBWindow_Construct(). commit 773d7d1720c017c6537cf6b65545cdca115b9fb2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 17 17:30:05 2002 +0000 Fixed rendering pipeline setup for blended blitting for these cases: - destination blend is DSBF_ZERO, but source blend needs destination - destination blend is not DSBF_ONE and source blend needs destination commit 9de43772ac66b749b8c4ed3ebf9b3f9aa49d8027 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 17 08:09:47 2002 +0000 vsync handling during flip operations needs a cleanup/rework commit 192f1a2f09f1504078e7624bb6d47de07cd41223 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 17 06:53:29 2002 +0000 Fixed a bug in ALPHACTRL blitting setup, output alpha channel was wrong when blending was used with destination blend function DSPF_ZERO. Corrected ALPHACTRL drawing setup. Use diffused instead of texture alpha and select an alpha write mode other than FCOL. Doesn't fix a known bug but should be correct now for drawing with DSDRAW_BLEND to surfaces with an alphachannel. commit cef16b0a1eeacdf4bfdc4e11f6fca825f220c37e Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 16 17:17:03 2002 +0000 Use strlen. commit 8afa70659ec02d87f1fefa110d8d3203529e1d45 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jun 15 19:55:31 2002 +0000 Added 8 bit support to IDirectFB::SetVideoMode(). commit 06ed3ec73ac8d963d1bfd694d284bc281744072d Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 14 14:49:02 2002 +0000 Brutally optimized A8 font rendering for RGB16 ;-) P3 800E, G450 SDRAM, no-hardware, gcc-3.1 59 -> 67 MChars/sec (video memory) 275 -> 326 MChars/sec (system memory) Can be done for other formats as well. commit 3f2880a855e3dac36df1e402bca6b2f5d291e99d Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 14 13:32:16 2002 +0000 Added DFB_NUM_PIXELFORMATS macro. Use it for the generic driver's function tables. commit 2a7887e9415ca8c88785707a524e5788b5c5d94a Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 14 13:11:24 2002 +0000 Check source format in gAcquire(). Use ONCE in rgba_to_dst_format() to avoid tons of error messages during image loading to unsupported destination formats. commit cdd264bf25bd8f592db2a774c4f32a23a281285d Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 14 12:58:02 2002 +0000 Implemented planar YUV blitting support in software driver. Minor code cleanup, better support checks and cleanup fixes in gAcquire. "ONCE" messages are independent of debug mode now. commit bc9fb0ef465c7af28dbfa0b8c6b15c53a0e33880 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 14 03:48:27 2002 +0000 qsort needs an extra compare function getting two entries instead of a string and an entry, works now. commit 8ae0e10070d8bdd8f1793c97e1010747639e1c8b Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 14 00:31:14 2002 +0000 Don't use videoalpha mode if dst_blend is zero. commit 895c33deb178bce25f9cc2bad238114ecbade95f Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 13 17:14:59 2002 +0000 Fixed off by one bug in mmx version of Xacc_blend_invsrcalpha. Minor optimization in setup code. commit c931dd09959a8f8cf0d6e6ff85598c0c9cbcb376 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 13 15:45:51 2002 +0000 Fixed warnings if sighandler is disabled. commit 39107fa8d2354aaf84902a1aaf285af445134592 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 13 15:06:42 2002 +0000 Fixed concurrent destructions of windows. Added some debug output. commit da9283bad05f41dca1bf08fcb8d5ef4d09ed1882 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 13 11:35:41 2002 +0000 removed the voodoo1 workaround commit aca038f4f159dd6538a5acd41ddc9ea011369d92 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 13 11:30:44 2002 +0000 removed obsolete FIXME commit fe251694a6b6c363769abc10b17adacba86a35ca Author: Sven Neumann <neo@directfb.org> Date: Wed Jun 12 17:53:03 2002 +0000 Fixed parameters for SetConfiguration call in dfb_layers_resume(). commit f5e9229723f7b930f272296c3a73c43cf7398f10 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 12 08:31:24 2002 +0000 Implemented besFlipBuffers() which should have been implemented in 0.9.11 ;( commit c49d38e1666963125245937381a0adc193229fb9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 12 05:13:34 2002 +0000 DiVine - DirectFB Virtual Input extension ;) commit 4459aafac0685f25786ddd8af262049919e1406b Author: Sven Neumann <neo@directfb.org> Date: Tue Jun 11 12:18:47 2002 +0000 Include directfb_keynames.h instead of defining our own array. Sort the keynames array by names on first call of lirc_parse_line(), then use bsearch to lookup the name. commit 30149f3dcdd02fc495674b0b1a19016b9988d1e8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 10 20:18:00 2002 +0000 Replace currency sign (0xa4) by euro currency sign (0x20ac). commit 6568d964303d4ad47736b6f8cdcec1de336cc556 Author: Sven Neumann <neo@directfb.org> Date: Mon Jun 10 18:59:38 2002 +0000 Use unsigned int for Unicode glyph indices. Added DSFT_BOTTOM to DFBSurfaceTextFlags. Fixed bug in IDirectFBFont::GetGlyphExtents. Made IDirectFBFont::GetGlyphExtents() and IDirectFBFontGetKerning() fill in zero values if the glyph isn't found and return DFB_OK. commit 927f074f82a97752c2934c45c38e0978ac2fb44e Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 10 18:12:57 2002 +0000 Added DIDID_ANY for devices not prefering a primary device id. commit 77cd6fc61a9211cf5c023278d4a846874c0b15d8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 10 18:08:56 2002 +0000 Added DIDTF_VIRTUAL for virtual input devices. commit 040fa6cc492f273d114c0232a011c2e4a5377efa Author: Sven Neumann <neo@directfb.org> Date: Mon Jun 10 17:43:37 2002 +0000 Added IDirectFBFont::GetKerning() and IDirectFBFont::GetGlyphExtents(). Added IDirectFBSurface::DrawGlyph(). This should enable users to implement their own simple text layout engine. commit c2a82e85ef2947e0d2e6bcdecd9ec3fa67f58ba7 Author: Sven Neumann <neo@directfb.org> Date: Mon Jun 10 13:04:14 2002 +0000 fixed typo in comment commit 3da9e67a99cfe61a13ba0c757457b1a47b03ca32 Author: Sven Neumann <neo@directfb.org> Date: Mon Jun 10 12:42:18 2002 +0000 Made configure warnings more visible. Added extra warnings if PNG, JPEG or FreeType2 support is missing. commit 5fcf89a55de855f75c2e6f277f602f3aa3078c5c Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 10 10:11:00 2002 +0000 Added cross compiling notes by Scott A McConnell <samcconn@cotw.com>. commit 48148e0fe011904df9b3c0455ef04f6f281bb292 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 10 09:04:16 2002 +0000 Fixed modifier mask problems that occured if the left and right version of a modifier were both pressed. commit e629e4bd67d551a3a581b3c1daa23441c3b10e69 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 10 08:06:08 2002 +0000 Check for FUSION_FAKE instead of DFB_MULTI, could have caused problems with multi application core when slaves need to fetch a keymap entry. commit cca6872f4e2b646699ea45ba3c23778db8d360a3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 10 07:13:35 2002 +0000 Added structs DFBPoint and DFBDimension that are not used yet by DirectFB but are already useful for applications and libraries. commit a723ad52aa46a64c9eb6cff26532bef76e91b650 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 9 04:43:39 2002 +0000 Make sure DFB_IDNOTFOUND is returned if GetDisplayLayer() doesn't find the id. commit bc7a7ce98686305ca0a85cecad19ff61eb2f99cd Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 9 02:36:34 2002 +0000 Added a mask of currently pressed buttons to input and window events. commit 69c80a7514537d51811a3a6bef193fb2e2ea87c3 Author: Sven Neumann <neo@directfb.org> Date: Fri Jun 7 19:12:44 2002 +0000 oops commit 37ce6cc99310ae51fcd853b2f89ff6df8d4a7ac4 Author: Sven Neumann <neo@directfb.org> Date: Fri Jun 7 18:23:21 2002 +0000 fixed dfb_utf8_next_char() (spotted by Holger Waechtler) commit a9b803b27065a065822a646ed094570bbe7810cf Author: Sven Neumann <neo@directfb.org> Date: Fri Jun 7 18:05:32 2002 +0000 Added inline function dfb_utf8_prev_char(). commit 0be8e39b640f8b4cc08bcd434ce034eec86b97a6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 7 16:27:28 2002 +0000 Use sigaction instead of signal. commit 859145289eca4f23e8691b0b8c2d02e0c8a568cd Author: Sven Neumann <neo@directfb.org> Date: Fri Jun 7 16:26:08 2002 +0000 updated copyright commit bb0e7a67b742f848747eef265212c23e18119230 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 7 15:57:44 2002 +0000 Updated Joachim Steiger's e-mail address. commit 1ffdcdfff1f2441931b2a1a59fa22aa60275e3be Author: Sven Neumann <neo@directfb.org> Date: Fri Jun 7 15:00:33 2002 +0000 Updated copyright notice in banner. commit 9b22b03a41e941747c8c69af4841ab36aaa0fbc3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 7 12:17:36 2002 +0000 Generate DFBKeyIdentifierNames, too. commit cbabd2d840abdfeacd4cabad14a63e7e0a79ce62 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 7 10:54:16 2002 +0000 Added experimental blitting flags DSBLIT_SRC_PREMULTIPLY, DSBLIT_DST_PREMULTIPLY and DSBLIT_DEMULTIPLY which can be used for complex blending operations which distinguish between premultiplied and non-premultiplied alpha channels. commit c01d8a70c829d75cac874d01c54ed1d57f48014a Author: Sven Neumann <neo@directfb.org> Date: Thu Jun 6 16:59:02 2002 +0000 Forced comments into 80 columns. commit 2b8263b1cf4789781469d0f7ab5b17fd663373b6 Author: Sven Neumann <neo@directfb.org> Date: Thu Jun 6 13:38:01 2002 +0000 Improved description of IDirectFBFont::GetHeight(). commit 820d160de30061ef8cbd39a73daf1ccef7933761 Author: Sven Neumann <neo@directfb.org> Date: Thu Jun 6 11:40:02 2002 +0000 Applied patch from Ville Syrjälä <syrjala@sci.fi> that fixes IDirectFBInputDevice_GetXY(). commit a7f1cfdc15218b6c61f8da570bc964e21017b1d7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 5 21:52:40 2002 +0000 Added second windows key as META_R, made the menu key SUPER_R. commit 36ac057b9f16dbfa5c9986fa28c7a40f466a864f Author: Sven Neumann <neo@directfb.org> Date: Wed Jun 5 15:16:18 2002 +0000 Bumped version number to 0.9.12. Added key identifiers for the remaining keys on a PC105 keyboard layout. commit 68f7d98af8c25453e902de239af3b76f2966845e Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 5 02:37:24 2002 +0000 Once more a fresh ChangeLog commit d381a03863eb683be374ae5701b8f551bfc17181 Author: Sven Neumann <neo@directfb.org> Date: Wed Jun 5 02:33:06 2002 +0000 Added dfb_static_build_example and ipc_cleanup to EXTRA_DIST. Explained their purpose in the README. commit 4a94d5c994497b0159f52c5c6e39319b6bc6a66d Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 5 02:20:50 2002 +0000 Use hash table with predefined real names and e-mail addresses for short names. commit 0c865c1d17dd5f238c915070bc34b50d989ee1a8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 5 02:02:34 2002 +0000 Removed 32bit modes that were copies of the 16bit modes. Fixed typo. commit 310a6dbc6ceeeb55dc26315344354ed6ad52d756 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 5 01:47:06 2002 +0000 - Fixed keypad decimal with NumLock active. - Updated NEWS and ChangeLog. commit 43bdd1cf585bdaa1d35f7ac26d8d6c0658918fdc Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 5 00:27:52 2002 +0000 'directfb_keynames.h' will be generated and installed for applications. It's a mapping from a key symbol to its name. commit c7ed7abb18e8da8c4fc7b69e7798e05512d799f8 Author: Sven Neumann <neo@directfb.org> Date: Tue Jun 4 22:50:20 2002 +0000 Updated README.screenshots. Added ppm(5) to SEE ALSO section in directfbrc(5). commit bc098287f833cc1525c7fd0f794daf62596b5cbc Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 4 21:51:20 2002 +0000 Added option "screenshot-dir=<directory>" that enables PPM screen dumps when the <Print> key is pressed. commit 1c6439e83ac7aa4f99e20cf72f401f3f9821a109 Author: Sven Neumann <neo@directfb.org> Date: Tue Jun 4 19:30:35 2002 +0000 slightly reordered key identifiers commit 48ce588c03281884d72fcf28bf5586c8247ea29f Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 4 19:10:05 2002 +0000 Added Meta/Super/Hyper key_id <-> key_symbol translation. commit 22294ea18414d86f8dbbb009e794f74f69ab499d Author: Sven Neumann <neo@directfb.org> Date: Tue Jun 4 19:06:38 2002 +0000 Renamed DIKS_*LOCK to DIKS_*_LOCK and DIKI_*LOCK to DIKI_*_LOCK. Renamed DIKI_CTRL_* to DIKI_CONTROL_*. Added left/right versions of DIKI_ALT, DIKI_META, DIKI_SUPER, DIKI_HYPER. commit de228abbd5e6f1c3c03197585d8579e95c1e34d9 Author: Sven Neumann <neo@directfb.org> Date: Tue Jun 4 18:40:22 2002 +0000 Cleaned up dfb_utf8_get_char(), make it use the dfb_utf8_skip table. Declare the dfb_utf8_skip table as const. commit 704f62e0fc0b2103dda1964a036dcb4578ec4bdc Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 4 17:58:16 2002 +0000 Added support for left/right shift/control via identifiers. Added support for special pc105 keyboards (adding Meta and Super). Fixed warning in v4l provider with gcc 3.1. Removed commented out and finally obsolete line in generic driver. commit de854a002943ae90171402dadd2c94e6c8337107 Author: Sven Neumann <neo@directfb.org> Date: Tue Jun 4 17:28:03 2002 +0000 Added more dead keys as found in X11. Ordered dead keys alphabetically. commit 1bfa5e752f74877040fc9da4c3098dbda0a6d27b Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 4 16:37:37 2002 +0000 some day CLUT/ALUT support would be nice commit 3c9f633f2cf3cdb60d8ed16fba624d2474736d51 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 4 16:35:49 2002 +0000 Removed keycode TODO. commit 9b4e55edbc80c0dac5e0f9720d84141ded707fea Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 4 08:30:15 2002 +0000 Two minor changes that help a lot getting DirectFB running for everyone: - Always 8 bit modes to the mode list, too, depth of fb.modes is ignored anyway. - Default to 16 bit if no depth is specified and first mode in fb.modes is 8 bit while RGB332 support is not compiled in. The only way to have it not running now is to explicitly set "depth = 8" in the configuration without support for RGB332. commit 5eb53b405bfb39ec69b9959030823b67db743473 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 4 07:50:59 2002 +0000 #if 0'ed old code, added 40ms sleep after shutdown vt switch, too. commit 8b416cf5b2d688768a9b93f84829d3d700e7743b Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 4 07:16:50 2002 +0000 Commented out 'normal' errors at startup, VT rewrite after release ;( Added time and date when core.c got built to initialization output. commit 7f70c92cb454da3f8e34c1db664cbe5da3b27a74 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 4 06:40:01 2002 +0000 Little tweak for format conversion blits (163 -> 192 MPixel/sec on G550). commit a23b23684c7327c00d80133d35c8983b9d12ff89 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 4 04:44:49 2002 +0000 - Added DIKS_BREAK. - Ctrl+Alt+Break sends a SIGINT now (like Ctrl+Alt+BackSpace a while ago). commit f1210f3b5df058ac640c292bf6eb2196e1d3fe16 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 4 00:09:20 2002 +0000 Return DFB_UNSUPPORTED in PlayTo if destination is double buffered. Increase buffer's video instance locking counter, buffer is sticked to video memory then. commit c360aecb50380536650365daeda7fc94d259da86 Author: Sven Neumann <neo@directfb.org> Date: Mon Jun 3 20:04:17 2002 +0000 Store cached kerning values as 16:15:1. Shouldn't be relevant but makes more sense. Updated NEWS file. commit 4203c0d4c3549ecf1e82efc39a23a09a00c13cb1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 3 19:07:25 2002 +0000 Fixed alpha channel detection in GetImageDescription, libpng seems to want pointers to width, height and bpp, too. Do some more cycles for memcpy test. commit e84e55b070e1ebd5b114ab059ca2cdc4d7a4c174 Author: Sven Neumann <neo@directfb.org> Date: Mon Jun 3 18:06:42 2002 +0000 dfb_gfxcard_state_check(): Always check front and back buffer policies and set acceleration bits accordingly. commit 43fc6183f421faa71d52a3fcaaf2d851b60cc5da Author: Sven Neumann <neo@directfb.org> Date: Mon Jun 3 11:39:22 2002 +0000 Need to set SMF_COLOR not SMF_DRAWING_FLAGS to indicate the color change in IDirectFBSurface_Clear(). commit 536c033b21015f815e8a52d05e302d7474c8910b Author: Sven Neumann <neo@directfb.org> Date: Mon Jun 3 10:32:20 2002 +0000 In IDirectFBSurface_Clear() pass a copy of data->area.current to dfb_gfxcard_fillrectangle() since the latter modifies the rectangle. Added more const statements to the internal clip API to make it easier to understand what the functions do. commit 781064fbbe86bac3be740e35cbf93634992f7269 Author: Sven Neumann <neo@directfb.org> Date: Mon Jun 3 09:52:15 2002 +0000 Declared parameters that are not changed as const. Might help the compiler, definitely helps the developers. commit ed705564e385163d567569cca442e2c00ca51af3 Author: Sven Neumann <neo@directfb.org> Date: Sun Jun 2 14:41:33 2002 +0000 Check the dimensions of the rectangle passed to dfb_gfxcard_tileblit(). If an invalid rectangle is passed, print a BUG warning and return instead of going into an endless loop. commit 6972582189162a212bf4b4c649dd22caa2ed1ef4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jun 1 06:07:17 2002 +0000 Added IDirectFBSurface::Clear(), see the documentation details. commit 7361a808a015ccbf4eb4d2b5311f775239b0cf93 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 31 22:09:03 2002 +0000 fixed warning commit e29329b5eb6fbce7a588638ee2de90075f807fb2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 31 00:27:32 2002 +0000 Added function by Antonino Daplas, changing the buffermode of layers may work now, untested. commit 49c46156985e8a015c565c6a1404b671a53a4f16 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 30 15:06:48 2002 +0000 Sacc_to_Aop_rgb16 does aligned writes now, gives 1-3% on my Intel machine. Please test "df_dok --fill-rect-blend", add "--dfb:no-mmx" on machines with MMX. Also try the difference in system memory with "--system". commit d44c08e053dfc12c7b343d20ea6a516bf87b89a0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 30 09:22:05 2002 +0000 argb-font is no longer required on G400 and above! Fixed A8 font rendering by enabling "Inverted Decal information" for A8 ;) (by the time I get used to those lighting flow charts) If G200 is detected, argb-font is set automatically, there's no reason anymore to set it manually the configuration at all! Set proper minify/magnify threshold, irrelevant change, but be correct ;) Fixed log2 for values that are a power of two, didn't change anything though. commit 1c50df52bdeacb0d4d9965ff04a1ac7dc9b8b86a Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 30 05:24:19 2002 +0000 Fixed Delete on keypad. commit 0fe554fef16883121d722e0c274b02dd67701408 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 29 20:12:30 2002 +0000 Added IDirectFBInputDevice::GetKeymapEntry() which fetches a DFBInputDeviceKeymapEntry for a specific hardware keycode. commit 16cd676ee88cb877ab22bdfbc40e40494bce98a6 Author: Sven Neumann <neo@directfb.org> Date: Wed May 29 11:37:40 2002 +0000 Added autom4te.cache to .cvsignore (for automake-2.5x). commit e198b34077ecbd24774e2a477f95db1503dd69ed Author: Sven Neumann <neo@directfb.org> Date: Wed May 29 11:19:17 2002 +0000 Added 0.4.0 version of savagefb that is supposed to add acceleration for fills and blits. Unfortunately it doesn't yet work correctly. Don't use unless you want to work on it. commit dc3ea7323b15821d90e77d435f4be204bb8bd76c Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 29 03:54:58 2002 +0000 Savage driver release, untested for a long time. commit 0d0ce309854b44036308c5d13380d36ecbef6557 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 29 03:11:06 2002 +0000 Added prototypes. commit 23f977ef22cc0e18a06f331b8c3dbc9fbbacd936 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 29 03:00:12 2002 +0000 Use shcalloc() for the keymap and retrieve all entries once during initialization if multi app core is used. commit 5036c688b856bebe51c489ce3536787ce0fa2ea4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 28 23:48:22 2002 +0000 Added keymap support to input core. Added a driver function to retrieve a complete keymap entry for a keycode. Keyboard driver event thread is much simpler now, it passes the hardware keycode and if it has been pressed or released to the input core via dfb_input_dispatch() and the input core looks up symbol and identifier and handles modifier/lock masks. The keyboard driver then simply writes back the lock state to the LEDs. Added DFBInputDeviceKeymapEntry that will soon be useful with some API calls. commit 7f745d5d895b1701c77ef11f9537273fe8555afa Author: Sven Neumann <neo@directfb.org> Date: Tue May 28 17:52:36 2002 +0000 oops, we need to call aclocal of course. commit 05bd4992c6eff42b5a02579e1bb978fe32c8a58f Author: Sven Neumann <neo@directfb.org> Date: Tue May 28 17:46:47 2002 +0000 Cleaned up autogen.sh and improved its output in case of problems. commit f9d9d70846e12cc2a90103a7563c5e44ec736df8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 28 01:36:11 2002 +0000 Fixed directfb-config. Converted debug printf to DEBUGMSG. commit 1e252e691ab04b2132e9b4ba35f59b6d5c478928 Author: Sven Neumann <neo@directfb.org> Date: Tue May 28 01:06:51 2002 +0000 Use the third argument of AC_DEFINE to pass descriptions for our defines. Removed unneeded acconfig.h. Works without warnings with autoconf versions 2.13 and 2.53 now. commit 09ecf7769ee27630530fd7e857410cbc03a22c9b Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 27 23:39:19 2002 +0000 Last commit included key_id to key_symbol translation (id_to_symbol) and generic handling of modifier and lock mask. commit a5e45a13c94bb602a2c17cc82a7e3efb02f5fcd7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 27 23:37:46 2002 +0000 Added DIKS_BEGIN. Removed key pad identifiers that are physically the same key as the numbers. commit 4dde74c3ec979a5d8536f5339333719897b95159 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 27 19:54:31 2002 +0000 really fixed now commit e34ab408d35e1e9e225a34b6159b399e95da8513 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 27 19:48:56 2002 +0000 Fixed PageUp/Down, Insert, Delete. commit 3c25277fa396148619205f5ec05840f788623005 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 27 19:26:33 2002 +0000 Fixed backspace, why does the kernel return 0x7f for backspace? commit 999ccc88f695dc34e4c4b04389b51a990adfcc37 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 27 19:04:26 2002 +0000 DFB_LOWER/UPPER_CASE was wrong commit 340ad928119b29e658a188327a8a5d2333cd19d9 Author: Sven Neumann <neo@directfb.org> Date: Mon May 27 17:42:13 2002 +0000 Completed the PAGE_UP, PAGE_DOWN, ... changes. Removed DIKS_KP_* symbols and NUMPAD DeviceKeyType. The numpad keys should return the same symbols as the 'normal' keys they respond to. commit 2c778488d3e7538d2ef76014eac21b4d962294b6 Author: Sven Neumann <neo@directfb.org> Date: Mon May 27 17:10:06 2002 +0000 PAGEUP -> PAGE_UP, PAGEDOWN -> PAGE_DOWN. Same for VOLUME[UP|DOWN] and CHANNEL[UP|DOWN]. commit 4003e3e97b682476de5df792bafe1d9cf500d2e1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 27 17:00:28 2002 +0000 fixed macro compilation commit 4b6073867b22b03480be3ec328dd1d0b1d7eebdf Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 27 16:58:44 2002 +0000 Added DFB_LOWER_CASE and DFB_UPPER_CASE which can be wrapped around a symbol. commit 553b2fe5250614b5f5620a881bd1e9317456c24c Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 27 15:51:54 2002 +0000 Adding sophisticated keycode/keysymbol handling to DirectFB for more sophisticated applications like XDirectFB and the new keymap stuff in GDK. Writing input drivers for keyboards will also be easier. There are to types of key mappings, a basic one (the one before) which is suited for games and an advanced one for applications which need full coverage of the Unicode 3.x character space and the ability to query the keyboard layout. The DFBInputDeviceKeyIdentifier is now contained in "event.key_id" instead of "event.keycode". "event.key_code" is the hardware keycode which is usually not of interest. A new enum DFBInputDeviceKeySymbol is a super-set of the Unicode 3.x character space which is compatible to Latin-1, so "key_ascii" has been removed in favor of "event.key_symbol". DirectFB header files (which include "directfb_keyboard.h" now) are installed to "$prefix/include/directfb/". Applications honoring the CFLAGS within the pkg-config file should have no problem with that. Updated all copyright headers. The keymap stuff is still work in progress, but the functionality to have all applications running again already exists. Short porting instructions: - Replace keycode by key_id and DIKC by DIKI and/or replace keycode by key_symbol and DIKC by DIKS - Note that the remote control keys have been removed from the basic mapping to reduce overhead - Note that the cursor keys in the advanced mapping have a DIKS_CURSOR prefix - Note that the letters have DIKS_SMALL and DIKS_CAPITAL prefixes commit 71562b701e1cb46b0fd4deca5ec97a3ee2c47f78 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun May 26 00:51:34 2002 +0000 Applied patch from Antonino Daplas <adaplas@users.sourceforge.net> checking for CGA/MDA emulation before polling for the vertical retrace. commit 963818681a4bcf82832ded96555595991274f32c Author: Sven Neumann <neo@directfb.org> Date: Fri May 24 11:22:45 2002 +0000 More work on the man-page. Converted C++ style comments to classic C comments where appropriate. Searching for '//' should now only show parts of the code that need to be reviewed. commit e338cadea8fec47a6227819a8720a63f4509b5c9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 24 08:51:58 2002 +0000 Splitted desktop-buffer-mode text moving parts of it to the different modes. commit d4d505a816aa77320def44bc7f1813d8be0eae80 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 24 08:35:25 2002 +0000 Added planar pixel format blitting bug and G550 blending to ARGB bug. commit 9ff8ad46a3969044f4e10c44b03b493ef9b1ae04 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 24 08:26:12 2002 +0000 Removed unnecessary AC_SUBST. Changed z axis delta for Jogdial to 1. commit 038143ba0b5ec6939d95011ffb48920d3632a815 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 23 22:07:46 2002 +0000 Added a text to desktop-buffer-mode. commit 5a15a26f0871c2f73d92dff89029a00ee6361b48 Author: Sven Neumann <neo@directfb.org> Date: Thu May 23 20:27:12 2002 +0000 more work on the man-page commit b7b1565e091e9808ed025b12f55f9d8d9fb98f84 Author: Sven Neumann <neo@directfb.org> Date: Thu May 23 15:25:33 2002 +0000 Declare boolean config variables as bool. Renamed some no-variables to their positive counterparts. Added the possibility to use no- with lots of config variables. Changed "no-window-opacity" option to "translucent-windows". Changed the man-page accordingly. commit d8b5dd288f00aaa4f7c0f489edad38b1a48884dd Author: Sven Neumann <neo@directfb.org> Date: Thu May 23 14:22:23 2002 +0000 described more parameters commit c86f15abf1fb96aebf6d684cdd05ef0377ffb37e Author: Sven Neumann <neo@directfb.org> Date: Wed May 22 16:03:28 2002 +0000 Added index field to FontDescription that allows to control which face is loaded from a font file that provides a collection of faces. commit d4c70094c14253342fe0156658f963c2c9189957 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 20 22:19:24 2002 +0000 Added IDirectFBWindow::EnableEvents(mask) and DisableEvents(mask). commit 3bb5277e3a26520cda181c11cfa48fea1bf2de11 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 20 19:53:47 2002 +0000 Added reallocate_surface() todo. commit bb28f1d51f9431b40cfd0a007f7ba19e468edc9a Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 20 19:47:04 2002 +0000 Support DLBM_BACKVIDEO in generic allocate_surface() for layers. commit a7be4dd57e6f49811e85bd3c9d4114b3bf6d6fa0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun May 19 10:02:13 2002 +0000 Set event class in dfb_window_dispatch() and dfb_input_dispatch() to be sure. commit 1b5cf5acb4256aa407e0bb1623479e1fc5e36425 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun May 19 09:50:53 2002 +0000 Fixed IDirectFBWindow::Close() sending no event that got broken during introduction of IDirectFBEventBuffer. commit 79816203f88adbd69d604be17751e007640472e5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun May 19 01:20:41 2002 +0000 Console acceleration, fixes coexistence with X, removed VGA cruft (not needed). You need to add "video=vmware:noaccel" to use DirectFB and do a Power OFF, it's a bug in VMware which is fixed in the VMware that is not yet released ;) commit 6bf35201295b093deb9763fc9bf2c1a542499c6a Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun May 19 00:19:47 2002 +0000 Align system memory back buffer pitch. commit 936df5dc741669735310540b728d78f94d140b7d Author: Sven Neumann <neo@directfb.org> Date: Sat May 18 02:10:12 2002 +0000 documented more options commit 99ad8431b5d6047060f3c856ba6f5d28838bbbad Author: Sven Neumann <neo@directfb.org> Date: Fri May 17 20:15:22 2002 +0000 Define BINARY_VERSION as the earliest version that this release has binary compatibility with. Use BINARY_VERSION in MODULEDIR. Don't a version number in INTERNALINCLUDEDIR. commit 4d24b43fd00f12adf32525a810c51cbc2c491d45 Author: Sven Neumann <neo@directfb.org> Date: Fri May 17 18:36:55 2002 +0000 First draft for a directfbrc(5) man page. Work in progress... commit 569a7c798b6734242fe2b356078a6413a6223b8a Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 17 15:56:57 2002 +0000 s/gz/bz2/ commit 6d9887419bccf96b5b9c4b248e2aaca063596df6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 17 15:56:13 2002 +0000 newer version commit 7824736e64c8dc311af553f807e08698adef8af5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 17 15:54:11 2002 +0000 Forgot to increase the graphics driver abi version. commit 720dbf9d69034aa244a32eec996c4b1cbac8b511 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 17 15:52:48 2002 +0000 Added IDirectFBDisplayLayer::GetLevel() and SetLevel() which can be used to query/change the z order of display layers. Added DLCAPS_LEVELS. commit c0ec058507214793182246bdccb66efb558bd251 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 14 16:38:32 2002 +0000 VMware SVGA framebuffer driver to have DirectFB running under X in a window ;) Or fullscreen with XDGA (nearly as fast as native). http://master.dyndns.tv/vmwarefb.png http://master.dyndns.tv/vmwaredfb.png commit 760ed61cbdf762adb98944a653b06e6657a1c5f8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat May 11 22:49:42 2002 +0000 If the desktop buffer mode is backsystem, create system only window surfaces. commit 830b77cdb50465ac5c227d1b392c0ead9b8b08cb Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat May 11 22:34:20 2002 +0000 Use fix_screeninfo.line_length after setting the mode to get the byte pitch instead of using the virtual resolution which may differ. commit c594073eb52a05255223d7187c0ab0c4b26627ce Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 10 19:03:18 2002 +0000 Append version number to directories (e.g. '/usr/local/lib/directfb-0.9.11'). Thanks to Fredrik Hallenberg <hallon@lysator.liu.se>, the Debian package maintainer of DirectFB. commit aba286523dac3a90eab267e8f9d6717e23f24c1b Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 10 18:27:34 2002 +0000 Avoid locks during emergency shutdown, just turn off layers. commit 70b29a6ef063ad1e7262294fa770403f035660f4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 9 23:06:04 2002 +0000 fixed segfault on startup when no fb device is available commit d9218192036fb2b26aef157725b8b1c54b69d097 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 8 00:29:06 2002 +0000 Added IDirectFBWindow::SetStackingClass(). The default stacking class DWSC_MIDDLE. There are DWSC_LOWER and DWSC_UPPER, too. A window cannot be outside of its stacking class, so DWSC_MIDDLE windows are always above DWSC_LOWER windows and so on... commit 11b188756cf3763c4a3ea8664578357335361227 Author: Andreas Kotes <count@directfb.org> Date: Mon May 6 17:10:53 2002 +0000 set _BSD_SOURCE when using dietlibc - required for <linux/videodev.h> commit cec7dac163926ec54c9cc4b2339b35e5b011ef4b Author: Andreas Kotes <count@directfb.org> Date: Mon May 6 16:36:08 2002 +0000 added missing include - required to compile with dietlibc commit dcd40a772072fc2594a659c4dcd23828046abbd3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat May 4 12:13:15 2002 +0000 dfb_gfxcard_drawstring() uses an extra state now instead of modifying the original state. This gives more performance for hardware accelerated text. commit fb8b6ed36d26fb96bd989a6714c4f7edaecc6de2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat May 4 05:40:21 2002 +0000 Implemented FusionRef for single app core. Fixed warnings from last checkin (when compiling with single app core). commit ce09bfd061ac17bf2aae6b767f631fdfd3e762b7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat May 4 04:46:36 2002 +0000 Workaround works better now, fullscreen apps are now usable with multi app core. commit 59eb109e958ac837b298a79235d434b034cf5e70 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat May 4 04:10:54 2002 +0000 Added "dont-catch" to usage string. commit 63d3e8eae2d749908376923dd50b01a90dba50ea Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat May 4 04:06:16 2002 +0000 Added option "dont-catch" followed by a comma seperated list of signals that won't be caught by DirectFB's signal handler. Removed all takeover/transfer stuff from arena. Added 'emergency' indicator to exit functions of arena. Added 'emergency' indicators to all deinit/leave functions. commit 6c3cc8dc6dbb6340abd8dbe95f6d246a973abdd6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 2 19:08:39 2002 +0000 Made all shmalloc functions internal _fusion_shmalloc functions. Added new public functions locking the heap and calling the internal functions. Cleaned up initialization. commit aefb2067862c7d0be509d09509ce68ffdcd4fa2f Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 28 20:18:16 2002 +0000 Disable console acceleration when joining a session, the framebuffer configuration of fusionees attaching from another tty is different. A small "dfbd" running as root but with a user's group now makes it possible to run XDirectFB completely without root privileges. commit f87127297fa0cd22dec0c455f4100eb4cb84e7de Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 28 19:57:35 2002 +0000 Do chmod after creation because of umask. commit 1d8a540d86487524f9e5fefff78091b6a9ee5a01 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 28 19:31:41 2002 +0000 Create shared memory with permissions 0660 instead of 0600. commit f60bfa1cf0a6614198e86ba57cfc1171ba60f81e Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 28 19:25:46 2002 +0000 Fixed thinko in recent addition. commit 5ee855da43e17e3bb69a1d8997eadbe3832cba3f Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 28 18:58:41 2002 +0000 New option "videoram-limit=<amount-in-kb>". Moved PAGE_ALIGN macro to 'misc/mem.h'. commit f9e864fd21995fcb7a4362bd9a085cf3eb571ca0 Author: Andreas Hundt <andi@directfb.org> Date: Sat Apr 27 21:31:37 2002 +0000 devfs support for libmpeg3 provider (try to open /dev/sound/dsp ) commit d17caee3ec023e207da1fd7ebd62817e19009176 Author: Sven Neumann <neo@directfb.org> Date: Sat Apr 27 19:09:28 2002 +0000 Allow to disable libmpeg3 and flash providers at configure time. Updated README. commit 0e9f8b46a42978ea63fe59c485d9404d5f09a8e3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Apr 27 18:35:35 2002 +0000 added a table of all vesa modes commit 799c98f37125f45ffe25952131829f06695b462b Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Apr 27 18:22:26 2002 +0000 minor update commit c3c406ab3acb9244c51e83c12d7a188bb959056e Author: Andreas Hundt <andi@directfb.org> Date: Sat Apr 27 18:07:30 2002 +0000 bugfix: set correct audio format on big endian machines commit 81e423baa41a48f8d29ddebd188f497aa26bb6a2 Author: Andreas Hundt <andi@directfb.org> Date: Sat Apr 27 14:55:59 2002 +0000 removed libmpeg3 build hack, since the latest versions build a shared library. commit f0aae77e40aa1d0640da3499c21e06cf05903293 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 26 02:29:51 2002 +0000 Added 'dfb_layers_hook_primary()' that allows drivers to wrap/extend/replace the implementation of the primary layer. The driver can provide an alternative implementation for one or more functions of the primary layer and gets the original content of the function table to use existing functionality. The alternation grade ranges from "i-can-set-the-opacity" to "what-is-fbdev". It's now allowed to return zero in LayerDataSize(), primaryLayerDataSize() does that now, it had pseudo data before. commit 21a0939b8e6956921014ef32ddb3b117232fab90 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 25 22:06:13 2002 +0000 Savage Framebuffer driver release. commit f1b161393be35153b428419c434d04863fe1e1cb Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Apr 22 16:57:32 2002 +0000 released commit d4dff8f06aecdc733e22fe66ebe198662ff32668 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Apr 22 02:38:58 2002 +0000 Toggle sign of Z axis when converted to wheel event. Multiply wheel value by 7 instead 4 when changing a window opacity. My wheel mouse seems to always send Z axis values between 1 and -1. Is it normal? Do all wheel mice behave the same way? Is my mouse ill? Why are 4 bit used (5 including sign) for this axis if it never moves more than 1 or -1? This is my first day with a wheel mouse and I have no clue. The mouse isn't running fast enough to have the wheel produce electricity. commit bad03ce919bcc2c8518beb353abd4ff86d2dee43 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Apr 20 23:09:07 2002 +0000 minor optical changes commit 1dae002829cb6f0d909f2b95ef0709079c6b3aa7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Apr 20 22:49:15 2002 +0000 some more NULL pointer checks commit 7b767c7bbbc7ae6252017a6981c7a2d2040d59ab Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Apr 20 21:31:36 2002 +0000 Finished documentational summary of IDirectFB. commit d87e54fba1addbb523315eedda359b069f85dfa4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Apr 20 19:18:24 2002 +0000 Added information about the primary surface and the cooperative level. commit f25b7b02c84f555f4dcf9270bd424f73c3608c11 Author: Andreas Hundt <andi@directfb.org> Date: Sat Apr 20 18:37:56 2002 +0000 align destination in color keyed blits, instead of source. this is much faster since the destination lies most likely in video ram. commit b9e1709e0b40876459c8e898d7c97f26d54df094 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Apr 20 18:11:35 2002 +0000 Enhanced reference manual generation, wrote initial summary for IDirectFB. commit 93772fc4328ce274d5e7b4479fe96ab4ddb4d1e3 Author: Andreas Hundt <andi@directfb.org> Date: Sat Apr 20 15:12:03 2002 +0000 tweaked recent code a bit, which further improves performance on intel with mtrr, all other benchmarks showed no difference, thats why they are not listed. df_dok --stretch-blit --dfb:no-hardware old new code PII-350 Matrox G400 MTRR on : 61.46 MPixel/sec new new code PII-350 Matrox G400 MTRR on : 68.13 MPixel/sec commit 25a4aa160d95291d6ebb6721919fad019dbb3449 Author: Andreas Hundt <andi@directfb.org> Date: Sat Apr 20 14:30:49 2002 +0000 optimized 16Bit StretchBlit in generic driver, see below for results: df_dok --stretch-blit --dfb:no-hardware old code: PII-350 Matrox G400 MTRR on : 60.09 MPixel/sec PII-350 Matrox G400 MTRR off: 9.93 MPixel/sec PPC G4-500 ATI Rage 128 : 13.20 MPixel/sec new code: PII-350 Matrox G400 MTRR on : 61.46 MPixel/sec PII-350 Matrox G400 MTRR off : 19.73 MPixel/sec PPC G4-500 ATI Rage 128 : 26.33 MPixel/sec commit 72d9539448d50f6118ca7735575f022649b9255e Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Apr 20 07:45:33 2002 +0000 Set reaction list pointer to NULL when freeing an orphaned node. commit 1f18902bbc4ee2624e9443ebf89b479d6af65c40 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Apr 20 05:10:08 2002 +0000 Focus handling fixes and improvements in case a window appears/disappears. More code cleanup and documentation. commit 0b45ebd3b9f36a18ecc16af52e432c5b2765ccdc Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Apr 20 03:49:11 2002 +0000 Window stack code cleanups. Better stack locking. commit 4fe3c5c11e6e39d67f627dac98909dfef506e4fe Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 19 20:55:20 2002 +0000 Shared memory reinitialization has been done. commit ef6fb401355ec3af42cb80a6a02ed742e6af8940 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 19 17:38:44 2002 +0000 Free shared layer driver data in dfb_layers_shutdown(). Changed fs type from "shm" to "tmpfs". Added temporary workaround for partly implemented FusionProperty in multi application core. commit 174212f3dbd824a41acfebac25c8f5cf6d45db5d Author: Sven Neumann <neo@directfb.org> Date: Fri Apr 19 12:10:03 2002 +0000 (dfb_layers_shutdown) return if no layersfield exists. Fixes the crash that occured when dfb_core_deinit_emergency() is called during initialization before dfb_layers_initialize() was called. commit f4dda84294528ba7cd9149ff8b09910357b9f88c Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 18 23:49:46 2002 +0000 Fixed a very stupid code block moving error. commit ba258b12e17d34a6c3cd88a1f8ca191eceaed55c Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 18 20:48:59 2002 +0000 Added more cleanup code, less IPC resource leakage after shutdown. Commented code in some functions. Added more assertions. commit 804359958fec099238fa074d1f373a8eb5327a23 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 18 17:39:48 2002 +0000 Added tmpfs mount point detection from Sebastian Klemke <packet@convergence.de>. The shared memory area is now reinitialized during startup if it already existed, but with no DirectFB apps running. Removed some unused code. commit 1a2964dcdb6ef1407520e1c19220b000f567ec7c Author: Sven Neumann <neo@directfb.org> Date: Wed Apr 17 11:03:14 2002 +0000 Changed internal functions dfb_copy_buffer_32() and dfb_scale_linear_32() to take the destination pitch instead of the difference between width and pitch. Added a destination rectangle to IDirectFBImageProvider::RenderTo(). Added IDirectFBEventBuffer::HasEvent(). commit 48499cf48932698cee4032998f76628e89dc2669 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Apr 17 05:10:33 2002 +0000 Added missing incrementing of source pointer when doing alignment for colorkeyed blits. Made the source pointer the preferred aligned one. commit 9c183cd594327f688b6ab8594198e75eedd2fc54 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Apr 17 04:00:37 2002 +0000 Added details about surface manager and multi app core. commit 168c208e82b83f321a178eb0047447cf200613e2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Apr 17 03:04:15 2002 +0000 Compilation fixes for multi application core. Unimplemented multi app FusionProperty is currently mapped to FusionSkirmish, that is ok for non-fullscreen apps. commit bf576dd984538ced1a23f8891932292a7e1b1534 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Apr 17 02:34:18 2002 +0000 Debug version compiles again. commit cae5a9fe7d56492b69aebfd3eb748d1927ddd8db Author: Sven Neumann <neo@directfb.org> Date: Tue Apr 16 10:06:09 2002 +0000 purely cosmetic change (indentation) commit 6862454bbe235168756aefaac5798af1d388f5d0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Apr 15 15:19:04 2002 +0000 Set width and height to zero if one of them is zero or less in dfb_rectangle_intersect and dfb_rectangle_intersect_by_unsafe_region. Added some comments. commit e602b2eabb5c95886111a47095c1b84268c7b36d Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Apr 15 15:16:29 2002 +0000 Be more tolerant in GetSubSurface. Allow width or height to be less than or equal to zero. The created sub surface will never do drawing/blitting. commit d51012be152e5259c0a48f559b09ee0e63de3e21 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Apr 15 15:14:31 2002 +0000 Let CapsLock key events through. commit 163f1ef0fb7f10284e35f60acefb717ba61e0bb9 Author: Sven Neumann <neo@directfb.org> Date: Mon Apr 15 10:12:45 2002 +0000 Added missing includes and changed include order. commit 9e76194b47fa3ee2cea1a63d75e82fa472a0fc51 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 14 22:37:25 2002 +0000 Do not flash LEDs when holding Lock keys. Toggle once the key gets down. commit 5bd7a1d5c842a58bc5004433e29d48300ac069c8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 14 21:22:56 2002 +0000 Forgot a bit in DWOP_ALL. commit ef6b0a2a51ed55bcbe99548786bf989d4631792f Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 14 21:11:30 2002 +0000 Added new window options to disable moving, resizing, stacking and destruction by wm hack. Added window option that turns the window into a passive output only window (DWOP_GHOST). It will never get the focus or any input events, clicks will go through. This is useful for status OSDs or subtitling via transparent windows. Added IDirectFBWindow::GetOptions(). commit ac1ec8789c0ea55def8b0058086a1578d1715a4a Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 14 18:49:15 2002 +0000 Bye bye probe context and font module probing TODOs. commit c50ec36f8105fa6932e60a210f19cbc82347779d Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 14 18:46:01 2002 +0000 Added probe context structs for all interfaces loaded from modules. All parameters are stored in this struct giving more extendability. Added default probing function 'DFBProbeInterface' that can be used for 'DFBGetInterface' as the 'probe' function. It simply calls the implementation's Probe function with the given context. Reduced code size in IDirectFB, cleaned up and documented code. commit d62bcdf03adc430088ac6a083aac9693b23a7b43 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 14 10:16:16 2002 +0000 Added sanity checks. commit cefa79f5ab81b813face8b0aa982ca5d9c006123 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 14 10:11:20 2002 +0000 Added IDirectFBDisplayLayer::SetCursorAcceleration a la XChangePointerControl. Removed acceleration from PS/2 driver, new acceleration is done in window stack code. Reading from input devices directly will return unaccelerated movements. commit f7fde954ebb427f98238e144a4a23b10f6e273fa Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 14 09:04:47 2002 +0000 Added DIAI_LAST and DIBI_LAST. Added more argument checking in IDirectFBInputDevice, use new constants for array sizes. commit 3a9d6162325c744474b72313ffd74976b32b83e5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 14 01:04:26 2002 +0000 Fixed debug enabled builds. commit 3edf00c03c1dd6b4de918d63d1109f243711bbb8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Apr 13 22:22:50 2002 +0000 Added DFB_DEALLOCATE_INTERFACE saving two lines of code in the Destruct method of each interface. Cleaned up deallocation of interfaces after Construct failed. Currently Construct methods have to call DFB_DEALLOCATE_INTERFACE before returning an error. commit 8c70bf80dfac32f13ef6916c556e02f6d4d14c32 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 12 23:42:52 2002 +0000 Reworked display layer driver handling. Core structure DisplayLayer is no longer exported. Added structures for driver functions and information. Drivers call 'dfb_layers_register' during initialization. Generalized surface creation/reallocation of display layers. Display layer drivers are cleaner now. Cleaned up layering code and added missing functions. Experimental mouse acceleration in PS/2 driver. Added options "mode=<width>x<height>" and "depth=<bpp>" which select the startup mode and bit depth. Bit depths of fb.modes entries are ignored now when looking for a requested mode. However, the default bit depth is the one of the first entry. Added new fusion primitive 'FusionProperty' which is a lock that automatically chooses between lock and try_lock behaviour. Two different locking methods can be used for short locks, e.g. window stack repaints, and long locks, e.g. exclusive layer access. Both methods wait if the property is 'leased' and fail if the property is 'purchased'. There's no implementation for the multi app core yet. commit 0f475e2974c55ea822dbeb8776a771e274d18ed4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 11 01:51:01 2002 +0000 Added missing unlocks in dfb_surface_reformat_surface(). Return success in dfb_surface_reallocate_buffer() if video instance reallocation failed but a system instance exists. Window resizing deadlocks seem to have gone. commit a1b4a53c699ad3950def100ff52c22f8b19d2b97 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 5 14:35:16 2002 +0000 Small fix for multi app core compiling. commit e0e69bf55dc09c73980678179b8babbf6aee5012 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 26 09:38:23 2002 +0000 Tweaked surface buffer locking again, fixes the slow software stretch blit after hardware blitting the same surface. So it wasn't the missing '-O3'. commit d6d72af7cccf193a5c7578e7f9ac08f8dc41c47e Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 26 04:16:31 2002 +0000 Added a 40ms sleep after switching VTs. It seems to fix mouse problems when starting applications from XFree. I know it's a hack, but it should go away after VT handling rewrite. commit 99fae4937ac6311951f21cdf9cd27e0cda56bdc5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 26 04:03:11 2002 +0000 Enable -O3 for debug mode, too. Stretched blits are REALLY slow without it (1-2 MPixel). commit d26ef5e654fa37f879ba9e86a3722130c8709334 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 26 03:28:18 2002 +0000 Moved a bit code from keyboard driver to vt handling where it belongs. commit 9574856de3336520e8f3faaea5209b9f99aa6720 Author: Sven Neumann <neo@directfb.org> Date: Mon Mar 25 19:56:34 2002 +0000 Added support for vertical kerning. Release the FreeType2 library when the last font provider is released. commit e4a333e81f9570ddc6996911517623175a040708 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 24 20:11:08 2002 +0000 Fixed software driver pixelformat tables (NULL padding). Commented out old code in dfb_vt_shutdown. commit 16a7aabe83d9ed0f42d1a9d65ec4941c16fd981c Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 24 13:46:50 2002 +0000 Do TIOCNOTTY on /dev/tty0 instead of file descriptor 0. This way XDirectFB works when started from linux console, but I don't know why only XDirectFB failed. Don't know either what TIOCNOTTY is, neither TIOCSCTTY. Time for a VT/TTY handling rewrite in DirectFB. However, I added perror messages in case TIOCNOTTY or TIOCSCTTY fails. Strange result (df_window and XDirectFB show same behaviour now): from xterm: both ioctls fail from linux console: second ioctl fails from linux console (with strace): first ioctl fails Removed tcflush calls from PS/2 driver (inappropriate ioctl). commit 0a31512139db792d35e6765828cd6957d3eaccb8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 23 04:18:19 2002 +0000 Fixed a bug that may have caused broken pulldown menus in GTK! handle_enter_leave_focus() did not check if the pointer is grabbed. commit c58a746bbf93d8b123397f913cc0e4d1d65f185f Author: Sven Neumann <neo@directfb.org> Date: Fri Mar 22 19:21:24 2002 +0000 Removed -disable-static from LIBADDs. commit dade4c121038d74eeee6e4d16fad611f9fbbf7ee Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 22 19:21:08 2002 +0000 Added Martin Mueller to "Thanks To" section. commit a534c95527a981a327069c20c7e30ee3455d9f84 Author: mm <mm> Date: Fri Mar 22 18:30:17 2002 +0000 Added brightness control to neomagic video overlay commit d8aee35c23aa4e3aa9dfd0c2a19c58cc8d723141 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 21 22:03:19 2002 +0000 added two lines commit e400747012c5327f45ea15ce65739fc429c61e3c Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 21 21:59:58 2002 +0000 Fixed crashes that sometimes occur during window resizing when another thread is repainting the window stack. Print caution message after failing video instance reallocation only if there is no system instance. If there is a system instance mark it as valid. Removed redundant macro in 'layers.c'. Added same debug checks to gAcquire() as in dfb_gfxcard_state_acquire(). Added dfb_get_millis() which returns the current time in milli seconds after DirectFB startup (after first call of the function actually). Added PID and milli seconds after DirectFB startup to debug messages. commit 69923f4fd7ab06624e25cc1305c08a200cca0ff4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Mar 18 21:05:08 2002 +0000 Added dfb_sig_block_all() which blocks all signals and should be called at the beginning of each input thread. Otherwise signals may arrive at the input thread which in turn (in signal handler) cancels all input threads (including itself) during emergency shutdown. commit 62774c5dc22e87c00f57c2262f21f9f468b63c19 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 17 06:25:52 2002 +0000 Added scrolling or panning for virtual window/layer sizes. commit 288a47c187973b802b2c283089aac20c0ac65ba0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 17 06:03:18 2002 +0000 Treat windows with color keying enabled as transparent, so the background gets cleared. commit 68d0e053d1e62fd5ff48c37f5acdff89120c69ad Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 17 05:32:10 2002 +0000 Reading from a surface with auto video policy which is stored in video memory no longer pulls it into system memory. Changed surface reallocation behaviour. Surfaces already in video memory stay there after reallocation. commit 1fd7149444c915d94088359e9dbdfc5d0d24c693 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 17 01:41:05 2002 +0000 Removed color keyed window entry. commit 9add3be4545bcacca791e9f0c0a4d6d2fce1c54e Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 17 01:40:31 2002 +0000 Added color keying for windows (e.g. for shaped windows). Added DFBWindowOptions having DWOP_COLORKEYING for now. Added IDirectFBWindow::SetOptions and SetColorKey(r,g,b). commit 52c10bf0bdf2d586bc180a4e99591850ea9ab8e9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 17 01:34:05 2002 +0000 Removed debug printf I forgot. commit 8f3b8e6684d3f1818dee99aecc43d9e276c1868d Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 17 01:23:27 2002 +0000 Fixed colorkeying with simultaneous blending for ARGB surfaces in software and Matrox (G200+) driver. commit 6fc577b390825d9485647663764901968c7647a8 Author: Andreas Hundt <andi@directfb.org> Date: Sat Mar 16 22:57:36 2002 +0000 - removed the paragraph from README mentioning the aty128fb and nvidia patches. - removed neofb patch from Makefile.am commit c5e0f68173314f88025aa77e710d62bfe7ab8d59 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 15 17:20:15 2002 +0000 Deinitialize layers in emergency shutdown (e.g. segfault). commit 8081642950608b191a62abdac98e962212535fa1 Author: Andreas Hundt <andi@directfb.org> Date: Thu Mar 14 01:57:53 2002 +0000 - use lookup tables to convert rgb332 2/3bit color channels to precalculated 8bit values. now blending in rgb332 looks much better without affecting performance. commit 1bdd7d76169f8b9b717aaaf3c6f9490a0af78f33 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Mar 11 23:54:08 2002 +0000 Finally neofb got itself into 2.4.19-pre3 ;) commit 47883aef17661928d0262d6d6d976e586d4c5726 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Mar 11 00:28:31 2002 +0000 Sorry, the next time I will compile before committing. commit fb2a87d28215f4686b3d76fad8e792ebadabb089 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Mar 11 00:12:20 2002 +0000 Removed to old lines that caused doubled and interlaced modes not work. commit 04294d2509468c82efdad20d6ce27155fda79bd8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 10 06:02:13 2002 +0000 Minor cleanup, converted defines to enums (CoreSurfaceHealth/Policy). commit 90a1d2c30f7d918bcf0c5b6af6f38779afd15938 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 9 01:51:53 2002 +0000 Removed one ;) commit 0186511929177764a81fe801fc729891a27741c8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 9 01:49:58 2002 +0000 Shift 8bit values to the right in RGB15 and RGB16. commit b1a998298a8bdd52271d9d65b030572b922ebf12 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 9 01:38:50 2002 +0000 Implemented destination color keying. commit a59b4e4c2a758add47f1ff0d0548c0315544761d Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 9 01:38:02 2002 +0000 Changed internal parameters. commit afb409bf8987ea6e65e4fcece2b53c197845b342 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Mar 9 00:00:44 2002 +0000 Added destination colorkeying for display layers. Not implemented by any driver yet. IDirectFBDisplayLayer::SetColorKey() is now called IDirectFBDisplayLayer::SetSrcColorKey(). Added IDirectFBDisplayLayer::SetDstColorKey(). DLOP_COLORKEYING is DLOP_SRC_COLORKEY now. DLCAPS_COLORKEYING is DLCAPS_SRC_COLORKEY now. Added DLOP_DST_COLORKEY and DLCAPS_DST_COLORKEY. commit 7b85900d1bc91c8115096d7107afc661ab5700b6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 8 03:45:13 2002 +0000 Added some more useful things needed before feature freeze. Updated ChangeLog (no, it's not a release yet ;) commit 4099c9508b19e098f5bbcea7577d7775ef9e7f09 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 8 02:59:41 2002 +0000 More important TODOs added for 1.0. commit dbc51a67ccaae66da4419a0a57dabf8f95af20d1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Mar 8 01:41:00 2002 +0000 Added window resizing wm hack, press 'CapsLock + Strg' to resize with the mouse. Fixed a deadlock in dfb_surface_reformat. Changed window stack update strategy when resizing, great thanks to Hallvar Helleseth <hallvar@ii.uib.no>. commit 5e66812843765d9467935ace481d890b8774d297 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 7 23:18:08 2002 +0000 Disable static libraries by default again, builds twice as fast. Added AM_CONDITIONAL for static library stuff in src/Makefile.am. commit 8c015d5b480ac81f0c5d3cf186b7c77e59f9f5f7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Mar 7 23:01:21 2002 +0000 Acquire locks for front and back buffer in dfb_surface_destroy before sending the destroy message and destroying it. Removed now obsoleted Unlock from IDirectFBSurface's surface listener. Made dfb_surface_reallocate_buffer use free/malloc again, realloc is too slow and the data will be foo anyway. Added 'CapsLock + D' which destroys the window under the cursor, this is the force version of 'CapsLock + C' (close). commit 238d307d8f5f59dd281346a429d89d5030135ba2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 5 20:21:12 2002 +0000 Fixed CheckState, it was broken for unsupported drawing/blitting functions. Reenabled workaround for blitting. commit ea1b3af46739b2a4779591c95dec70b66164307f Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Mar 5 19:50:52 2002 +0000 Only check for libdl if shared libraries are enabled. Show shared/static in summary. Include "$LIBZ -lm" in libpng check. commit 813eb86e1c8102b5df8d3462e07f9cf843bcac9a Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Mar 4 20:03:35 2002 +0000 Check for empty region before calling update_region. Empty region check at beginning of recursive update_region is a DFB_ASSERT now. commit ab8bee4afc46df015c7630119c6265cf41fb73bb Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Mar 4 19:37:56 2002 +0000 Added union parsing (treated like structs). commit de5f5b443311a84c66dba6d12c6373c89d1ab502 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Mar 3 05:51:31 2002 +0000 Wrote SonyPI Jogdial driver. Sony users with a Jogdial can now use their jogdial as a wheel (Z axis) and middle mouse button. commit f3d93fe8b7b87eccc1b3222c108dbb625792352b Author: Andreas Hundt <andi@directfb.org> Date: Mon Feb 25 21:08:02 2002 +0000 removed aty128fb patch (it is included in 2.4.18) commit 0aba6c295d2faf2474516edef7d7dc8893050893 Author: Sven Neumann <neo@directfb.org> Date: Mon Feb 25 14:53:09 2002 +0000 fixes for autoconf-2.5 commit 5f4705cc3f8a694818d79e2162612e9c00981663 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Feb 25 04:21:28 2002 +0000 Don't catch SIGPIPE. commit 6acb7723863d829a686dba39d0472127217e4849 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Feb 24 20:24:54 2002 +0000 Added IDirectFBWindow::PutAtop and IDirectFBWindow::PutBelow that can be used to restack a window relative to another one. Added DFB_ASSERT which prints an error message and causes a SIGTRAP if debug is enabled during configure. Cleaned up window restacking code in core. Reduced code size. Version is 0.9.10 now. commit 4e631d9ad716af9ee7e9b8d1cd86876110af4d6b Author: Andreas Hundt <andi@directfb.org> Date: Wed Feb 20 14:41:15 2002 +0000 only build neomagic driver on i386 platforms. (let me know if there is a neomagic chip in a non-i386 system somewhere on this planet) commit 74560c1e302af2834c7e9b1db782ad3ee14c6d80 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 20 14:39:45 2002 +0000 Updated for 0.9.9. commit a82b9e767a524b540c5d5cd0c4b44bcd547d8682 Author: Sven Neumann <neo@directfb.org> Date: Tue Feb 19 20:03:20 2002 +0000 some updates, could need more commit 8ed8ab12720ba2386d933874ca551a04ada8d108 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 19 18:05:32 2002 +0000 And here the complete log entry: Applied patch from Enno Brehm <enno@convergence.de> that adds dlopen'ing of the main library with RTLD_GLOBAL. commit 9d281a92ba7996a62ba63a9d2ffc738aa28d92e1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 19 18:03:33 2002 +0000 main library with RTLD_GLOBAL. commit c344d81d0984a7ff184647a49f5e9b1905ef7805 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Feb 19 18:02:36 2002 +0000 *** empty log message *** commit 77195a08ba0bb862cc8f9e59f42873b7f0486ef0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Feb 18 22:03:56 2002 +0000 Reset display layer ID pool so the primary layer gets '0' even after reinitialization of DirectFB. commit 72f1700276272f12d68b16c0eda9a16cc10b3b51 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Feb 18 21:24:51 2002 +0000 Forgot to add the new event class to two switches. commit 7cf85726e390e90cc99bd54cfcde218722e76987 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Feb 18 21:10:00 2002 +0000 Forgot to assign function pointer. commit d8c8ce289ce8d9d89227eb24cf1fe2b551611043 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Feb 18 21:00:50 2002 +0000 Added new event class DFEC_USER and a struct DFBUserEvent containing an unsigned integer and a pointer. Added IDirectFBEventBuffer::PostEvent which can be used for any event class. commit ff6888be29a9f1306132d30e09ba2d8bd718fa2a Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Feb 18 14:15:20 2002 +0000 Allow IDirectFB::CreateEventBuffer with DICAPS_NONE. commit f6dae7cfc0bee23c4e819d44c68c99bf60fa65d0 Author: Sven Neumann <neo@directfb.org> Date: Fri Feb 15 13:35:24 2002 +0000 Even more keycodes for yet another remote control. commit 859c8b1f00a9ccb5dd605abdda844c2811b5bab9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 15 12:23:49 2002 +0000 Added NeoMagic YUV Overlay support ;) Added simple YUY2 -> YUY2 blitting for NeoMagic. commit 994fc80e1f041fff6cd48f5ea8370086896b7335 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 14 16:38:25 2002 +0000 More code beautification, more code documentation. Simplified some parts. Fixed setting primary layer's configuration that I broke last night. commit 16a2cc9ec8e2d04652a2bf40924f1e6976264fda Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 14 03:32:49 2002 +0000 Shrink SetConfiguration to 3 lines here, too. commit d9cfb0964c36175df2fc8b8d549817d83b297c90 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 14 03:27:16 2002 +0000 Added dfb_layer_set_configuration to simplify the driver's SetConfiguration. Beautified code a bit. Removed all shfree/shmalloc hacks (use shrealloc now). commit d3697ac25d28f660059d96a1218f3e4fc5dffcf2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Feb 14 00:07:56 2002 +0000 Grey pad keys get through now even if NumLock is off (div, mul, etc.) commit 2a20c3ba5357725d61d8c88ab208458900f3592d Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 13 16:42:46 2002 +0000 Made 'no-sighandler' and 'no-deinit-check' overrideable via 'sighandler' and 'deinit-check'. commit 95d830a62bcdd9e9e5e5f678240879fcc8dca1e7 Author: Sven Neumann <neo@directfb.org> Date: Fri Feb 8 17:06:39 2002 +0000 Removed special keycodes for the IPAQ and added some generic new ones. Remapped IPAQ keys. commit d20df7e0c76e233a2572e59390620365231a78a4 Author: Sven Neumann <neo@directfb.org> Date: Wed Feb 6 11:18:30 2002 +0000 (IDirectFBSurface_TileBlit): fixed tiled blitting for subsurfaces. commit bd19c56d83147f800999f427888539d6733d7c1b Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Feb 6 06:20:53 2002 +0000 Call graphics driver deinit in signal handler again. So overlays shouldn't stay visible after segfaulting now. commit aaa7273542a2f7969353ed9defc229e0a8b30098 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Feb 4 13:54:21 2002 +0000 Wait for idle accelerator if software wants to write into a surface that has been read by hardware (read access by hardware may not be completed). commit f420a5d20d1e85c139a89cdff35f2de913c30257 Author: Sven Neumann <neo@directfb.org> Date: Mon Feb 4 11:51:31 2002 +0000 Removed directfb-avifile.pc and directfb-swf.pc from EXTRA_DIST. commit c38be4a889f7b7c2ac16e2bbf3c68b64323644b0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Feb 4 11:45:24 2002 +0000 Applied patch from Till Adam <till@adam-lilienthal.de>. - Adds DFBInputDeviceLockState (DILS_SCROLL, DILS_NUM, DILS_CAPS) - Adds IDirectFBInputDevice::GetLockState() - Adds locks to input and window events - Keyboard driver handles locks and LEDs commit ebcbe8bee66d872b3e13c2ee535a4c50426ea1eb Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Feb 2 00:57:28 2002 +0000 Check pixelformat in CreateSurface. commit 5b0bc27342e51e4f447c8d6e663e818906238961 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Feb 1 03:00:00 2002 +0000 Fixed segfaults in reinitialization. commit c8ba6ba67d32902ae32022ff616f877a8ae108ff Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 31 15:43:56 2002 +0000 Removed shmalloc debug printf. commit e71d89c1712d75d009bed54a9893825fbdab729c Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 31 15:38:58 2002 +0000 "ref_*" -> "fusion_ref_*" and code beautifications. commit f31fce3221e4c2562a9824972c304f9d311137ff Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 29 17:08:06 2002 +0000 Should have fixed DirectFBCreate after last IDirectFB::Release. commit d2168e782a2735b4f983450f59921c36870e0fee Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 29 16:58:53 2002 +0000 Only include shmalloc sub library when building the multi app version. Thanks to Till. commit 0c0299c88efad433a34a50ed3eb5024df33b8365 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 29 15:41:19 2002 +0000 Completely rewritten shmalloc stuff based on libc5's GNU malloc. It now uses tmpfs (former shmfs) that needs to be mounted at /dev/shm: mount shm /dev/shm -tshm It uses open/mmap and ftruncate/mremap similar to brk ;) commit e3f65da9a85fc83b26326dabbfd875fbc96b4e6d Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 28 14:49:23 2002 +0000 Builds with newest version libmpeg3 (1.5). commit d1c250b20a520584c702f3e4c045577cb88d0f1f Author: Sven Neumann <neo@directfb.org> Date: Sun Jan 27 20:20:58 2002 +0000 changed some comments to be (hopefully) more helpful commit 86b8ed3b2619e7f0c5ece68ef945c4fbf029308a Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jan 27 16:31:40 2002 +0000 IPAQ button support by Ara Hacopian <ahacop@anthrotronix.com>. commit b3ce1854b1d69d599f2563200d3bd94bb71c34ac Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 25 00:38:59 2002 +0000 neofb 0.3.1 is now in 2.5.3-pre4 ;) commit afb5651e6136047bc5d1187c8c010064b3f2c0f1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 24 23:03:35 2002 +0000 two variables removed commit fa92dcbd3113f5459c9f7de31183ff0567416c5b Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 24 21:15:03 2002 +0000 directfb-avifile linking hack is no longer needed due to recent changes in module loading. commit d03c0c2036aba94b2a6d0cd0190121c2e0a9f370 Author: Andreas Hundt <andi@directfb.org> Date: Thu Jan 24 19:20:56 2002 +0000 use waitidle again on ppc commit bbbed9482ec086f8c6364a806c9cd297384cae2d Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 23 16:09:11 2002 +0000 New version, nothing important, just added module license (GPL of course). commit 8a4df58565253899be4fafe3e8a42d9bf4ae5c7d Author: Sven Neumann <neo@directfb.org> Date: Wed Jan 23 15:49:16 2002 +0000 oops, forgot to remove a debugging printf commit 5d18107c984d9ce0195b826ad1f719620ae0bb08 Author: Sven Neumann <neo@directfb.org> Date: Wed Jan 23 15:08:38 2002 +0000 Changed DirectFB command-line parsing: The only recognized options are --dfb-help and --dfb: follow by a comma-separated list of DirectFB options. The format of the options is the same as used in the directfbrc file. commit 676c3031ae325eb07eb57bbcfb0f272aa570ddac Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 22 15:42:09 2002 +0000 Set $PREFIX only if it's unset. Take care of preset $CFLAGS. Use $PREFIX consequently. commit 26f7835acdc8de0395041ef5b97bbdad130a4b82 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 22 14:48:19 2002 +0000 Applied patch from Daniel Mack <daniel@convergence.de>. The environment variable "FRAMEBUFFER" is used now if set. commit 0fad3330f0fb3778e8fccf909fbfdc05395438e5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 22 14:44:42 2002 +0000 Applied patch from Topi Kanerva <topi.kanerva@eke.fi>. Under certain circumstances rectangles didn't get filled or drawn. commit b5cc5f5529ad1d0e61f8ffcb4e07251b3918786b Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 22 09:22:57 2002 +0000 Build libmpeg3 provider using gcc, ld did not include our constructor. commit 8085daf92b9bb080b292c99683ff5666486e414b Author: Sven Neumann <neo@directfb.org> Date: Mon Jan 21 16:59:15 2002 +0000 Try to access files before creating a video or font provider for them. commit 5bf2651c13f1153908af552f6c8658e95180b401 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 21 15:25:25 2002 +0000 No need for stdio. commit c7f8af380f1f71e9093735e4cc9c0ed2b649f7ad Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 21 14:36:51 2002 +0000 Replaced all "sprintf" calls with "snprintf" calls. commit d04c25e331cfb739dbdfb2d44168acb82e458a8c Author: Sven Neumann <neo@directfb.org> Date: Mon Jan 21 12:11:02 2002 +0000 Don't parse --help out of the command-line arguments in order to allow applications to provide more useful help here. Added new function DirectFBUsageString() which returns a string describing the DirectFB command-line options. Output DirectFB usage information and quit if --dfb-help command-line option is given. commit 25c48c57661939df874fe9be445803e755a48099 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 21 10:25:06 2002 +0000 Added "static class Foo { public: Foo() {} } foo;" to have our C constructors included in the library. commit b88c31d769fecc96453d7af47138d9b69c21810b Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jan 20 22:08:36 2002 +0000 fixed segfault commit 63bff4ecb4e0311e6e9760746d896606ad520084 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 18 13:08:09 2002 +0000 Fixed initial DWET_POSITION_SIZE event. commit db8305f0dbac1d3742bba83456a00545ee5a2f35 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 17 14:46:02 2002 +0000 Added static linking support. Minor changes to driver and interface modules. An example of how to link static applications with choosable drivers and interfaces is the script 'dfb_static_build_example'. commit 4645addcf14f928958868fb9d99eb9cf8a0af21e Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 16 15:11:48 2002 +0000 updated EXTRA_DIST commit a13b94a52a9094a14afdebfcd2e980584333517a Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 16 14:45:54 2002 +0000 two more includes commit 312218cac8124dca58911ed5ddbe18e52abd63b2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 16 14:42:43 2002 +0000 Fixed stoned '.c' includes. commit 5c2b06603590c8e422147e4e039235729cb033c2 Author: Sven Neumann <neo@directfb.org> Date: Tue Jan 15 21:33:48 2002 +0000 Added new background mode DLBM_TILE that works similar to DLBM_IMAGE but tiles the background image instead of stretching it. Added new --bg-tile command line option. commit c167d42d6413f9ebe217a205642827ea841ee16c Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 15 18:08:35 2002 +0000 Use CFLAGS again. commit 38cbc362c020d521dc4d5876cf1632585350c30f Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 15 18:01:25 2002 +0000 Makefile.am cleanup commit 7445357899adae42314f46403224fd2855fafa56 Author: Sven Neumann <neo@directfb.org> Date: Mon Jan 14 14:09:28 2002 +0000 Added IDirectFBSurface::TileBlit. Takes the same parameters like Blit but tiles the source to the whole destination surface. Set a clipping region if you want to tile only parts of the destination surface. commit 3c03ecbe552222e4562eb45519e42a0cb3bf3183 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 14 11:01:28 2002 +0000 once again, id is a reserved keyword in objective c commit fc12bf5a427fbd6dc69efd88ff24ae76c543c95b Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 14 09:49:35 2002 +0000 include reactor.h commit 39268e6d9758cf1a5cbbd45ba1e2bf0c5e00a646 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 14 09:42:32 2002 +0000 Use another assembler source file for testing. commit 006dd38e8df6bd9a13187f1a142e7a40543ae436 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 14 05:53:00 2002 +0000 Do a normal shutdown in atexit handler, not just an emergency shutdown. commit 7ef4b0ba3584adc4c85a61cd9316a8127af0aa88 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 14 05:10:17 2002 +0000 Put device id into event structure in dfb_input_dispatch. commit f2239107da6c9e5b73dab270b18990140ad4f693 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 14 04:57:50 2002 +0000 not needed anymore commit d4a75319394a248f2a2b9ce53266127c7e94bdf2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 14 04:57:00 2002 +0000 Cleanup of interface functions, many functions have been made static. Removed intel_cpu_features by using the new dfb_mm_accel function. Added DFBDisplayLayerID, DFBWindowID and DFBInputDeviceID. Added GetID functions to IDirectFBDisplayLayer, IDirectFBWindow and IDirectFBInputDevice. IDirectFBInputBuffer is an IDirectFBEventBuffer now. It handles events from input devices and windows. Removed WaitForEvent, GetEvent and PeekEvent from IDirectFBWindow. Added CreateEventBuffer and AttachEventBuffer to IDirectFBWindow. DFBInputEvent and DFBWindowEvent contain the ID of the event source. Added DFBEventClass to determine the specific event, i.e. input/window. Added DFBEvent that is a union of DFBEventClass, DFBInputEvent and DFBWindowEvent. Each event structure has a DFBEventClass first. IDirectFBEventBuffer::GetEvent can be called with a DFBEvent pointer. If a buffer is only used for one specific event class, the macro DFB_EVENT(e) can be used to pass DFBInputEvent or DFBWindowEvent directly. commit 5d49fba86be7d4ec14d6bd3e9cc4b14164f3f615 Author: Sven Neumann <neo@directfb.org> Date: Sun Jan 13 12:36:22 2002 +0000 Removed useless stuff from directfb-avifile.pc. commit e40b6f5fa0ca003045ea43a4a810954b70752094 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jan 12 01:48:29 2002 +0000 Added cpu detection code for MMX, 3DNOW, MMXEXT, SSE, SSE2 and ALTIVEC. Added fast memcpy routine 'dfb_memcpy' that uses MMX, MMXEXT or SSE. DICAPS_AXIS is now called DICAPS_AXES to have a plural as in DICAPS_BUTTONS or DICAPS_KEYS. Removed bogus flag DFXL_DRAWSTRING. Enabled dithering for Matrox cards, looks nice. commit 5368bc9c43d9ada2ebf57711742d1c473650e130 Author: Andreas Hundt <andi@directfb.org> Date: Fri Jan 11 21:31:43 2002 +0000 added note that the patch is obsolete since it was merged in 2.4.18-pre3 commit 634b28be3fc75ff5fe4a2c0aed6e0d4a03bf7bb7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 10 23:29:27 2002 +0000 As Hallvar pointed out, "G550" needed to be added to the device names, too. commit 137d0e7d8c04851f026102ccc9a867619e324b40 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 10 21:27:17 2002 +0000 It's now possible to specify the pixelformat for a window on creation. For windows with an alphachannel only DSPF_ARGB is currently allowed. For opaque windows even DSPF_ARGB is allowed, but it won't get blended to the background. Instead the data will just be copied or converted so it can act like a root window on transparent layers. Optimized graphics card state changes during window stack updates. Added a comment to dbox2 remote driver. Added "G550" to matrox driver name. commit 0a4d533c844c1790bc8c648a93197aea0ef4210d Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 10 15:36:57 2002 +0000 All global DirectFB symbols have the prefix "dfb_" now. commit c1a657e110d80f5e0200cabf58faf1a7eac3382d Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 9 14:56:56 2002 +0000 Use "-fomit-frame-pointer" only for src/gfx/generic. commit aa4013553461f358884f029be0d305eb68a3600e Author: Sven Neumann <neo@directfb.org> Date: Tue Jan 8 15:52:44 2002 +0000 some code cleanup, no changes commit 1625338c3f98f903d58668dd24a43ea941b72d63 Author: Sven Neumann <neo@directfb.org> Date: Tue Jan 8 13:22:44 2002 +0000 us a saturating blend when compositing A8 surfaces with colorizing on ARGB surfaces commit 2dcb3a47e0853d4608ce649305c6ce34442e53bb Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 7 17:31:19 2002 +0000 Removed a totally dumb "static int" that got increased each OpenDevice and made the driver crash when OpenDevice gets called again after CloseDevice. Readded Suspend/Resume implementation. commit 1f7e447b5685179eb6ad2769db40db95be6940b4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 7 14:23:18 2002 +0000 Pass the filename to the Probe function of image providers. commit 79fda2f2f61b9ad85ef9c6ae67738e9c5230486f Author: Sven Neumann <neo@directfb.org> Date: Mon Jan 7 14:07:26 2002 +0000 * src/gfx/generic/generic.c (SET_ALPHA_PIXEL_ARGB): keep destination alpha when blending A8 with color modulation onto ARGB surfaces. commit c36da321ca2becf95a8c232435792cb0a70f884e Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jan 7 12:11:08 2002 +0000 Added Hallvar Helleseth <hallvar@ii.uib.no> to Thanks To section. commit b7c8c648bfed5d6177425733171696e31dd12abd Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jan 6 04:50:04 2002 +0000 Added YV12 and I420 support. commit 5433718aa2090c17f6cf2d21ceb18c4d464db5bd Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jan 6 01:16:42 2002 +0000 Added ATI Overlay support. Only YUY2 and UYVY yet. Fixed mmio in/out functions. We casted the base address to a non volatile pointer. That resulted in register polling loops that never returned. Maybe this fixes ATI idle waiting on PowerPC. commit 7287bce94e2ca9fe59082b25c9c89ac1df4e7dd5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jan 4 23:33:08 2002 +0000 Rewritten Libmpeg3 provider based on OpenQuicktime provider. Supports all RGB and YUV formats and does audio playback. commit 3277e9417003432689ebb6e8b099078cc74d7a51 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 3 20:55:47 2002 +0000 fixed minor bug introduced yesterday that made RGB15 unavailable commit a7c690c26829b09f1cab1ee1d477b87cf4a7b5c0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 3 18:58:31 2002 +0000 Removed CON2FBMAP todo. Added some others. commit 0331308cb94b8191409dfdae960a1c6cb3fb49ec Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jan 3 18:45:36 2002 +0000 added raw15toraw24 commit b29be5e7af24a06db0a560828b0e64841cc8e81c Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 2 01:52:01 2002 +0000 Fixed a width/pitch bug. commit 297d50b2542e58977710c2f642333775d20b6308 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 2 01:26:38 2002 +0000 Apply the plane multiplier to end result instead of height. commit 5d30a0e1f408ab26d2ceadb3199c08744b8d138c Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jan 2 00:38:34 2002 +0000 Added "DFB_BYTES_PER_LINE(f,w)" which should be used instead of "DFB_BYTES_PER_PIXEL(f)*w", it adds support for formats with bytes per pixel not being a decimal, e.g. packed monochrome. Added support for planar pixel formats by adding more information to the pixel format constants with two new macros: "DFB_PLANAR_PIXELFORMAT(fmt)" and "DFB_PLANE_MULTIPLY(fmt,height)". More details in the header and in the generated documentation. Added DSPF_I420 and DSPF_YV12, two planar YUV formats. I420: 8 bit Y plane followed by 8 bit 2x2 subsampled U and V planes. YV12: 8 bit Y plane followed by 8 bit 2x2 subsampled V and U planes. Added I420 and YV12 support for Matrox BES. Enum entries in the generated documentation have the original order now. Increased version number, 0.9.8 and 0.9.9 are binary incompatible. commit 4abcac544a688c6d00b8fdb5eaf958927bd42a86 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 1 17:41:35 2002 +0000 Only use the full color keying mask when in 8/16 bit mode. commit 6d36abd16a30e0f42bf68652047af600c545537f Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 1 13:20:12 2002 +0000 New framebuffer based debugging method. When compiled with debug enabled and started with "--fbdebug=<device>" graphical debugging output is done on this additional device. Currently only the surface manager uses this feature to show the video memory allocations for surfaces in a "defrag" like style. commit bc529165f6b24afe8a1d4439721e4e23581d7018 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jan 1 13:08:47 2002 +0000 Updated README commit 596362762803aa98d950d27e65de8e2b3c8de309 Author: Andreas Hundt <andi@directfb.org> Date: Mon Dec 31 11:19:28 2001 +0000 forgot to add the file. commit 671bb1c1dfca62c7db0d53d868f094c6765440b8 Author: Andreas Hundt <andi@directfb.org> Date: Sun Dec 30 21:55:37 2001 +0000 - do not rely on gcc to define __BIG_ENDIAN__ or __LITTLE_ENDIAN__ include <endian.h> and check __BYTE_ORDER. This resolves problem on parisc, where gcc does not define __BIG_ENDIAN__ - added raw15toraw24 tool for making screenshots commit 9c17cf6f2baf8cf064238e23db7873667b4f8681 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 27 17:24:33 2001 +0000 New version of neofb, for Linux 2.4.17. Added console acceleration for NeoMagic 2200 and above. Added checking of maximum allowed dot clock. Changed accelerator IDs. commit 3d638fe5dfcc6f5c5d12036e187cc40f2bb09b5e Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 19 16:49:14 2001 +0000 The macro PIXEL_RGB332 should always be defined. commit 407634c694f4ea0d03c1b74c46f6e929c7d885ae Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 19 01:34:08 2001 +0000 Fixed color keying on older Matrox cards. Added RGB332 support for all Matrox cards, accelerated blended rectangles look very cool in 8bit. commit e6e5222554e926ae9e82543caeb2da675ffe8e0d Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 19 00:29:46 2001 +0000 After setting the video mode check the virtual resolution (matroxfb does not return an error but decreases the virtual resolution). Return an error if the virtual resolution does not match the requested one. Fixes segfault of double buffered fullscreen applications in high resolutions on older cards. Print a more descriptive error message if setting the desktop buffer mode failed. Not only missing virtual resolution support but also insufficient graphics memory can cause it. Also try a fallback to system memory back buffer mode. commit 6ed0d0264cdd802d4be44362dee6b20d73c3cd9f Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 18 19:26:28 2001 +0000 It's now possible to start single buffered applications with "--force-windowed". The implicitly created window is now centered on the screen. commit b6a7fc1f25c59768aa9627e249d52066ac2abe91 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 18 17:59:38 2001 +0000 The VT is now mapped to the specified framebuffer device. Thanks to Jiri Svoboda <Jiri.Svoboda@seznam.cz>. commit 253868a29ae613197a932b0e68f66f6eef9a33b6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 18 12:55:51 2001 +0000 Moved all clipping functions to "src/gfx/clip.[ch]". Outlined 'sort_triangle'. Fixed bug when all four edges of a rectangle are outside the clip. Filled rectangles got discarded instead of filled. commit 3c8c8b172c740aaa2e3787fe3d15d2b07f5676ba Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 18 12:03:31 2001 +0000 fuction table cleanup commit 01a115c55600f232e1aa0228512889f93ba49ba3 Author: holger <holger> Date: Tue Dec 18 10:25:58 2001 +0000 dummy initialisation for IBM notebooks commit e7a50014685ae01e5ace16045e133aa3bbe75dfb Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Dec 17 13:32:18 2001 +0000 Applied patch from "W. Michael Petullo" <mike@flyn.org> that adds support for new-style device names '/dev/input/js*'. commit 340ceff6731f94979635e8c7836ff2c10a53b843 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Dec 17 10:57:38 2001 +0000 New option "--disable-window-opacity" which forces window opacity to be 0 or 255 commit 8f547c9db36b1c36f22d159639f83d70c07b51d8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Dec 17 09:29:30 2001 +0000 Added option "--[no-]cursor" to enable/disable showing the default cursor on startup. Default is to show the cursor. commit 6ef5998065df1df3cdf55c898d197326672ab5ba Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Dec 16 11:16:49 2001 +0000 Forgot to remove that preallocated surface memory thing. commit 238259a439ad306865d0b016630e33be2e6f2d76 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Dec 16 11:13:47 2001 +0000 'IDirectFB::CreateSurface' can now be used to create surfaces using a preallocated system memory buffer. Apps have to set 'DSDESC_PREALLOCATED' and the appropriate fields in the surface description. The buffer won't be freed if the surface gets destructed. The application has to use the 'Lock' method even to access the system memory buffer. Otherwise data coherency between system and video memory isn't guaranteed. commit e83d5a7a943b8a0c37ef379ecee22d8fe913f35c Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Dec 16 10:23:01 2001 +0000 Optimized usage of texture cache flushs and engine syncs, e.g. gfxcard_sync only gets called if the surface buffer that is to be accessed by software had been written to before by hardware. commit 3f9c79f7dfa071cd9b3d51a8753c3bf1c3f0f1b9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Dec 16 07:13:54 2001 +0000 Runs with Linux 2.2.x or higher. Linux 2.4.x is not required. commit d3c65cb0fde972883b062e8f80a5e1174ab7a567 Author: holger <holger> Date: Fri Dec 14 19:04:27 2001 +0000 changed keycode: DIKC_ESCAPE->DIKC_VENDOR commit 364e4b04c1eccae08ab0baf5c27da1e54011c495 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 14 13:15:00 2001 +0000 Removed swapping of left and right mouse button (done). commit 6b19ae09726d54afcd6cad7cb0dd58f751a1f00b Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 14 11:18:57 2001 +0000 #if 0'ed the unused config_cleanup function as the config should go away if the app is completely terminated. In that case the memory is freed anyway. commit 091dd4c8ff1403d33c7b2e0316db32e75e89c92a Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 14 10:55:49 2001 +0000 Added new option "--lefty" that enables swapping of left and right button. commit 0bf7b607154f64f618d847fe6d6c9eda6e6d9656 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 14 09:17:21 2001 +0000 Added some TODOs. We should really use this file ;) commit 50a3d79cf048377a6c1487c9491df53c69dddeec Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 12 18:14:21 2001 +0000 i admit, this null pointer change wasn't redundant ;P commit de2d61fb950cc8aa0432594cd72cc0b2fabda0bb Author: holger <holger> Date: Wed Dec 12 17:51:34 2001 +0000 fix USB problems when no PS/2 port is present, allow multiple mice commit 8fcbc99b9da8d576404296b4086c4992a5df5ea9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 12 01:49:06 2001 +0000 more documentation on state handling commit de701b2d6cb88de9dc1ecca769fe594cbd23dd5f Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 11 21:06:36 2001 +0000 more documentation commit 315a13a96e4587b1cad9bc1463b5e3dc2f2ce189 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 11 20:11:10 2001 +0000 documented gfxcard_check_state commit 63676a3a2b54ddd2b257f1068f12fa8c0275d342 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 11 18:56:13 2001 +0000 Chose this driver for a good example on writing input drivers. Added comments documenting the driver API. commit ab431921e1c8f41956173ccb33576314bc7da872 Author: holger <holger> Date: Tue Dec 11 12:06:17 2001 +0000 indent cosmetic commit 3df803523e51a76b1617b196ec22fc870f64ad76 Author: holger <holger> Date: Tue Dec 11 12:04:25 2001 +0000 code compaction commit 8812cdd8b7791d9d477125a1b9f1d3efe43a33c8 Author: holger <holger> Date: Tue Dec 11 11:55:29 2001 +0000 perform full initialisation on each device, this should get USB mices working on PC's, too commit 7a9c62207a95d72ad42b0282f03b1e37bf068e6a Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Dec 10 19:01:46 2001 +0000 Updated for 0.9.8. commit b87761fb17c0b95c859a5a059362579d4c2b1195 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Dec 10 18:55:32 2001 +0000 Removed debug output in PS/2 driver. ATI fake texture[tm] for blended rectangles is available again. commit 2dd0439d87b4925fd84affecbbef1c99df7754a8 Author: Andreas Hundt <andi@directfb.org> Date: Sun Dec 9 23:34:37 2001 +0000 new aty128fb patch for linux 2.4.16 commit 993407a9492cf517a5e30dc81eba58f38ae57974 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Dec 9 10:55:39 2001 +0000 s/leightweight/lightweight/ commit c4d2832d44b82b5f800424a5861e9723d45945e7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Dec 9 10:54:13 2001 +0000 removed rounding factor when blitting non-scaled with tmu, very big fonts looked incorrect commit 4613b85d42edab09f9167717d4af18eaaf6b970c Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 7 22:29:28 2001 +0000 Use non-debug 'free' for freeing interfaces after failing construction. commit 10903cb964de9f5f98933b398899c6d4b93efdeb Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 7 17:49:17 2001 +0000 Use a double buffered window for a primary only if the primary should be a flipping surface. commit db17e3567bd964ee069bae29d4a2a42352cd38a6 Author: holger <holger> Date: Fri Dec 7 14:24:20 2001 +0000 moved around tcflush() commands commit e5828c1ef1bc620f61934a0e5723134101f6f976 Author: holger <holger> Date: Fri Dec 7 13:19:28 2001 +0000 optimize DDA for speed commit ab864429fd0cab6bd7b9485a4d9e82d564fab2b9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 7 03:58:11 2001 +0000 typo in debug message commit 8e7feb6cd8191a937b4d546adfc76e35753077a1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 7 03:38:12 2001 +0000 compile fix commit 03f9d510675c76a40fd40d9aeeba9f1cdd0cd38f Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 7 01:33:02 2001 +0000 Triangle rasterizer (used when hardware no triangle filling or clipping) now uses hardware accelerated rectangle filling if available. commit 9bf70ee4a78d55c672658aa0ff6c656935c5b479 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Dec 7 01:04:23 2001 +0000 Moved the hw clipping check before gfxcard_state_check/acquire when it comes to triangle filling. I haven't tested it before but the wrong order should have caused deadlocks when hardware is able to fill triangles but has no hw clipping. commit fb6aef957417b7ba433614d75e369a5b2e7c130d Author: holger <holger> Date: Thu Dec 6 21:22:05 2001 +0000 fixed driver commit 31c90dc29643164bb566faecb312076eb0049cbc Author: holger <holger> Date: Thu Dec 6 21:06:23 2001 +0000 new FillTriangle algorithm using DDA's commit a413a656f557d79bc3cb2cbd2817e901c08b79d5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Dec 6 16:45:57 2001 +0000 Added gfxcard_reserve_memory that can be called at init time by drivers for special purposes, e.g. fake texture or command overflow buffer. commit 8df2b725bf9e00aea7354d0876ffa0092c218924 Author: Sven Neumann <neo@directfb.org> Date: Thu Dec 6 16:07:49 2001 +0000 initialize GetFont field in IDirectFBSurface (spotted by king@mizi.com) commit 223ee60f46e5ca1c3027ef372adc66302d78ecbc Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Dec 5 02:25:55 2001 +0000 Don't generate window events from input when an app runs fullscreen. commit 18031f5b711f7560c21cc020d9346f3e424da9d2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 4 20:52:34 2001 +0000 Applied patch from David Wood <DWood@daedalcorp.com>. Added him to AUTHORS for the Voodoo driver. commit 6e371a3d623f42ea6f6c57ff12a5cb87e1e1e0fe Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 4 18:52:51 2001 +0000 Renamed 'BYTES_PER_PIXEL' to 'DFB_BYTES_PER_PIXEL'. Renamed 'BITS_PER_PIXEL' to 'DFB_BITS_PER_PIXEL'. Renamed 'PIXELFORMAT_INDEX' to 'DFB_PIXELFORMAT_INDEX'. Added 'DFB_DRAWING_FUNCTION(a)' that replaces the magic 'accel & 0xFFFF'. Added 'DFB_BLITTING_FUNCTION(a)' that replaces the magic 'accel & 0xFFFF0000'. commit 1ef5564bbbfec9536c99c4e8c54cf4ae681f9931 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 4 17:43:37 2001 +0000 Division by zero fix. commit d5d5547d56bfa40eb95f9a05b602a4f848942c26 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 4 17:42:47 2001 +0000 renamed dbg_* functions to dfb_dbg_* commit 0be7ae641e75ece7cdc2b2085fc4e7b97586f4eb Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 4 16:50:00 2001 +0000 Applied patch from Holger Waechtler, gFillTriangle is removed and triangle filling/clipping is handled by 'gfxcard.c'. Triangles are filled by software if hardware/driver doesn't support triangles or doesn't support clipping. In the final version of this function triangles will be filled via accelerated rectangles if hardware has no triangle or clipping support but filled rectangles. commit cdfcee5a0ddb3928a05f3994ae9b46b7e0bb3413 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Dec 4 16:42:25 2001 +0000 commented out a debugging signal commit 35a64af9ec15a5f17d70e38530b0a1279b74bc1c Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Dec 3 17:37:50 2001 +0000 optimized offset handling for file internal data commit f39f90c8d063938d9f381080cab66cbe1177ba92 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Dec 3 14:04:52 2001 +0000 Finally position independent code with real code sharing. No patch needed to build with dietlibc. commit 1ac75046d1f171ce147832d3481585e9ac3666d8 Author: Andreas Hundt <andi@directfb.org> Date: Mon Dec 3 14:02:24 2001 +0000 dont set the val field of semul at all when unsing the IPC_RMID semctl() commit b66883d1d1f16d5b8680b8ecc64e4b7287e48db4 Author: Andreas Hundt <andi@directfb.org> Date: Mon Dec 3 04:04:44 2001 +0000 in all SETVAL semctl()s, pass a union and set the val field instead of passing the value directly. this fixes multi appication core crashes on ppc. obviously this is the right way, however it worked too on i386 before the change. commit c521677e48d99ebe27a6ffd9f2bfa5d0098ef26a Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Dec 3 04:03:46 2001 +0000 Matrox BES works again, writing to four dac registers subsequently didn't work after the base address got a local variable instead of a global. Strange gcc or cache behaviour i guess. commit 74d8ab8b4ed792224076e78a6a4a4f22d91de8fe Author: Andreas Hundt <andi@directfb.org> Date: Sun Dec 2 00:17:26 2001 +0000 added "wm_hack" feature: press shift lock over a window and spin the mouse wheel to change the window opacity. commit b87a5f31ba0ff40d3a494408b439aa1d4f482673 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Nov 30 19:03:21 2001 +0000 Made all 'Sop -> Aop' functions 'Bop -> Aop' (source aliasing removed). This makes simple blitting 90% faster for very short scanlines, e.g. 2x200, because the "Sop_is_Bop" function is not needed. commit d559201293793fc56d6100213df56a45d8d7e785 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 29 16:58:39 2001 +0000 Fixed segfault when rendering pipeline is empty, e.g. using DSDRAW_BLEND with SrcFunc DSBF_ZERO and DstFunc DSBF_ONE. commit d36dc01cee434262f84483eb877d26e52494fa33 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 29 16:51:45 2001 +0000 Check for NULL pointer. commit 9cc0e65dfe4f1f6a01b4a8e1e778f8c4ee0dd795 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Nov 29 16:12:27 2001 +0000 Revived exit handler. commit 9be8bbbcc3602599123ed8282b9cd07ee82e42c5 Author: Andreas Hundt <andi@directfb.org> Date: Thu Nov 29 14:28:54 2001 +0000 build fix commit d26e711dc1a68cb742f7a87a673ca2d9cc9b25c3 Author: Andreas Hundt <andi@directfb.org> Date: Thu Nov 29 14:19:06 2001 +0000 added remote control driver for dbox2 commit 57fd6015f4812bf6f340d5d4f6ffeb32b4e639bf Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 28 17:56:41 2001 +0000 Removed "-O3" from default flags. It's added when debug is disabled. Added "-O0" to flags when debug is enabled. commit ba61c9fb37d8f11d070266044329f8496e013b63 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 28 17:06:28 2001 +0000 In RGB332: Have all colors but black a bit transparent. Black is totally transparent. commit fea914d4119cb4fc9afdfb09b31b633145909201 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 28 16:43:21 2001 +0000 hmm, transp is inverted alpha ;) commit c16f34ed4e62c7bb75ceff4659f531a6aafa6892 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Nov 28 15:58:30 2001 +0000 In RGB332 mode initialize alpha values in palette. commit 4fc1c660c5c87f61167dc2d6f81d13968217d605 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 27 20:42:36 2001 +0000 Physical address is 'unsigned long' now. commit dacba42883d71bc6ba26830193ce9688554202fc Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 27 13:19:42 2001 +0000 Create reactor before call to "driver->OpenDevice". commit e7560c25053c8149202109f7b1f6809b43d1569a Author: Andreas Hundt <andi@directfb.org> Date: Tue Nov 27 00:22:57 2001 +0000 added DWET_WHEEL window event. Focused windows now receive events if the mouse wheel is used. commit 60fa2ddf051144bfd7758d2b496c8baf8f79bad8 Author: Andreas Hundt <andi@directfb.org> Date: Tue Nov 27 00:15:56 2001 +0000 bugfixes: when using a imps2 mice the packet array was accessed out of bounds added (__s8) cast to before assigning wheel motion data to dz. commit 52972a68fb6ad4d743e60834f03d7c833bbfc94e Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 26 12:13:56 2001 +0000 Use calloc and strdup instead of malloc/memset and malloc/strcpy. commit d18189186c74579b173b154cced54448f3b5e79e Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 26 04:54:31 2001 +0000 Free pending events on destruction of IDirectFBWindow. commit b72a6a4c4a4f6517fded320024454a4619275362 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 26 04:48:19 2001 +0000 Removed "#include <config.h>" from headers that get installed. "-DDFB_DEBUG" and "-DFUSION_FAKE" are now command line arguments. When debug is enabled "-DDFB_DEBUG" is contained in directfb-internal.pc. commit 247dbcad4232ff271718075897125846c328e5e8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 26 04:30:03 2001 +0000 Use DFBCALLOC for DFB_ALLOCATE_INTERFACE only if not in debug mode, because interfaces are not freed intentionally in debug mode. Free pending events on destruction of IDirectFBInputBuffer. commit a72d2ecc6495967577a82a3438856acf56498256 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 26 02:50:18 2001 +0000 Include SMF_SOURCE in SMF_ALL, could have caused blitting from the wrong source recently (longer for a very few drivers) when switching to another state. commit e0a425359cbb4031ae47ce55293d27a85114e57e Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 26 01:50:45 2001 +0000 Add "-DFUSION_FAKE" to internal CFLAGS in package config file when compiling for single application core. commit 0ed598c6e86c15a3def0af551860c337d6a2ffe4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 26 00:04:18 2001 +0000 Made additional layers available again, but for single app core only yet. For a strange reason the Matrox BES doesn't get visible, until the old version has been used once. Readded 'surface_soft_lock' as a helper function that behaves like the one before. commit cf1be1be7a22b9f068850300c7c9409e0e463cb2 Author: Andreas Hundt <andi@directfb.org> Date: Sun Nov 25 22:53:05 2001 +0000 include string.h to avoid warnings with gcc-3.0 commit 6e16576996423dc602b1bc2cd6d844b015fa4d4d Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Nov 25 21:38:49 2001 +0000 When an IDirectFBInputBuffer gets destructed it now detaches from all devices it was attached to. Not only the first one. commit 5982ef209e4d1150d8c6d2eab9a2089b278e1ad4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Nov 25 18:54:50 2001 +0000 Device name is "Software Rasterizer" now, not "Generic". Vendor string is "Generic" or "MMX" so it prints "MMX Software Rasterizer" or "Generic Software Rasterizer". commit 965bd5328c99e5df814e7df520d78933e155f98a Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Nov 25 03:32:19 2001 +0000 Print device name & vendor instead name of driver. commit f0ec56b7f93f5d12a366dc12c0eff3d642101d3f Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Nov 25 02:23:07 2001 +0000 Fixed "--fbdev=" option. commit 1c05d9bcb5227b104766c6ceb9d2fc485d28a55d Author: Andreas Hundt <andi@directfb.org> Date: Wed Nov 21 19:28:16 2001 +0000 #include <asm/page.h>, fixes compile error on ppc (PAGE_SIZE was not defined) commit b55013fb307c9cabad8587ed2f8a9d5f075322e3 Author: Andreas Hundt <andi@directfb.org> Date: Tue Nov 20 22:05:01 2001 +0000 use malloc() and free() instead of alloca(). this fixes a crash, when loading jpeg images that are larger than the surface rendered to. commit 68ed11f3ce430d8e244e88324aec6a8cb1c93ceb Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 20 20:45:50 2001 +0000 Added support for IMPS/2 by Jason Gaiser <jasno@san.rr.com>. commit 61b342d2be35310df32ed862a7b7023a345c750c Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 20 14:46:15 2001 +0000 These are in fusion now. commit bd622572d9143771ba96efa479b105be266aca85 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 20 12:59:33 2001 +0000 Ok, here it comes, not yet complete and far from being finished. Important things to do are resource cleanup (especially when apps get killed), safety, code cleanup and so on. This tree can build both the single and multi app core, you can switch at configure time with "--enable-multi". The single application version does not fully work like before yet, missing are Suspend/Resume and therefore VT switching during running. Also support for additional display layers is disabled because there need to be some changes to the internal layer handling. There are also enhancements, e.g. abi version handling for drivers. Graphics drivers are now ready for multi head support. Core code cleanup is in progress. 'gfxcard.[ch]' and 'input.[ch]' already have their private structures hidden. I am sorry for the changes to the graphics and input drivers, but it's much more clean now and drivers work with single and multi app core without rebuilding. You can checkout DirectFB at any time by specifying "-r DFB_BEFORE_MULTI". Any help in optimizing/finishing especially the src/core/fusion stuff is appreciated. Thank you! commit 4ce740d0d1bf1d0475ba57ebb8d35668fab21a62 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 19 05:33:55 2001 +0000 Added 320x240 and 400x300 double scan modes. commit cd7549f12dd27e8015a551b149ea6e5f2446fa47 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Nov 13 07:36:03 2001 +0000 Simple blitting support for nVidia cards. Thanks to Daniel Foesch <dfoesch@cs.nmsu.edu>. commit 475d3155f039fea5742f894279940971337f1ffe Author: Andreas Hundt <andi@directfb.org> Date: Thu Nov 8 00:53:25 2001 +0000 fixed initialization of the RGB332 palette, white looked a bit like light coffe before (yes, dok you were right, that notebook tft was not) commit 525a2d04253905aeebb92d886f48b8a394c346f1 Author: Andreas Hundt <andi@directfb.org> Date: Mon Nov 5 23:29:52 2001 +0000 - finished implementation of RGB332 support, still not optimized but complete. - changed version number of generic driver to 0.5, didnt change that number for a _long_ time. commit 0c1b289e6d31274142cbddae1f5a10eab1c9e2eb Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Nov 5 21:01:25 2001 +0000 Restore current mode when resuming. commit e7a7709ee1f2e5f945b4fcc4418af6d05bb2c19b Author: Andreas Hundt <andi@directfb.org> Date: Mon Nov 5 00:52:43 2001 +0000 implemented Sacc_to_Aop_rgb332(), Sop_rgb332_to_Dacc(), Sop_rgb332_Sto_Dacc() now blending in 8 bit works. commit 1758deac0c70bd130aa3c276da18a51cc5b01e18 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 3 05:06:52 2001 +0000 Added includes for types used in these headers. commit f7f5ca6cf6dd84f580fc90a1ea2b68602a36ab1a Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Nov 3 04:49:01 2001 +0000 Fixed includes so that each header should compile on its own. Moved forward declaration of 'InputDevice' to 'coretypes.h'. commit 0925771ad452be507dd6cfecab92c2e0f34f1cc3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 31 15:53:50 2001 +0000 Default font location had changed, did also change in code. commit cfa916691655ff8a01901da733310c5d96a5c04c Author: Andreas Hundt <andi@directfb.org> Date: Tue Oct 30 03:32:48 2001 +0000 removed description of the examples. commit bf28334c75e88082280dfdce781a6ead5642b426 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 30 02:18:36 2001 +0000 Added OpenGL support via the new interface "IDirectFBGL". Added "IDirectFBSurface::GetGL", it will return the new interface if it has been installed (DirectFBGL). A call to "IDirectFBGL::MakeCurrent" sets the current OpenGL context. Added an optional "Allocate" function to interface implementations, the creator of the interface no longer needs to know its content. Activated DWCAPS_DOUBLEBUFFER for windows that got created implicitly by creating a primary surface in non-exclusive mode. The mouse cursor is now activated by default. Increased version number to "0.9.8". commit 74c82a7471aeb2ea4df7c0f43f8e5ab676dc45eb Author: Andreas Hundt <andi@directfb.org> Date: Tue Oct 30 01:27:58 2001 +0000 - removed examples, moved them to DirectFB-examples. commit 86180d221182007ee6d1436e3813ccdb135f1d34 Author: Andreas Hundt <andi@directfb.org> Date: Mon Oct 29 23:07:40 2001 +0000 implemented Sop_rgb332_SKto_Aop() for stretched color keyed blits. commit 8b642d324f01b9959254b86dfac7662a6f51c984 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Oct 28 21:29:39 2001 +0000 fixed some includes commit d4a3527700ab199657c01b749d86716d27b23d5d Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Oct 28 19:06:24 2001 +0000 Fixed typo in comment. commit 71040f99b71aaf98bac7209c8758d8fd568068ed Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Oct 28 19:05:38 2001 +0000 removed obsolete code commit 70ae72267dde43a78de33fc22ccc4ec698bb7343 Author: Andreas Hundt <andi@directfb.org> Date: Sat Oct 27 20:54:36 2001 +0000 changed penguin's colorkey to green. now df_andi looks correct in 15 and 8 bit (too much of the penguin was keyed before when runnig at lower bit depths) commit 58d468b13c398d4c009ab7c3595feb65cd143c71 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 26 12:39:34 2001 +0000 Updated for 0.9.7 commit e87e4763dc702529796540ba6775eb891d16d2c2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 25 15:17:30 2001 +0000 Removed commented out code, wrote an explanation instead why the state isn't modified. commit f2be27c5481d6346c539e553d8064154aebda0a8 Author: Sven Neumann <neo@directfb.org> Date: Thu Oct 25 14:47:06 2001 +0000 Adapted examples to latest API changes (surface->SetSrcColorKey). commit f360be888d6f8326201fcdac066ac73c3daabe3b Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Oct 25 14:33:16 2001 +0000 Important API change: IDirectFBSurface::SetSrcColorKey has to be called on the source now, when blitting to a surface which has source color keying enabled. For IDirectFBSurface::SetSrcColorKey and IDirectFBSurface::SetDstColorKey: The color key is now specified by three values each 8bit: r, g and b. They will be converted to the pixelformat of the surface automatically. commit e0f5c3beb39992d87ff5c5febc4540e48a61983d Author: Andreas Hundt <andi@directfb.org> Date: Mon Oct 22 17:53:48 2001 +0000 forgot to change filenames. commit d39fd0c4d5b5af82da95c9d5ffd9bd59219b7f4c Author: Andreas Hundt <andi@directfb.org> Date: Mon Oct 22 17:52:32 2001 +0000 *** empty log message *** commit 17ad8ca16ec51dad79a6069a4376eb91df37bb7f Author: Andreas Hundt <andi@directfb.org> Date: Mon Oct 22 17:52:03 2001 +0000 updated aty128fb framebuffer driver patch. the patch was tested with kernel versions from 2.4.7 - 2.4.12. It may work with older versions too. commit 096f45160569193fb54c2e204d377e4a1538cc20 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Oct 21 15:50:08 2001 +0000 Added DSPF_UYVY and clarified description of both YUV formats. Added surface capability DSCAPS_INTERLACED which indicates that the surface contains interlaced video data (two fields of half the height of the surface are stored interleaved line by line). This capability will be set by drivers when a layer is configured with DLOP_INTERLACED enabled. Video providers are then able to notify the layer driver about field changes (for software driven field changes). Added surface notifications CSNF_SET_EVEN and CSNF_SET_ODD (internal), drivers can listen to them to support (de)interlacing with software driven field changes. Added DVCAPS_INTERLACED to indicate that a video provider supports notification of field changes if the destination has DSCAPS_INTERLACED set. V4L provider supports (de)interlacing and both YUV formats. Added support for (de)interlaced video with the Matrox Backend Scaler. Added support for YUY2 as a blitting source on the G200. Added support for YUY2 and UYVY as a blitting source on the G400. Made some features available on the G100, stretched blits and format conversion are now available, but for 15/16 bit sources only. Colorizing is available, too. Blending could be available, but only in stipple mode and no ARGB32;-( Added support for deinterlacing in df_layer, also demonstrating how to test layer configurations. Will fallback to UYVY or even take the current format. AviFile provider returns an error if support for YUY2 or UYVY is not available. Increased version number to 0.9.7. commit c4a57ad2c754c4fe8f4facaecc9b262ce24a5ff9 Author: Andreas Hundt <andi@directfb.org> Date: Sat Oct 20 23:41:46 2001 +0000 optimized RGB15 and RGB16 color keyed blit (doubled performance on some cpus) df_dok benchmarks (MPixel/s): Apple PowerBook G3 400Mhz: 15.2 -> 30.8 Sony Vaio PIII 700 Mhz: 69.5 -> 112.9 PowerPC 823 66 Mhz: 2.65 -> 3.49 commit 0cfcd032885edb90e9dba165e583c13a2923ebe1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 20 22:35:21 2001 +0000 5 lines added to have G100 support as well ;) commit ebc5ca5f8b2aa1367e4de649d30f6b885c8421e4 Author: Andreas Hundt <andi@directfb.org> Date: Sat Oct 20 15:01:27 2001 +0000 - dont call fbdev_set_gamma_ramp() when using RGB332 - allow RGB15 mode on fbdev drivers that report to use one bit for alpha commit b92f249876c108445a2bf81d4e5b9cc2795de99f Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 20 08:52:42 2001 +0000 It's now possible to use the V4L Provider on YUV surfaces. commit 0fa1dcc59ee68fbb3dba671ba048c3dc79dbb0ab Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 20 08:02:16 2001 +0000 Added support for the following fb.modes options: 'gsync true' - Sync On Green enabled 'csync high' - Composite Sync high 'extsync true' - External Sync commit 3ab5d3da023bc08473fe6d36c689ae240cc7a8b0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 20 07:47:20 2001 +0000 When reading the first 32 byte of a file in CreateImageProvider, open the file/device O_NONBLOCK! With a BTTV and DFBSee trying to create an image provider for /dev/video the read never returned. commit 7334ea9cfdcbfa80a78544cf6aeed6fa54e01373 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Oct 20 06:49:50 2001 +0000 Added acceleration for older Matrox cards (Mystique and Millenium I & II). Tested on a Mystique with SGRAM Supported are: - Solid rectangle/triangle filling - Solid line/rectangle drawing - Blitting with or without source color keying Mystique seems to has a texture mapping unit, but I didn't get it working correctly, scaled images looked tiled/interleaved, but it was slower than software anyway, so it propably wouldn't trade off. Fixed BCOL setting (colorkey mask), all 32 bit must be filled for these cards. Added second simple blitting function 'matroxBlit2D_Old', because BitBlt programming is too different between new and old cards. Source and destination surface offset handling is totally different, too. Cleaned up CheckState functions, optimized invalidation rules in SetState. (Don't know why source registers had been invalidated on destination changes). Tested on a Mystique with SGRAM on an Athlon 1.33GHz: - Rectangle Filling 823 MPixel/sec - Blitting 46 MPixel/sec (software was about 30) Without "--matrox-sgram" feature: - Rectangle Filling 94 MPixel/sec ! commit 9526323cca3e159c24ac55545153913bbe575c63 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 19 21:12:02 2001 +0000 changed the default background color to a more "cooler" blue commit d3e49eba971a86f232e57ffba10f5663ed6977cf Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 19 21:07:04 2001 +0000 Added option "--fbdev=<device>" which lets you specify another device than "/dev/fb0". commit bb526019b27660f1b5084b937cd8e1035dfc6668 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 19 20:50:06 2001 +0000 Renamed global symbol "vt" to "core_vt". commit 9e2175119357828b0cdf09adfff6d5f30420410b Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 19 20:30:42 2001 +0000 Each interface con now have a long description, put it above DEFINE_INTERFACE. Description of structs is now put into types page. Added some text for IDirectFB. commit 943754f50a62b0bddd24740d8f91e1e72a0bccd9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 15 02:29:00 2001 +0000 After a window gets closed make sure another window gets the focus if any. commit 3a6db05db001a8abcab56e6170bbb9ad65f720fa Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 15 00:55:31 2001 +0000 Reenabled changing of controlling tty when vt switching is used. This is needed, otherwise mode switching ioctls have no effect. commit b45b82d58c3239a507bb08a5c36315e0f4c54420 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 12 12:24:42 2001 +0000 Use video alpha method when modifying destinations alpha channel. Text and blended blits look much better now when done on a window with alpha. commit c045162ee3d7fa0cb131ac72a6076171945c837e Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 12 00:03:04 2001 +0000 Several enhancements make DirectFB now really usable with "--no-vt-switch", with this option you are able to run DirectFB programs without super user privileges. You need read/write access to /dev/fb and you should start it from the console, i.e. not within X. DirectFB now restores the palette during deinitialization. DirectFB now turns cursor and blanking back on. DirectFB now restores the terminal attributes like local echo. commit 6a6dc0e18baded8e8f43cf7544c72885bf092384 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Oct 10 13:21:50 2001 +0000 Added checks for supported source formats. commit 0e8ba28f155e34eed93cc97dd3784198e629fa23 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 9 08:49:33 2001 +0000 Better check for supported/unsupported pixelformats. commit d518e865e5541a30a57cd91037859d8cac545ec7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Oct 8 07:08:46 2001 +0000 Source surfaces are now locked before destination surfaces. Commented out error message of FreeType2 Font loader when the file could not be opened. commit 885edeb232aff1529438ee82d84654fed47e1ebf Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Oct 7 03:55:30 2001 +0000 Ready for 2.4.10 neofb. commit c509539543ab25dd28fd7388583e05633ce5b74f Author: Andreas Hundt <andi@directfb.org> Date: Sun Oct 7 03:07:11 2001 +0000 fixed warning commit bb1d8763ab4f1b81b165078a01c8a4da1d97d928 Author: Andreas Hundt <andi@directfb.org> Date: Sun Oct 7 03:01:58 2001 +0000 added 8bit RGB332 pixelformat. This is usefull to test DirectFB on old unix workstations which had 8-bit framebuffers on board (sparc,pa-risc,mips) Implementation in not complete yet. If you want RGB332 for any reason, you have to enable it at compile time using ./configure --enable-rgb332 commit 56e3728eca88eea44118f28949eee40527f968ea Author: Andreas Hundt <andi@directfb.org> Date: Fri Oct 5 19:27:21 2001 +0000 fixed gcc-3.0 warnings. commit 7d225e0b498a49a5ddbb2be22a9c558df95390b5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Oct 5 13:17:22 2001 +0000 Do a more verbose error message if no supported modes were found in /etc/fb.modes and the current mode is not supported, too. Pixelformat of current mode is printed in this case. commit eb7bab13392acbe2d5f01acc5a0f8979aa637846 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 2 22:07:52 2001 +0000 R34D7 4 D4 R3L3453 commit 6b4f98844efdf45cad3747ca72315d37ee54e4cc Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 2 22:04:19 2001 +0000 Added 'IDirectFBDisplayLayer::Set/GetColorAdjustment()' along with four capability flags for each adjustment (brightness, contrast, hue, saturation). Implemented color adjustment for Matrox BES (brightness and contrast supported in YUV only). commit 5d3c9095555c8b7d02fc7e6eb58931199e2193b2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 2 20:10:37 2001 +0000 Fixed documentation generation according to distcheck's complains. commit 364b8b0ff20ebbde50d98e1f5328b8ac3948d8d6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 2 15:38:42 2001 +0000 Updated ChangeLog and summarized changes since 0.9.5 in NEWS. Changed version number to 0.9.6 by previous commit. commit 89cc3f0689db45c9e8f81531cc9dc6fd49f54f06 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Oct 2 15:35:48 2001 +0000 We now accept compatible pixelformats, e.g. IPAQ's RGB format is compatible with RGB16. Added evil workaround for automake using non substituted @AS@ like a gcc. Added stamp-h1 to .cvsignore commit 19f2f467e0851252d4292e1344181b18c9a285df Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 27 03:56:13 2001 +0000 Check enter/leave and focus after ungrabbing pointer. commit 408edc2205b1049ad098898f11440ce81caf6631 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 26 18:20:46 2001 +0000 Benchmark size is automatically shrinked to fit the screen, e.g. for 320x240. commit c478fe0c659b639463cbb20eb195eb92d2ea8612 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 26 17:56:09 2001 +0000 Eek, broke button press/release, fixed ;) commit e52b138819af0abcb7f3bde75a0d989743887222 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 26 17:51:20 2001 +0000 If there is no pressure, the x/y fields seem to be invalid. Check them only if there is pressure. commit 86edba4110566931eaec72c5496e433b6b3a49ff Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 26 17:31:33 2001 +0000 Fixed handling of absolute axis coordinates in window stack cursor handling. commit 76ce6ead53befac36ba52ee27da30859c3464763 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Sep 26 16:47:19 2001 +0000 Added untested H3600 Touchscreen driver. Fixed definition of DFXL_ALL (DFXL_FILLTRIANGLE was missing). commit ac463fe40c03c9f210c7a71e9e9ee27da9a22551 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Sep 23 04:33:00 2001 +0000 Use 'DFBCALLOC' in 'DFB_ALLOCATE_INTERFACE', forgot that one. Fixed small event dispatching bug in window stack, a button event was sent to the focused window even if it's not under the cursor and doesn't grab the pointer. When CapsLock is hold down you can raise the window under the cursor with a click. The following changes fix problems related to heavy threading, e.g. more than 50 threads on my machine actively using DirectFB: Added 'surfacemanager_lock/unlock()' and divided surface manager functions into two groups: functions doing the lock themselves and functions that can only be called between lock/unlock. Functions doing the lock themself must not be called between lock/unlock. Added 'state_lock/unlock(state)' that are called in drawing/blitting functions from 'gfxcard.c'. Merged 'card->source_locked' and 'source_locked (generic.c)' into new 'state->source_locked'. Added 'buffer->video.locked' so the surface manager does not try to kick out surface buffers that are currently locked, which could end up in a dead lock. commit bdec189bdf26ca618a733c91d82ea9a94897dd26 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Sep 22 21:25:01 2001 +0000 Added "-lm" for df_layer. commit ae0c3f7618819f1593e07f9c2a68b7cb12a9ab47 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Sep 21 21:34:12 2001 +0000 Fixed "Could not disallocate VT" problem, exit handler calls normal deinit function now instead of the emergency deinit. Additionally input devices are deinitialized from emergency deinit. Fixed problem with malloc/free debugging that occured when exit handler for memory leak checking was called before exit handler of the core. Memory leak checking is now called at the end of the core exit handler if debugging is enabled. commit 251dec9af7bdc797d2c0ab3131241408418964bc Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Sep 21 15:19:43 2001 +0000 Fixed segfault when loading big PNGs, seems that there was a problem with alloca. However it works with malloc, but maybe the problem is that libpng has a bug that does no harm when using malloc, because of other address ranges. Also switched to 'png_read_image()' to have deinterlacing handled automatically. commit 0b67da2772812ecd6f0a7e47fb9ce1a75286a780 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Sep 21 00:37:30 2001 +0000 Fixed surface manager bug. When surface gets kicked out of video memory, make sure that the system memory instance of the buffer is up to date. This fixes "missing font letters" for example. commit 4926a68e0d20c35d1d7c85151809ff52dfd93c98 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Sep 18 21:54:17 2001 +0000 Added result 'DFB_DESTROYED' which is currently returned by 'IDirectFBWindow' and 'IDirectFBSurface' if the window or surface has been destroyed. Added window event type 'DWET_DESTROYED' and changed meaning of 'DWET_CLOSE'. - DWET_CLOSE = 0x00000004, /* window got closed by window - manager or the application - itself */ + DWET_CLOSE = 0x00000004, /* closing this window has been + requested only */ + DWET_DESTROYED = 0x00000008, /* window got destroyed by global + deinitialization function or the + application itself */ Added 'IDirectFBWindow::Close()' that puts a 'DWET_CLOSE' event into the window's event queue. The event dispatcher thread can then decide to close it. Added 'IDirectFBWindow::Destroy()' which actually destroys the window after sending a 'DWET_DESTROYED' event, so the event dispatcher thread can notice and release any interfaces belonging to it. After a window has been destroyed by 'IDirectFBWindow::Destroy()' most functions of 'IDirectFBWindow' will return 'DFB_DESTROYED'. There is no need to destroy windows explicitly with this new function if no threads are doing 'WaitForEvent()'. If an 'IDirectFBWindow' has no more references after 'Release()' the window gets destroyed implicitly if it hasn't been destroyed before. If you hold down 'CapsLock' over a window (as if you want to move it) and press the key 'C' a 'DWET_CLOSE' will be sent to the window. commit 183bbecc2c2f07c4736160e6cffd0b5a5b0719b0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Sep 16 09:46:51 2001 +0000 Matrox Backend Scaler support added. YUY2 added. With a matrox try: df_layer <any.avi> commit cd99ba0285874fc1ec5d554099e9aaf04d96ad60 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Sep 14 00:23:56 2001 +0000 df_layer now links against $(AVIFILE_LIBS). commit cc00d022b03213175ab0e31b9fed948cace4c15d Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 13 23:49:27 2001 +0000 Forgot to set DLCAPS_SURFACE for primary layer (fbdev). Just changed the name of a function parameter in 'layers.h'. commit a53b8beb1e4467742880b7b1a755e5ce7ce58467 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 13 23:39:22 2001 +0000 Added new window capability, from the header: DWCAPS_DOUBLEBUFFER ... /* The window's surface is double buffered. This is very useful to avoid visibility of content that is still in preparation. Normally a window's content can get visible before an update if there is another reason causing a window stack repaint. */ Use 'alloca()' in 'IDirectFB::CreateImageProvider()' instead of 'malloc()', return appropriate error if file could not be opened. commit 5fde11e5f990ced53459a712d8b0756aff3c3241 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 13 22:41:40 2001 +0000 Added simple layer example which plays a video onto the second layer. commit 6aeaa1bb3d376dc2711e4f3145a0b3d75b82e23c Author: Andreas Hundt <andi@directfb.org> Date: Fri Sep 7 00:04:28 2001 +0000 in driver_deinit() card is set a state, where the aty128fb driver should never hang. commit 7b2e3eef289d9cc93c5a0ee2296fc7b727cd4fc7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 6 23:15:33 2001 +0000 The file descriptor of the allocated VT is now closed before deallocation. Added error checking to deallocation code. commit 23d8ccf08d9e55e81076e6d95bd6a9f1fbd528ee Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 6 22:48:08 2001 +0000 Call 'sched_yield()' after mutex lock failed. Call graphics card driver deinit in emergency deinit. commit 219c175c1cabf7890462b6433da10dde8f55ae10 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Sep 6 20:31:06 2001 +0000 Wrote a summary of changes after 0.9.4. commit d586de4e1907ceb33be948354d418965c167a330 Author: Andreas Hundt <andi@directfb.org> Date: Thu Sep 6 19:56:55 2001 +0000 enumeration callbacks return DFBEnuerationResult now (no more warnings) commit ee34e0dd5d8bd7c1a6a0f773eb316ae765c81846 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Sep 4 16:50:09 2001 +0000 Added a return value type for enumeration callbacks: DFBEnumerationResult. There are two possible values: DFENUM_OK and DFENUM_CANCEL. commit 89b800f933c5904ab0e2877cf8ab5ec70b17359d Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Sep 3 01:15:33 2001 +0000 Accept interlaced and double scan modes, 320x200 looks really cool in some way. Here is a 320x200 entry for fb.modes: mode "320x200-70" geometry 320 200 320 200 16 timings 79440 16 16 20 4 48 1 double true endmode commit 1ee50193f3f31e8491580b3801e063c6f16f0589 Author: Sven Neumann <neo@directfb.org> Date: Sun Sep 2 22:58:05 2001 +0000 Don't use the ERRORMSG() macro in DirectFBCreate() to bail out in case of dfb_config == NULL because ERRORMSG() uses dfb_config->quiet. commit ea292ae71cf8d11c9454b077cc5942a802ead56c Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 30 07:28:17 2001 +0000 Added the field "video_memory" to "DFBCardCapabilities" which specifies the amount of video memory in bytes. commit c076231bbb1960fdfc2b88bf60da307883b28658 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 30 07:19:57 2001 +0000 It's now possible to move the window under the cursor by holding down CapsLock. Should this be optional as it renders the key useless for windowed apps? commit 7f2ac96c070eea077fc1384d5a8d2f99a645bda7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 30 06:54:12 2001 +0000 Check for "card != NULL" and "vt != NULL" in emergency shutdown which can happen before these are initialized. commit 11e07d411df2cccd7e3e064ff5f6cfbe8525f60c Author: Sven Neumann <neo@directfb.org> Date: Mon Aug 27 14:48:27 2001 +0000 Added more keycodes to make the demos useable with remote controls. commit 8b8853a73d1e86c718e648f441c513c1872be067 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 27 03:04:31 2001 +0000 fill all 32 bit of FCOL commit bbfd5d4917fdbb7209ee8821c7f9bd7977212a57 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 23 20:48:57 2001 +0000 Reverted last patch that disabled deinit/init during suspend/resume. commit 2f5a3381a4180a8291125c367b5479a296e4dc5b Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 21 02:37:15 2001 +0000 Release destination surface in destruct method if still playing. commit ab394940984a2fc63c140633940535f3dde42f4e Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 20 19:28:56 2001 +0000 dont deinit/init input drivers during suspend/resume commit 5c7b5fc3e0d1df1f9d47568934e547d2b9dfd7ca Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Aug 20 16:06:45 2001 +0000 Added DFDESC_WIDTH and the appropriate field in the description to specify font widths differing from the height, e.g. for non-square pixels. commit 1f914f019fcb6fb927ebfbdeb06ab20fe26e4b72 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Aug 17 10:09:03 2001 +0000 detach from reactor AFTER 'window_remove()' so we get the DWET_CLOSE event commit 91eed47ac807b3452ef9cb226a215c2748923ba9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Aug 17 05:22:53 2001 +0000 In 'core_deinit_emergency()', e.g. when a signal is caught, try to prohibit graphics hardware access by doing a 'gfxcard_sync()' and a 'pthread_mutex_trylock()' on 'card->lock' up to 100 times, this may fail if the current thread locked it itself. Fixes corruption of X when moving the mouse cursor during a crash. commit 2d28f191cac6383d9808772d955e37cd3bf91e40 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 16 21:32:46 2001 +0000 When blitting with blending don't read the destination and don't add it to the source if DSBF_ZERO is set as the destination blend function. Some comments added in gAcquire for better getting-into-the-code-again :) commit 546bc9325eed0acd700e01cf37189d424d1e7706 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 16 00:13:01 2001 +0000 The transparent color index did not always refer to a unique color in the color table, i.e. it's just the index that makes the pixels transparent. Current version uses an artificial colorkey and preserves non-transparent pixels from being the same color as the key, at least for RGB565. Not the best solution yet though. commit 02129a00c81c5c7a9ad77c5e6f7cd798a8cc9a39 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Aug 12 01:20:51 2001 +0000 DFBFontDescription's field 'attributes' was not of type 'DFBFontAttributes'. commit b1553f22a6d230e44ac8e36c3c5c52e8c62f1d53 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Aug 11 20:17:13 2001 +0000 release font in deinitialization commit 425951eac14b106528f29ebc7985ec913bd7882b Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Aug 11 17:30:22 2001 +0000 Fixed segfault in 'fonts_destruct()' that occurs if no glyph has been loaded at all (check for font->glyph_infos != NULL). Added unlocking and font releasing to destruct functions of Window and Layer implementation of IDirectFBSurface, too. commit 3a53e4c3af5c570751dfcd3cd21e9c729ee28c2e Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Aug 11 02:10:25 2001 +0000 Added cleanup handler that stops capturing. This handler gets called by core_deinit() and core_deinit_emergency(). The only way to keep it capturing is to kill it with signal 9 or disable signal handling. commit 8b09ee41f9079c9fc6f0acf9cc8a7ed0cf4683aa Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Aug 11 01:53:39 2001 +0000 sig_remove_handlers was an implicit declaration, added it to the header commit 94dd477280aebc815801c627ea6c875adb7d4650 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Aug 11 01:45:00 2001 +0000 remove signal handlers in deinitialization, fixes the following bug message: (!) ---> CAUGHT SIGNAL 2 <--- (!?!) *** BUG ALERT [vt_close() multiple times] *** vt.c (77) commit c737e3042372ff952de9ffd6a5e9329063d6dea0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Aug 9 23:00:31 2001 +0000 Added 'IDirectFBImageProvider->GetImageDescription' which fills out a 'DFBImageDescription', it contains a 'DFBImageCapabilities' field with the flags 'DICAPS_ALPHACHANNEL' and 'DICAPS_COLORKEY' for now. Additionally the Image Description contains the colorkey if DICAPS_COLORKEY is set, e.g. when loading a transparent GIF. The GIF loader no longer generates an alphachannel from the colorkey, because it turned the transparent color into black. If you want to have transparent GIFs, use colorkeying which is way faster anyway. TODO: Turn 'IDirectFBSurface->SetSrcColorKey()' into a pixelformat independent function that is called on the source for keyed blitting to a destination, currently the colorkey of the source is set at the destination in the source's pixelformat. commit 14ffa404c40dde53507fb97fa8e02885cfa462dc Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Aug 7 23:44:22 2001 +0000 - Major cleanup. - Blending state fixes. commit 9534b0ea6a489b775fce0356e17332852b088423 Author: Sven Neumann <neo@directfb.org> Date: Mon Aug 6 22:54:41 2001 +0000 added more info to the header file (and thus to the generated documentation) commit 2fe2320b4b974b2daea7cae4176941299990be2c Author: Andreas Hundt <andi@directfb.org> Date: Mon Aug 6 11:58:34 2001 +0000 compile fix for mips, alpha and sparc architectures. SIGUNUSED is not defined in asm/signal.h on these platforms. commit 969b9ff8664c6cebf72d3e51050fa569b85f2089 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Aug 5 19:37:50 2001 +0000 Added character keys, only keys not in the list are F1 - F12, should we add them, too? commit 192d32350e2b572a3ddc0b76679518852b4dbdfd Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Aug 5 19:29:45 2001 +0000 Added fiorst version of a LIRC input driver. Simply name your keys (in the lirc config file) like the DirectFB keycode enum does without the "DIKC_" prefix, e.g. "OK", "MENU" or "VOLUMEUP". commit e1095b423a9472206fa73feaab6dc4fc4c254a24 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Aug 1 18:39:36 2001 +0000 use surface width instead of pitch for texture width commit 2dad9c30386deb9100587b351747d9aa6cfd98c5 Author: Andreas Hundt <andi@directfb.org> Date: Tue Jul 31 16:24:44 2001 +0000 fixed small render bug in StretchBlit() commit ba8311a3fa9f80b24919f36a89097c65fdb597f9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jul 28 19:28:22 2001 +0000 handle case where $target is not set at all (tested for "NONE" before) commit b621310ea7f1608cf14193dca61be7cba3f6da7d Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jul 28 07:03:20 2001 +0000 Memory debugging is thread safe now. Instead of exitting send SIGTRAP to ourself, when inconsistency is detected. commit ef06f19f99af36abc736e17655f70f849693d888 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jul 26 02:52:02 2001 +0000 New memory allocation debugging code that prints out a list of unfreed areas with function name it was allocated in, file and line number. Deinitialization code cleaned up and reactivated. Much code cleanup (file internal functions made static and moved to the bottom). commit 898e8fa23246d8891334e2a15d0c4aaac86adc49 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 25 20:22:22 2001 +0000 If debug mode is enabled all 'malloc()', 'calloc()', 'realloc()' cause a debug message with size, function name, file, and line number. Replaced some 'malloc()'/'free()' pairs by 'alloca()'. After DirectFBInit/DirectFBCreate about 1500 bytes where allocated ;-) Rest of the initial memory size relies to libc/libdl/libpthread. commit d0392b408b891e5bc4340291720e69cd6ef11561 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 25 16:36:20 2001 +0000 Return DFB_INVARG if text is NULL in DrawString. Unlock the surface in IDirectFBSurface_Destruct if it's locked. commit cfbf118eeb964631b591831e0691815d54670e35 Author: Sven Neumann <neo@directfb.org> Date: Tue Jul 24 16:29:22 2001 +0000 Unified types used for key_ascii and key_unicode. Please note that no inputdriver sets the unicode field at the moment. commit 1c923825655b18362fcf95d8ef6490613fbd8a80 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 24 14:43:15 2001 +0000 Added internal surface locking flag CSLF_FORCE, that forces 'surface_hard_lock()' to try a video instance. 'gfxcard_state_acquire()' uses the flag for the destination surface if the graphics operation is blitting. commit d2a79e5d877f79796c89005fa793922458b26f84 Author: Andreas Hundt <andi@directfb.org> Date: Mon Jul 23 20:48:05 2001 +0000 bugfix: removed free()s after provider->Release() is called. This fixes segmentation fault when using a background image. commit 44d56b3306d5a9fbec4c353a6a53f941ceb19a0f Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 23 18:03:37 2001 +0000 The pitch for system memory surface buffers is now aligned to a multpiple of 4 bytes. Do not set SCHED_RR for input threads, use normal scheduling now, highest priority there is ok. commit c36a7ea73f83c60fa43b1e20914318ce0b6d4768 Author: Andreas Hundt <andi@directfb.org> Date: Mon Jul 23 15:20:53 2001 +0000 rewrote gamma initialization code, should work in all depths now. commit ce7b71c7a1277f439b526d0c9e0a4d84ae13e394 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 22 04:45:39 2001 +0000 New input event field "timestamp" which can be set by the driver. I also added the flag "DIEF_TIMESTAMP", PS2 driver makes already usage of it. I reenabled setting high priority for input threads. commit d44e1ba68359182e2ac93863172cd938894dfe89 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jul 21 04:34:18 2001 +0000 renamed global variable "display" to "fbdev" commit c59ece931784915e04b19fd2be33e9df8dd47d95 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jul 19 22:55:10 2001 +0000 ignore file commit 75229ecb8087977cd3a5316318586cd849825942 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jul 19 22:54:46 2001 +0000 First version of nVidia RIVA TNT/TNT2/GeForce driver. Accelerates FillRectangle, DrawRectangle, DrawLine, FillTriangle without blending, no blitting support at all. Tested on GeForce 256 SDRAM doing 830 MPixels/sec in FillRectangle. commit 51f1a71e6c56164d3bb043643e2c65d340aee1ed Author: Sven Neumann <neo@directfb.org> Date: Thu Jul 19 12:09:46 2001 +0000 adapted Makefile to file changes commit 94ffbafe4671aeca7d1175900a31e181350b30c5 Author: Andreas Hundt <andi@directfb.org> Date: Wed Jul 18 17:22:49 2001 +0000 ok, i will compress it... commit baa50356ed313c3c47802fb1934ffcbd98a6ed50 Author: Andreas Hundt <andi@directfb.org> Date: Wed Jul 18 17:10:32 2001 +0000 made a new aty128fb patch based on the driver in benh's tree commit 485435620c7a85781692c07db628840ac547a00f Author: Andreas Hundt <andi@directfb.org> Date: Wed Jul 18 13:19:01 2001 +0000 initialize palette/gamma during initialization. this fixes the "strage-color-effect" in ati framebuffer drivers without the patch in DirectFB/patches. A new patch that fixes only the remaining problems is underway. commit d9e2b3c8f3a25b6eb436d6a1a8b4eb8e8b8aa0da Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 18 12:18:11 2001 +0000 fixed typos commit d891d4b61527aa5251b3d5a89c9a1bd7115efdaf Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 17 12:15:19 2001 +0000 only check source format if source exists commit 3f752c4886bbfa54c8f0a3a639434c43c7d4fc0f Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 17 12:06:17 2001 +0000 check source and destination format in CheckState, hopefully rejecting surfaces with width < 8 or height < 8 now. commit 0d9469a007457a87909508518ab8400bf4e0b8af Author: Sven Neumann <neo@directfb.org> Date: Mon Jul 16 22:45:59 2001 +0000 use INTERFACE_GET_DATA macro (reduced codesize by 182 lines / 0.5%) commit 1bf83db24ce8da9b14a05f8151212796495785d6 Author: Sven Neumann <neo@directfb.org> Date: Mon Jul 16 22:01:13 2001 +0000 (IDirectFB[InputBuffer|Window]->WaitForEventWithTimeout) Try to lock the events_mutex and check if there are events. If no events are pending, get current time before locking the mutex. This way the time it takes to aquire the mutex is taken into account for the timeout. commit 85c098928095b67fd985dbc55c31584dd69b2939 Author: Sven Neumann <neo@directfb.org> Date: Mon Jul 16 18:49:34 2001 +0000 Added IDirectFB->CreateInputBuffer() that allows to easily create input buffers for specific events. Use the new function in a number of demos. Bumped version number to 0.9.5. commit 36d3c50cafd57f00f38fd561a16f63fcacfd646a Author: Sven Neumann <neo@directfb.org> Date: Mon Jul 16 17:20:17 2001 +0000 Added some more keys (ESC, Q, BACK, STOP) that quit the demos to make them useable with remote controls. commit cecc4c565d282665493a7ac3043505230b7e29a1 Author: Sven Neumann <neo@directfb.org> Date: Mon Jul 16 16:21:03 2001 +0000 Attach all inputdevices to the window stack, not only those of type DIDTF_KEYBOARD and DIDTF_MOUSE. Let's see if this is a good idea... commit d37196de009795cc9dc69e8b4c84eeed536d0229 Author: Sven Neumann <neo@directfb.org> Date: Mon Jul 16 15:41:11 2001 +0000 do not sort struct entries alphabetically, keep them in the original order commit 3cbb42db9822b59540c8bdc8bfbf59ef69824b78 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 15 00:22:01 2001 +0000 Forced CCF_CLIPPING to 0x00000001, was 0 before (first enum value). No hardware clipping has been used while this bug existed. commit 02d55298b58830428596d924dfb7f20c28e28f77 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 13 13:51:58 2001 +0000 define SI_KERNEL for glibc 2.1.x commit 77ca011935795ed5c1cd6df853220a7b4ab57546 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 11 18:45:34 2001 +0000 Fixed a bug in 'primaryFlipBuffers()' that caused windowstack updates that are done on the whole windowstack not to get visible when buffer mode is DLBM_BACKSYSTEM. (e.g. df_window with software driver) commit e886636e11f4eeecaea1c84fa7cae07a77892bff Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 10 23:07:33 2001 +0000 If a mode has been set by 'fbdev_set_mode()' and the detected pixelformat is DSPF_RGB15, set mode->bpp to 15. If mode->bpp would be 16 bit, we won't find the mode afterwards, because we will search for a 15 bit mode if the current pixelformat is DSPF_RGB15. Fixes bogus "Setting primary layer buffer mode failed!" problems. commit b00b341aa7c49a2199db2fd19a4275bd6bb91e4f Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jul 10 01:05:23 2001 +0000 Added 'IDirectFBInputDevice->AttachInputBuffer()'. You are now able to receive events from multiple input devices with one buffer, nice with 'WaitForEvent()'. CAUTION: Releasing an IDirectFBInputBuffer does only detach from the device it was created from, following input events will cause a crash! Will be fixed soon. commit 417cb92fa8074bf332ba46b94b481df111803b26 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 8 13:47:54 2001 +0000 Call 'surface_flip_buffers()' after panning instead of before. Do a 'gfxcard_sync()' before FBIO_WAITFORVSYNC, actually a hack to reduce the time between vertical retrace interrupt and pan, as panning does a 'gfxcard_sync()', too. Updated all patches for 2.4.6, made usage of new kernel macros like 'interruptible_sleep_on()' in Matrox patch. commit d6b1afe8b9d57e9da08cf25588db38c366c1dccc Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 8 09:00:17 2001 +0000 Renamed LIBDIR to MODULEDIR and exported it in the pkgconfig file. This is the base directory for installed modules ("$exec_prefix/lib/directfb"). When installing a graphics driver "/gfxdrivers" has to be added to that directory. To query: "pkg-config --variable=moduledir directfb-internal" commit 45e38fbaf1ca9fb9cf8ff279b09ab3a534bedce7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 8 07:35:35 2001 +0000 Internal headers (all except "directfb.h") are now installed to "$prefix/include/directfb-internal". Files from "include", that are "directfb_internals.h" and "directfb-version.h", will be installed directly into this directory along with "idirectfb.h" from "src". Other headers from "src" will be in the same subdirectory as in the "src" tree. This way the '#include's are the same whether a module is built within or outside of the DirectFB source tree. First step to make it easier to write third party DirectFB modules in a seperate package. There is a new pkgconfig file "directfb-internal.pc" which will tell the third party configure script where the internal headers are installed to. It will output "$prefix/include/directfb-internal" when pkgconfig is called with "--cflags". Next thing to do is version checking on modules, because it probably will crash when using a module compiled with 0.9.4 is used with 0.9.5. commit 01b9532b20ee74b9ee5d0c27a04ff3718cffc6b6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jul 6 16:13:52 2001 +0000 Added summary of changes between 0.9.3 and 0.9.4 to NEWS. Generated ChangeLog, maybe Mitch can generate the better one with LDAP support. commit 5ece734794984b4f18935a7b89f32d80c7760e06 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jul 5 13:19:26 2001 +0000 Removed 'Dop' as it was always set to 'Aop', besides the two filenames above all functions are called '... to_Aop()' now. Also made 'RUN_PIPELINE()' do a "do { (*funcs++)(); } while (*funcs);" instead of "while (*funcs) { (*funcs++)(); }". These gave up to 70% boost for drawing solid lines and rectangles on a P3 800. commit e64d81b0e2ab4c9e3288088341bc822d07bffc53 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jul 4 10:20:04 2001 +0000 First entry in our TODO file ;) commit 319148093bd495684147b13a6c855b977aae636f Author: Sven Neumann <neo@directfb.org> Date: Tue Jul 3 12:11:52 2001 +0000 reordered Cursor interface declarations to get nicer documentation commit 819547dc440f6826bbfda831a7de842e3ec983dd Author: Sven Neumann <neo@directfb.org> Date: Mon Jul 2 19:37:22 2001 +0000 implemented Sop_a8_set_alphapixel_Dop_a8 (untested) commit a6c6357332b89f2c636e97319d370f24b1ee70d6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 2 16:07:48 2001 +0000 Do not return 'DFB_INVARG' in 'SetBackgroundMode()' on success, could irritate someone ;) commit 1fdfde638e9ee9d5f6bb3e1c27c0d119004714c1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 2 12:04:45 2001 +0000 compile, compile commit 496729959159bad4eba35dc872e2cbd69b1a75ed Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 2 11:59:45 2001 +0000 compile with recent changes to sub surface handling commit b8c816912e09ed13b5000544f9fb4b3a5b91a896 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 2 11:25:37 2001 +0000 killed one obsolete parameter and 4 FIXMEs regarding proper setting of it ;) commit faa4ae0454fadf496833d8ec301ac25bce134657 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 2 11:12:06 2001 +0000 initial support for axis motion events with absolute values commit f9593f5285bd02a3d5746e0d2f3124b4aa1ef4fa Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 2 08:38:34 2001 +0000 Fixed a very bad bug, don't use 'realloc()' on structures containing data you already installed listeners for with a pointer to it as the context ;-) Interface constructors no longer use 'realloc()' for 'thiz->priv' to store their extra data, they do the (bigger) 'malloc()' themselves before calling the parent constructor. Each interface constructor should check for 'thiz->priv == NULL', if this is the case they should do the 'malloc()' and then call the parent constructor if one exists. This fixes nearly every possible bug, because listener functions wrote into memory where there shouldn't. New result code 'DFB_INVAREA' that is returned if a surface has no valid area or a region or rectangle specified does not match, e.g. SetClip returns it if the clipping region specified does not intersect with the current (sub) area. It is also returned by the drawing and blitting functions if the source or the destination has a current (sub) area of size 0x0. That can happen if the surface is a sub surface, e.g. at x = 900 and y = 600, and the surface gets resized to something below that. Enhanced sub surface handling, there are three rectangles along with an IDirectFBSurface, these are "wanted", "granted" and "current". The first one is the rectangle passed to 'GetSubSurface()', it doesn't matter if it's too large or has negative starting coordinates as long as it intersects with the "granted" rectangle of the parent. The "wanted" rectangle should be seen as the origin for operations on that surface. Non sub surfaces have a "wanted" rectangle of '{ 0, 0, width, height }'. The second one, "granted", is the intersection of the "wanted" rectangle and the "granted" one of the parent. If they do not intersect 'DFB_INVAREA' is returned. For non sub surfaces its the same as the "wanted" rectangle, because it's the rectangle describing the whole surface. The "wanted" and "granted" are calculated just once at creation, the "current" rectangle is the intersection of the "granted" rectangle and the surface extents. 'SetClip()' and many other functions are limited by that one. This way sub surface area information is preserved during surface resizing, e.g. when resizing a window. Calling 'SetClip()' with NULL causes the clipping region to exactly cover the "current" rectangle, also the flag 'clip_set' is cleared causing the clipping region to be set to the new "current" after resizing. If 'SetClip()' is called with a clipping region specified, an intersection is done with the "wanted" rectangle that is then stored in 'clip_wanted' and 'clip_set' is set. However, if there is no intersection 'DFB_INVARG' is returned, otherwise another intersection is made with the "current" rectangle and gets applied to the surface's state. Each resize, after the "current" rectangle is updated, the clipping region is set to NULL or 'clip_wanted' depending on 'clip_set'. This way even clipping regions are restored or extended automatically. It's now possible to create a fullscreen primary and call 'SetVideoMode()' with different resolutions or pixelformats several times without the need for "updating" the primary surface by recreating it ;) So '->req_rect' is now replaced by '->area.wanted' and '->clip_rect' is replaced by '->area.current' for the most cases. 'IDirectFBSurface->Lock()' now adds the "current" rectangle's offset to the base address, so applications should use 'GetVisibleRectangle()' before writing into a locked sub surface to get the offset from the "wanted" rectangle and the limits. If there is no "current" rectangle 'DFB_INVAREA' is returned. Added 'region_rectangle_intersect()' and did some minor optimizations. commit b8c69347c91bf7cfa8d0283cc1d05e7967419c07 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jul 2 02:24:43 2001 +0000 SetVideoMode keeps current buffer mode, this prevents an already created flipping primary surface from turning into a non flipping one. Fixed 'primarySetConfiguration()' and 'primaryTestConfiguration()' for 15 bit modes, they were broken since layer API changes last week. If 'fbdev_set_mode()' no longer overwrites the primary layer's surface format with DSPF_UNKNOWN in case of an error in 'fbdev_get_pixelformat()'. It also restores the video mode before returning DFB_UNSUPPORTED. commit 8c89046df179d49ae3c0d38c79f2ac8c124ca93d Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 1 23:31:04 2001 +0000 Added macro 'CAUTION' to "coredefs.h" that should be used when unimplemented features or unsolved problems have a serious impact on further execution, e.g. crashes or wrong behaviour. Added surface resize handling code in 'IDirectFBSurface_listener'. If the surface is a sub surface it's area will become the intersection of the old area and the new surface extents. Prints caution message if there is no intersection or the clipping rectangle is out of bounds. Disabled code in 'IDirectFBWindow->Resize()' that is unneeded now, because surface resizing is now handled in 'IDirectFBSurface_listener'. Removed 'memcmp()' in 'IDirectFBSurface->SetClip()', it's always marked as modified now, I hope some benchmarking will show which way is the best, but this mostly depends on how often 'SetClip()' is called with the same clip. Fixed typo or braino in listener attached by 'state_set_destination()'. Changes above not fully tested, will test GDK backend soon. commit c58427eca124b2d9715b97ab81a2f3b0ffd4fec9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 1 20:21:32 2001 +0000 VT switching by pressing Ctrl+Alt+<F?> is now disabled by default, because it makes debugging impossible with only one machine (you cannot switch back to the console where you started gdb until you kill the program). The code is very experimental and sometimes it hangs during 'input_resume()'. Added option "--[no-]vt-switching" and wrote a better description for the similar looking option "--no-vt-switch", maybe we should rename that old one. commit a0b6b844a7aeb667ef3fc61884f2d8ddfee602d0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jul 1 20:08:01 2001 +0000 made the "nearly black" color (#020404) "nearly black" for RGB555 (#020804) commit cf8a8ff426194ada9997c0da9595ecd56d65cd57 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jun 30 14:05:21 2001 +0000 Added internal macro 'INTERFACE_GET_DATA(i)' which checks the 'thiz' pointer, declares 'i_data *data', checks 'thiz->data' and writes it into 'data'. About 200 code lines less now ;) Added result code 'DFB_THIZNULL' and 'DFB_IDNOTFOUND' (returned by 'GetInputDevice' and 'GetDisplayLayer'). Added 'DirectFBErrorString(result)' which returns a description string for the result, internally used by 'DirectFBError(msg, result)'. Added some more argument checks. commit 7b2ec632463e731f0fb1a6938c46752ceb9e9135 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jun 30 11:11:22 2001 +0000 in CreateWindow: return DFB_INVARG if height == 0 or width == 0 commit ae124c864c877e24c69a09b3f490a7b03f1e2444 Author: Sven Neumann <neo@directfb.org> Date: Thu Jun 28 21:19:59 2001 +0000 ooops, forgot to register the GetCapabilities method... commit 27fd9ff761c67a2b6d09c1e6c7493f891c97bab0 Author: Sven Neumann <neo@directfb.org> Date: Thu Jun 28 10:58:54 2001 +0000 don't try to set opacity on unexistant cursor_window commit 33686cc5ac6c668c93ed5acfeaf3035dfd6284ed Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 28 00:50:49 2001 +0000 call window_repaint() on the cursor window in layer_cursor_load_default (fixes the bug that the cursor is invisible after enable until it is moved or the window stack gets repainted) do window_set_opacity() after window_init() commit 8ee31a44d44628a7b7e5fe778684ea70b4951474 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 28 00:01:16 2001 +0000 added option "--[no-]sync" that enables/disables a call to "sync()" in "core_init()", default is no I will write a "sync" in my rc. commit b2f3fdb3eda23c91e2263385639cfb2c65ba0575 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 27 23:20:41 2001 +0000 sig.c: - signal handler does a kill with the received signal instead of SIGHUP vt.c: - if the signal source is not the kernel, call the previously installed signal handler for that signal (does not seem to work for Kaffe) - use other signals than SIGUSR1 and SIGUSR2 that does not collide with Kaffe's garbage collector, a bit dirty (SIGUNUSED+10/11), but works commit 35130374ebf475226f5053749f11fdc9ff5df0dd Author: Sven Neumann <neo@directfb.org> Date: Wed Jun 27 22:53:32 2001 +0000 removed a trailing comma from an enum commit e78b05ccb25a6802e11c12ce478ebb4bbf4b0535 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 27 20:22:38 2001 +0000 fixed description of SetSrcColorKey added initial API support for streamed video providers commit 72a9fad67232b6c931863fc1d83f84140f4924ce Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 27 17:52:36 2001 +0000 also did the same mode checking fix for the current mode (e.g. with vesafb) commit 34ce15ba61661ade9d1a8e28c1a8f55b82607bc5 Author: Sven Neumann <neo@directfb.org> Date: Wed Jun 27 17:49:32 2001 +0000 Renamed color to saturation in DFBColorAdjustment and friends. commit c0c575093b8a0d7b1c856f377d8ce9f316175a0f Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 27 17:20:16 2001 +0000 flickering in windowstack fixed, got broken tonight commit 3543270c77bd3be3beac8f965dd078ec119b39e6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 27 17:11:20 2001 +0000 fixed bug that caused an error "Could not set default mode!" if the first entry in fb.modes doesn't have 15, 16, 24 or 32 bit commit 33aebdcfdf544f79283e399ab60a6f31c01cd54b Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 27 17:09:59 2001 +0000 applied patch from Joachim "roh" Steiger that adds missing pthread includes commit 5b8832fb67705900e1794dab7c68b728c3ff5a72 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 27 13:59:28 2001 +0000 should be 0.9.4 after recent API changes commit 7870fa6a95b85007d073f2d75b880af02989217c Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 27 13:58:30 2001 +0000 Changed Display Layer Configuration API: - DFBDisplayLayerCapabilities extended now including color keying and other - removed DFBDisplayLayerModeFlags, added DFBDisplayLayerOptions instead - added IDirectFBDisplayLayer-> Get/Set/TestConfiguration that take the new DFBDisplayLayerConfig for almost all settings like pixel resolution, pixel format, DFBDisplayLayerOptions and more - TestConfiguration takes an additional DFBDisplayLayerConfigFlags to optionally write back the settings that failed - removed GetSize, SetBufferMode and SetMode - added SetColorKey and SetScreenLocation Followed API changes in IDirectFB, IDirectFBDislayLayer, IDirectFBSurface_Layer and some demos. Cleaned 'fbdev.c' (that handles the primary layer) to follow internal display layer driver API changes. commit 5069d321c9844f4b4aedf41ea2164f72e6db8b93 Author: Sven Neumann <neo@directfb.org> Date: Wed Jun 27 13:32:39 2001 +0000 check return values of new ioctl calls commit 13d4b323c350647aeeaed5d13c2c22d2fd4277b2 Author: Sven Neumann <neo@directfb.org> Date: Wed Jun 27 11:04:18 2001 +0000 Extended IDirectFBVideoProvider API: IDirectFBVideoProvider->GetCapabilities() retrieves info about the provider IDirectFBVideoProvider->GetColorAdjustment() IDirectFBVideoProvider->SetColorAdjustment() get and set values to adjust the video colors The DFBColorAdjustment maps directly to the Video4Linux API. We might want to change it to take floating point values instead of __u16 ?! Output useful error message if doc generator dies. commit 6eccc3037b17c3abef9a4e052c8ef87ed92efeae Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 26 17:21:59 2001 +0000 don't catch SIGPOLL (a.k.a. SIGIO) commit 1e9d97eb27ac794ebab46d4ee19f38686d66a290 Author: Sven Neumann <neo@directfb.org> Date: Mon Jun 25 15:38:02 2001 +0000 Reenabled key events for windows (we lost them while adding support for console switching). Changed cursor handling: Cursor can be enabled/disabled and opacity can be set independently. Also cursor appears centered now. Process key events in df_window: Cursor keys move active window. commit 9c53a4df681b0b9bc915545f75dd3b17aa385a46 Author: Sven Neumann <neo@directfb.org> Date: Sun Jun 24 20:45:56 2001 +0000 fixed transparency problems for large palettes (transparent index > 127) commit a42cbd3754a5f66c1de06903815f2d5202b4a2c9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jun 23 13:05:28 2001 +0000 Added console switching support during runtime!!! Experimental but working... use Ctrl+Alt + (F1 - F12) ;) Had to add much code to src/core/vt.c that does the biggest part of the job (reentrant signal handler ;-) Added VT_ACTIVATE code to the global keyboard handler in src/directfb.c, which handled Ctrl+Alt+Backspace so far. Also modified the keyboard driver, because vt switching code in src/core/vt.c already had to open the target tty. Turn on debugging during configure if you have problems with switching and mail the output to the developers list. Other fixes and additions: Another 'mga_waitfifo()' call corrected (10 -> 12). Fixed bug in 'surfacemanager_suspend()' that broke some surfaces, e.g. fonts. It did not assure a valid system memory instance. It still does not care about video only surfaces. Fixed 'reactor_dispatch()', RS_REMOVE was not handled. Added RS_DROP that tells 'reactor_dispatch()' not to do any further dispatching of the event. Do a 'kill (0, SIGHUP)' in signal handler instead of 'exit()', after all our handlers are removed, of course ;-) commit c6f3478883d846d98258af0482e96f0dd4b27cc8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jun 23 03:49:56 2001 +0000 Require working frame buffer device, not only compiled in. Fixed a typo. commit 76786fdf6920138dd7beb3f5a6e8fc399db6bbff Author: Sven Neumann <neo@directfb.org> Date: Fri Jun 22 20:25:52 2001 +0000 fixed a bug in the fb switching code that made RGB32 modes fail commit 951d64bd3719130416bd4c9c35042330ff0e2573 Author: Sven Neumann <neo@directfb.org> Date: Fri Jun 22 19:34:31 2001 +0000 fixed another bug in copy_buffer_32(). commit b2cf5f965541c9bf6ebb766ec54d6264bd128695 Author: Sven Neumann <neo@directfb.org> Date: Fri Jun 22 19:29:12 2001 +0000 Fixed a stupid bug in copy_buffer_32. The PNG provider ponly writes directly to destination surface if format == ARGB, not if bpp == 4. The GIF provider did not take destination pitch into account. commit f05c548eb80586310e6ee637a7c14acac2bc62c2 Author: Sven Neumann <neo@directfb.org> Date: Fri Jun 22 19:05:42 2001 +0000 optimzed copy_buffer_32() commit 940de8cf7309deb1d91982a3b3ae9f6d3cce0531 Author: Sven Neumann <neo@directfb.org> Date: Fri Jun 22 17:59:55 2001 +0000 Removed an unnecessary GetSurfaceDescription() call. commit a2678a2c719acf50820712b25c02bd787178304d Author: Sven Neumann <neo@directfb.org> Date: Fri Jun 22 17:44:17 2001 +0000 Added alpha transparency support to GIF ImageProvider. Fixed alpha handling in scale_linear_32 and copy_buffer_32: If the destination format does not support alpha, blend the image data over a black background since most images have undefined color values in the transparent areas. commit ea2443e07ad2b9739c3c9d141b4d272c9ec1a333 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 22 03:41:58 2001 +0000 - df_dok accepts failing SetCooperativeLevel - df_andi and df_dok both ask the primary surface about its size and not the primary layer commit b3aa77c72a2f027213271802f65194e256a28ba8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 22 03:19:08 2001 +0000 Added option "force-windowed" which makes SetCooperativeLevel return DFB_ACCESSDENIED for other levels than DFSCL_NORMAL. df_andi, df_particle and pss don't abort anymore if setting the cooperative level fails. Check for 'argc <= 1' instead of 'argc == 1' in df_dok, because 'main()' can be called with argc set to 0 ;-) Moved global variables of df_window into the main function, removed layer enumeration that did not make any sense because the IDirectFBDisplayLayer has only been constructed for the primary layer, and that is DLID_PRIMARY just passed to GetDisplayLayer. commit c773af56feeddf8e9808ace558f685b75c1ce065 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 21 23:24:45 2001 +0000 initialize AVIFILE to "no" commit 862c863656bd5b90a94f6fb10ee896921bacae0f Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 21 21:17:08 2001 +0000 first check $target for system type, if $target == "NONE" check $host commit e2a5632383f428b8dc77568a170f37a73dc7a77b Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 21 20:47:12 2001 +0000 hopefully fixed the alphachannel bug from gif loading (internal buffer was not set to '0xFF000000 | color') commit dcc6bc2a46c0a5a977de7b7c9ccf79e36fa9d34d Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 21 18:36:45 2001 +0000 Use mga_in32 in mga_waitfifo rather than mga_in8. Added mga_waitfifo(1) in FlushTextureCache (I forgot). Problems with G200@ARM are gone now. commit 560e4e7bb9d0d0015499782bc2401cc46467f8d8 Author: Sven Neumann <neo@directfb.org> Date: Thu Jun 21 12:43:26 2001 +0000 forgot this one when changing the headers commit 90ae2c304a6b666ad1a212bf614bd89e62885786 Author: Sven Neumann <neo@directfb.org> Date: Thu Jun 21 12:39:02 2001 +0000 Great Header Cleanup (TM): collected typedefs in core/coretypes.h removed inclusion of headers from most headers commit 677c11632c6873a1020f6358a8f7fc267ab61463 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 21 09:02:05 2001 +0000 check for surfaces bigger than 2048x2048 apply mask 0x7fff to pitch before setting it commit a34eb374b5c0907e26a7382081783150e8e0a926 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 21 08:26:14 2001 +0000 DIFFUSEDALPHA for BLIT_NOFX was wrong, ALPHACTRL programmed to 1 for BLIT_NOFX commit 3c04c4996c112d4cd812797b1e3ba2f7d32b9cf8 Author: Sven Neumann <neo@directfb.org> Date: Wed Jun 20 16:05:40 2001 +0000 fixed a braino and some compiler warnings commit e2a8d35c782de98af3329571f6af856676b062bf Author: Sven Neumann <neo@directfb.org> Date: Wed Jun 20 14:50:04 2001 +0000 Removed -fexpensive-optimization from compiler flags since -O2 already has this. Added -fomit-frame-pointer unless debugging is turned on. commit 3045ad9af272293736d6a8dab063e45f7e6ae4b9 Author: Sven Neumann <neo@directfb.org> Date: Tue Jun 19 17:22:28 2001 +0000 optimized utf8_get_char() for the default case (7bit ASCII) commit b3750267da7369f195e37b46670a05e6c8a6cb97 Author: Sven Neumann <neo@directfb.org> Date: Tue Jun 19 17:02:08 2001 +0000 Reduced size of fast_keys array to 96 by skipping the first 32 entries (not used for glyphs in 7bit ASCII). commit 1538be687788c27a7535a154f8836e45beecaa07 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 19 14:52:27 2001 +0000 fixed 'read_modes()' and 'fbdev_set_mode()' for mode testing, 'fbdev_get_pixelformat()' fails on some framebuffer drivers that do not fill out fbdev_var_screeninfo in FB_ACTIVATE_TEST mode. commit 5dd672a897f3dddbc3664573ded896130609513e Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 19 14:15:30 2001 +0000 don't process click events either (if cursor is disabled) commit b16fb855567a810b32c513275fcdd3fabe65a619 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 19 14:11:55 2001 +0000 do not process mouse events if cursor is invisible commit 8fd6e03fbbe7478080ec0f6eed95e0bc056755ed Author: Sven Neumann <neo@directfb.org> Date: Mon Jun 18 17:24:45 2001 +0000 Install a KillHandler for AviPlay and delete the object on interface destruction. Fixes the segfault in IDirectVideoProvider_AviFile_Destruct(). commit 0af28fda5d9e606a163d10630de00ef4b6e2795b Author: Sven Neumann <neo@directfb.org> Date: Mon Jun 18 11:53:42 2001 +0000 forgot to remove debugging output commit 9ba126148e365a78185be4e7f0beb6d0fe25844f Author: Sven Neumann <neo@directfb.org> Date: Mon Jun 18 11:47:47 2001 +0000 Rewrote handling of CFLAGS and CXXFLAGS so we respect the values that have been set before configure is run. commit 2eff15514a34b057a03b74c850456e9673719db5 Author: Sven Neumann <neo@directfb.org> Date: Mon Jun 18 09:33:03 2001 +0000 Removed the utf8 optimizations (only call utf8_* funcs if c & 0x08) since they give no measurable speed improvement (0.0 - 0.05 %) and may cause trouble for badly encoded strings. Do not insert values for fast keys into the binary tree. Free all values in the fast_keys array on tree destruction. commit b7ccfbe2958c329ad0012dcccd46399bf0f43186 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 18 06:23:02 2001 +0000 Default font loader did not set 'data->surface'. 'gfxcard_draw_line()' is now 'gfxcard_draw_lines()'. Added 'IDirectFBSurface->DrawLines()'. df_dok uses 'DrawLines()' now for 10 lines each, added 'myrand()' that speeds up the benchmarks a bit, too. commit 6893690eb092879f371dc7bfefdc60bf5c4a791e Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 18 04:39:13 2001 +0000 Killed a modulo, a division, an array lookup and an 'if' for each glyph in gfxcard_drawstring: CoreGlyphData->start now is the starting x coordinate within its surface. Added CoreGlyphData->surface that holds the surface the glyph is in. Again, 395 -> 410 KChars/sec here. commit 12dda36baee042b0080d68e17fd439651aed1661 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 18 04:12:56 2001 +0000 Only call 'utf8_get(&c)' if 'c & 0x80'. Added 128 "fast keys" to tree code, it's an array of values for a faster lookup of keys 0 - 127. These two optimizations should increase DrawString performance on slow machines (even on my Celeron 533 with Matrox G400: 374 -> 395 KChars/sec). commit 50a167da639ce7b48394fe620c16b735fb27abd7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 18 01:59:38 2001 +0000 Respective error message in DirectFBError for DFB_MISSINGIMAGE. (did a commit on 'idirectfb.c' last time instead of 'directfb.c') commit c55b13d1631f6161b51b5289b638d714aee9521d Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 18 01:56:41 2001 +0000 SetBackgroundMode returns DFB_MISSINGIMAGE if DLBM_IMAGE has been set without a background image being set before. commit e35b6231ecd65f1a4628b596c7455e01f1c5827a Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 18 01:17:42 2001 +0000 Do not use "-g" as default, add "-g3" to CXXFLAGS if in debug mode. Added new function GfxCard->FlushTextureCache: after the video memory has been written to by the CPU (e.g. modification of a texture) make sure the accelerator won't use cached texture data. This new function is called each surface_unlock (we should check if it was a soft lock to video memory). Implemented FlushTextureCache in Matrox driver, because font problems are solved if any TEXORGn register is written to. Maybe this is just a coincidence, but it works ;-) commit c5ac13e6d6a19d9f6af9f7fd197bd1e9722056da Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jun 16 17:13:28 2001 +0000 The long awaited killer feature: cursor movements are clipped by the desktop ;-) CoreWindowStack has a DFBRegion called "cursor_region", so we can add things like window clipped cursor during grab easily. commit fa89e09909f3a361610ea7838700c7760c9d648b Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jun 16 16:13:20 2001 +0000 Replaced all identifiers "id", for Objective C and maybe other languages. commit 6e59412338140ac131f81481c3457c0f2f34754c Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jun 16 12:04:52 2001 +0000 Applied patch from Till Adam <till@adam-lilienthal.de> that adds the IDirectFBWindow->WaitForEventWithTimeout that I forgot. commit ebd51ecfc61e4320b3b997413dc25bde07310fef Author: Michael Natterer <mitch@directfb.org> Date: Thu Jun 14 16:37:29 2001 +0000 Updated ChangeLog. commit f7c1e47573839d87e2323850ff1d44c64f9743ed Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 14 15:19:13 2001 +0000 updated commit b071df21d878fe90b681687bbebc640b2c01df61 Author: Andreas Hundt <andi@directfb.org> Date: Thu Jun 14 01:40:09 2001 +0000 compile fix for big endian machines commit 2bd4ca80e54da14c984a0086c2ced8d432eec5ef Author: Michael Natterer <mitch@directfb.org> Date: Wed Jun 13 20:20:45 2001 +0000 Re-enabled and fixed two lines which close/reopen the input devices on Suspend()/Resume(). commit 844040693e3e7ff61838b607a2f8e3d13abe1703 Author: Sven Neumann <neo@directfb.org> Date: Wed Jun 13 15:26:05 2001 +0000 Added DIDID_REMOTE to the list of predefined device IDs. Uniquify device IDs. commit 6e32909bbbe09eee2dcdd046ee6c80e97951b9b4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 13 06:13:13 2001 +0000 - log2 had to return ret, always - optimized TMU calculations, better rounding, looks always good now commit d5b31da1f6fa5f668e92274e2458a20d24a30b9f Author: Sven Neumann <neo@directfb.org> Date: Tue Jun 12 21:11:12 2001 +0000 include Video4Linux video provider in the configure result list commit d4ef28d42f2a5d249d0accc57725aff3dab02bc8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 12 21:01:46 2001 +0000 call v4l_stop() in v4l_deinit() to eventually stop the v4l thread commit 4dbcad078491aca3b5c1830009e957d3046e12d5 Author: Sven Neumann <neo@directfb.org> Date: Tue Jun 12 20:50:54 2001 +0000 use correct variables for configure result list commit b343ec672908f10f03523d688a22876f41c47c36 Author: Sven Neumann <neo@directfb.org> Date: Tue Jun 12 20:45:25 2001 +0000 describe how to configure a serial mouse for DirectFB commit 1c3da755c9df6138d39b839624b142dfd91a5558 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 12 20:44:29 2001 +0000 use $JPEG and $PNG commit b4383667156b0817aaf98a897ebfe6d5d2dd648c Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 12 20:29:09 2001 +0000 do not print "on" for MMX support commit 6f6fc3ebdc19c9eae186b2acbd6acf6a07754e21 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 12 20:18:12 2001 +0000 Prints summary of build options and built providers/drivers. commit 4ac659a8731db4acd73d0f381ad41bddee3464fd Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 12 18:24:30 2001 +0000 added Joachim Steiger to "thanks to" commit 16ca71f02595ef04846686242a7d102f5b527337 Author: Sven Neumann <neo@directfb.org> Date: Tue Jun 12 18:11:24 2001 +0000 Check for <linux/fb.h> Check which gfxdrivers can be compiled by looking at <linux/fb.h>. commit 612e94f83f7dc646f4a4615f081c0a7ae4c22c99 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 12 18:00:57 2001 +0000 fixed typo added note about conditional build of providers commit 92e1d7a4b7f7742b88f7a8dd0d7f980a940c7c18 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 12 17:58:30 2001 +0000 updated commit d027700f2e6887e60aea0525aba1d7c5c01f0d3a Author: Sven Neumann <neo@directfb.org> Date: Tue Jun 12 17:24:38 2001 +0000 update commit 44935954080ff76ce61ef5365280350e71543ac3 Author: Sven Neumann <neo@directfb.org> Date: Tue Jun 12 17:23:57 2001 +0000 Even more remote control keycodes. Allow conditional build of gif, jpeg and png image providers. Allow conditional build of freetype font provider. We strongly suggest you don't disable the build of these modules since the example code and most DirectFB apps depend on them. commit 804ff88aace436b082f76adaf0ed87c466a81a63 Author: Sven Neumann <neo@directfb.org> Date: Tue Jun 12 14:40:36 2001 +0000 added a few more remote control keycodes we might need commit bada3147708b91cf65eafed4e6fbebf6965d272d Author: Sven Neumann <neo@directfb.org> Date: Tue Jun 12 13:05:05 2001 +0000 Added tree_lock() and tree_unlock() to allow to use the tree in a thread-safe way. fonts_get_glyph_data() locks and unlocks the tree so it can be called from multiple threads. Unfortunately this brings down performance a little. commit 0f11fcb5a03c38bbbcac50a06e9701741302d99b Author: Sven Neumann <neo@directfb.org> Date: Tue Jun 12 11:17:08 2001 +0000 include <sys/time.h> and <sys/types.h> for select() commit 4611043d3dbb3d9856b829aa25a696529e7f13d0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 11 20:53:51 2001 +0000 fixed license, oops commit 8ce42ae9b3ecd033ae0824bade3f9990c78df243 Author: Sven Neumann <neo@directfb.org> Date: Mon Jun 11 18:36:01 2001 +0000 The old implementation of the MouseMan protocol definitely did not work, this one might do the trick... commit 1119186846261558439ac128e37bb516b3b657a9 Author: Sven Neumann <neo@directfb.org> Date: Mon Jun 11 18:17:26 2001 +0000 Replaced old remote control keycodes with new unified keycodes. Removed special handling for remote control from keyboard driver. Decreased wait cycles in initialization of serial mouse driver. commit 219e158ae0327cc934943f1593339e5f95f8a03b Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 11 15:43:45 2001 +0000 split up window_create and added window_init that has to be called after window_create. i split it up because the code in window_init generates events, but the reactor can only be attached to after window_create. this fixes the missing initial DWET_POSITION_SIZE event. commit a7ec1bfd860672f6e79805c43e31d98c38d5d90c Author: Sven Neumann <neo@directfb.org> Date: Mon Jun 11 10:26:57 2001 +0000 Fixed a bug in window_request_focus() where the wrong window was emitting the DWET_LOSTFOCUS event. Rewrote large parts of df_window to make it behave more like a windowing system as you know it. You can specify a video file on the command line to bring some live into the second window. commit e32b87b009dd92d79f01e0c2576d159d145de60c Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 11 02:59:28 2001 +0000 ifdef for FB_ACCEL_MATROX_MGAG400 commit 71f2c71ad59c40a766ba0eb0b2adb2f3b8856a34 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 11 02:57:42 2001 +0000 Removed signal handler for SIGSTKFLT as it is not available on all architectures. commit b99b06f353ce516a1c28f0994e90f81f81e2dbba Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Jun 10 21:25:07 2001 +0000 Added "Thanks to" section commit 2ee12cf2ea20d4f342a8f689c56d85496c6c1e79 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jun 9 15:18:01 2001 +0000 Finished update_region for windowstack repaints. Nothing will be drawn that is not visible after all. Every further windowstack optimizations have to be made in other functions like window_move (blitting within same surface, actually from front to back buffer, but that is default ;-) Fixed segfault in surface_destroy (many demos crashed at the end), df_porter did not run at all, because surface_destroy was called from font managering system. commit 6646ac4952f601e071c06df8d8e1c7a9888f7514 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jun 9 15:03:39 2001 +0000 added ltconfig any volunteer to fix DirectFB for the new autotools? commit 3754a1f839118a178d0bb831817618fab7619155 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Jun 9 15:03:01 2001 +0000 df_fire: use DirectFBSetOption to force a systemonly surface for the fire window (actually for all windows) instead of implicitly forcing it by setting the desktop buffer mode to backsystem. IDirectFBWindow: detach from reactor before destroying the window, return RS_REMOVE when DWET_CLOSE is received in reaction function. commit 11dc1a2144b40fb9462111cc5e76ec2f7ff1203e Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 8 23:31:33 2001 +0000 rewrote windowstack_repaint, no performance gain yet, but this recursive function is designed to just pass the rectangles that are not covered by the opaque window of the iteration level (make update_region calls in all 16 different cases). commit 91ddd5217f3b77e39294c29029f7db3c409582e0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 8 22:32:44 2001 +0000 Applied patch submitted by Till Adam <till@adam-lilienthal.de> with a check if DirectFBSetOption has been called before DirectFBCreate. Also added function to directfb.h. commit 82579928a661c8e3f55750666233c35e93458f34 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 8 18:44:03 2001 +0000 Added IDirectFBInputBuffer->WaitForEventWithTimeout (secs, nano_secs). commit a75dca5d1f117bdf9b049c0317d80e912b2503db Author: Sven Neumann <neo@directfb.org> Date: Fri Jun 8 15:48:59 2001 +0000 fixed(?) handling of middle mouse button for MS3 protocol commit 8b9b12a782fd39a8b9f5d79bf6ec6086d4fa683b Author: Sven Neumann <neo@directfb.org> Date: Fri Jun 8 13:37:17 2001 +0000 We now support the following serial mice: "MS" two buttons MS protocol "MS3" MS with ugly 3-button extension "MouseMan" referred to as MS + Logitech extension in mouse(4) "MouseSystems" most commonly used serial mouse protocol nowadays All this is highly experimental and needs more testing. commit 07865ab2ca1ed2ff077b72452b36ef3cb85ed872 Author: Sven Neumann <neo@directfb.org> Date: Fri Jun 8 12:06:12 2001 +0000 Small code cleanup in ps2mouse inputdriver. Added support for MS 3 button mouse protocol (this protocol sucks!) to the serial mouse inputdriver. Put "mouse-protocol=ms3" into your directfbrc. commit 7ea9ae0a997fc02dbe659f72d668116a109761b4 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 8 11:30:59 2001 +0000 typo fixed commit 64935e4ab98b69286d61dc4e6d4f2d6d610d8446 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 8 08:50:45 2001 +0000 Print init type message if an interface implementation is loaded. commit 2886fcb4156270979f34614649b5d4dd3f9fcf24 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Jun 8 08:28:37 2001 +0000 moved window event buffer into interface using pthread conditions windowing events are dispatched through reactors now (~100 lines stripped from core ;-) commit 7531cc785696a90b3d11a8389d547097ce7bcfae Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 7 21:46:07 2001 +0000 use pthread conditions commit 62922355a116185bcf529d2c62f1a2f032d0a1f9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 7 20:39:19 2001 +0000 fixed bug when blitting from 32bit without blending, e.g. --blit-convert in df_dok commit 4b0433ba742f89d8977fea9ec439771d3387d0fd Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 7 20:06:20 2001 +0000 follow changes commit 127efd7d2210cc4f909c8785c4f1769cd877e9f6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 7 20:04:19 2001 +0000 API Change: The Input Device ID no longer contains the type of input device. Added DFBInputDeviceTypeFlags to DFBInputDeviceDescription that contains the type of the input device specified by one or more of the following flags: DIDTF_KEYBOARD = 0x00000001, /* can act as a keyboard */ DIDTF_MOUSE = 0x00000002, /* can be used as a mouse */ DIDTF_JOYSTICK = 0x00000004, /* can be used as a joystick */ DIDTF_REMOTE = 0x00000008 /* device is a remote control */ Something like ... DIDID_TYPE(id) == DIDT_MOUSE should be replaced by ... desc.type & DIDTF_MOUSE commit 481646b9098655690241b0b41319857c1699b9d3 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Jun 7 17:01:22 2001 +0000 InputDevice info.driver_name/vendor are now pointers commit 7e20ac12b43205da944a37be24eee0095925754f Author: Sven Neumann <neo@directfb.org> Date: Thu Jun 7 16:00:20 2001 +0000 s/msmouse/serialmouse/ commit 4b754161acdf13930f022b5cb6285806c0f4c892 Author: Sven Neumann <neo@directfb.org> Date: Thu Jun 7 15:17:56 2001 +0000 Renamed msmouse inputdriver to serialmouse since this beast will support other more serial mouse protocols in the future. commit c9c31a29046d5806b2861d55e1acffeaef4d4437 Author: Sven Neumann <neo@directfb.org> Date: Thu Jun 7 15:06:02 2001 +0000 Added config option "mouse-protocol" (for serial mouse only). You need to specify the protocol type if you want to use a serial mouse. At the moment only "ms" (2-button) is supported. I will add more serial mouse protocols later. Check if a mouse is attached to the serial port. commit a08631348a58dd0f6c1a6e8a7e6f87d46007774f Author: Sven Neumann <neo@directfb.org> Date: Thu Jun 7 11:57:11 2001 +0000 first working version of the MS Serial Mouse inputdriver commit b43ef57d8dddd7152db7f2d3a88b98dd1c5326dd Author: Michael Natterer <mitch@directfb.org> Date: Thu Jun 7 00:09:22 2001 +0000 Updated ChangeLog. commit 7b07b37557407b6d5432279dfb09419933d6226b Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 6 23:49:38 2001 +0000 surface listener ported to reactors commit 808949c296c609c5d7268b4c33d9363597745ff4 Author: Sven Neumann <neo@directfb.org> Date: Wed Jun 6 21:40:49 2001 +0000 added MS Serial Mouse inputdevice, disabled at the moment commit 2b0c8cb41f0c2529c3f5c63b5fb3615dd3e2a677 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 6 19:36:13 2001 +0000 added common event dispatching code in reactor.[ch] all input event listener handling and event dispatching done through reactors input driver code cleanup removed unneeded input driver headers commit a9ba811a1c58198d11bd6fab8bd8a8b7c7353684 Author: Sven Neumann <neo@directfb.org> Date: Wed Jun 6 19:36:11 2001 +0000 forgot to change config -> dfb_config here commit ec6d7eb670a2522d7bcc596a80986505306a4546 Author: Sven Neumann <neo@directfb.org> Date: Wed Jun 6 19:27:25 2001 +0000 renamed global variable config to dfb_config commit 861cdfb7bbbcb8fe8085e90f04b1532fe90e84ab Author: Sven Neumann <neo@directfb.org> Date: Wed Jun 6 18:59:32 2001 +0000 removed some unused includes commit 3e3f64a319a6d7cd05cab6fa44e1569f1e0d6b43 Author: Sven Neumann <neo@directfb.org> Date: Wed Jun 6 17:38:20 2001 +0000 updated NEWS commit 51881d29e17fd3d6c53efc8958bb1687bd50293a Author: Sven Neumann <neo@directfb.org> Date: Wed Jun 6 16:19:57 2001 +0000 restructured interfaces directory commit e0c63211a67226351de9a047b5849a6ca4c01ffa Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 6 16:11:14 2001 +0000 purged now commit 57e9aa06c42c6cc91840ffac75f8a79b716991cc Author: Sven Neumann <neo@directfb.org> Date: Wed Jun 6 15:50:37 2001 +0000 Tweaked Sop_a8_set_alphapixel_Dop_rgb* functions as suggested by Fefe. Speeds up DrawString by several percents. commit 8f91e830d25e257b58795ce608e8b75287b6ea04 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 6 15:32:38 2001 +0000 inputdrivers modularized commit 31fa5aa792912778579ce4ee2233873ff52a842b Author: Sven Neumann <neo@directfb.org> Date: Wed Jun 6 14:15:53 2001 +0000 use calloc() instead of malloc();memset() commit 9b14c2e93e0c9072506184431306600fcbff3529 Author: Sven Neumann <neo@directfb.org> Date: Wed Jun 6 14:02:45 2001 +0000 use calloc() instead of malloc();memset(); commit e192bf1a7ee1ba55b49264f1da589ac1be4e22a9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 6 13:57:12 2001 +0000 started to begin using calloc ;-) added core_load_modules( dir, callback, ctx ), a common function for loading modules in a directory, callback can return one of the following values: MODULE_LOADED_CONTINUE, MODULE_LOADED_STOP, MODULE_REJECTED made usage of the new function in gfxcard.c for driver loading commit 7067593dbba2558a8eb9cd394133e4a4be40332f Author: Sven Neumann <neo@directfb.org> Date: Wed Jun 6 11:28:04 2001 +0000 I managed to put even more typos in here... commit 49f43f423891f86337238f8b270a3e589cedd702 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Jun 6 00:26:02 2001 +0000 s/Joachim/Johhanes/ Sorry. commit 1344a77b354fa846127ea4c58f3d271bfe742a8a Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 5 23:58:30 2001 +0000 set alpha value in state only if it's not the desired opacity removed comment from surfacemanager deallocate and allocate video buffers until proper reallocation method is present commit 9dd587bbdb238759b570fcb9bd927019858e4f03 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 5 19:12:37 2001 +0000 enhanced the suspend/resume hack added DFBAddSuspendResumeFunc and DFBRemoveSuspendResumeFunc registered functions are called in IDirectFB->Suspend/Resume V4l Provider closes video device in suspend and reopens it in resume commit e0ad3d1b7e3da23bf5a5d36d7b9f8d1780a427ab Author: Sven Neumann <neo@directfb.org> Date: Tue Jun 5 18:57:27 2001 +0000 bumped version number to 0.9.3 commit 61e8fc73ae4997f587a6b104f22479870009b7df Author: Sven Neumann <neo@directfb.org> Date: Tue Jun 5 18:22:09 2001 +0000 New internal function rectangle_union. New API function Font->GetStringExtends which allows to retrieve the logical and ink extents of a given string. Refer to the documentation in directfb.h. Modified gendoc.pl so it translates empty comment lines into paragraphs. commit 0db8053ea7c3e7e1442bb291291d797da8a287cc Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 5 16:57:51 2001 +0000 disabled normal deinit code, mutex locking in exit handlers is evil! we have to rewrite all this deinit shit. commit c706a4a361bc695cb705174ee65fe1360711e914 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Jun 5 15:48:36 2001 +0000 send DWET_CLOSE event before destroying window how can we make sure that another thread that hangs on the mutex lock gets the event BEFORE destroying the window? maybe we should tear the event buffer off the window structure. commit cbd8ee4f403a10151e040355f6d005b2e60a4785 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 4 15:02:26 2001 +0000 fixed make clean ;) commit a7234414ce25637fb5a8b989778bfafcaf501db8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 4 14:41:25 2001 +0000 applied really nice patch from Sven that reenables the colorizing with a better calculation, too slow for you? commit bc73a036e2fe69480502f27d59ba6778346fba25 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 4 13:39:14 2001 +0000 patched the patch, ioctl should return -EINTR and not -ERESTARTSYS from linux/errno.h #ifdef __KERNEL__ /* Should never be seen by user programs */ #define ERESTARTSYS 512 ... commit 42ad2310d30a429732daceb82b9eb92d8310151e Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 4 10:33:17 2001 +0000 The real way[tm]! With mouse to rotate and keyboard to move a la Quake! commit 6e4966a10d6b01bb141ae744e41212cd1011c1d7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon Jun 4 09:57:19 2001 +0000 check for row_width > 0 before modulo commit e2667e882f8d1b8e2889f51a8287b6a63024dd40 Author: Sven Neumann <neo@directfb.org> Date: Sat Jun 2 18:14:25 2001 +0000 applied a patch provided by Johannes Zellner <johannes@zellner.org> that adds support for loading interlaced PNGs commit d12c662616ea039dea64c40756241b8b4e733b08 Author: Sven Neumann <neo@directfb.org> Date: Fri Jun 1 11:51:15 2001 +0000 fixed compiler warnings in tools compile (but do not install) tools commit 9a79747e472c18cb0c7dba7ef50ba1746cec16ef Author: Sven Neumann <neo@directfb.org> Date: Thu May 31 16:59:32 2001 +0000 more excessive use of long long commit 04a75cf2ae602e52ab4666dd8fa1d89ef525b06c Author: Sven Neumann <neo@directfb.org> Date: Thu May 31 16:44:45 2001 +0000 does this fix the overflow problem ? commit 8d83f9e66363cd51f502fe0b3059b93ce134be64 Author: Sven Neumann <neo@directfb.org> Date: Thu May 31 15:54:46 2001 +0000 alalalalong commit 5f0e1f15ea8950f81fc142d0f785525d11278d4d Author: Sven Neumann <neo@directfb.org> Date: Thu May 31 15:24:23 2001 +0000 use gettimeofday() instead of clock() small changes to the results page to make it fit on smaller screens commit 4422570a2025c63b4bbc061448f2cb6b53ff5ee2 Author: Sven Neumann <neo@directfb.org> Date: Thu May 31 09:39:47 2001 +0000 added support for loading fonts w/o antialiasing (DFFA_MONOCHROME) added span_a1_to_a8 and span_a1_to_argb functions commit fd7503c6d14bc24e47de021140ee939b4141fbbf Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 31 06:32:35 2001 +0000 - rotation about y axis - perspective drawing commit 7bce8ac6d665ebed72984ca7754e50ddb38ca2f0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 29 15:10:01 2001 +0000 turn off console blanking do (w&1) instead of w -= 2 in loop commit f937f20d87261913167b0fb0afd701992255f9a4 Author: Sven Neumann <neo@directfb.org> Date: Tue May 29 14:20:34 2001 +0000 Allow to specify font attributes (DFFA_NOKERNING, DFFA_NOHINTING) when calling FontCreate() to control how fonts are loaded and layouted. Added new function IDirectFBSurface->GetFont(). commit 03afe0a7d29191940ebf5659e5f9e5d5d0259669 Author: Sven Neumann <neo@directfb.org> Date: Tue May 29 13:00:57 2001 +0000 check elapsed time more often when running stretch-blit benchmark commit acb264f87a672238209e864bef8f0cabdc0891f6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 29 12:30:58 2001 +0000 same optimizations for Sop_rgb15_to_Dacc commit bd98ebd0a0da2467c093fda5a2dca9eefd3e3b56 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 29 12:18:22 2001 +0000 Sop_rgb16_to_Dacc does aligned 32bit reads now! Performance of FillRectangle(blend) went from 1.73 to 3.09 without MMX! Andi: Please test it on PowerPC! commit f04a9af73a8f3e8792515f669826b16c3bed6119 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 29 11:35:46 2001 +0000 print banner in DirectFBCreate instead of DirectFBInit commit bd3be591e3b407286bbe93e21f9838c10b801f4a Author: Sven Neumann <neo@directfb.org> Date: Tue May 29 11:32:37 2001 +0000 renamed --blit-stretched option to --stretch-blit print usage information if wrong command-line options are given commit 93b2dd6170e83606d1e8306aa2335c96b16cec45 Author: Sven Neumann <neo@directfb.org> Date: Mon May 28 23:07:44 2001 +0000 allow to specify benchmarks on the command-line, no argument means all benchmarks commit 5dbab7dbbe7d79c6524c7404e0de73c64ece870e Author: Sven Neumann <neo@directfb.org> Date: Mon May 28 21:06:58 2001 +0000 Restructured code to make it easier to add new benchmarks or other features. The functionality shouldn't have changed, but code size went down by more than 100 lines. commit c298a55ba8fe949e4ad3bb1fa6ccea51df567950 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 28 19:21:06 2001 +0000 interface modules are now installed into subdirectories depending on the type, e.g. /usr/local/lib/directfb/interfaces/IDirectFBFont/libidirectfbfont_ft2.so commit 4031b5f69d989064986e7f2d3c60e5ed305b290a Author: Andreas Hundt <andi@directfb.org> Date: Mon May 28 19:15:59 2001 +0000 fixes for C versions of Sacc_add_to_Dacc_C() and Cacc_add_to_Dacc_C(), this fixes the "falling corpse"-bug in ClanBomber on non-mmx machines. commit d4327b4b47d37b73996e56d8cdbf5405748f7638 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 28 18:04:32 2001 +0000 yet another started thing ;-) will be a 3d space shooter commit 701d2fe7a954b16a59c2f4dde1290bc301d507b4 Author: Andreas Hundt <andi@directfb.org> Date: Mon May 28 16:53:49 2001 +0000 VT_ACTIVATE and VT_WAITACTIVE system calls are repeated if interrupted. commit 4190f438d5d04c8ea01eb9e12b31283f47773dc6 Author: Andreas Hundt <andi@directfb.org> Date: Mon May 28 15:35:17 2001 +0000 added -lm for pss (compiles on ppc again) commit 5e31bea8c91ced612bb9eb5bf358abf85feff5aa Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun May 27 21:47:44 2001 +0000 fixed bug in gAcquire: src colorkey was not set when using src colorkeying and at least one of DSBLIT_BLEND_ALPHACHANNEL, DSBLIT_BLEND_COLORALPHA and DSBLIT_COLORIZE. Andi: Does this fix falling corpse parts on PowerPC? commit 7e8aed2399c9747257bb6e342ce0d41ed730240a Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun May 27 21:31:15 2001 +0000 check for source != NULL in Blit and StretchBlit commit 56527f1a2d54f8cbb1636b3ba086853ce41b00d2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun May 27 20:05:50 2001 +0000 Added "idirectfbvideoprovider_libmpeg3.c" to EXTRA_DIST commit 89d43a0948268f354bad5b17346d5513cba23f02 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun May 27 06:23:52 2001 +0000 Added a parsing feature: The description of interface functions is now split up into two parts devided by the first blank line. The first part is the headline and is printed in the interface overview and in the page of the funtion itself. The detailed information about the parameters and possible error values is only in the functions page. We can now write very long and good descriptions for the functions without bloating the index pages. commit 1f4cac510b74881e9e36356591209db8e6e95ab5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat May 26 15:48:59 2001 +0000 added IDirectFB->WaitForSync, blocks until next vertical retrace commit b5beada3a15f788d2a35109fd6d2790f65232554 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 25 19:24:11 2001 +0000 new demo, very early stage commit 540bb81e888f95133cf2f1ea3aa34f2d4f26f578 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 23 19:42:39 2001 +0000 grammatical clarification commit f2a800567d49d7d9469eeede0d775a71bf202cf6 Author: Andreas Hundt <andi@directfb.org> Date: Wed May 23 19:04:25 2001 +0000 updated NEWS commit 270f25da60aca52daf38e3f4f1361f4490720f52 Author: Andreas Hundt <andi@directfb.org> Date: Wed May 23 18:53:39 2001 +0000 updated ChangeLog and NEWS commit aed93d68b743ba8ccda1c1b5a49481c462b75055 Author: Sven Neumann <neo@directfb.org> Date: Wed May 23 15:17:34 2001 +0000 got it wrong last time, hopefully works now commit accdbbc104a99d79d5088d2071e8526009446c2e Author: Sven Neumann <neo@directfb.org> Date: Wed May 23 14:51:56 2001 +0000 Loop MPEG so it behaves like the AVI provider. Timing is still badly broken if you use Stop() or SeekTo(). commit e47cc9116ea396d0e35865da74143fa4f777d32d Author: Sven Neumann <neo@directfb.org> Date: Wed May 23 14:13:24 2001 +0000 tried to fix image loading in 24bpp (can't test) commit 33eea06ef2dd618607a160ca0e02932774221898 Author: Andreas Hundt <andi@directfb.org> Date: Wed May 23 11:09:26 2001 +0000 support von 15bpp in jpeg provider commit 5385a67dbcfd890bc45871d8a4f8a89d71d4b89d Author: Sven Neumann <neo@directfb.org> Date: Wed May 23 00:49:33 2001 +0000 removed a spurious comment commit 905019ca6fb70ea509be36ce118f3ce3bd4d085c Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 22 23:46:48 2001 +0000 tweaked Cop_to_Dop_24 72.78 -> 73.30 commit 9bafdeb91e6543b93b9756738f00ef14c4a992bc Author: Sven Neumann <neo@directfb.org> Date: Tue May 22 23:02:48 2001 +0000 added --on-crack command-line option to df_neo commit 7fd9888ff76fd486393e9910c3e5db3bc87f1828 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 22 22:55:18 2001 +0000 Removed #ifdef, no unroll anymore, fastest result ever seen! 121 MPixel/sec (Celeron 533), routine before had 119 MPixel. commit fbcdef93562b509ca5075d4571b3517f9783501f Author: Sven Neumann <neo@directfb.org> Date: Tue May 22 21:50:17 2001 +0000 the rest of my optimizations that were not committed before commit 231379d68d22ce813e4efcf8816ccb68f3eb9a01 Author: Andreas Hundt <andi@directfb.org> Date: Tue May 22 21:39:11 2001 +0000 added fefes code for non-i386 platforms, great improvement on my powerbook, use old code on i386 commit ed22e331466827f36958c186b9c2550b8e9600c5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 22 19:53:43 2001 +0000 Fixed bug found by Falk Berger, in function keyboard_handle_code: event.flags should not set DIEF_KEYCODE only, but also DIEF_MODIFIER. commit b366c59b0316264a4fb2efdb5e72f02dd5b87223 Author: Andreas Hundt <andi@directfb.org> Date: Tue May 22 19:36:51 2001 +0000 commited svens new SET_ALPHA_PIXEL_RGB16 and _RGB15 macros, performance improvements in DrawString() on i386 and powerpc commit f59ac169b6f946011e17b7cd7b2fca7bf034f9c1 Author: Sven Neumann <neo@directfb.org> Date: Tue May 22 16:19:21 2001 +0000 forgot to remove some lines we don't need here commit 6fca116f2a080f0696979a54ae66e4afcbabcfb9 Author: Sven Neumann <neo@directfb.org> Date: Tue May 22 16:16:27 2001 +0000 allow for automake 1.4-p1 and similar version numbers commit 92bb00eb4892601c13d9611093c79dcf896f76ec Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 22 05:33:47 2001 +0000 Added IDirectFB->WaitIdle() that waits for the graphics card being idle. df_dok calls WaitIdle before and after each benchmark. Now we see the real performance of the Savage3D. Besides that e.g. the blitting benchmark takes 9 seconds instead of 3 seconds defined in df_dok.c because it takes the hardware 6 additional seconds to complete all the buffered instructions. In this time (6 seconds!) the application can use the CPU for other things ;-) commit 6f4b164cdbe396065efb9f004e70f58fadd95043 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 22 03:43:06 2001 +0000 Do gfxcard_sync() in gfxcard_deinit(), fixes X crashes with Savage being busy during switch back to X. commit b3a6619092821449185007dcd963c96e03d9a3bc Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 22 00:23:27 2001 +0000 do pthread_testcancel() in input threads, print die message only if errno != EINTR commit 72fd126ef45188c00ab11fcf9d3d1f3956ec20f5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 21 23:49:03 2001 +0000 follow API change commit a8c494f3eb068522f071473284c4df151d29dfd5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 21 23:48:34 2001 +0000 missed one default label in pixelformat switch commit 989a1a8fe75aa62c814ff95e49147421da683ac7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 21 23:43:42 2001 +0000 added "-f" to rm ;) commit d4b397ad1aae6f272dfc98f04ca365c61a9d80bb Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 21 23:21:04 2001 +0000 FIXME hunting: - Added error code DFB_MISSINGFONT, returned by DrawString. - DFBGetInterface checks filename length before checking the extension - Wrote more details for FIXME about primary surface recreation. - fbdev_get_pixelformat now checks all channel's length and offset - gfxcard_check_state now rechecks if src/dst blend function changed - do at least clip_triangle_precheck for hardware without clipping support - if surface_reformat fails, restore values and already reformatted buffers - replaced hardcoded "7" with blitting flags in "Dacc_modulation[7] = ..." Other fixes: - bug messages in all drivers when an unexpected pixelformat is found - made avifile provider compile again with version from download/contrib - follow surface description API change in avifile and swf provider - some type fixes (unsigned int was used instead of the actual type) - fixed bug in gAcquire that caused DSBLIT_BLEND_COLORALPHA to be ignored when the source pixelformat is DSPF_A8 and DSBLIT_BLEND_ALPHACHANNEL and/or DSBLIT_COLORIZE has been set commit 0d43da766fc13d91b775e081351aee32df9a3ec5 Author: Andreas Hundt <andi@directfb.org> Date: Mon May 21 20:12:56 2001 +0000 - API Change: removed bpp field from surface description, removed DSCAPS_ALPHA, added pixelformat field instead. - removed window stack repaint when new window is created (makes no sense since opacity for new windows is 0) - added support for 15bpp in v4l provider - v4l provider support for devfs (/dev/v4l/video*) commit 741a59cc397a16208ef348b49e9308b218f83ac2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Mon May 21 17:51:12 2001 +0000 You can use "Ctrl+Alt+Backspace" to exit DirectFB by killing it with SIGINT. commit 90eaeccbf3cefdb6a73381896a8f5074384c4788 Author: Sven Neumann <neo@directfb.org> Date: Sun May 20 21:45:36 2001 +0000 After my latest optimizations, line drawing was wrong under some circumstances. Fixed it without hurting the performance. commit 4a5cc1185d3b0830b2a74f9c2b7a0272c15f8dbe Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun May 20 20:12:20 2001 +0000 in CreateFont: allow desc == NULL if filename == NULL for default commit 7fe335847be532da8602586c5272d930fb78bc31 Author: Sven Neumann <neo@directfb.org> Date: Sat May 19 20:46:11 2001 +0000 bumped version number to 0.9.2 and updated README commit 111592354e20ebf447ad1e59cd2c761309d259e1 Author: Sven Neumann <neo@directfb.org> Date: Sat May 19 19:30:48 2001 +0000 updated NEWS commit e4f71edfbec933709fa7137fd5a7400396aa26a8 Author: Sven Neumann <neo@directfb.org> Date: Sat May 19 18:44:10 2001 +0000 Changed GetStringWidth() and DrawString() methods so they take an additional parameter "bytes" that specifies the number of bytes to interpret from the passed string. Pass -1 if you intend to use the complete NULL-terminated string. This has several advantages: Line-breaking algorithms can be implemented without copying the string and not NULL-terminated character arrays can be drawn. Unfortunately this changes the API once again. commit 199ab2f1b508480987631e1df8ea8503345ad99e Author: Sven Neumann <neo@directfb.org> Date: Sat May 19 17:46:51 2001 +0000 - readded src/media/Makefile.am (forgot this one on my last commit) - added interfaces/idirectfbfont_default.c (this used to be the default font implementation in the core) - removed default font code from the core - changed interface loader so you get the default font if you call CreateFont() with a NULL filename commit 985849b7fde6e3805244ff4573ba0f2acc545a38 Author: Sven Neumann <neo@directfb.org> Date: Sat May 19 17:24:18 2001 +0000 - readded src/media directory to provide default font methods - changed IDirectFBSurface struct to take a pointer to an IDirectFBFont - made IDirectFBSurface call AddRef and Release on the font it owns - made DrawString method use GetStringWidth method as provided by IDirectFBFont - ditched default font completely; will add it back as a font interface commit 68559c2f73382877a3779264002ef92bc0b1dc1b Author: Andreas Hundt <andi@directfb.org> Date: Fri May 18 16:44:52 2001 +0000 renamed _noMMX functions to _C commit 4f0f373ca78fa5cbd918ba1ba3015d282a6a0849 Author: Andreas Hundt <andi@directfb.org> Date: Fri May 18 16:19:57 2001 +0000 replaced SET_ALPHA_PIXEL_RGB32 with fefe's code. DrawString() performance in 32bit is more than twice as high than before (i386). no performance improvement on powerpc, dont know why. other platforms not tested yet. commit 3e10d5d8e1e6a6827edf3f9f9f742d41c9146da6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 18 15:33:14 2001 +0000 Fixed SeekTo (seconds*rate, not seconds/rate). Implemented GetLength and GetPos. commit f179998b473213c6106dbac1c27afe70cc6bd940 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri May 18 14:43:42 2001 +0000 #include <libmpeg3.h> instead of "libmpeg3.h" commit b61d9adfa1efe332704834be3c12ec0274c05fdc Author: Andreas Hundt <andi@directfb.org> Date: Thu May 17 14:11:09 2001 +0000 Cop_to_Dop_16() uses 32-bit writes to the framebuffer. Makes no difference on i386, but ~30% performace increase on ppc. commit 12a6c921c1b9ef46df253556e8c0e987cfe11df6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 16 20:01:34 2001 +0000 Added libmpeg3 videoprovider, thanks to Kim JeongHoe for the source. To compile with libmpeg3 video provider use: ./configure --with-libmpeg3=<path> commit 347e59ea55e9507c27e1e46d2722ced1fffaefbb Author: Sven Neumann <neo@directfb.org> Date: Tue May 15 22:44:38 2001 +0000 removed gprint commit 74a75adc8a4bf3aa7f6baa2ad79b418a8b4d0d1a Author: Andreas Hundt <andi@directfb.org> Date: Tue May 15 20:01:54 2001 +0000 allow use of kerning on non-i386 machines, seems to work on my powerpc again. commit 3329ce2a9eec81c96a640c463f97d578d7052b10 Author: Sven Neumann <neo@directfb.org> Date: Tue May 15 20:01:15 2001 +0000 forgot to remove src/media from here commit 4cc89b66d5b21264e8fee753900c96a88c91ad75 Author: Sven Neumann <neo@directfb.org> Date: Tue May 15 18:41:09 2001 +0000 Removed media/idirectfbfont.[ch] and implemented it all in the interface. Call FT_Done_Face() on freetype face object on font destruction. commit f0b4f285c2e0de4814a2d431e9ef48eb1d596ccd Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 15 17:17:28 2001 +0000 simple precheck clips text examining y(+height), clip y1/y2 commit d510eb73be00383f1f095b222932e30f91b9fee9 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue May 15 16:53:24 2001 +0000 set state->source to NULL before returning commit 5f9f414ca7294682f1e880915c36db0d17a15c6c Author: Sven Neumann <neo@directfb.org> Date: Tue May 15 15:42:52 2001 +0000 avoid endless looping on invalid UTF8 strings commit 1fa5506e51fe25b67058867c9cf8aba0e66d10a8 Author: Sven Neumann <neo@directfb.org> Date: Tue May 15 14:48:57 2001 +0000 fixed braino in GetStringWidth() func commit 7e81ee96ee50bae6920267b84b0c7395278a47c9 Author: Sven Neumann <neo@directfb.org> Date: Tue May 15 14:46:11 2001 +0000 indentation commit f2609006c7f18e627c0fd1b2e61d754a9d2a18f2 Author: Sven Neumann <neo@directfb.org> Date: Tue May 15 14:45:37 2001 +0000 - do not try to free NULL pointer in tree.c - some minor cleanups commit e4020a17583020a033fe2276bc907c20e807430a Author: Andreas Hundt <andi@directfb.org> Date: Tue May 15 14:32:38 2001 +0000 - replaced ceil() calls in idirectfbsurface.c with ICEIL(), compiles on arm and ppc again. (without libm) - removed resolved BUGS from BUGS commit 42a9e5a43823be6b1932498e6963e9de9ddece6d Author: Sven Neumann <neo@directfb.org> Date: Tue May 15 13:42:57 2001 +0000 added sanity checks so we never draw outside the surface boundaries corrected handling of face metrics commit ade1d51bfebb4ae96ca0e157fb393c48feb0831b Author: Sven Neumann <neo@directfb.org> Date: Tue May 15 01:48:19 2001 +0000 Rewrote a good part of the font code: - surface->DrawString() now takes UTF-8 strings. - Fonts do not need to be loaded completely any longer. The core keeps an array of surfaces that grows when new glyphs are loaded. Information about the glyphs is kept in a balanced binary tree using the Unicode index of the glyph as the key. - Kerning tables are not any longer in the core font struct. We now use a callback from the core to the font provider and it can choose not to implement it all. Things left to do: - Add some checks so we don't crash on very large fonts. - Let the font provider specify the surface format and blitting flags. - Hook into font destruction and release the FT2 face. - Add DrawGlyph method to surface so we can use it from the GDK backend or from a Pango module. commit cf993312956e3cb38876fc9e8bd4c6f5e15c9c61 Author: Sven Neumann <neo@directfb.org> Date: Mon May 14 21:28:06 2001 +0000 don't use -fomit-frame-pointer if compiling with --enable-debug commit e78561da12998e8dfb8ebb5fb6a73bd5a78aaceb Author: Andreas Hundt <andi@directfb.org> Date: Mon May 14 20:02:30 2001 +0000 - implemented ceil and floor functions IFLOOR() and ICEIL(), to get rid of libm - added -lm to Makefiles of examples that need libm. commit 72f9dea4cdcbc8a45f4df6d33e641ef94899ad82 Author: Sven Neumann <neo@directfb.org> Date: Fri May 11 19:07:21 2001 +0000 optimized gDrawLine() further --> 5% speedup commit 5690c78b62584db8e5e169c176107f74542139fb Author: Sven Neumann <neo@directfb.org> Date: Fri May 11 18:46:12 2001 +0000 some optimizations on Drawline() --> about 10% faster commit 48553034e11ff8d21e948b89581ac9776ac6c85d Author: Sven Neumann <neo@directfb.org> Date: Fri May 11 13:14:47 2001 +0000 removed leftover declaration of IDirectFBFont_Construct_TTF() commit 56bdcf0ed3ae2199c152e5a7f647d50fa5382236 Author: Sven Neumann <neo@directfb.org> Date: Thu May 10 12:37:47 2001 +0000 Changed help string so it mentions that these are DirectFB options and not app-specific. We need to change command-line parsing somehow since it can not be that DirectFBInit() exits the app if --help is found without giving the application a chance to output its help. commit 86c72e08714975735bb4b9dd80b5126cbe25415e Author: Andreas Hundt <andi@directfb.org> Date: Wed May 9 18:26:40 2001 +0000 applied patch from <js@convergence.de> - videos with few IFrames no longer rewind if using fast forward in dfbsee commit f8c620570556a626f7de453b6515b72d8d5206fd Author: Andreas Hundt <andi@directfb.org> Date: Wed May 9 17:05:53 2001 +0000 vt.c opens /dev/tty0 or /dev/vc/0 (for devfs) instead of /dev/console, this makes DirectFB work on machines with serial console. commit c41ce73ef352139667ce693af43ca463e42dce1e Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed May 9 15:41:18 2001 +0000 Print error message if DirectFBInit has been forgotten. commit 85ba552609a60d5eb40fafb2e6716896bcc96496 Author: Andreas Hundt <andi@directfb.org> Date: Mon May 7 20:07:24 2001 +0000 fixed warnings that occured when compiling with gcc-3.0 ("deprecated use of label at end of compound statement" and "undefined reference to memset") commit 7e84ffe7a9f7d48ff2ea578233a4e4cb0789ebfe Author: Andreas Hundt <andi@directfb.org> Date: Mon May 7 17:57:41 2001 +0000 applied patch from Johannes Stezenbach <js@convergence.de> which adds the following functions. - IDirectFBVideoProvider::GetPos(): get current position in the stream - IDirectFBVideoProvider::GetLength(): get length in seconds the functions are currently implemented in the avifile provider only, v4l and swf providers return DFB_UNIMPLEMENTED. commit fde334dfe437bc7ad0778f8c822794d5c5e2813e Author: Sven Neumann <neo@directfb.org> Date: Thu May 3 21:47:33 2001 +0000 Made 0.9.1 release commit 92fb43b260bdd0f93490bb6f8255491758c49962 Author: Sven Neumann <neo@directfb.org> Date: Thu May 3 19:17:06 2001 +0000 Changed clip_triangle_precheck() so it drops triangles that need to be clipped. This is a temporary workaround for the lack of proper clipping code and keeps us from trying to draw beyond the surface borders. Corrected scaling factor in df_knuckles. commit 64a778d308c0d474d96bae7ba1e7687b7f5cfcea Author: Sven Neumann <neo@directfb.org> Date: Thu May 3 18:39:33 2001 +0000 allow to toggle BackfaceCulling using 'B' on your keyboard default to BackfaceCulling = False commit 90ae5296c73fc90945a37b7a9a8db159143aa866 Author: Sven Neumann <neo@directfb.org> Date: Thu May 3 18:15:20 2001 +0000 added a second light source, nightblue and static commit 241f756c076c3202f69bd352333892540428b242 Author: Michael Natterer <mitch@directfb.org> Date: Thu May 3 17:23:12 2001 +0000 Regenerated ChangeLog with a nicer script. commit 5a7d4c1f561d8ba4cfebdac287a2aad5111dfdf0 Author: Sven Neumann <neo@directfb.org> Date: Thu May 3 17:04:11 2001 +0000 removed empty NOTES file commit 5c4a8ac23b751f5ea68a9b93cd7e983295ae3234 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 3 15:10:06 2001 +0000 cleared NOTES, outdated commit 0ef489c1da1f0a4a601501befebcf4fa8b831322 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 3 13:07:47 2001 +0000 Added Sven's pkg-config additions to NEWS. commit d554f27fc6089fc0a1ca813c0e2134618015de2c Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 3 12:50:31 2001 +0000 Generated ChangeLog. Wrote NEWS. Made DFBInputEvent.key_unicode an __u32. commit 6fac0eb32e54aadc6f102bc934b1536537029c6e Author: Sven Neumann <neo@directfb.org> Date: Thu May 3 11:57:22 2001 +0000 added pkg-config files for the interfaces that get optionally installed so apps can test for their existence commit 2f738040b395392953a73fb594d4e703a1cc7cf6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 3 11:46:11 2001 +0000 Added my framebuffer driver for all NeoMagic PCI/AGP chips. commit 111f4e7604b3a16cbba052cb4236021126b9eae7 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu May 3 11:27:03 2001 +0000 Added IDirectFBInputDevice->GetButtonState() which returns the state of the specified button. Added DFBInputDeviceButtonState. commit d99d7460d2c5fc0c09680b0a43115db73c87e886 Author: Sven Neumann <neo@directfb.org> Date: Wed May 2 11:17:32 2001 +0000 allow to switch between FLAT_SHADED and WIRE_FRAME using Space commit f97a8eeeb84247bbb93570695992c7b6349e915b Author: Sven Neumann <neo@directfb.org> Date: Wed May 2 10:53:51 2001 +0000 Introduced clip_triangle_precheck() that tests if a triangle needs to be drawn at all. Beautified line drawing examples in df_dok. commit c7ae9484e54094ff1f65b2a3f100512f15d4b2a0 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 29 08:48:36 2001 +0000 Implemented triangle filling in Matrox driver. Renamed utility macro SGN to SIGN. commit 39c658fa5349f6b8abd427846b7d86a82d5f5df5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 29 06:02:48 2001 +0000 yeah, rotating light! commit 5ad7c7d04d4327a2e62a378ce0878b21120b5338 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 29 05:41:38 2001 +0000 golden skull ;) commit 03fe13cdbcecec872e32b9e5cd91fdbf8fcf4dea Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 29 05:14:58 2001 +0000 Added new cool demo called df_knuckles, it's a port from Mark Vojkovich's skull demo for DGA and a good demonstration of triangles. Fixed CheckState in Matrox driver, it does not support all functions any more. Added rounding to fixed point triangle setup. commit 308945bb1963fb246afca5a0ba988f02823598b1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 29 03:37:46 2001 +0000 implemented triangle filling in generic driver moved utility function sort_triangle from tdfx driver to gfx/util.h added triangles to df_dok commit d12a1c2b800ddbaf7ac276a003d2ba2e79abcf44 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sun Apr 29 01:13:09 2001 +0000 compile with "-g3" if "--enable-debug" is passed to configure commit 2579d65400a613fb2427ff501f3bf2104247609d Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 27 14:43:53 2001 +0000 fixed accelerator ids commit f740f41821ff65005d28d6beb4fe9679d5f03c13 Author: Sven Neumann <neo@directfb.org> Date: Thu Apr 26 23:36:52 2001 +0000 Moved command-line parsing out of DirectFBCreate() into DirectFBInit(). This means to inititalize DirectFB() there are now two calls necessary: DirectFBInit( &argc, &argv ); DirectFBCreate( &dfb ); This makes is possible to do further checks on the command-line before switching to graphics mode on DirectFBCreate. commit fa3249dc57c0f62584039241186f1b439d6a4d1b Author: Michael Natterer <mitch@directfb.org> Date: Thu Apr 26 22:47:50 2001 +0000 - If we need argv[1] as video source, check for it instead of simply crashing if it's not there. - Release the video provider so DMA from the tuner hardware doesn't trash framebuffer memory after the demo finished. commit 893ee69e897a34752f89522555ef62edf958a7ee Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 26 21:05:26 2001 +0000 FillRectangle! But only on Voodoo, yet. Accepts drawing flag DSDRAW_BLEND. commit 7a42d0f386fcb4dcf7a94338a29c6b58cf675c41 Author: Sven Neumann <neo@directfb.org> Date: Thu Apr 26 20:30:56 2001 +0000 forgot to remove the free's here commit 02f48e08c3890aba1d6a8d37022fbe18c7035b72 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 26 11:44:08 2001 +0000 free interfaces if reference counter reaches zero, disabled in debug mode to enable the feature of DFB_DEAD commit e478aa82f9489e94c1f63f6601b37d337f16c056 Author: Michael Natterer <mitch@directfb.org> Date: Thu Apr 26 00:11:18 2001 +0000 Fixed the check if avifile-config was found. commit 7b5b31e0a6884e22eb35136d3524b6fcf302ece1 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Apr 25 21:10:23 2001 +0000 removed unused files commit b2a15826add6eaeb04aec49aa3bc8856174fb4c7 Author: holger <holger> Date: Wed Apr 25 20:33:59 2001 +0000 free interfaces if constuctor failed commit 0c9ee2a440c5383308bdf1eb3a7cea0f2f987918 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Apr 25 18:01:29 2001 +0000 fixed caps passed to IDirectFBSurface_Layer_Construct commit 473b007802afce63c0843004324e09d7a8df0855 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Apr 24 13:34:54 2001 +0000 Reset card state in suspend, some glitches still there. Generated changelog. commit 305a9fee889f178bfec52bcca5727bb6ab4f05eb Author: Sven Neumann <neo@directfb.org> Date: Tue Apr 24 13:14:20 2001 +0000 Added Shockwave Flash videoprovider hacked by Roh. Uses libflash which can be found repackaged at http://www.directfb.org/download/. There is no acceleration yet, we just tell libflash to draw into a DirectFB surface. Sound and interaction are also disabled. Try to build avifile videoprovider by default. Can be disabled by passing --disable-avifile to configure. commit af3abf37fe1212aa72ae3ce39b00d882a7cf69cb Author: Sven Neumann <neo@directfb.org> Date: Mon Apr 23 17:04:36 2001 +0000 Bumped version number to 0.9.1 Added an avifile option to directfb-config that makes --libs output the suitable LDFLAGS so the avifile provider can be used with the linked application. Will need to figure out how to do this right in directfb.pc. commit 16d699ca8a93a3fa62f98578bda4ff263c2551ed Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 20 19:15:54 2001 +0000 Fixed the segfault that happens at exit in all applications using an IDirectFBDisplayLayer. more signed/unsigned cleanups, we need to check all code for that commit 7c3725fa009725979049fe6a9dd08c8f1ea2eaa8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 20 18:52:18 2001 +0000 signed/unsigned int cleanup commit 70d33987eb1c84b799d19517a0d28a76caf21622 Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 20 14:38:11 2001 +0000 removed bogus test lines from driver commit 3b37fd329bc2750daaf3397de00651aefafb94f0 Author: Sven Neumann <neo@directfb.org> Date: Thu Apr 19 20:57:54 2001 +0000 do not enable the cursor by default explicitely enabled the cursor in df_fire commit 963b4628d5030515b115ae8177adda2a2c311745 Author: Denis Oliver Kropp <dok@directfb.org> Date: Sat Apr 14 22:14:36 2001 +0000 also support .asf commit 0cae91379f36096825e8898c0ba4bd343178a4bf Author: Denis Oliver Kropp <dok@directfb.org> Date: Fri Apr 13 07:07:52 2001 +0000 Stop works now, actually doing a Pause (Stop crashes avifile). PlayTo no more stops the video before destination setup and checks if the video should be UnPaused, Started or left Playing. Works really fine to call PlayTo several times with different destinations. (Different surfaces on the fly not tested yet. Todo: Mutex PlayTo/DrawCallback) commit 5e37db8d246b7fce6248c8c7396c33c230276a23 Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 12 21:06:14 2001 +0000 V4L Videoprovider Probe now checks if the filename bgeins with "/dev/video", so you have to pass e.g. "/dev/video0" to the provider and not NULL. Removed video4linux from core. V4L Provider still needs these: 1. Clean up code. 2. Add grabbing support. 3. Do proper surface listening (resize, destroy, ...). commit 6ec4cbc0d37fc983148806b9cb82595286a7406b Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 12 20:59:43 2001 +0000 compiles with newest avifile version now commit 3cb8e1410dba23f0024ed0babbfe33b122cd034e Author: Denis Oliver Kropp <dok@directfb.org> Date: Thu Apr 12 15:48:29 2001 +0000 oops, directfb.h said "SetColor(a,r,g,b)", it is "r, g, b, a" commit c85266af87b82531cd926758a3535071e8798d48 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Apr 11 01:47:47 2001 +0000 -removed composed blitting flags (DECAL,MODULATE,...) -precheck if destination format is supported in jpeg provider, image loading needs to be cleaned up badly (src/misc/gfx_util.c, too). commit 030db92769e5951ceb91303acd379e5ea1e5d8e6 Author: Denis Oliver Kropp <dok@directfb.org> Date: Wed Apr 11 00:44:41 2001 +0000 implemented flipping of general purpose surfaces (no layer, no window) a) that are subsurfaces b) with specified flip region c) with DSFLIP_BLIT flag commit e0ebe46725106cf5d3567b1a6eb1ac4154d64ee5 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Apr 10 23:48:23 2001 +0000 fixed parsing of struct members and interface call parameters that have a type with spaces, e.g. "unsigned int". improved linking within types.html for struct members, e.g. flags commit 75c058b2fd90d1f1b259bb6961132bb08ebda3b2 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Apr 10 22:44:45 2001 +0000 added missing "void *callbackdata" to callbacks: DFBInputDeviceCallback and DFBVideoModeCallback commit f7c86c9e818558f38c961f88a22c41e3cc137e76 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Apr 10 16:32:27 2001 +0000 removed clipping from software drivers blitting functions, gfxcard.c does this removed debugging sleep from df_window commit f24ad236aeb6ffb2603462862673d9f970a3c29e Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Apr 10 14:04:29 2001 +0000 added note about where to place this file commit baf3d673f196c25239207117145a9e3ad442f9ad Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Apr 10 13:27:36 2001 +0000 added 768x576 mode (PAL), but at 75Hz commit 779997a21584eeb8dc86ead1d8017fa68367868c Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Apr 10 13:00:53 2001 +0000 added #warning to help people compile the avifile provider with a newer version of avifile commit 1a7f5c48ca04e6b581062f626c72315f8fdda9c8 Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Apr 10 12:58:00 2001 +0000 standard files commit 7f0e73d61230440c312aa80e686daf542911a18d Author: Denis Oliver Kropp <dok@directfb.org> Date: Tue Apr 10 12:57:11 2001 +0000 added missing files that got sorted out by .cvsignore commit 3c0c679d473211afbe859ae84def8f1525fea1f2 Author: Sven Neumann <neo@directfb.org> Date: Fri Apr 6 20:34:30 2001 +0000 Documented the release version number in the ChangeLog. commit 25ff4234b1b752098ccc6b2eefe7fc1a6e21b686 Author: Michael Natterer <mitch@directfb.org> Date: Fri Apr 6 20:18:29 2001 +0000 Initial revision |