Giter Club home page Giter Club logo

Comments (4)

wantnon2 avatar wantnon2 commented on June 11, 2024

i just checked my cocos2d-x 2.2. i found i had made several bug fix to it.
here is the code around your crash location in my cocos2d-x 2.2, see if there are any difference:

//i do not know when the line below is missing, but other cocos2d-x 2.2 seem has this line [yang chao]
ccGLBindVAO(m_uVAOname);//add [yang chao]

#if CC_REBIND_INDICES_BUFFER
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, m_pBuffersVBO[1]);
#endif

#if CC_TEXTURE_ATLAS_USE_TRIANGLE_STRIP
glDrawElements(GL_TRIANGLE_STRIP, (GLsizei) n_6, GL_UNSIGNED_SHORT, (GLvoid_) (start_6_sizeof(m_pIndices[0])) );
#else
glDrawElements(GL_TRIANGLES, (GLsizei) n_6, GL_UNSIGNED_SHORT, (GLvoid_) (start_6_sizeof(m_pIndices[0])) );
#endif // CC_TEXTURE_ATLAS_USE_TRIANGLE_STRIP

#if CC_REBIND_INDICES_BUFFER
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, 0);
#endif

//to avoid glDrawElements crash, here need to unbind VAO. [yang chao]
//see:https://groups.google.com/forum/#!topic/cocos2d-js-devel/2JTlQdKD3BU
ccGLBindVAO(0);//ccGLBindVAO is a wrap of glBindVertexArray

// glBindVertexArray(0);

#else // ! CC_TEXTURE_ATLAS_USE_VAO

from 3dtoolkit-for-cocos2dx.

zilongshanren avatar zilongshanren commented on June 11, 2024

Cool!
It works like a charm:)
Thanks.

from 3dtoolkit-for-cocos2dx.

wantnon2 avatar wantnon2 commented on June 11, 2024

glad to hear that:)

from 3dtoolkit-for-cocos2dx.

6311879 avatar 6311879 commented on June 11, 2024

working nice!

from 3dtoolkit-for-cocos2dx.

Related Issues (1)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.