Open GoogleCodeExporter opened 9 years ago
Correction, only the following line needs to be duplicated to make the code
work:
triangleBatch.CopyVertexData3f(vVerts);
So this corrects my problem, but doesn't solve the main issue.
triangleBatch.Begin(GL_TRIANGLES, 3);
triangleBatch.CopyVertexData3f(vVerts);
triangleBatch.CopyVertexData3f(vVerts); //Call this a second times makes it
work?
triangleBatch.End();
Original comment by ceash...@gmail.com
on 5 Sep 2011 at 12:45
I've found that ATI Catalyst 9.x works with this code (and any other code in
the book) unaltered, but does not work on any newer drivers ATI Catalyst 10.x
or 11.x.
Can anyone confirm this? This may be an issue just with using those drivers on
this particular graphics card. (ATI HD 4870x2)
Original comment by ceash...@gmail.com
on 7 Nov 2011 at 12:26
I have a HD4870X2 as well and I am experiencing lots of problems with the
example code. Often it can be fixed by making a second call to whatever Copy
function, but later on the various GLTriangleBatch class objects sometimes
don't render at all. There doesn't seem to be any rhyme or reason to it. I
haven't been able to find the cause of this problem yet.
I haven't tried using Catalyst 9.x, but I will. The code executes perfectly on
other machines.
Original comment by mooncabb...@gmail.com
on 13 Nov 2011 at 2:21
OK so it turns out it's a bug specific to the HD4870X2's window drivers for
Catalyst 10.x & 11.x, where glBufferData() doesn't copy the data as it should.
Calling CopyVertexData etc twice works because the first call calls
glBufferData() and subsequent calls call glBufferSubData(), which works fine.
I found the same thread as you ceashure, which I will post here for anyone else
with these difficulties:
http://forums.amd.com/forum/messageview.cfm?catid=392&threadid=141115
Hopefully AMD fix this soon, but I wouldn't get my hopes up.
Original comment by mooncabb...@gmail.com
on 13 Nov 2011 at 4:32
Yes, thanks for posting that here. I was starting to think I was the only one
in the world experiencing this issue. lol
Hopefully AMD will get this fixed in the next driver.
Original comment by ceash...@gmail.com
on 14 Nov 2011 at 11:37
O, if you could post in that AMD forum as well, that would be great. They may
take the bug more seriously if many people are having the issue.
Original comment by ceash...@gmail.com
on 14 Nov 2011 at 11:39
Sorry, I kinda gave up on OpenGL until I could get a card that works properly :P
I did try posting on that thread on the AMD forums, but it wouldn't let me at
the time.
I've posted now though.
Original comment by mooncabb...@gmail.com
on 20 Dec 2011 at 8:14
Original issue reported on code.google.com by
ceash...@gmail.com
on 27 Aug 2011 at 9:07Attachments: