<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Hi Brad, in Developing Games on Intel Graphics</title>
    <link>https://community.intel.com/t5/Developing-Games-on-Intel/Touch-gestures/m-p/1045190#M996</link>
    <description>&lt;P&gt;Hi Brad,&lt;/P&gt;

&lt;P&gt;Thank you&amp;nbsp;for&amp;nbsp;the touch code sample.&amp;nbsp;It works fine to swipe diagonally with two fingers (after some minor changes to&amp;nbsp;the code).&lt;/P&gt;

&lt;P&gt;The difference is that&amp;nbsp;the sample you referred to handles WM_TOUCH messages instead of WM_GESTURE. I'm still curious&amp;nbsp;why&amp;nbsp;it doesn't work with gestures, so please let me know if you're&amp;nbsp;able to&amp;nbsp;track down the author.&lt;BR /&gt;
	&lt;BR /&gt;
	&lt;BR /&gt;
	&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 12 Jan 2015 09:44:51 GMT</pubDate>
    <dc:creator>Johan_W_</dc:creator>
    <dc:date>2015-01-12T09:44:51Z</dc:date>
    <item>
      <title>Touch gestures</title>
      <link>https://community.intel.com/t5/Developing-Games-on-Intel/Touch-gestures/m-p/1045188#M994</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;

&lt;P&gt;I have an issue regarding one of Intel's sample applications:&lt;/P&gt;

&lt;P&gt;&lt;A href="https://software.intel.com/en-us/articles/sample-application-touch-for-desktop"&gt;https://software.intel.com/en-us/articles/sample-application-touch-for-desktop&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;When swiping with two fingers in a diagonal direction, the rectangle in the application does not immediately follow that diagonal path.&lt;/P&gt;

&lt;P&gt;I know there are newer working code examples available for Windows 8, but I need a solution that also works with Windows 7.&lt;/P&gt;

&lt;P&gt;I would be thankful for any help! Or how can I get in contact with the author?&lt;/P&gt;

&lt;P&gt;Best wishes&lt;/P&gt;

&lt;P&gt;Johan&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jan 2015 11:28:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Developing-Games-on-Intel/Touch-gestures/m-p/1045188#M994</guid>
      <dc:creator>Johan_W_</dc:creator>
      <dc:date>2015-01-09T11:28:03Z</dc:date>
    </item>
    <item>
      <title>Johan, thank you for your</title>
      <link>https://community.intel.com/t5/Developing-Games-on-Intel/Touch-gestures/m-p/1045189#M995</link>
      <description>&lt;P&gt;Johan, thank you for your interest in the code sample. I'll try to track down the author to connect with you directly. In the meantime, take a look at another touch code sample at&amp;nbsp;https://software.intel.com/en-us/blogs/2013/03/06/real-time-strategy-game-with-touch-screen that may be a good fit for your needs.&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jan 2015 16:53:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Developing-Games-on-Intel/Touch-gestures/m-p/1045189#M995</guid>
      <dc:creator>Bradley_W_Intel</dc:creator>
      <dc:date>2015-01-09T16:53:13Z</dc:date>
    </item>
    <item>
      <title>Hi Brad,</title>
      <link>https://community.intel.com/t5/Developing-Games-on-Intel/Touch-gestures/m-p/1045190#M996</link>
      <description>&lt;P&gt;Hi Brad,&lt;/P&gt;

&lt;P&gt;Thank you&amp;nbsp;for&amp;nbsp;the touch code sample.&amp;nbsp;It works fine to swipe diagonally with two fingers (after some minor changes to&amp;nbsp;the code).&lt;/P&gt;

&lt;P&gt;The difference is that&amp;nbsp;the sample you referred to handles WM_TOUCH messages instead of WM_GESTURE. I'm still curious&amp;nbsp;why&amp;nbsp;it doesn't work with gestures, so please let me know if you're&amp;nbsp;able to&amp;nbsp;track down the author.&lt;BR /&gt;
	&lt;BR /&gt;
	&lt;BR /&gt;
	&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Jan 2015 09:44:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Developing-Games-on-Intel/Touch-gestures/m-p/1045190#M996</guid>
      <dc:creator>Johan_W_</dc:creator>
      <dc:date>2015-01-12T09:44:51Z</dc:date>
    </item>
    <item>
      <title>Hi Johan,</title>
      <link>https://community.intel.com/t5/Developing-Games-on-Intel/Touch-gestures/m-p/1045191#M997</link>
      <description>&lt;P&gt;Hi Johan,&lt;/P&gt;

&lt;P&gt;I'm not sure why it's not working with the two-fingered diagonal swipe.&amp;nbsp; It's possible that it could be interpreting the touch input as a different gesture than you're expecting.&amp;nbsp; I'd recommend putting debug print statements into the gesture handling code so that you can determine exactly which gesture message is being sent to the application when you do your swipe.&amp;nbsp; It could be that Microsoft's code that takes your touch input and translates it into the specific gesture messages isn't processing it as you'd expect.&amp;nbsp; If it is sending the proper gesture message to the app, then it's possible that you've found a corner case where the sample app isn't correctly processing diagonal movement.&amp;nbsp; Please let us know what you find and/or if you need additional help debugging the behavior.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Thanks,&lt;/P&gt;

&lt;P&gt;-Gideon&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jan 2015 16:44:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Developing-Games-on-Intel/Touch-gestures/m-p/1045191#M997</guid>
      <dc:creator>Thomas_E_Intel</dc:creator>
      <dc:date>2015-01-14T16:44:24Z</dc:date>
    </item>
    <item>
      <title>Thanks for the suggestions,</title>
      <link>https://community.intel.com/t5/Developing-Games-on-Intel/Touch-gestures/m-p/1045192#M998</link>
      <description>&lt;P&gt;Thanks for the suggestions, Gideon. I thought along the same lines, so I already tried tracing the messages.&lt;BR /&gt;
	&lt;BR /&gt;
	However, I found out that there is a flag "GC_PAN_WITH_GUTTER" that causes perpendicular movement limitations.&amp;nbsp;It seems&amp;nbsp;that&amp;nbsp;such a configuration is&amp;nbsp;enabled by default.&lt;BR /&gt;
	&lt;BR /&gt;
	Best wishes&lt;BR /&gt;
	&lt;BR /&gt;
	Johan&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jan 2015 12:27:49 GMT</pubDate>
      <guid>https://community.intel.com/t5/Developing-Games-on-Intel/Touch-gestures/m-p/1045192#M998</guid>
      <dc:creator>Johan_W_</dc:creator>
      <dc:date>2015-01-15T12:27:49Z</dc:date>
    </item>
  </channel>
</rss>

