<?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>MIPS Developers</title>
	<atom:link href="http://developer.mips.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://developer.mips.com</link>
	<description>MIPS Software Development Community</description>
	<lastBuildDate>Tue, 15 May 2012 20:55:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>Android NDK</title>
		<link>http://developer.mips.com/2012/05/01/android-ndk/</link>
		<comments>http://developer.mips.com/2012/05/01/android-ndk/#comments</comments>
		<pubDate>Tue, 01 May 2012 22:49:24 +0000</pubDate>
		<dc:creator>Bill O.</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://developer.mips.com/?p=1837</guid>
		<description><![CDATA[<p>The MIPS Android NDK is now included in the official Android NDK release!</p>
<p>For more details go to:  <a href="http://developer.android.com/sdk/ndk/index.html">http://developer.android.com/sdk/ndk/index.html</a></p>
 <img src="http://developer.mips.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=1837" width="1" height="1" style="display: none;" />]]></description>
		<wfw:commentRss>http://developer.mips.com/2012/05/01/android-ndk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learning about Android Graphics Subsystem</title>
		<link>http://developer.mips.com/2012/04/11/learning-about-android-graphics-subsystem/</link>
		<comments>http://developer.mips.com/2012/04/11/learning-about-android-graphics-subsystem/#comments</comments>
		<pubDate>Wed, 11 Apr 2012 22:05:31 +0000</pubDate>
		<dc:creator>Bhanu Chetlapalli</dc:creator>
				<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">http://developer.mips.com/?p=1802</guid>
		<description><![CDATA[<p>By Bhanu Chetlapalli<br />
Software Engineer, MIPS Technologies</p>
<p>Graphics Performance is the most important component in defining any user interface (UI) experience. The smoothness of the UI interactions and the crispness of the images are all directly dependent on the graphics capabilities of the underlying platform. Customers expect rapid visual feedback when buttons and keys are pressed.  Having a dedicated graphics engine and an operating system that correctly utilizes that engine will significantly reduce the workload on the CPU, vastly improving user experience.</p>
<p>Here at MIPS we support many open source and commercial operating systems with versions that are optimized to take full advantage of the MIPS processor architecture.  Android is one of those open source operating system that we have put significant work into porting to our architecture.  Early in the life of Android many cell phone companies shipped “bare bones” products running Android.  Many of those products did not have the responsiveness and crisp graphics customers were expecting because the products did not have a complete graphics engine and relied on the CPU to “emulate” graphics operations.  Since then almost all smart phones now have graphics engines that fully support the requirements of Android which takes a large burden off the CPU.</p>
<p>Moving onto the specifics of efficient graphics processing, the hardware and software have to work in tandem to enable this. This post aims to briefly explain a few related topics so that engineers can have a better understanding of Android&#8217;s Graphics subsystem. I will cover some of these topics in more detail in my future posts.</p>
<p><strong><span style="text-decoration: underline;">The Android Graphics Software Components</span></strong></p>
<p>The following chart shows the software components in the Android operating system responsible for graphics.  I will go through a discussion of most of these and provide some insight into their purpose.</p>
<p><a href="http://developer.mips.com/wp-content/uploads/2012/04/AndroigGFX2.png"><img class="size-medium wp-image-1806 aligncenter" title="AndroigGFX2" src="http://developer.mips.com/wp-content/uploads/2012/04/AndroigGFX2-273x300.png" alt="" width="273" height="300" /></a></p>
<p style="text-align: center;"><em>Approximate Relationship between various graphics components in a typical Android application</em></p>
<p>&nbsp;</p>
<p><strong><span style="text-decoration: underline;">Role of GPUs:</span></strong></p>
<p>A Graphics Processing Unit (GPU) is a specialized hardware engine which greatly accelerates graphics operations. They are different from CPUs in that they are designed to do highly parallel work – which is typical of most graphics operations.</p>
<p>When Android first started, GPUs were somewhat optional, but with newer releases, GPUs became a mandatory requirement. Systems without GPUs use a software OpenGL ES stack consisting of libagl &amp; pixelflinger, sometimes with hardware support from CopyBIT. Unfortunately software emulation of OpenGL on Android does not support the OpenGL ES 2.0 standard.  Today large parts of the Android operating system use OpenGL ES 2.0 through components like HWUI, Renderscript, SurfaceTextures, etc.  Tablets devices all have high resolution and software simply cannot keep up with the fill rates required to provide a smooth user experience.  Manufacturers who plan to launch new devices that support Android Ice Cream Sandwich (ICS) or later releases must have an OpenGL ES 2.0 GPU.</p>
<p><strong><span style="text-decoration: underline;">Canvas:</span></strong></p>
<p>Canvas is the Android class which application developers would use to draw widgets, pictures etc. In Android versions Froyo and Gingerbread Canvas would do the drawing using Skia.  Android Honeycomb and onward, HWUI was added as an alternate GPU-accelerated option. Android Ice Cream Sandwich (ICS) and onward, HWUI is the default.</p>
<p><strong><span style="text-decoration: underline;">Skia:</span></strong></p>
<p>Skia is a 2D drawing API which is used by applications and works completely in software.  For performance reasons Skia is slowly being replaced by HWUI.</p>
<p><strong><span style="text-decoration: underline;"> </span></strong></p>
<p><strong><span style="text-decoration: underline;">HWUI</span></strong></p>
<p>The HWUI library enables UI components to be accelerated using the GPU. HWUI was introduced in Honeycomb to make the user interface fast, responsive and smooth.  Since tablets had very high resolutions, using Skia for effects like animation would have been too CPU intensive and slow. HWUI requires an OpenGL ES 2.0 compliant GPU which cannot be emulated by software on Android.</p>
<p><strong><span style="text-decoration: underline;">Renderscript</span></strong></p>
<p>Renderscript was a new API introduced in Honeycomb* to address portability and performance at the same time. The application developer writes the code in the Renderscript language (which is based on C99), and an LLVM cross compiler on the host converts it to machine-independent IR called bit code, the developer then packages the bit code files into the Android application (APK).  When the user downloads the APK, an on-device compiler (LLVM based, located in /system/lib/libbcc.so) compiles it from bit code to the actual machine instructions for the target platform.</p>
<p>* Renderscript was available in Froyo &amp; Gingerbread but was not a published API. Only a few wallpapers in the Android source used it. Its implementation was also fairly trivial &amp; constrained.</p>
<p><strong><span style="text-decoration: underline;">Surface:</span></strong></p>
<p>A Surface in Android corresponds to an off screen buffer into which an application renders the contents. An application might be a game which uses OpenGL to draw 3D objects directly into a surface or a normal application which uses Skia to draw widgets, text, etc. It could even use HWUI library to enable a GPU accelerated user interface. From Android ICS, surfaces are implemented with a SurfaceTexture backend which means instead of a buffer, a texture is used.</p>
<p><a href="http://developer.mips.com/wp-content/uploads/2012/04/AndroigGFX1.png"><img class="aligncenter" title="AndroigGFX1" src="http://developer.mips.com/wp-content/uploads/2012/04/AndroigGFX1-300x290.png" alt="" width="300" height="290" /></a></p>
<p style="text-align: center;"><em>Graphics stack in an Android Platform</em></p>
<p><strong><span style="text-decoration: underline;">SurfaceFlinger:</span></strong></p>
<p>SurfaceFlinger is the compositor that manages multiple surfaces from various apps. For example, there could be many running applications with independent Surfaces that are being rendered. SurfaceFlinger determines what will be shown on the screen and does overlays as needed.</p>
<p>SurfaceFlinger uses only the functions in the OpenGL ES 1.1 standard.  If SurfaceFlinger used functions in OpenGL ES 2.0, it would require GPU hardware and drivers to be working &#8211; which would complicate bring-up on new devices and the Android emulator.</p>
<p><strong><span style="text-decoration: underline;">HW Composer:</span></strong></p>
<p>HW Composer is a Hardware Abstraction Layer (HAL) introduced in Honeycomb that is used by SurfaceFlinger to efficiently perform composition using hardware resources like a 3D GPU or a 2D graphics engine.</p>
<p><strong><span style="text-decoration: underline;">CopyBit:</span></strong></p>
<p>CopyBit was a hardware abstraction layer (HAL) which allowed the use of special hardware that can speed up some graphics operations like blitting etc. It was used to accelerate software rendering on systems without 3D GPUs. CopyBit support was removed in ICS, since GPUs became mandatory for supporting the newer user interface.</p>
<p><strong><span style="text-decoration: underline;">Libagl/PixelFlinger:</span></strong></p>
<p>libagl is the library which implements the OpenGL ES 1.0 &amp; 1.1 API in software. It uses PixelFlinger to implement the OpenGL calls. To speed up the rendering using PixelFlinger, a just in time compiler (JIT) was introduced called CodeFlinger. CodeFlinger generates direct machine code which drastically speeds up many types of pixel operations.</p>
<p><strong><span style="text-decoration: underline;">Conclusion</span></strong></p>
<p>I hope this provided you with a general summary of all the different graphics components in Android.  In my next article I will go into more details about the operation of some of these components.  MIPS continues to lead the industry in highly optimized versions of the Android operating system.  For more information about Android on MIPS go to <a href="http://developer.mips.com/">http://developer.mips.com</a> or <a href="http://www.github.com/mips">http://www.github.com/mips</a></p>
<p><strong><span style="text-decoration: underline;">Acknowledgments</span></strong><strong><span style="text-decoration: underline;">:</span></strong></p>
<p>Romain Guy &amp; Chet Haase&#8217;s presentation<br />
<a href="http://www.curious-creature.org/2010/12/02/android-graphics-animations-and-tips-tricks/">http://www.curious-creature.org/2010/12/02/android-graphics-animations-and-tips-tricks/</a></p>
<p><a href="http://www.vivantecorp.com/Khronos.pdf"></a></p>
<p>Cemil Azizoglu&#8217;s presentation<br />
<a href="http://www.vivantecorp.com/Khronos.pdf">http://www.vivantecorp.com/Khronos.pdf</a></p>
<p>Jim Huang’s presentation<br />
<a href="http://0xlab.org/~jserv/android-graphics.pdf">http://0xlab.org/~jserv/android-graphics.pdf</a></p>
 <img src="http://developer.mips.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=1802" width="1" height="1" style="display: none;" />]]></description>
		<wfw:commentRss>http://developer.mips.com/2012/04/11/learning-about-android-graphics-subsystem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Froyo R10</title>
		<link>http://developer.mips.com/2012/03/26/froyo-r10/</link>
		<comments>http://developer.mips.com/2012/03/26/froyo-r10/#comments</comments>
		<pubDate>Mon, 26 Mar 2012 22:48:17 +0000</pubDate>
		<dc:creator>Bill O.</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://developer.mips.com/?p=1792</guid>
		<description><![CDATA[<p>Still working with Android Froyo, so are we!  Android on MIPS Froyo R10 now available.  See http://developer.mips.com/android/android-source-code/ for download and release notes.</p>
 <img src="http://developer.mips.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=1792" width="1" height="1" style="display: none;" />]]></description>
		<wfw:commentRss>http://developer.mips.com/2012/03/26/froyo-r10/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Unable to look up github.com error</title>
		<link>http://developer.mips.com/2012/03/14/unable-to-look-up-github-com-error/</link>
		<comments>http://developer.mips.com/2012/03/14/unable-to-look-up-github-com-error/#comments</comments>
		<pubDate>Wed, 14 Mar 2012 16:55:40 +0000</pubDate>
		<dc:creator>Bill O.</dc:creator>
				<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">http://developer.mips.com/?p=1770</guid>
		<description><![CDATA[<p>Have you experienced a strange problem when using GIT to sync or clone a repo?  If you are getting this error:</p>
<pre><strong><span style="color: #ff0000;">fatal: Unable to look up github.com (port 9418) (Name or service not known)</span></strong></pre>
<p>Chances are you are having a DNS server error, the link below provides a temporary solution to the problem.</p>
<p><a href="http://www.question-defense.com/2009/03/25/fatal-unable-to-look-up-githubcom-port-9418-name-or-service-not-known">http://www.question-defense.com/2009/03/25/fatal-unable-to-look-up-githubcom-port-9418-name-or-service-not-known</a></p>
<p>&nbsp;</p>
 <img src="http://developer.mips.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=1770" width="1" height="1" style="display: none;" />]]></description>
		<wfw:commentRss>http://developer.mips.com/2012/03/14/unable-to-look-up-github-com-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ice Cream Sandwich Update</title>
		<link>http://developer.mips.com/2012/03/13/ice-cream-sandwich-update/</link>
		<comments>http://developer.mips.com/2012/03/13/ice-cream-sandwich-update/#comments</comments>
		<pubDate>Tue, 13 Mar 2012 17:39:27 +0000</pubDate>
		<dc:creator>Bill O.</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://developer.mips.com/?p=1766</guid>
		<description><![CDATA[<p>Android Ice Cream Sandwich mr3 is now available, see instructions for access and download  <a href="http://developer.mips.com/android/android-source-code/">http://developer.mips.com/android/android-source-code/</a></p>
<p>There is also a new release of Dalvik Turbo for Ice Cream Sandwich available at:  <a href="http://developer.mips.com/login/dalvik-turbo/">http://developer.mips.com/login/dalvik-turbo/</a> This release addresses an issue with the Dalvik test suite.</p>
 <img src="http://developer.mips.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=1766" width="1" height="1" style="display: none;" />]]></description>
		<wfw:commentRss>http://developer.mips.com/2012/03/13/ice-cream-sandwich-update/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Dalvik Turbo for ICS Updated</title>
		<link>http://developer.mips.com/2012/02/15/dalvik-turbo-for-ics-updated-2/</link>
		<comments>http://developer.mips.com/2012/02/15/dalvik-turbo-for-ics-updated-2/#comments</comments>
		<pubDate>Thu, 16 Feb 2012 06:56:11 +0000</pubDate>
		<dc:creator>Bill O.</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://developer.mips.com/?p=1676</guid>
		<description><![CDATA[<p>We have posted an updated version of Dalvik Turbo for Android Ice Cream Sandwich on MIPS.  This updated version resolves some issues with CTS-tradefed.  You can download this new release at: <a href="http://developer.mips.com/download-dalvik-turbo/">http://developer.mips.com/download-dalvik-turbo</a>.</p>
 <img src="http://developer.mips.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=1676" width="1" height="1" style="display: none;" />]]></description>
		<wfw:commentRss>http://developer.mips.com/2012/02/15/dalvik-turbo-for-ics-updated-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android Web Browsing Performance Greatly Enhanced by Multi-Core and Multi-Threading Technologies</title>
		<link>http://developer.mips.com/2012/02/08/android-web-browsing-performance-greatly-enhanced-by-multi-core-and-multi-threading-technologies/</link>
		<comments>http://developer.mips.com/2012/02/08/android-web-browsing-performance-greatly-enhanced-by-multi-core-and-multi-threading-technologies/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 20:57:00 +0000</pubDate>
		<dc:creator>eyal</dc:creator>
				<category><![CDATA[Benchmarks]]></category>

		<guid isPermaLink="false">http://developer.mips.com/2012/02/08/android-web-browsing-performance-greatly-enhanced-by-multi-core-and-multi-threading-technologies/</guid>
		<description><![CDATA[<p>By Eyal Barzilay, Applications and Benchmarking Manager</p>
<p>&nbsp;</p>
<p><em>MIPS’ MT technology boosts performance 43 percent; combined MT &amp; MC boosts performance 150 percent</em></p>
<p>The use of multi-core technology to deliver more CPU horsepower is one of the increasingly common methods to providing higher system performance in hardware. This is true even for high volume consumer applications where cost and power can be very important. However, upgrading to a multi-core system doesn’t automatically guarantee performance improvements or an enhanced user experience. It’s not just a hardware problem – software must be written in a way that can make use of parallel hardware resources. But software is adapting – systems are getting much more complex, such that multiple processes and threads are running simultaneously in many cases, and applications are being written to take better advantage of multiprocessing hardware trends.</p>
<p>With that in mind, we recently used the BrowsingBench™ benchmark from <a href="http://www.eembc.org/">EEMBC</a> to evaluate the performance benefits of <a href="http://www.mips.com/">MIPS</a>’ multi-core (MC) and multi-threading (MT) technologies. Our objective was to find out how these technologies enhance the user experience of a very popular and very real consumer application – web browsing on the Android™ software platform.</p>
<p>BrowsingBench is a credible and widely used tool that is trusted and cited by leading technology companies. It measures web page loading and rendering time for a large set of web pages with diverse content, and it does this in a reliable way which leads to repeatable and meaningful results. It will run on any connected device with a web browser. And rather than performing a synthetic test, BrowsingBench performs the same operations which a human would perform on the device. We’ve used several other benchmarks in the past that were suitable for evaluating MC/MT system performance; however none represented the real-world user experience on connected devices as well as BrowsingBench.</p>
<p>We ran BrowsingBench on a system based on the MIPS32® 1004K™ Coherent Processing System (CPS). In its maximum implementation, the 1004K CPS can support up to four cores and two hardware threads (also known as Virtual Processing Elements or VPEs) per core. To keep things simple for this test however, the configuration we used was dual core with two VPEs per core, for a total of 4 VPEs. VPEs are essentially logical CPUs that share one physical pipeline in each 1004K core, based on MIPS’ multi-threading technology.</p>
<p><a href="http://www.mips.com/blog/wp-content/uploads/2012/02/graphic1.jpg"></a><a href="http://www.mips.com/blog/wp-content/uploads/2012/02/graphic12.jpg"><img title="graphic1" src="http://www.mips.com/blog/wp-content/uploads/2012/02/graphic12.jpg" alt="" width="600" height="430" /></a><br />
The software platform running on our system was Android, and the web browser we used was the Android browser which comes with every Android-based system.</p>
<p>To evaluate the benefits of multiple cores and VPEs on web browser performance, we ran BrowsingBench using the 4 different configurations listed in the table below. In all cases, the tests were executed on the same dual-core 1004K system; however we used the operating system to enable and disable cores and VPEs.</p>
<p><a href="http://www.mips.com/blog/wp-content/uploads/2012/02/graphic22.jpg"><img title="graphic2" src="http://www.mips.com/blog/wp-content/uploads/2012/02/graphic22.jpg" alt="" width="643" height="160" /></a></p>
<p>The big question we wanted to answer was whether Android would be able to take advantage of these multiple processing resources to load and render web pages faster, thereby enhancing the user experience. To do that, Android would have to use parallel processes and threads while executing the browsing workload.<br />
The results, which are shown in the table and chart below, leave no doubt: Android based web browsing performance is greatly enhanced by MC and MT technologies.</p>
<p><a href="http://www.mips.com/blog/wp-content/uploads/2012/02/graphic3.jpg"><img title="graphic3" src="http://www.mips.com/blog/wp-content/uploads/2012/02/graphic3.jpg" alt="" width="676" height="139" /></a></p>
<p><a href="http://www.mips.com/blog/wp-content/uploads/2012/02/graphic41.jpg"><img title="graphic4" src="http://www.mips.com/blog/wp-content/uploads/2012/02/graphic41.jpg" alt="" width="363" height="362" /></a></p>
<p>The main observation is that browsing performance improves more than 2.5x when comparing the full configuration to the basic configuration. With a great deal of parallel execution under Android, the browser can truly benefit from the combination of MT and MC. A closer look at what’s happening under the hood in the Android system indeed shows that a lot of processes are running in parallel. The two main processes in the system are the Android Browser itself and another process called “system server,” which manages many components of Android including the display system, and is kept very busy during the BrowsingBench run.</p>
<p>Even if we limit the system to a single core, the MIPS MT technology gives us a BrowsingBench performance boost of 43 percent. One of the primary attributes of MT is to improve performance efficiency of a core, which it does by increasing the pipeline utilization of that core when multiple processes and/or threads are running. So for systems where silicon real estate is at a premium, choosing a multithreaded core can be a great way to boost system performance.</p>
<p>When multi-core and multi-threading systems were first introduced into the marketplace, most existing software was not optimized to make good use of these technologies. Today this is changing. Android is a complex software platform, and a perfect example of a high volume consumer platform that is quickly evolving and being optimized for optimal user experience in a Web-connected world.</p>
<p>At MIPS we are very pleased with the benchmark results because they demonstrate that our MC and MT technologies deliver much higher performance than the standard hardware used only a few years ago, and make a significant impact to end users of many connected devices from smart phones and tablets to connected DTVs.</p>
 <img src="http://developer.mips.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=1671" width="1" height="1" style="display: none;" />]]></description>
		<wfw:commentRss>http://developer.mips.com/2012/02/08/android-web-browsing-performance-greatly-enhanced-by-multi-core-and-multi-threading-technologies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dalvik Turbo for ICS Updated</title>
		<link>http://developer.mips.com/2012/01/23/dalvik-turbo-for-ics-updated/</link>
		<comments>http://developer.mips.com/2012/01/23/dalvik-turbo-for-ics-updated/#comments</comments>
		<pubDate>Mon, 23 Jan 2012 21:19:43 +0000</pubDate>
		<dc:creator>Bill O.</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://developer.mips.com/?p=1659</guid>
		<description><![CDATA[<p>We have posted an updated version of Dalvik Turbo for Android Ice Cream Sandwich which includes a minor bug fix.  You can download the latest version at:  <a href="http://developer.mips.com/download-dalvik-turbo/">http://developer.mips.com/download-dalvik-turbo/</a>.</p>
 <img src="http://developer.mips.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=1659" width="1" height="1" style="display: none;" />]]></description>
		<wfw:commentRss>http://developer.mips.com/2012/01/23/dalvik-turbo-for-ics-updated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dalvik Turbo for Android ICS</title>
		<link>http://developer.mips.com/2012/01/06/dalvik-turbo-for-android-ics/</link>
		<comments>http://developer.mips.com/2012/01/06/dalvik-turbo-for-android-ics/#comments</comments>
		<pubDate>Sat, 07 Jan 2012 00:26:22 +0000</pubDate>
		<dc:creator>Bill O.</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://developer.mips.com/?p=1651</guid>
		<description><![CDATA[<p>Dalvik Turbo for Android on MIPS Ice Cream Sandwich is available at:</p>
<p><a href="http://developer.mips.com/login/dalvik-turbo/">http://developer.mips.com/login/dalvik-turbo/</a></p>
 <img src="http://developer.mips.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=1651" width="1" height="1" style="display: none;" />]]></description>
		<wfw:commentRss>http://developer.mips.com/2012/01/06/dalvik-turbo-for-android-ics/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Android NDK &#8220;r7m&#8221; Released</title>
		<link>http://developer.mips.com/2012/01/03/android-ndk-r7m-released/</link>
		<comments>http://developer.mips.com/2012/01/03/android-ndk-r7m-released/#comments</comments>
		<pubDate>Wed, 04 Jan 2012 04:37:23 +0000</pubDate>
		<dc:creator>Bill O.</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://developer.mips.com/?p=1646</guid>
		<description><![CDATA[<p>Today we released the MIPS on Android R7M NDK.  This NDK release supports Windows, Mac and Linux.  You can download it from <a href="http://developer.mips.com/android/download-android-ndk/">http://developer.mips.com/android/download-android-ndk/</a></p>
 <img src="http://developer.mips.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=1646" width="1" height="1" style="display: none;" />]]></description>
		<wfw:commentRss>http://developer.mips.com/2012/01/03/android-ndk-r7m-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

