プログラミング20 May 2014NSImageオブジェクトをOpenGLのテクスチャに指定するNSImage+OpenGLによる描画のメモ書きです。 OpenGLに必要なNSImageの画像データは、以下のようにして取得します。 NSBitmapImageRep* imgRep = ]; int width = ; int height = ; int bytesPerPixel = ; void* data ...ftvoid1899 PV