iOS Coco2D ゲームで次のコードを取得しました。
CCSprite *mysprite = [CCSprite spriteWithFile:@"mypng.png"];
// ...Some code here... //
[mysprite visit];
Coco2D Android では、次のように記述します。
CCSprite mysprite = CCSprite.sprite("mypng.png");
// ...Some code here... //
mysprite.visit(****GL10 PARAMETER EXPECTED HERE*****);
visit メソッドのパラメータには何を書けばいいですか?