Ejemplo n.º 1
0
void ofFbo::resetAnchor(){
	getTextureReference().resetAnchor();
}
Ejemplo n.º 2
0
void ofFbo::draw(float x, float y, float width, float height) {
	if(!bIsAllocated) return;
    getTextureReference().draw(x, y, width, height);
}
Ejemplo n.º 3
0
void ofFbo::setAnchorPercent(float xPct, float yPct){
	getTextureReference().setAnchorPercent(xPct, yPct);
}
Ejemplo n.º 4
0
void ofFbo::setAnchorPoint(float x, float y){
	getTextureReference().setAnchorPoint(x, y);
}
Ejemplo n.º 5
0
ofTexture& ofFbo::getTextureReference(){
	return getTextureReference(defaultTextureIndex);
}
Ejemplo n.º 6
0
//----------------------------------------------------------
void ofVideoPlayer::resetAnchor(){
	getTextureReference().resetAnchor();
}
Ejemplo n.º 7
0
//----------------------------------------------------------
void ofVideoPlayer::setAnchorPoint(float x, float y){
	getTextureReference().setAnchorPoint(x, y);
}
Ejemplo n.º 8
0
//----------------------------------------------------------
void ofVideoPlayer::setAnchorPercent(float xPct, float yPct){
	getTextureReference().setAnchorPercent(xPct, yPct);
}
Ejemplo n.º 9
0
void ofFbo::draw(float x, float y, float width, float height) {
	getTextureReference().draw(x, y, width, height);
}