Make evas correctly build against the real gl libraries instead of
[profile/ivi/evas.git] / ChangeLog
1 2011-01-29  Carsten Haitzler (The Rasterman)
2
3         1.0.0 release
4
5 2011-01-29  Carsten Haitzler (The Rasterman)
6
7         * Enabled mempool for object allocation
8         * Allow shorter pre-render handler for rect objects if they are
9           invisible
10
11 2011-01-30  Tom Hacohen (TAsn)
12
13         * It's actually a merge from my local branch upstream so this
14           includes many changes.
15         * Fixed cursor/selection handling with BiDi text.
16         * Fixed many BiDi issues in both textblock and text objects.
17         * Cleaned up textblock and font engine a lot.
18         * Added auto-alignment to tetxblock and text objects.
19         * Added mixedwrap (word wrap, and if a word is too big cut it) support
20           to textblock.
21         * Renamed a lot of stuff.
22         * Made textblock faster, mostly by saving item sizes and caching
23           layout items when text doesn't change.
24         * Added harfbuzz (ot layouting/shaping and etc) support.
25         * Currently you need to set the env var EVAS_USE_OT to '1' in order to
26           use OT support (harfbuzz) that will change soon.
27         * More code cleanups will be coming in the future. This shipment is
28           mostly to get code review started (and also make sure I don't have a
29           merging hell later on).
30
31 2011-01-31  ChunEon Park
32
33         * Fix lurking free bug in key grabs.
34
35
36 2011-02-01  Carsten Haitzler (The Rasterman)
37
38         * Added WBMP loader thanks to Samsung.
39
40 2011-02-01  Tom Hacohen (TAsn)
41
42         * Started using string objects instead of strings in most of the
43           font engine (everywhere except draw). Haven't removed the
44           paramteres yet, but did mark them as UNUSED. Removing them will be
45           part of a future change.
46         * Removed run-time OT toggling support, OT is now fast, no need for that.
47         * Renamed all of the intl_props->text_props (because it really
48           changed purpose
49         * Fixed spliting/merging of text_props to be fast and good, not
50           hacky and complex like before.
51         * Added "mirrored mode" to table object.
52
53 2011-02-07 Brett Nash (nash@nash.id.au)
54
55         * Proxy Objects; Now you can set an image to have a 'source' of
56           another object.  The proxy will display the object as well.  Proxy
57           objects should be mostly complete.
58         * Proxy objects should be complete; please report and bugs to me.
59         * Partial support for arbitrary clipping.  Final support coming soon
60           (with some other changes).  You can set most objects as a clip on
61           other objects.  This will use the alpha channel of the object as a
62           clip on the object.  This is still buggy.
63         * CLIPPING DISABLED AND REMOVED DUE TO BEING TOO BUGGY AND INCOMPLETE *
64         * Software support for arbitrary maps.  So you can use any size map
65           (not just 4 points) for maps.  Once again this is a little buggy.
66         * ARBITRARY MAPS DISABLED AND REMOVED DUE TO BEING TOO BUGGY AND INCOMPLETE *
67
68 2011-02-02  Carsten Haitzler (The Rasterman)
69
70         * GL engine gets a speculative texture cache to shadow the
71           normal image cache to avoid excess texture uploads when
72           cycling images often. Should improve performance in some
73           cases.
74
75 2011-02-12  Carsten Haitzler (The Rasterman)
76
77         * Fix "ridiculous scaling size" bug, where scaling images to
78           sizes like 1 billion pixels high or wide caused evas to try
79           allocate scaletables on the stack and the stack just couldn't
80           handle it. Now it only allocates a table for the visible
81           region which will always be sane, and even has insanity
82           checks now. At worst you'll get an unrendered image if the
83           values are silly and some slowness. No crashes.
84
85 2011-02-13  Brett Nash (nash@nash.id.au)
86
87         * Fix crash when deleting proxies.  This _technically_ breaks
88           evas engines which realloc engine data when a border is set.
89           Practically no engines do this.  There is a comment there (and
90           if the engine does that border set won't work), in which case
91           a more complex work-around is possible.
92
93 2011-02-14  Tom Hacohen (TAsn)
94
95         * Added a newline character mode API to textblock. This lets us set
96           the newline behavior to either normal (i.e only break a line, not
97           a paragraph) to "behave as a PS" mode. Default is the latter.
98           The former is the more correct approach but I guess everything else
99           is in e is not yet ready to use it. These API should help with the
100           transition.
101         * A lot of textblock speed improvements and reduced memory footprint.
102
103 2011-02-16  Jeonghyun Yun
104
105         * Patch from Jeonghyun Yun <jh0506.yun@samsung.com> that
106           improves BMP loader support to handle malformed RLE BMP's that
107           encode more pixels per line than the image actuall has.
108
109 2011-02-16  Tom Hacohen (TAsn)
110
111         * Dropped Evas_Encoding and moved to use Eina_unicode_utf8 instead.
112         * Started showing the unicode replacement character instead of missing
113           glyphs.
114
115 2011-02-20  Carsten Haitzler (The Rasterman)
116
117         * Fix bug in font string parsing that can result in a crash if a
118           font element is long enough.
119         * Fix convert rgba8888 -> a8 bug so it wont crash.
120
121 2011-02-21  Carsten Haitzler (The Rasterman)
122
123         * Fixed bug with memory access of old utf8 string when
124           comparing prev and cur state with text obj.
125
126 2011-02-22  Tom Hacohen (TAsn)
127
128         * Fixed a bug in textblock cursor position with empty textblocks.
129
130 2011-02-22  Carsten Haitzler (The Rasterman)
131
132         * Fixed bug smart calc array where it'd nuke the array when nested
133           process calls happen and leave some objects uncalculated, but
134           removed from the array and marked as needing a calc thus never
135           getting back into the array.
136
137 2011-02-27  Vincent Torri
138
139         * Fixed static linking of the bmp, wbmp and tga loaders
140
141 2011-03-07  Mike Blumenkrantz
142
143         * Fix segv when trying to set gl viewpoint with NULL ctx
144
145 2011-03-08  Carsten Haitzler (The Rasterman)
146
147         * Fix problem with different x vsync api between SGI and EXT flavor
148         as they have the same base name, but different prototypes
149         * Add evas_object_ref() and evas_object_unref() to defer
150         deletion of objects until all references are removed
151
152 2011-03-09  Carsten Haitzler (The Rasterman)
153
154         * Fix bug with evas_object_del() calling DEL callback BEFORE
155         the HIDE one.
156
157 2011-03-10  Sung W. Park
158
159         * Fix bug with yinvert handling of native surfaces.
160
161 2011-03-10  Carsten Haitzler (The Rasterman)
162
163         * Fix issue with loading alpha BMP's with "check if all pixel alpha
164         are 0 or not and then force alpha off if all are 0". This
165         means you can never have a 100% empty/transparent BMP though
166         in 32bpp mode.
167
168 2011-03-11  Carsten Haitzler (The Rasterman)
169
170         * Add ICO loader to evas (also can load CUR cursor files in theory)
171
172 2011-03-14  Carsten Haitzler (The Rasterman)
173
174         * Add "load from memory" API: evas_object_image_memfile_set() by
175         popular demand. Can load an image format from a memory address.
176
177 2011-03-15  Cedric BAIL
178
179         * Fix issues with clipping and map.
180
181 2011-03-18  Jiyoun Park
182
183         * Fix wrong call to free when using mempool for Evas_Object.
184
185 2011-03-19  Carsten Haitzler (The Rasterman)
186
187         * Caching and timestamp checker for image files made much more
188         pedantic and it checks not just modified timestamp but also
189         inode number, size, and on linux, the nanonsecond resolution
190         timestamp as well.
191
192 2011-03-19  Brett Nash (nash)
193
194         * Proxy: Bypass the clip on smart clipped objects.  This is probably
195         what you want if you are using proxies, as it means clips don't cause
196         the object to be invisible by the proxy.
197
198 2011-03-22  Gustavo Sverzut Barbieri (k-s)
199
200         * Fix build of GL and static modules.
201         * Fix ico loader static build.
202
203 2011-03-30  Tom Hacohen (TAsn) and Carsten Haitzler (The Rasterman)
204
205         * Added vertical alignment support to textblock.
206           API: evas_object_textblock_valign_set/get
207
208 2011-04-04  Sung W. Park
209
210         * Added Evas OpenGL interface to be able to get an OpenGL API for
211         rendering to image objects. This is the beginning so not
212         totally functional yet.
213
214 2011-04-05  Cedric Bail
215
216         * Remove Evas Quartz backend.
217         * Remove Evas Cairo backend.
218         * Remove Evas Qtopia backend.
219         * Remove Evas Xrender backend.
220
221 2011-04-06  Carsten Haitzler (The Rasterman)
222
223         * Fix bug in GL engine with someone stealing the GLX context away
224         as well as scissor clips when rotated output is not 0 (90, 180, 270).
225
226 2011-04-07 Tom Hacohen (TAsn)
227
228         * Textblock: Major speed improvements.
229         * Textblock: Only relayout and remake paragraphs that have actually
230           changed. This means we are a lot faster than before, especially with
231           long texts.
232
233 2011-04-10 Tom Hacohen (TAsn)
234
235         * Textblock: Fixed a bug in evas_object_textblock_text_markup_prepend
236           that caused it to use the object's cursor instead of the cursor
237           passed.
238
239 2011-04-11  Carsten Haitzler (The Rasterman)
240
241         * Feature: Text & Textblock - Add 8 explicit shadow directions for
242         text style effects.
243
244 2011-04-12 Myoungwoon Roy Kim (roy_kim)
245
246         * Font-engine: Added runtime italic (actually slanting) and
247           emboldening. - Automatically slants/emboldens a font at runtime if
248           italic/bold/crusiva and etc are requested but not found in the
249           system.
250
251 2011-04-14 Tom Hacohen (TAsn)
252
253         * Font-engine: Implemented higher level override API for the bidi
254           functions. This implements clause HL4 of the bidi algorithm.
255           This is very cool actually, it lets us to force-separate paragraphs
256           so each part will get his bidi calculated on it's own. This is very
257           useful for "to" field of email/sms applications where ',' is used to
258           separate different text entities.
259
260 2011-04-19 Brett Nash (nash)
261
262         * Filters: So filtering of various flavours.  They work only on images
263           (use a proxy if you want it on other objects).  Documentation inline.
264           Supports a filter object or filter under (the area where the object
265           is filtered).  Various parameters to tweak, and potential for
266           additional filters (but you get to write the shader ;-)
267         * FILTERS DISABLED AND REMOVED DUE TO BEING TOO BUGGY AND INCOMPLETE *
268
269 2011-04-24 Thierry el Borgi
270
271         * Add PSD file format support.
272
273 2011-04-26  Carsten Haitzler (The Rasterman)
274
275         * Added "generic" image loader that can just execute some command
276         to load any given file format and read the RGBA data as stdout
277         from the command, or from an intermediate temporary file or
278         shared memory segment the executable loader provides. Evas
279         doesn't care about the loader beyond it providing output via
280         stdout to define image parameters (size, alpha channel and data
281         information), and evas will call a specific loader binary
282         based on extension name of srouce file. This allows for evas to
283         load image data from files where the loader may be prone to
284         instability, or require use of libraries that are GPL or
285         otherwise undesirable in terms of the result to applications
286         using evas. So basically, if you want a GPL loader or have a
287         very unstable one, write a loader binary and call it
288         evas_image_loader.extension e.g. evas_image_loader.pdf or
289         evas_image_loader.xcf or evas_image_loader.xcf.gz etc. etc.
290
291 2011-04-28 Shilpaonkar Singh
292
293         * Textblock: Add "password" tag to turn on/off password in the middle
294           of the textblok. Especially useful for implementing "show last char"
295           for password entries.
296
297 2011-05-04  Carsten Haitzler (The Rasterman)
298
299         * Improved table layout for homogenous mode to handle not column
300         or row multiple sized table better.
301
302 2011-05-04  Jiyoun Park
303
304         * OpenGL binary shader ability to cache (save and load back
305         later) to avoid re-compiling shaders on every time an app starts and
306         uses the GL engine. Faster startup time.
307
308 2011-05-04 Tom Hacohen (TAsn)
309
310         * Textblock: Do standard compliant line breaks. In order to achieve
311           that we now statically link against liblinebreak (available in
312           src/static_deps/liblinebreak). It's usage can be disabled using the
313           configure flag: "--disable-liblinebreak"; Disabling it will activate
314           the fallback line breaking methods which are not very correct, but
315           are possibly faster. I haven't noticed any difference between the
316           two speed-wise, but there probably are in some rare cases.
317
318 2011-05-06 Cedric Bail
319
320         * Don't try all image loader when user is pointing them on a directory.
321
322 2011-05-11  Carsten Haitzler (The Rasterman)
323
324         * Fix problem with Evas engine not calling pre/post swap functions
325         in the GL engine when using EGL/OpenGL-ES2
326         * Fix SVG loader 2 phase loader having differing scale down code
327         for first and 2nd phase. Resulted in crash when loading some SVGs
328
329 2011-05-11 Tom Hacohen (TAsn)
330
331         * Textblock: Added evas_textblock_node_format_list_get. This is very
332           useful for edje_entry that uses anchors in the text.
333
334 2011-05-12  Carsten Haitzler (The Rasterman)
335
336         * Add smart instance usage count get function for ability to free
337         data from memory from a smart class if needed.
338
339 2011-05-12 Brian Wang
340
341         * Textblock: fix segfault with evas_textblock_cursor_content_get
342
343 2011-05-12  Carsten Haitzler (The Rasterman)
344
345         * Add a smart "Grid" layout object that lays out objects in a regular
346         "virtual resolution" grid (eg 100x100) so you can lay them out
347         as a "scaled percentage" of the virtual resolution. virtual
348         resolution is defineable as is the geometry of each member.
349
350 2011-05-18  Sung W. Park
351
352         * Fix some internal stencil and depth requests for OpenGL-ES2
353         due to OpenGL-ES limitations.
354         * Fix Surface recreation for FBO in Evas GL support.
355
356 2011-05-23  Vincent Torri
357
358         * Fix compilation with libjpeg 8 on Windows.
359
360 2011-05-24  Cedric Bail
361
362         * Use Eina_File when possible.
363
364 2011-05-26  Carsten Haitzler (The Rasterman)
365
366         * Fix Evas table to handle weighting correctly for items and veto
367         rows or columns that have any child spanning that column not
368         able to expand.
369         * Fix Evas table to use actual fractional weights, not just
370         boolean expand/not expand from weight value.
371
372 2011-05-27  Carsten Haitzler (The Rasterman)
373
374         * Add evas_event_thaw_eval() for conveneince of evaluating in state
375         and callbacks of the pointer after a thaw is complete.
376
377 2011-05-29  Tom Hacohen (TAsn)
378
379         * Font-engine: Fixed a bug in glyph search causing inconsistent return
380           values. The found fi should always be NULL if there was no fi found.
381
382 2011-05-29  Tom Hacohen (TAsn)
383
384         * Font-engine: Conform to the API changes in Harfbuzz 0.6.0
385
386 2011-05-29  Raoul Hecky
387
388         * Textblock: Added support for numeric escape codes. e.g "&#x3c;".
389
390 2011-05-29  Vincent Torri
391
392         * Fix compilation when --disable-async-preload is passed to configure.
393
394 2011-06-01  Cedric Bail
395
396         * Add +evas_object_image_extension_can_load_get and
397         evas_object_image_extension_can_load_fast_get that check if a file
398         may be opened by Evas_Object_Image.
399
400 2011-06-07  Cedric Bail
401
402         * Use Eina_File for JPEG loader.
403         * Add evas_object_image_load_orientation_get and evas_object_image_load_orientation_set,
404         that tell if we should honor the orientation information when loading image file.
405
406 2011-06-17  Carsten Haitzler (The Rasterman)
407
408         * Allow evas table to re-pack the same object without error and just
409         update packing parameters
410         * Allow to get packing location of table child
411
412 2011-06-28  Tom Hacohen (TAsn)
413
414         * Polygon: Implemented "is_inside".
415
416 2011-07-05  Hyoyoung Chang
417
418         * Fix bug where event causes event in callback on same object, but
419         with same event counter, so also filter out same event types.
420
421 2011-07-06  Carsten Haitzler (The Rasterman)
422
423         * Fix bug in grab counting on object hide while events are frozen
424
425 2011-07-07  Cedric Bail
426
427         * Fix infite loop when reinserting object during recalc stage.
428
429 2011-07-27  Tom Hacohen (TAsn)
430
431         * Textblock: Closing tags formats is now well-defined for complex
432           formats.
433           For example: <font=Sans font_size=23 color=#FFF> should now be
434           closed with </font> (or, like before, with the generic poper).
435         * Textblock: Add support for out-of-order tag openers/closers.
436           Markup sequences like <b><i></b></i> are now legal and work as
437           expeceted.
438
439 2011-07-28  Tom Hacohen (TAsn)
440
441         * Textblock: Added support for quoting format parameters.
442           Formats like: <font='Sans' color='#FFF'> are now legal.
443         * Textblock: Added font_weight and font_style formats.
444           These format allow overriding the font style set using:
445           font=':style=Bold'.
446
447 2011-07-31  Tom Hacohen (TAsn)
448
449         * Textblock: Added font_width.
450           This allows overriding the font width set using:
451           font=':style=Condensed'
452
453 2011-08-01  Tom Hacohen (TAsn)
454
455         * Textblock: Added lang to markup to set the lang of the text.
456
457 2011-08-09  Tom Hacohen (TAsn)
458
459         * Textblock: Added evas_textblock_cursor_range_formats_get which
460         returns the formats inside a range.
461         * Textblock: Added evas_textblock_cursor_visible_range_get which
462         updates the cursors to the ends of the area currently visible on
463         screen.
464
465 2011-08-17  Tom Hacohen (TAsn)
466
467         * Callbacks: Added priority support to callbacks.
468
469 2011-08-23  Cedric Bail
470
471         * Fix evas_object_image_data_convert.
472         * Add YUV 601 input format to evas_object_image_data_convert.
473
474 2011-08-29  Cedric Bail
475
476         * Add colorspaces NV12 and MT12 (64 * 32 macro block tiled
477         format, see Linux videodev documentation for more information).
478
479 2011-10-17  Shilpa Singh
480
481         * Textblock: Added underline=dashed support.
482         Tag changes:
483          - dashed is a legal value for underline
484         New tags:
485          - underline_dash_color
486          - underline_dash_width
487          - underline_dash_gap
488
489 2011-10-21  Carsten Haitzler (The Rasterman)
490
491         * Add function to request what the largest possible image (or texture)
492         size is from evas.
493
494 2011-10-27  ChunEon Park (Hermet)
495
496         * Add evas_object_freeze_events_set/get to discard the object events.
497         they will be useful some cases such as transition.
498
499 2011-11-02  Nicolas Aguirre
500         * Add gl_cocoa engine
501
502 2011-11-16  Carsten Haitzler (The Rasterman)
503
504         * JPEG encode and decode in eet now uses ISLOW (not IFAST) due to
505         noticable quality losses in the chase for speed. It will use
506         IFAST for quality less than 60 when encoding
507
508 2011-11-20  Carsten Haitzler (The Rasterman)
509
510         * TGA loader gets fixed alpha decode - real life tga's have
511         proper alpha values. also reduce false positive tga file
512         detection
513
514 2011-11-24  Carsten Haitzler (The Rasterman)
515
516         * Fix repeat event inheritance from parent smart just like
517         pass events are inherited. This was inconsistent.
518
519 2011-12-02 Carsten Haitzler (The Rasterman)
520
521         1.1.0 release
522
523 2011-12-07  Carsten Haitzler (The Rasterman)
524
525         * Fix build if gcc too old - if immintrin.h doesn't exist,
526         don't enable SSE3.
527
528 2011-12-08  Tom Hacohen (TAsn)
529
530         * Textblock markup: Support self closing format tags, i.e <br/>.
531         You should use <br/> and not <br>. The latter still works but it's use
532         is discouraged.
533         * Textblock: Added evas_textblock_text_markup_to_utf8.
534         This lets you convert textblock markup to plain text.
535         This converts formats and everything correctly.
536
537 2011-12-12  Carsten Haitzler (The Rasterman)
538
539         * Fix rounding error in map clip bounds calculation
540
541 2011-12-12  Tom Hacohen (TAsn)
542
543         * Textblock: Added evas_textblock_cursor_word_start/end.
544         Those functions let you jump to the start/end of the word under the
545         cursor.
546
547 2011-12-13  Carsten Haitzler (The Rasterman)
548
549         * Fix grab count negative values if you do weird combinations of
550         press and release with multiple fingers or multiple mouse
551         buttons.
552
553 2011-12-14  Cedric BAIL
554
555         * Use Eina_File when loading bmp, ico, pmaps and wbmp files.
556         * Fix potential race condition in wbmp loader code.
557
558 2011-12-14  Tom Hacohen (TAsn)
559
560         * Textblock: Made "br" and "tab" default tags for newline and tab.
561         * Textblock: Added "b" and "i" as default tags that can be overridden
562         by style, and added the infra to support this.
563         * Textblock: Added evas_textblock_text_utf8_to_markup
564
565 2011-12-16  Carsten Haitzler (The Rasterman)
566
567         * Fix clip bug that shows up in buffer engine
568         * Fix SSE3 routines with buggy output - disable
569         * Add new api to set and get default event flags.
570
571 2011-12-19  Carsten Haitzler (The Rasterman)
572
573         * Add new canvas events called just before and after evas rendering
574         starts and stops.
575
576 2011-12-21  ChunEon Park (Hermet)
577
578         * Events: repeat events should not be affected by children.
579         Fixed to object passes events to the next object in the same layer
580         if the repeat_events is enabled.
581
582 2011-12-23 Sanghee Park
583
584         * Extend pixman support to allow other operations to use
585           pixman when doing software rendering. On x86 this isn't useful
586           but on ARMv7 with NEON pixman happens to do better with image
587           blending and nearest scale blending.
588         * Add tiled rotator for 32bit display as an option.
589
590 2011-12-26  Christopher Michael (devilhorns)
591
592         * Add functions to get/set if an object is a 'frame_object'
593
594 2011-12-27  Carsten Haitzler (The Rasterman)
595
596         * Add feature to get number of pressed devices (help fix
597           ecore-evas bug).
598
599 2011-12-28  Carsten Haitzler (The Rasterman)
600
601         * Add recursive name find function - evas_object_name_child_find()
602
603 2012-01-01  Carsten Haitzler (The Rasterman)
604
605         * Improve CPU use on nvidia drivers when vsyncing. It was
606           actually glXWaitGL() spinning, not glXSwapBuffers(), so this
607           points to a bug in the nvidia drivers where the sleep logic
608           in glXSwapBuffers() hasn't been transferred to glXWaitGL().
609           Avoid use of glXWaitGL() to avoid the nvidia bug.
610
611 2012-01-02  Cedric Bail
612
613         * Fix unitialized value when running generic loader without any
614         application found to open the file.
615         * Use Eina_File when openning XPM file.
616
617 2012-01-03  Cedric Bail
618
619         * Use Eina_File for PSD file to.
620
621 2012-01-06  Sung W. Park (sung_)
622
623         * Add EvasGL support to software backend using OSMesa.  Requires OSMesa
624           library.  Due to caveats in OSMesa, surface config stays with a
625           context rather than with a surface.  So for now, the config of a
626           surface remains with the first context that it binds to.  May need
627           to come up with a different solution in the near future.
628
629 2012-01-12  Sung W. Park (sung_)
630
631         * Add new api evas_gl_config_new/free() to ensure backward compatibility.
632           Previously, the user simply declared a Evas_GL_Config object but this
633           can cause issues if new configs are added. Now we have evas allocate it
634           for you.
635
636 2012-01-16  Raphael Kubo da Costa (rakuco)
637
638         * Add evas_object_smart_callback_del_full() to allow users to
639         unregister a specific smart event callback instead of all
640         callbacks matching a given type and function pointer.
641
642 2012-01-17  Carsten Haitzler (The Rasterman)
643
644         * Add EVAS_OBJECT_POINTER_MODE_NOGRAB_NO_REPEAT_UPDOWN pointer mode
645         for some very specific behavior needed for accessibility.
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_push/pop.
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-02-23  Carsten Haitzler (The Rasterman)
680
681         * Add evas_object_ref_get() to be able to tell if others ref
682         an object.
683
684 2012-04-03  Gustavo Sverzut Barbieri (k-s)
685
686         * Box layouts: fix handling of weights that have decimal parts,
687         they were being handled as "int" where "double" was expected.
688
689 2012-04-12  Carsten Haitzler (The Rasterman)
690
691         * Fix gl engine clipping bug when rendering to evas map fbo's
692         when gl window buffer is smaller than the fbo. used wrong
693         surface size in clipping logic.
694
695 2012-04-12  Tom Hacohen (TAsn)
696
697         * Textblock: Fixed compilation with liblinebreak disabled.
698
699 2012-04-14  Carsten Haitzler (The Rasterman)
700
701         * Fix color multiplier staying set when rendering map.
702
703 2012-04-22  Carsten Haitzler (The Rasterman)
704
705         * Fix shader binary saving to save with dir existing already.
706
707 2012-04-26  Carsten Haitzler (The Rasterman)
708
709         1.2.0 release
710
711 2012-04-26  Cedric Bail
712
713         * Lock less font rendering.
714         * Removing EVAS_FRAME_QUEUING, EVAS_SLI, METRIC_CACHE and WORD_CACHE.
715
716 2012-04-29  Tom Hacohen (TAsn)
717
718         * Textblock: Fixed a couple of bugs with range delete.
719
720 2012-04-30  Jérôme Pinot
721
722         * Add missing files in the tarballs.
723
724 2012-05-01  Cedric Bail
725
726         * Compute limited bounding box for Smart object.
727         * Use bounding box to reduce the number of object explored during event propagation.
728
729 2012-05-03  Iván Briano (Sachiel)
730
731         * Add CServe2 and image cache2 that makes use of it. Several changes
732         in the buffer and software engines to use the right cache if CServe2
733         is requested for the application.
734
735 2012-05-14  Carsten Haitzler (The Rasterman)
736
737         * Fix pixman rendering support if you set alpha flag AFTER
738         setting image size for custom image data.
739
740 2012-05-14  Sanghee Park
741
742         * Add Multisample Anti-Anliased surface format for Evas GL.
743         The formats are divided into High, Med, Low, None, where High represent
744         max number of samples.  Currently, this feature is only supported in GLES2
745         environment with GL_IMG_multisampled_render_to_texture extension supported.
746
747 2012-05-16  Vincent Torri
748
749         * Use Esvg for svg rendering. If not found, librsvg is still used.
750
751 2012-05-18  Cedric Bail
752
753         * Remove librsvg svg loader as it is a massive source of crash in e17. If
754         you still want to use it, use the evas_generic_loader librsvg binary.
755
756 2012-05-18  ChunEon Park (Hermet)
757
758         * Update mapped objects rendering when their color is changed
759
760 2012-05-24  Carsten Haitzler (The Rasterman)
761
762         * Fix evas_object_image_memfile_set() on non-linux systems.
763
764 2012-05-29  Tom Hacohen (TAsn)
765
766         * Text: Fixed an issue with text object sizing.
767         * Font: Fixed run-time italic.
768
769 2012-05-30  ChunEon Park (Hermet)
770
771         * Fixed to clean up when map actually changed. Now rendering updates will be
772         correct after evas_map acutally disabled/enabled for the smart object.
773
774 2012-05-30  Cedric Bail
775
776         * Don't wake up prepare thread if there is nothing to prepare.
777
778 2012-05-30  Daniel Zaoui
779
780         * Fix evas_free callback deletion to not sometimes abort evas freeing
781         in some situations, thus leaking.
782
783 2012-06-10  Carsten Haitzler (The Rasterman)
784
785         * Fix evas font handling so bitmap fonts work again like they
786         once did. This ifxes max height, and max ascent/descent
787         calculation for 0 em fonts with 0 bbox size (bitmap case), and
788         fixes 1 rounding error in text objects that placed ascent in the wrong
789         place by 1 pixel for even ascents.
790
791 2012-06-10  Cedric Bail
792
793         * Limit the updated region to fit in CPU cache for Pipe rendering.
794
795 2012-06-12  ChunEon Park (Hermet)
796
797         * Fixed simple line drawing on s/w backened. Unmatched loop scope caused the
798         destination buffer pointer march in place.
799
800 2012-06-12  ChunEon Park (Hermet)
801
802         * Removed empty evas_object_map_source_set/get APIs. Will Not be implemented.
803
804 2012-06-13  Mike Blumenkrantz
805
806         * Fix crash in evas_object_image_add() when called prior to setting an engine
807           for the given canvas.
808
809 2012-06-14  Cedric Bail
810
811         * Cache convertion from Evas_Map to RGBA_Map.
812
813 2012-06-15  Vincent Torri
814
815         * Add Textgrid object.
816
817 2012-06-15  Mike Blumenkrantz
818
819         * evas_object_smart_members_get() now returns NULL on non-smart objects
820
821 2012-04-26  Carsten Haitzler (The Rasterman)
822
823         * Fix GL engine bitmap font handling
824
825 2012-06-19  Vincent Torri
826
827         * Remove uselesss software DirectDraw 16 bits engine
828
829 2012-06-27  Sung W. Park (sung_)
830
831         * Added (w, h) <= 0 check in EvasGL surface that was never handled before.
832         * Handled evas_gl_make_current to return error when either surface 
833         or context is NULL.  Before, when that was the case, it just did 
834         make_current(NULL, NULL) internally. 
835
836 2012-04-28  Carsten Haitzler (The Rasterman)
837
838         * Fix font instance refcounting for textprops that hang around.
839
840 2012-06-29  Jiyoun Park
841
842         * upstream merge
843         * Merge remote-tracking branch 'remotes/origin/upstream'
844
845 2012-07-03  Christopher Michael
846
847         * Merge Tizen changes to upstream EFL.
848         * Support gif scaling in evas gif loader.
849         * Create vertex & fragment shader(s) in the gl_common engine.
850         * Don't call glGetTexLevelParameteriv unless it is supported.
851         * Support evas_cserve2 in the wayland_shm engine.
852         * When freeing a gl_x11 window, make sure to call eglMakeCurrent with a null surface
853                 to inform EGL that this window is no longer valid.
854
855 2012-07-04  Cedric Bail
856
857         * Make pipeline rendering use more extensively the prepare stage.
858
859 2012-07-04  Gustavo Lima Chaves
860
861         * Add simple interfaces support to Evas smart classes
862
863 2012-07-05  ChunEon Park(Hermet)
864
865         * Fixed Map pipe region issue. It caused the incorrect object rendering order
866         on gl backened.
867
868 2012-07-05  Cedric Bail
869
870         * Strongly disable Evas pipe rendering.
871
872 2012-07-05  Cedric Bail
873
874         * Don't let bad map sneek at render time and ban them as early as possible.
875
876 2012-07-07  ChunEon Park(Hermet)
877
878         * Let Draw Text with viewport size instead of window size. When map is enabled then it should be rendered completely.
879
880 2012-07-11  Tom Hacohen (TAsn)
881
882         * Fixed runtime emboldenment with bitmap fonts.
883
884 2012-07-16  Hermet (ChunEon Park)
885
886         * Fixed to do pre render for the children of mapped object.
887
888 2012-07-17  Cedric Bail
889
890         * Fix garbage left by mapped smart object when they fly away from the canvas.
891         * Fix map life cycle.
892
893 2012-07-18  Carsten Haitzler (The Rasterman)
894
895         * Fix evas box to not skip dealing with size hint changes
896           while it lays out objects. This breaks elementary badly and it should
897           never have done this. This broke the general logic of size
898           hint handling.
899
900 2012-07-19  Jiyoun Park(jypark)
901
902         * Fix jpeg save bug related with error handler
903
904 2012-07-22  Cedric Bail
905
906         * Don't crash when calling evas_object_smart_type_check without type.
907
908 2012-07-24  Ingvaldur Sigurjonsson
909
910         * Fix typoe in docs
911
912 2012-07-24  Hermet (ChunEon Park)
913
914         * Fixed evas_gl resource list have cleared properly when it is released
915         so it would be no problem when it is reinitialized in one same process.
916
917 2012-07-24  Cedric Bail
918
919         * Handle Proxy with the right context.
920
921 2012-07-24  Carsten Haitzler (The Rasterman)
922
923         * Fix long-standing bug when changing layer of a smart object,
924         its children dont change their layer value and pointer with it, thus
925         getting layer from them get you the wrong one.
926
927 2012-07-26  Cedric Bail
928
929         * Keep track of inactive proxied object change so we always update the proxy correctly.
930
931 2012-08-01  Jiyoun Park(jypark)
932
933         * Fix gif load bug. we initialize first frame buffer of gif loader