drawcode / oolongengine

Automatically exported from code.google.com/p/oolongengine
0 stars 0 forks source link

Error in vertext offset value in Transparency example #17

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Hi,

line 571 in 

http://code.google.com/p/oolongengine/source/browse/trunk/Oolong%20Engine2/Examp
les/Renderer/Ported%20PowerVR%20Examples/09%20Transparency/Application.mm

is:

glVertexPointer(3  ,VERTTYPEENUM,m_i32BackgroundStride,
m_pBackgroundTextureOffset);

should be:

glVertexPointer(3,VERTTYPEENUM,m_i32BackgroundStride,
m_pBackgroundVertexOffset)

Thanks for the great engine!!

Donovan.

Original issue reported on code.google.com by DonovanH...@gmail.com on 15 Jul 2009 at 11:56

GoogleCodeExporter commented 9 years ago
Changed the lines in the code, compiled and ran.  Problem was fixed.  Thanks 
for the
sweet bug fix!

Alan Green

Original comment by atgr...@gmail.com on 20 Jul 2009 at 9:08