<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://pandorawiki.org/index.php?action=history&amp;feed=atom&amp;title=Talk%3AGLES</id>
	<title>Talk:GLES - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://pandorawiki.org/index.php?action=history&amp;feed=atom&amp;title=Talk%3AGLES"/>
	<link rel="alternate" type="text/html" href="https://pandorawiki.org/index.php?title=Talk:GLES&amp;action=history"/>
	<updated>2026-04-24T00:40:34Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.32.0-alpha</generator>
	<entry>
		<id>https://pandorawiki.org/index.php?title=Talk:GLES&amp;diff=27910&amp;oldid=prev</id>
		<title>Kingu: Kingu moved page Talk:OpenGL ES 1.1 Tutorial to Talk:GLES: Too long and shouldnt be specific to GLES1.1</title>
		<link rel="alternate" type="text/html" href="https://pandorawiki.org/index.php?title=Talk:GLES&amp;diff=27910&amp;oldid=prev"/>
		<updated>2013-10-06T00:23:30Z</updated>

		<summary type="html">&lt;p&gt;Kingu moved page &lt;a href=&quot;/Talk:OpenGL_ES_1.1_Tutorial&quot; class=&quot;mw-redirect&quot; title=&quot;Talk:OpenGL ES 1.1 Tutorial&quot;&gt;Talk:OpenGL ES 1.1 Tutorial&lt;/a&gt; to &lt;a href=&quot;/Talk:GLES&quot; title=&quot;Talk:GLES&quot;&gt;Talk:GLES&lt;/a&gt;: Too long and shouldnt be specific to GLES1.1&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #222; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #222; text-align: center;&quot;&gt;Revision as of 00:23, 6 October 2013&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;en&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Kingu</name></author>
		
	</entry>
	<entry>
		<id>https://pandorawiki.org/index.php?title=Talk:GLES&amp;diff=2291&amp;oldid=prev</id>
		<title>Thing2k: New page: OpenGL ES 1.1 does not support the option GL_QUADS. The only supported drawing primitives are GL_POINTS, GL_LINES, GL_LINE_LOOP, GL_LINE_STRIP, GL_TRIANGLES, GL_TRIANGLE_STRIP and GL_TRIAN...</title>
		<link rel="alternate" type="text/html" href="https://pandorawiki.org/index.php?title=Talk:GLES&amp;diff=2291&amp;oldid=prev"/>
		<updated>2010-04-10T17:15:34Z</updated>

		<summary type="html">&lt;p&gt;New page: OpenGL ES 1.1 does not support the option GL_QUADS. The only supported drawing primitives are GL_POINTS, GL_LINES, GL_LINE_LOOP, GL_LINE_STRIP, GL_TRIANGLES, GL_TRIANGLE_STRIP and GL_TRIAN...&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;OpenGL ES 1.1 does not support the option GL_QUADS. The only supported drawing primitives are GL_POINTS, GL_LINES, GL_LINE_LOOP, GL_LINE_STRIP, GL_TRIANGLES, GL_TRIANGLE_STRIP and GL_TRIANGLE_FAN.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
static void DrawSprite(GLuint sprite, float X, float Y, float Z, float W, float H)&lt;br /&gt;
{&lt;br /&gt;
	glBindTexture(GL_TEXTURE_2D,sprite);&lt;br /&gt;
  &lt;br /&gt;
	GLfloat box[] = {X,Y + H,Z,  X + W,Y + H,Z,  X,Y,Z,  X + W, Y, Z};&lt;br /&gt;
	GLfloat tex[] = {0,0, 1,0, 0,1, 1,1} ;&lt;br /&gt;
 &lt;br /&gt;
	glEnableClientState(GL_VERTEX_ARRAY);&lt;br /&gt;
	glEnableClientState(GL_TEXTURE_COORD_ARRAY);&lt;br /&gt;
 &lt;br /&gt;
	glVertexPointer(3, GL_FLOAT, 0,box);&lt;br /&gt;
	glTexCoordPointer(2, GL_FLOAT, 0, tex);&lt;br /&gt;
 &lt;br /&gt;
	glDrawArrays(GL_TRIANGLE_STRIP,0,4);&lt;br /&gt;
 &lt;br /&gt;
	glDisableClientState(GL_VERTEX_ARRAY);&lt;br /&gt;
	glDisableClientState(GL_TEXTURE_COORD_ARRAY);&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Thing2k</name></author>
		
	</entry>
</feed>