<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>:: xcomputerman.com :: &#187; Code</title>
	<atom:link href="http://xcomputerman.com/pages/archives/category/code/feed/" rel="self" type="application/rss+xml" />
	<link>http://xcomputerman.com/pages</link>
	<description>Ibukun Olumuyiwa's weblog</description>
	<lastBuildDate>Sat, 09 Jan 2010 21:52:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>ARGB Graphics Made Easy</title>
		<link>http://xcomputerman.com/pages/archives/2006/05/22/argb-graphics-made-easy/</link>
		<comments>http://xcomputerman.com/pages/archives/2006/05/22/argb-graphics-made-easy/#comments</comments>
		<pubDate>Mon, 22 May 2006 11:49:36 +0000</pubDate>
		<dc:creator>xcomp</dc:creator>
				<category><![CDATA[Code]]></category>

		<guid isPermaLink="false">http://xcomputerman.com/pages/archives/2006/05/22/argb-graphics-made-easy/</guid>
		<description><![CDATA[Many people dismiss Enlightenment&#8217;s cool GUI effects as just &#8220;hacks&#8221; that are no substitute for real transparency. That may have been true in the past when X didn&#8217;t have such features, but thanks to the new Xrender engine in Evas, it&#8217;s no longer true. For the skeptics, here&#8217;s a little 48-line program that can display [...]]]></description>
			<content:encoded><![CDATA[<p>Many people dismiss Enlightenment&#8217;s cool GUI effects as just &#8220;hacks&#8221; that are no substitute for real transparency. That may have been true in the past when X didn&#8217;t have such features, but thanks to the new Xrender engine in Evas, it&#8217;s no longer true. For the skeptics, here&#8217;s a little 48-line program that can display any Edje file with full transparency (when a composite manager is running). Don&#8217;t try this with XLib.</p>
<blockquote><pre>
#include &lt;stdio.h&gt;
#include &lt;stdlib.h&gt;
#include &lt;Evas.h&gt;
#include &lt;Ecore.h&gt;
#include &lt;Ecore_Evas.h&gt;
#include &lt;Edje.h&gt;

int main(int argc, char ** argv)
{
   Evas *evas;
   Ecore_Evas *ee;
   Evas_Object *edje;

   if (argc < 2)
      exit(1);

   ecore_init();
   ecore_app_args_set(argc, (const char **)argv);
   ecore_evas_init();
   ee = ecore_evas_xrender_x11_new(0, 0, 0, 0, 400, 400);
   evas = ecore_evas_get(ee);
   ecore_evas_alpha_set(ee, 1);
   ecore_evas_title_set(ee, "MAGIC!");
   ecore_evas_borderless_set(ee, 1);
   edje_init();
   edje_frametime_set(1.0/30.0);
   ecore_evas_move(ee, 0, 0);

   edje = edje_object_add(evas);
   if (!edje_object_file_set(edje, argv[1], "Main"))
   {
      fprintf(stderr, "Failed to load collection 'Main' from Edje file %s\n",
              argv[1]);
      exit(1);
   }
   evas_object_move(edje, 0, 0);
   ecore_evas_resize(ee, 200, 200);
   evas_object_resize(edje, 200, 200);
   evas_object_show(edje);
   ecore_evas_show(ee);
   ecore_main_loop_begin();
   edje_shutdown();
   ecore_evas_shutdown();
   ecore_shutdown();
   return 0;
}
</pre>
</blockquote>
<p>Two examples are shown here -- a static camera image and an animated E logo:<br />
<img src="/pages/images/emagic_shot.jpg" alt="Screenshot" />
</p>
<p>You can download the source, together with the two sample edjes <a href="/files/emagic.tar.gz">here</a>. You need to have Evas, Ecore and Edje installed (visit <a href="http://get-e.org">Get-E.org</a> for more info). This all comes with a minor caveat: Xrender performance generally ranges from sucky to depressing, and as a result evas_xrender is approximately 10 times slower than the plain software engine. But any decently fast computer should be able to handle this test case with ease.</p>
]]></content:encoded>
			<wfw:commentRss>http://xcomputerman.com/pages/archives/2006/05/22/argb-graphics-made-easy/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Summer of X</title>
		<link>http://xcomputerman.com/pages/archives/2005/06/07/summer-of-x/</link>
		<comments>http://xcomputerman.com/pages/archives/2005/06/07/summer-of-x/#comments</comments>
		<pubDate>Tue, 07 Jun 2005 20:02:22 +0000</pubDate>
		<dc:creator>xcomp</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://xcomputerman.com/pages/archives/2005/06/07/summer-of-x/</guid>
		<description><![CDATA[Wow, it&#8217;s summer again. Time flies so quickly. For those who have been wondering where in the world I am, I&#8217;m still right here in Houston. Been busy with a lot of things &#8211; work, family, Portico, but at the same time I&#8217;ve been able to get myself fairly de-stressed and hopefully more rested.
I haven&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>Wow, it&#8217;s summer again. Time flies so quickly. For those who have been wondering where in the world I am, I&#8217;m still right here in Houston. Been busy with a lot of things &#8211; work, family, Portico, but at the same time I&#8217;ve been able to get myself fairly de-stressed and hopefully more rested.</p>
<p>I haven&#8217;t been able to keep up with the Enlightenment project for a while, but hopefully in the next couple of months I should be able to get back up to speed. There is a lot of CVS activity right now and the window manager is starting to come along very nicely. I am still working on the Entrance config system overhaul, and I hope to start committing the changes to CVS in the next two weeks. Once this is complete then the door will be open for a lot of pending feature requests, like Xinerama support, language support and more. I also plan to do a beta release soon (for distro packagers) so we can expand the user base, get more bug reports/feature requests etc.</p>
<p>So that&#8217;s it for now&#8230;back to digging into code and trying to figure out just what the heck I&#8217;m doing. <img src='http://xcomputerman.com/pages/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://xcomputerman.com/pages/archives/2005/06/07/summer-of-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>E17 theme</title>
		<link>http://xcomputerman.com/pages/archives/2005/03/28/e17-theme/</link>
		<comments>http://xcomputerman.com/pages/archives/2005/03/28/e17-theme/#comments</comments>
		<pubDate>Mon, 28 Mar 2005 06:35:20 +0000</pubDate>
		<dc:creator>xcomp</dc:creator>
				<category><![CDATA[Code]]></category>

		<guid isPermaLink="false">http://xcomputerman.com/pages/archives/2005/03/28/e17-theme/</guid>
		<description><![CDATA[A change was made recently to the E17 default theme removing the black outline around the borders. I think the theme was better with the black outlines, most of the other developers apparently think otherwise. Take a look at these two screenshots (1, 2) and let me know which option you think is better&#8230;post your [...]]]></description>
			<content:encoded><![CDATA[<p>A change was made recently to the E17 default theme removing the black outline around the borders. I think the theme was better with the black outlines, most of the other developers apparently think otherwise. Take a look at these two screenshots (<strong><a href="http://www.rasterman.com/files/e17-33.jpg">1</a>, <a href="http://www.rasterman.com/files/e17-30.jpg">2</a></strong>) and let me know which option you think is better&#8230;post your comments below.</p>
]]></content:encoded>
			<wfw:commentRss>http://xcomputerman.com/pages/archives/2005/03/28/e17-theme/feed/</wfw:commentRss>
		<slash:comments>27</slash:comments>
		</item>
		<item>
		<title>Larry McVoy&#8217;s new BK license</title>
		<link>http://xcomputerman.com/pages/archives/2005/03/18/larry-mcvoys-new-bk-license/</link>
		<comments>http://xcomputerman.com/pages/archives/2005/03/18/larry-mcvoys-new-bk-license/#comments</comments>
		<pubDate>Sat, 19 Mar 2005 01:54:06 +0000</pubDate>
		<dc:creator>xcomp</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Humor]]></category>

		<guid isPermaLink="false">http://xcomputerman.com/pages/archives/2005/03/18/larry-mcvoys-new-bk-license/</guid>
		<description><![CDATA[The NWL (No Whining License):

*
* tarball.c copyright (c) 2003 BitMover, Inc.
*
* Licensed under the NWL - No Whining License.
*
* You may use this, modify this, redistribute this provided you agree:
* - not to whine about this product or any other products from BitMover, Inc.
* - that there is no warranty of any kind.
* - retain [...]]]></description>
			<content:encoded><![CDATA[<p>The NWL (No Whining License):</p>
<blockquote><p><code><br />
*<br />
* tarball.c copyright (c) 2003 BitMover, Inc.<br />
*<br />
* Licensed under the NWL - No Whining License.<br />
*<br />
* You may use this, modify this, redistribute this provided you agree:<br />
* - not to whine about this product or any other products from BitMover, Inc.<br />
* - that there is no warranty of any kind.<br />
* - retain this copyright in full.<br />
*/<br />
</code></p></blockquote>
<p>LOL.</p>
]]></content:encoded>
			<wfw:commentRss>http://xcomputerman.com/pages/archives/2005/03/18/larry-mcvoys-new-bk-license/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Lame crackers.</title>
		<link>http://xcomputerman.com/pages/archives/2005/03/14/lame-crackers/</link>
		<comments>http://xcomputerman.com/pages/archives/2005/03/14/lame-crackers/#comments</comments>
		<pubDate>Tue, 15 Mar 2005 02:13:25 +0000</pubDate>
		<dc:creator>xcomp</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://xcomputerman.com/pages/archives/2005/03/14/lame-crackers/</guid>
		<description><![CDATA[I&#8217;m back.  
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m back. <img src='http://xcomputerman.com/pages/wp-includes/images/smilies/icon_razz.gif' alt=':-P' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://xcomputerman.com/pages/archives/2005/03/14/lame-crackers/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Sleep-deprived? Yeah.</title>
		<link>http://xcomputerman.com/pages/archives/2005/01/05/sleep-deprived-yeah/</link>
		<comments>http://xcomputerman.com/pages/archives/2005/01/05/sleep-deprived-yeah/#comments</comments>
		<pubDate>Wed, 05 Jan 2005 16:45:58 +0000</pubDate>
		<dc:creator>xcomp</dc:creator>
				<category><![CDATA[Code]]></category>

		<guid isPermaLink="false">http://xcomputerman.com/pages/archives/2005/01/05/sleep-deprived-yeah/</guid>
		<description><![CDATA[But then Raster says sleep is for the weak, so&#8230;
I finally found and fixed the bug with desktop switching last night. (Apparently Raster could have easily identified this bug but he chose to make me feel the pain instead.) Borders were being automatically freed on window unmapping regardless of whether they were visible or not, [...]]]></description>
			<content:encoded><![CDATA[<p>But then Raster says sleep is for the weak, so&#8230;</p>
<p>I finally found and fixed the bug with desktop switching last night. (Apparently Raster could have easily identified this bug but he chose to make me feel the pain instead.) Borders were being automatically freed on window unmapping regardless of whether they were visible or not, hence the apparent data corruption. Virtual desktops work well enough for general use now. You can have any number of desktops, iconified windows are restored to the current desktop, and selecting a window from the window list automatically takes you to that window&#8217;s desktop.</p>
<p>Meanwhile Raster doesn&#8217;t seem to perceive a situation in which we dynamically add/remove containers on the fly, so the multiple desktops idea is shelved (for now at least). I actually did implement this in code, but there were two problems &#8212; the need to add code to automatically reparent windows being moved to another container, and the fact that all the modules presently only handle one container, so extra containers lack shadows, ibar, clock etc. In any case I think having zones and multiple desktops will do well enough for most users. Possibly we could have overlapping zones on the same screen &#8211; so you could hide zones if you wished, and stack them any way you wanted, even resize them&#8230;.this would essentially give you multiple desktops E16-style, but in a more powerful way&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://xcomputerman.com/pages/archives/2005/01/05/sleep-deprived-yeah/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>In the Zone</title>
		<link>http://xcomputerman.com/pages/archives/2005/01/04/in-the-zone/</link>
		<comments>http://xcomputerman.com/pages/archives/2005/01/04/in-the-zone/#comments</comments>
		<pubDate>Tue, 04 Jan 2005 17:27:46 +0000</pubDate>
		<dc:creator>xcomp</dc:creator>
				<category><![CDATA[Code]]></category>

		<guid isPermaLink="false">http://xcomputerman.com/pages/archives/2005/01/04/in-the-zone/</guid>
		<description><![CDATA[News from the coding front: A fair number of long-standing Entrance bugs have been squashed. One of the more notable ones had to do with locale support (date and time display). Entrance should now correctly display the date &#038; time in your system locale.
E17 virtual desktops are almost here. The E17 desktop paradigm is somewhat [...]]]></description>
			<content:encoded><![CDATA[<p>News from the coding front: A fair number of long-standing Entrance bugs have been squashed. One of the more notable ones had to do with locale support (date and time display). Entrance should now correctly display the date &#038; time in your system locale.</p>
<p>E17 virtual desktops are almost here. The E17 desktop paradigm is somewhat different from what you&#8217;re used to &#8212; in fact, attempting to make the extended window manager hints spec fit around it might prove to be slightly challenging. E17 will have multiple desktops with virtual roots, ala E16. Each desktop, or &#8220;container&#8221;, will have one or more &#8220;zones&#8221;, the default being one zone per head in a Xinerama setup. It may be possible to have multiple zones on a single screen as well. Each zone will have its own background edje and its own set of client windows. Each zone has one or more virtual desktops, and each virtual desktop may have a background that is different from its zone&#8217;s background. Seems complicated, but it&#8217;s really quite simple to understand in the end. <img src='http://xcomputerman.com/pages/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </p>
<p>I have almost finished getting the basic features for this going in CVS &#8212; right now there&#8217;s a data corruption bug we&#8217;re trying to track down that affects switching between virtual desktops in a zone.</p>
]]></content:encoded>
			<wfw:commentRss>http://xcomputerman.com/pages/archives/2005/01/04/in-the-zone/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Feelin&#8217; the Christmas Cheer</title>
		<link>http://xcomputerman.com/pages/archives/2004/12/27/feelin-the-christmas-cheer/</link>
		<comments>http://xcomputerman.com/pages/archives/2004/12/27/feelin-the-christmas-cheer/#comments</comments>
		<pubDate>Mon, 27 Dec 2004 16:15:43 +0000</pubDate>
		<dc:creator>xcomp</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://xcomputerman.com/pages/archives/2004/12/27/feelin-the-christmas-cheer/</guid>
		<description><![CDATA[This Christmas rocked&#8230;one of the best ever. I got to give out more gifts than I have ever given before, and I myself got blessed with many things, including a shiny new car&#8230;I have to say this year was phenomenal! I have been blessed so much this year I can&#8217;t even begin to count.
I still [...]]]></description>
			<content:encoded><![CDATA[<p>This Christmas rocked&#8230;one of the best ever. I got to give out more gifts than I have ever given before, and I myself got blessed with many things, including a shiny new car&#8230;I have to say this year was phenomenal! I have been blessed so much this year I can&#8217;t even begin to count.</p>
<p>I still have a few days of vacation to enjoy this week, so I&#8217;m taking some time to work on Entrance and E17. Patched up some bugs with some help from <a href="http://www.atmos.org">atmos</a> yesterday. Hopefully I might be able to resolve this config impasse we&#8217;re having right now, but if I don&#8217;t manage to gather the patience I need to do it, then I&#8217;ll just hack away at ecore and E17 instead. I&#8217;ll try and see if I can liaise with <a href="http://www.rasterman.com">raster</a> to implement virtual desktop support.</p>
]]></content:encoded>
			<wfw:commentRss>http://xcomputerman.com/pages/archives/2004/12/27/feelin-the-christmas-cheer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>E17/Entrance News Update</title>
		<link>http://xcomputerman.com/pages/archives/2004/12/13/e17-entrance-news-update/</link>
		<comments>http://xcomputerman.com/pages/archives/2004/12/13/e17-entrance-news-update/#comments</comments>
		<pubDate>Mon, 13 Dec 2004 20:26:29 +0000</pubDate>
		<dc:creator>xcomp</dc:creator>
				<category><![CDATA[Code]]></category>

		<guid isPermaLink="false">http://xcomputerman.com/pages/archives/2004/12/13/e17-entrance-news-update/</guid>
		<description><![CDATA[For those wondering what&#8217;s new on the Entrance front:
- New default theme based on E17&#8217;s default Gold theme, by Raster
- Extensive namespace and theme cleanups, by Atmos
- Some bugfixes
The old default is still available and has been renamed to &#8220;Darkrock&#8221;, for those who still prefer it. I&#8217;m sure you&#8217;ll like the new one better anyways.
E17 [...]]]></description>
			<content:encoded><![CDATA[<p>For those wondering what&#8217;s new on the Entrance front:</p>
<p>- New default theme based on E17&#8217;s default Gold theme, by Raster<br />
- Extensive namespace and theme cleanups, by Atmos<br />
- Some bugfixes</p>
<p>The old default is still available and has been renamed to &#8220;Darkrock&#8221;, for those who still prefer it. I&#8217;m sure you&#8217;ll like the new one better anyways.</p>
<p>E17 now has support for window shading and alt-drag window movement. Still lots of stuff to be fleshed out, and it&#8217;s going to be a while before this reaches alpha status. You can check it out from CVS if you want to get a feel of it, but don&#8217;t ask for help building it, &#8217;cause you won&#8217;t get any. <img src='http://xcomputerman.com/pages/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Rephorm has created winter themes for both <a href="http://rephorm.com/files/winter-entrance.eet">Entrance</a> and <a href="http://rephorm.com/files/winter-e17.eet">E17</a>. The E17 theme is quite neat, especially with the <a href="http://rephorm.com/files/winter-e17.avi">focus-unfocus animations</a>. And it&#8217;s only 69K.</p>
]]></content:encoded>
			<wfw:commentRss>http://xcomputerman.com/pages/archives/2004/12/13/e17-entrance-news-update/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Slashdotted</title>
		<link>http://xcomputerman.com/pages/archives/2004/11/29/slashdotted/</link>
		<comments>http://xcomputerman.com/pages/archives/2004/11/29/slashdotted/#comments</comments>
		<pubDate>Mon, 29 Nov 2004 12:27:48 +0000</pubDate>
		<dc:creator>xcomp</dc:creator>
				<category><![CDATA[Code]]></category>

		<guid isPermaLink="false">http://xcomputerman.com/pages/archives/2004/11/29/slashdotted/</guid>
		<description><![CDATA[Well the news of E17 arriving in CVS unexpectedly made it to Slashdot last night. And someone made it a point to post a link to my screenshots page at the top of the comments. Poor web server suffered a thorough beating from the hordes of excited Slashdot nerds clicking through in excitement. Would have [...]]]></description>
			<content:encoded><![CDATA[<p>Well the news of <a href="http://www.enlightenment.org/pages/news.html">E17 arriving in CVS</a> unexpectedly made it to <a href="http://developers.slashdot.org/article.pl?sid=04/11/28/2347218&#038;tid=115">Slashdot</a> last night. And someone made it a point to post a link to my screenshots page at the top of the comments. Poor web server suffered a thorough beating from the hordes of excited Slashdot nerds clicking through in excitement. Would have been at least half OK if there was actually an E17 screenshot available to view on there! In any case now that the dust has settled a little bit, I can now upload a real <a href="http://xcomputerman.com/gallery/screenshots/e17shot">E17 Screenshot</a> to the gallery&#8230;and perhaps even link to the <a href="http://xcomputerman.com/files/e17_move-01.avi">video</a> now &#8211; knock yourselves out.</p>
<p>But please, please, please, don&#8217;t go checking out E17 from CVS unless you intend to contribute code. The E team is stretched out and stressed enough as it is, and we cannot handle bug reports from users now. This is pre-alpha code. Don&#8217;t expect it to work. It will launch and it will do basic window management, and that&#8217;s about it at this point. A lot of trolls didn&#8217;t waste any time flooding the Slashdot story with all kinds of meaningless stuff, and we cannot afford to waste time answering questions from people like that instead of listening to suggestions and accepting patches. You can look at the pretty pictures for now, but unless you&#8217;re a coder or wish to contribute in some other way, please wait until we announce a beta. Danke. If you&#8217;re looking for software to check out, try <a href="http://www.enlightenment.org/pages/engage.html">Engage</a> (the OSX-style docker), <a href="http://www.enlightenment.org/pages/entice.html">Entice</a> (image viewer), <a href="http://evidence.sourceforge.net">Evidence</a> (file manager) or the famous <a href="/pages/entrance.html">Entrance</a>, the Enlightenment XDM/KDM/GDM replacement.</p>
<p>Those who are still confused about what is going on with E17 development might want to just take a trip to <a href="http://www.enlightenment.org">E.org</a> and do some reading up, especially on the EFL and all the work that we&#8217;ve put together in the past two years. And of course, if you want to get involved, don&#8217;t waste any time &#8211; get on the mailing list or join #edevelop on Freenode and let&#8217;s talk. I personally have a few things I could give someone to do at this point!</p>
]]></content:encoded>
			<wfw:commentRss>http://xcomputerman.com/pages/archives/2004/11/29/slashdotted/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Why the E team still isn&#8217;t excited about Xorg&#8217;s new features</title>
		<link>http://xcomputerman.com/pages/archives/2004/11/21/why-the-e-team-still-isnt-excited-about-xorgs-new-features/</link>
		<comments>http://xcomputerman.com/pages/archives/2004/11/21/why-the-e-team-still-isnt-excited-about-xorgs-new-features/#comments</comments>
		<pubDate>Mon, 22 Nov 2004 03:54:37 +0000</pubDate>
		<dc:creator>xcomp</dc:creator>
				<category><![CDATA[Code]]></category>

		<guid isPermaLink="false">http://xcomputerman.com/pages/archives/2004/11/21/why-the-e-team-still-isnt-excited-about-xorgs-new-features/</guid>
		<description><![CDATA[This is why it&#8217;s still gonna be a while before we start to see any real benefits from Xrender/Xdamage/Composite and other such new features in Xorg:
(21:44:12) -!- raster [~raster@vagw.valinux.co.jp] has joined #edevelop
(21:44:15) -!- mode/#edevelop [+o raster] by ChanServ
(21:44:36) &#60; @   raster&#62; ok
(21:44:38) &#60; @   raster&#62; lets give xorg a run for [...]]]></description>
			<content:encoded><![CDATA[<p>This is why it&#8217;s still gonna be a while before we start to see any real benefits from Xrender/Xdamage/Composite and other such new features in Xorg:</p>
<blockquote><p><code>(21:44:12) -!- raster [~raster@vagw.valinux.co.jp] has joined #edevelop<br />
(21:44:15) -!- mode/#edevelop [+o raster] by ChanServ<br />
(21:44:36) &lt; @   raster&gt; ok<br />
(21:44:38) &lt; @   raster&gt; lets give xorg a run for its money<br />
(21:45:06) &lt; @   raster&gt; werd<br />
(21:45:10) &lt; @   raster&gt; *** ROUND 1 ***<br />
(21:45:11) &lt; @   raster&gt; ---------------------------------------------------------------<br />
(21:45:11) &lt; @   raster&gt; Test: Test Xrender doing non-scaled Over blends<br />
(21:45:11) &lt; @   raster&gt; Time: 7.473 sec.<br />
(21:45:11) &lt; @   raster&gt; ---------------------------------------------------------------<br />
(21:45:15) &lt; @   raster&gt; Test: Test Xrender (offscreen) doing non-scaled Over blends<br />
(21:45:17) &lt; @   raster&gt; Time: 7.460 sec.<br />
(21:45:20) &lt; @   raster&gt; ---------------------------------------------------------------<br />
(21:45:22) &lt; @   raster&gt; Test: Test Imlib2 doing non-scaled Over blends<br />
(21:45:24) &lt; @   raster&gt; Time: 0.315 sec.<br />
(21:45:26) &lt; @   raster&gt; it still sucks! <img src='http://xcomputerman.com/pages/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
(21:45:33) &lt;@  RbdPngn&gt; that's ridiculous<br />
(21:45:37) &lt;    Xenith&gt; But not as much!<br />
(21:45:48) &lt;@   raster&gt; thats the test in whihc xrender does BEST<br />
&lt;-- snip --&gt;<br />
(21:50:13) &lt;@   raster&gt; *** ROUND 3 ***<br />
(21:50:13) &lt;@   raster&gt; ---------------------------------------------------------------<br />
(21:50:13) &lt;@   raster&gt; Test: Test Xrender doing 2* smooth scaled Over blends<br />
(21:50:13) &lt;@   raster&gt; Time: 105.336 sec.<br />
(21:50:13) &lt;@   raster&gt; ---------------------------------------------------------------<br />
(21:50:14) &lt;@   raster&gt; Test: Test Xrender (offscreen) doing 2* smooth scaled<br />
                        Over blends<br />
(21:50:16) &lt;@   raster&gt; Time: 105.866 sec.<br />
(21:50:20) &lt;@   raster&gt; ---------------------------------------------------------------<br />
(21:50:22) &lt;@   raster&gt; Test: Test Imlib2 doing 2* smooth scaled Over blends<br />
(21:50:24) &lt;@   raster&gt; Time: 2.560 sec.<br />
(21:50:26) &lt;@   raster&gt; <img src='http://xcomputerman.com/pages/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
(21:50:28) &lt;@   raster&gt; thats a bit more like it<br />
</code>
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://xcomputerman.com/pages/archives/2004/11/21/why-the-e-team-still-isnt-excited-about-xorgs-new-features/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>E17 Sneak Preview</title>
		<link>http://xcomputerman.com/pages/archives/2004/10/23/e17-sneak-preview/</link>
		<comments>http://xcomputerman.com/pages/archives/2004/10/23/e17-sneak-preview/#comments</comments>
		<pubDate>Sat, 23 Oct 2004 16:00:10 +0000</pubDate>
		<dc:creator>xcomp</dc:creator>
				<category><![CDATA[Code]]></category>

		<guid isPermaLink="false">http://xcomputerman.com/pages/archives/2004/10/23/e17-sneak-preview/</guid>
		<description><![CDATA[Yeah, I know the common wisdom out there is that E17 will be released shortly before Duke Nukem Forever, and a few hours after the apocalypse begins.
Well friends, our salvation is nearer than when we first believed. Everything you see in this preview video is from real, existing code that works now. But don&#8217;t ask [...]]]></description>
			<content:encoded><![CDATA[<p>Yeah, I know the common wisdom out there is that E17 will be released shortly before Duke Nukem Forever, and a few hours after the apocalypse begins.</p>
<p>Well friends, our salvation is nearer than when we first believed. Everything you see in this <a href="/files/e17_movie-00.avi">preview video</a> is from real, existing code that works now. But don&#8217;t ask me if you can download it or where you can get it. If you know where to get it, good for you. But it&#8217;s not in CVS, and it won&#8217;t be until certain important things are in place. And no, there&#8217;s no ETA either. It will be ready when it is ready.</p>
]]></content:encoded>
			<wfw:commentRss>http://xcomputerman.com/pages/archives/2004/10/23/e17-sneak-preview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Permalinks Changed</title>
		<link>http://xcomputerman.com/pages/archives/2004/09/14/permalinks-changed/</link>
		<comments>http://xcomputerman.com/pages/archives/2004/09/14/permalinks-changed/#comments</comments>
		<pubDate>Tue, 14 Sep 2004 22:56:50 +0000</pubDate>
		<dc:creator>xcomp</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://xcomputerman.com/pages/archives/2004/09/14/permalinks-changed/</guid>
		<description><![CDATA[For some reason I&#8217;ve taken renewed interest in this blog recently (it&#8217;s been fun dropping in humorous tidbits from the Rathergate scandal) &#8230; so today I decided to add traditional blog permalinks. Took me about half an hour of wrestling with mod_rewrite to get it to work properly (the blog rules were interfering with my [...]]]></description>
			<content:encoded><![CDATA[<p>For some reason I&#8217;ve taken renewed interest in this blog recently (it&#8217;s been fun dropping in humorous tidbits from the Rathergate scandal) &#8230; so today I decided to add traditional blog permalinks. Took me about half an hour of wrestling with mod_rewrite to get it to work properly (the blog rules were interfering with my existing rewrite rules for the other pages on the site), but it works now, and it is good.</p>
]]></content:encoded>
			<wfw:commentRss>http://xcomputerman.com/pages/archives/2004/09/14/permalinks-changed/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>EFL Preview Release</title>
		<link>http://xcomputerman.com/pages/archives/2004/08/02/efl-preview-release/</link>
		<comments>http://xcomputerman.com/pages/archives/2004/08/02/efl-preview-release/#comments</comments>
		<pubDate>Mon, 02 Aug 2004 16:10:32 +0000</pubDate>
		<dc:creator>xcomp</dc:creator>
				<category><![CDATA[Code]]></category>

		<guid isPermaLink="false">http://xcomputerman.com/pages/archives/2004/08/02/efl-preview-release/</guid>
		<description><![CDATA[On Friday we officially did a preview release of the Enlightenment Foundation Libraries, codenamed &#8220;Asparagus&#8221;. We&#8217;ve gotten a little bit of press coverage, both on Slashdot and OSNews. The OSNews story is quite amusing as the trolls instantly gathered and began to spout off about how E is &#8220;unusable&#8221; and fonts are tiny among lots [...]]]></description>
			<content:encoded><![CDATA[<p>On Friday we officially did a <a href="http://enlightenment.org/pages/news.html">preview release</a> of the Enlightenment Foundation Libraries, codenamed &#8220;Asparagus&#8221;. We&#8217;ve gotten a little bit of press coverage, both on Slashdot and <a href="http://www.osnews.com/story.php?news_id=7888">OSNews</a>. The OSNews story is quite amusing as the trolls instantly gathered and began to spout off about how E is &#8220;unusable&#8221; and fonts are tiny among lots of other nonsensical comments that had absolutely nothing to do with the news at hand. I&#8217;ve posted a couple of responses for those who are willing to actually find out what the EFL is all about, and I see that there are people with lots of questions&#8230;if you want to learn more subscribe to the <a href="http://lists.sourceforge.net/lists/listinfo/enlightenment-devel">E-devel</a> mailing list or chat with the developers in #edevelop at Freenode.</p>
<p>I&#8217;ll be heading out to San Francisco for <a href="http://www.linuxworldexpo.com">LinuxWorld</a> this evening. I&#8217;ll be at the Enlightenment booth all day tomorrow, so if you&#8217;re opportuned to be there, make sure to stop by and say hi.</p>
]]></content:encoded>
			<wfw:commentRss>http://xcomputerman.com/pages/archives/2004/08/02/efl-preview-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Edje Clock</title>
		<link>http://xcomputerman.com/pages/archives/2004/08/01/edje-clock/</link>
		<comments>http://xcomputerman.com/pages/archives/2004/08/01/edje-clock/#comments</comments>
		<pubDate>Sun, 01 Aug 2004 06:52:40 +0000</pubDate>
		<dc:creator>xcomp</dc:creator>
				<category><![CDATA[Code]]></category>

		<guid isPermaLink="false">http://xcomputerman.com/pages/archives/2004/08/01/edje-clock/</guid>
		<description><![CDATA[Tokyo has employed his mad themer skills again and created a beautiful-looking clock entirely out of Edje and Embryo. I&#8217;m told someone already did this last night, but for the rest of you who don&#8217;t feel like having to put together a C program to wrap around this, I have a little tarball up here [...]]]></description>
			<content:encoded><![CDATA[<p><img style="float: right; margin: 7px" src="/pages/images/expedition.png" alt="Eon" /><a href="http://tokyo.cored.org">Tokyo</a> has employed his mad themer skills again and created a beautiful-looking clock entirely out of <a href="http://enlightenment.org/pages/systems.html">Edje and Embryo</a>. I&#8217;m told someone already did this last night, but for the rest of you who don&#8217;t feel like having to put together a C program to wrap around this, I have a little tarball up here for you. Note that the .eet file will have to be in the current directory for the app to work&#8230;you can alter this by editing the source before compiling.</p>
<p>Download <a href="/files/eon.tar.gz">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://xcomputerman.com/pages/archives/2004/08/01/edje-clock/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>
