1

この単純な cinder の例 (cinder の紹介から - http://libcinder.org/docs/v0.8.4/hello_cinder.html ) では、次のコンパイル エラーが発生します。

myImage = gl::Texture( loadImage( loadResource( "image.jpg" ) ) );

エラー 1 エラー C2661: 'cinder::app::App::loadResource' : 1 つの引数を取らないオーバーロードされた関数はありません

ただし、ドキュメントには次のように記載されています。

DataSourceRef cinder::app::loadResource (   const std::string &     macPath  )

何か案は?

4

2 に答える 2

2

同じ関数を参照していますか:

cinder::app::App::loadResoure
cinder::app::loadResource

このライブラリを使用したことはありませんが、最初の関数にはさらにパラメーターが必要であるとドキュメントは述べています。

http://libcinder.org/docs/v0.8.4/classcinder_1_1app_1_1_app.html#afef905bb792960152d38c2680f88ea33

static DataSourceRef cinder::app::App::loadResource (   
       const std::string &  macPath,
       int  mswID,
       const std::string &  mswType  
)   
于 2012-10-24T21:07:43.550 に答える