<?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>blog.alumican.net &#187; Action</title>
	<atom:link href="http://blog.alumican.net/tag/action/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.alumican.net</link>
	<description>日々の記憶と記録とActionScript とその周辺</description>
	<lastBuildDate>Tue, 20 Jul 2010 16:21:59 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Bitmapのsmoothingプロパティ変更のタイミング</title>
		<link>http://blog.alumican.net/2009/10/07_192113</link>
		<comments>http://blog.alumican.net/2009/10/07_192113#comments</comments>
		<pubDate>Wed, 07 Oct 2009 10:21:13 +0000</pubDate>
		<dc:creator>alumican</dc:creator>
				<category><![CDATA[DEVELOPMENT]]></category>
		<category><![CDATA[Action]]></category>

		<guid isPermaLink="false">http://blog.alumican.net/?p=1430</guid>
		<description><![CDATA[Bitmapインスタンスのsmoothingプロパティは、そのインスタンスのbitmapDataがnullのときに変更しても効かない。ということを今更知ったというお話。
var bmp:Bitmap = new Bitm [...]]]></description>
			<content:encoded><![CDATA[<p>Bitmapインスタンスのsmoothingプロパティは、そのインスタンスのbitmapDataがnullのときに変更しても効かない。ということを今更知ったというお話。</p>
<pre><code>var bmp:Bitmap = new Bitmap();
bmp.smoothing = true;
bmp.bitmapData = bmd;
trace(bmp.smoothing); //false … smoothingが効いてない</code></pre>
<pre><code>var bmp:Bitmap = new Bitmap();
bmp.bitmapData = bmd;
bmp.smoothing = true;
trace(bmp.smoothing); //true … smoothingが効いてる</code></pre>
<p>bitmapDataを入れ替えた後も、smoothingを設定し直さなければならない。</p>
<pre><code>var bmp:Bitmap = new Bitmap();
bmp.bitmapData = bmd1;
bmp.smoothing = true;
bmp.bitmapData = bmd2;
trace(bmp.smoothing); //false … smoothingが効いてない</code></pre>
<pre><code>var bmp:Bitmap = new Bitmap();
bmp.bitmapData = bmd1;
bmp.smoothing = true;
bmp.bitmapData = bmd2;
bmp.smoothing = true;
trace(bmp.smoothing); //true … smoothingが効いてる</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.alumican.net/2009/10/07_192113/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
