diff options
Diffstat (limited to 'libraries/evas/ChangeLog')
-rw-r--r-- | libraries/evas/ChangeLog | 41 |
1 files changed, 40 insertions, 1 deletions
diff --git a/libraries/evas/ChangeLog b/libraries/evas/ChangeLog index fa77400..a413064 100644 --- a/libraries/evas/ChangeLog +++ b/libraries/evas/ChangeLog | |||
@@ -638,9 +638,48 @@ | |||
638 | * Add evas_object_smart_callback_del_full() to allow users to | 638 | * Add evas_object_smart_callback_del_full() to allow users to |
639 | unregister a specific smart event callback instead of all | 639 | unregister a specific smart event callback instead of all |
640 | callbacks matching a given type and function pointer. | 640 | callbacks matching a given type and function pointer. |
641 | 641 | ||
642 | 2012-01-17 Carsten Haitzler (The Rasterman) | 642 | 2012-01-17 Carsten Haitzler (The Rasterman) |
643 | 643 | ||
644 | * Add EVAS_OBJECT_POINTER_MODE_NOGRAB_NO_REPEAT_UPDOWN pointer mode | 644 | * Add EVAS_OBJECT_POINTER_MODE_NOGRAB_NO_REPEAT_UPDOWN pointer mode |
645 | for some very specific behavior needed for accessibility. | 645 | for some very specific behavior needed for accessibility. |
646 | 646 | ||
647 | 2012-01-19 Cedric Bail | ||
648 | |||
649 | * Add double buffer support to buffer engine. | ||
650 | |||
651 | 2012-01-20 Sung W. Park (sung_) | ||
652 | |||
653 | * Add Direct Rendering to Evas' window optimization for Evas_GL. This | ||
654 | optimization can be significant since it avoids and extra copy from | ||
655 | an offscreen buffer. Normally, Evas_GL will render to a render | ||
656 | target using an FBO. This can be enabled by giving | ||
657 | EVAS_GL_OPTIONS_DIRECT hint in the config options_bits. Direct | ||
658 | rendering is actually done if the following conditions are met - | ||
659 | 1) All GL rendering is done in the pixel_getter callback 2) No | ||
660 | rotation on the image object 3) Corresponding image | ||
661 | object has alpha disabled. | ||
662 | |||
663 | 2012-01-23 Tom Hacohen (TAsn) | ||
664 | |||
665 | * Textblock: Added evas_object_textblock_style_user_set/get. | ||
666 | This is used to override the default style set for an evas object. | ||
667 | For example, this can be used to nicely change the font and size | ||
668 | in a text editor. | ||
669 | |||
670 | 2012-02-23 Carsten Haitzler (The Rasterman) | ||
671 | |||
672 | * Fix rouding of update regions for image objects when scaled | ||
673 | (leaves trails without this). | ||
674 | |||
675 | 2012-02-23 Cedric Bail | ||
676 | |||
677 | * Remove Software SDL engine. | ||
678 | |||
679 | 2012-01-23 Tom Hacohen (TAsn) | ||
680 | |||
681 | * Textblock: Replaced evas_object_textblock_style_user_set/get | ||
682 | with evas_object_textblock_style_user_push/peek/pop. | ||
683 | This is used to override the default style set for an evas object. | ||
684 | For example, this can be used to nicely change the font and size | ||
685 | in a text editor. | ||