help plz

edited April 2016 in Kinect

Answers

  • So what parameters are you passing to it?

  • Posting your answer to my wall isn't going to help other people who actually know what the heck this function is help you!

    Here's what you posted:

    Kafilah → TfGuy44 pgl.vertexAttribPointer(vertLoc, 3, PGL.FLOAT, false, 0, depthPositions); I am passing these parameters off to it!

  • Answer ✓

    expects: vertexAttribPointer(int, int, int, boolean, int int)
    you wrote: pgl.vertexAttribPointer(vertLoc, 3, PGL.FLOAT, false, 0, depthPositions);



    PGL.FLOAT is not an int. Maybe vertLoc as well.
    Try: pgl.vertexAttribPointer(int(vertLoc), 3, int(PGL.FLOAT), false, 0, depthPositions);

Sign In or Register to comment.