コード例 #1
0
ファイル: ofFbo.cpp プロジェクト: ftaleb/openFrameworks
void ofFbo::resetAnchor(){
	getTextureReference().resetAnchor();
}
コード例 #2
0
ファイル: ofFbo.cpp プロジェクト: ftaleb/openFrameworks
void ofFbo::draw(float x, float y, float width, float height) {
	if(!bIsAllocated) return;
    getTextureReference().draw(x, y, width, height);
}
コード例 #3
0
ファイル: ofFbo.cpp プロジェクト: ftaleb/openFrameworks
void ofFbo::setAnchorPercent(float xPct, float yPct){
	getTextureReference().setAnchorPercent(xPct, yPct);
}
コード例 #4
0
ファイル: ofFbo.cpp プロジェクト: ftaleb/openFrameworks
void ofFbo::setAnchorPoint(float x, float y){
	getTextureReference().setAnchorPoint(x, y);
}
コード例 #5
0
ファイル: ofFbo.cpp プロジェクト: ftaleb/openFrameworks
ofTexture& ofFbo::getTextureReference(){
	return getTextureReference(defaultTextureIndex);
}
コード例 #6
0
//----------------------------------------------------------
void ofVideoPlayer::resetAnchor(){
	getTextureReference().resetAnchor();
}
コード例 #7
0
//----------------------------------------------------------
void ofVideoPlayer::setAnchorPoint(float x, float y){
	getTextureReference().setAnchorPoint(x, y);
}
コード例 #8
0
//----------------------------------------------------------
void ofVideoPlayer::setAnchorPercent(float xPct, float yPct){
	getTextureReference().setAnchorPercent(xPct, yPct);
}
コード例 #9
0
ファイル: ofFbo.cpp プロジェクト: JosephFiola/openFrameworks
void ofFbo::draw(float x, float y, float width, float height) {
	getTextureReference().draw(x, y, width, height);
}