<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Forcing VC++ Debugger to Display Pointers as Arrays</title>
	<atom:link href="http://www.stevestreeting.com/2008/07/08/forcing-vc-debugger-to-display-pointers-as-arrays/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.stevestreeting.com/2008/07/08/forcing-vc-debugger-to-display-pointers-as-arrays/</link>
	<description>Man bites Ogre</description>
	<lastBuildDate>Fri, 10 Feb 2012 05:35:41 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
	<item>
		<title>By: nikki</title>
		<link>http://www.stevestreeting.com/2008/07/08/forcing-vc-debugger-to-display-pointers-as-arrays/comment-page-1/#comment-108411</link>
		<dc:creator>nikki</dc:creator>
		<pubDate>Wed, 09 Jul 2008 17:22:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.stevestreeting.com/?p=869#comment-108411</guid>
		<description>Oh sorry Steve, I hadn&#039;t fully understood. I got it now. :)</description>
		<content:encoded><![CDATA[<p>Oh sorry Steve, I hadn&#8217;t fully understood. I got it now. <img src='http://www.stevestreeting.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://www.stevestreeting.com/2008/07/08/forcing-vc-debugger-to-display-pointers-as-arrays/comment-page-1/#comment-108254</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Wed, 09 Jul 2008 12:09:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.stevestreeting.com/?p=869#comment-108254</guid>
		<description>So they are! Very useful, thanks.</description>
		<content:encoded><![CDATA[<p>So they are! Very useful, thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: valentingalea</title>
		<link>http://www.stevestreeting.com/2008/07/08/forcing-vc-debugger-to-display-pointers-as-arrays/comment-page-1/#comment-108187</link>
		<dc:creator>valentingalea</dc:creator>
		<pubDate>Wed, 09 Jul 2008 09:15:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.stevestreeting.com/?p=869#comment-108187</guid>
		<description>Those Tracepoints are available in VS 2005 too! Just right click on a breakpoint icon and tweek the When Hit...</description>
		<content:encoded><![CDATA[<p>Those Tracepoints are available in VS 2005 too! Just right click on a breakpoint icon and tweek the When Hit&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://www.stevestreeting.com/2008/07/08/forcing-vc-debugger-to-display-pointers-as-arrays/comment-page-1/#comment-107834</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Tue, 08 Jul 2008 22:39:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.stevestreeting.com/?p=869#comment-107834</guid>
		<description>You&#039;re missing something.

We&#039;re talking about pointers here. Any time you deal with a memory block full of floats, ints, whatever (something you&#039;ll do a lot if you process things like vertex / index buffers), it&#039;s useful to be able to browse the content just from a single pointer, AS IF it were an array.</description>
		<content:encoded><![CDATA[<p>You&#8217;re missing something.</p>
<p>We&#8217;re talking about pointers here. Any time you deal with a memory block full of floats, ints, whatever (something you&#8217;ll do a lot if you process things like vertex / index buffers), it&#8217;s useful to be able to browse the content just from a single pointer, AS IF it were an array.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nikki</title>
		<link>http://www.stevestreeting.com/2008/07/08/forcing-vc-debugger-to-display-pointers-as-arrays/comment-page-1/#comment-107833</link>
		<dc:creator>nikki</dc:creator>
		<pubDate>Tue, 08 Jul 2008 22:32:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.stevestreeting.com/?p=869#comment-107833</guid>
		<description>Arrays? I almost never use arrays. Tell me I&#039;m missing something.</description>
		<content:encoded><![CDATA[<p>Arrays? I almost never use arrays. Tell me I&#8217;m missing something.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tuan kuranes</title>
		<link>http://www.stevestreeting.com/2008/07/08/forcing-vc-debugger-to-display-pointers-as-arrays/comment-page-1/#comment-107745</link>
		<dc:creator>tuan kuranes</dc:creator>
		<pubDate>Tue, 08 Jul 2008 17:17:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.stevestreeting.com/?p=869#comment-107745</guid>
		<description>Very nice list of tips&amp;tricks along with a nice &#039;watch&#039; codes list  debugger variable : 

http://www.catch22.net/tuts/vctips.asp

While we&#039;re on C++ debugging tricks, replacing WIN32 horrible &#039;assert()&#039; with one that actually break at the good place (meaning NOT inside win32 internals), still not cost anything in release, and with more capabilities :

http://powerof2games.com/node/10</description>
		<content:encoded><![CDATA[<p>Very nice list of tips&amp;tricks along with a nice &#8216;watch&#8217; codes list  debugger variable : </p>
<p><a href="http://www.catch22.net/tuts/vctips.asp" rel="nofollow">http://www.catch22.net/tuts/vctips.asp</a></p>
<p>While we&#8217;re on C++ debugging tricks, replacing WIN32 horrible &#8216;assert()&#8217; with one that actually break at the good place (meaning NOT inside win32 internals), still not cost anything in release, and with more capabilities :</p>
<p><a href="http://powerof2games.com/node/10" rel="nofollow">http://powerof2games.com/node/10</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Panter</title>
		<link>http://www.stevestreeting.com/2008/07/08/forcing-vc-debugger-to-display-pointers-as-arrays/comment-page-1/#comment-107741</link>
		<dc:creator>Panter</dc:creator>
		<pubDate>Tue, 08 Jul 2008 16:20:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.stevestreeting.com/?p=869#comment-107741</guid>
		<description>I came across this two years ago (while writing a course on advanced programming techniques), this was a great discovery, nobody in my lab new this trick, so it is good you share it on your blog.. many people will read this which didn&#039;t know this trick and will be very thankful! ;)

Btw. I found it here (some other tips and tricks are there as well, although less useful for me ;)): http://www.highprogrammer.com/alan/windev/visualstudio.html</description>
		<content:encoded><![CDATA[<p>I came across this two years ago (while writing a course on advanced programming techniques), this was a great discovery, nobody in my lab new this trick, so it is good you share it on your blog.. many people will read this which didn&#8217;t know this trick and will be very thankful! <img src='http://www.stevestreeting.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Btw. I found it here (some other tips and tricks are there as well, although less useful for me <img src='http://www.stevestreeting.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> ): <a href="http://www.highprogrammer.com/alan/windev/visualstudio.html" rel="nofollow">http://www.highprogrammer.com/alan/windev/visualstudio.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://www.stevestreeting.com/2008/07/08/forcing-vc-debugger-to-display-pointers-as-arrays/comment-page-1/#comment-107389</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Tue, 08 Jul 2008 15:31:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.stevestreeting.com/?p=869#comment-107389</guid>
		<description>@Dan: that way it will only break at that specific line when a condition is met, that&#039;s not quite the same as breaking whenever a given data member changes.</description>
		<content:encoded><![CDATA[<p>@Dan: that way it will only break at that specific line when a condition is met, that&#8217;s not quite the same as breaking whenever a given data member changes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stodge</title>
		<link>http://www.stevestreeting.com/2008/07/08/forcing-vc-debugger-to-display-pointers-as-arrays/comment-page-1/#comment-107388</link>
		<dc:creator>Stodge</dc:creator>
		<pubDate>Tue, 08 Jul 2008 15:16:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.stevestreeting.com/?p=869#comment-107388</guid>
		<description>Ahh you are wise Glasshopper!</description>
		<content:encoded><![CDATA[<p>Ahh you are wise Glasshopper!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan</title>
		<link>http://www.stevestreeting.com/2008/07/08/forcing-vc-debugger-to-display-pointers-as-arrays/comment-page-1/#comment-107387</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Tue, 08 Jul 2008 15:11:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.stevestreeting.com/?p=869#comment-107387</guid>
		<description>@KungFoo: Right-click the breakpoint and select Condition.</description>
		<content:encoded><![CDATA[<p>@KungFoo: Right-click the breakpoint and select Condition.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

