Aiv.Fast2D.Mesh.NewVBO C# (CSharp) Method

NewVBO() public method

public NewVBO ( ) : int
return int
        public int NewVBO()
        {
            #if __MOBILE__
            int[] tmpStore = new int[1];
            GL.GenBuffers(1, tmpStore);
            return tmpStore[0];
            #else
            return GL.GenBuffer();
            #endif
        }