This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// .h | |
ofPath path; | |
// setup | |
path.rectangle(0,0,ofGetWidth(),ofGetHeight()); | |
path.circle(ofGetWidth()*.5,ofGetHeight()*.5,100); | |
path.setFilled(true); | |
path.setFillColor(color); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.DEFAULT_GOAL=Release | |
# define the OF_SHARED_MAKEFILES location | |
OF_SHARED_MAKEFILES_PATH=$(OF_ROOT)/libs/openFrameworksCompiled/project/makefileCommon | |
include $(OF_SHARED_MAKEFILES_PATH)/config.shared.mk | |
# if APPNAME is not defined, set it to the project dir name | |
ifndef APPNAME | |
APPNAME = $(shell basename `pwd`) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* ofPBO.cpp | |
* | |
* Created on: 08/04/2012 | |
* Author: arturo | |
*/ | |
#include "ofPBO.h" | |
#ifndef TARGET_OPENGLES |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* ofPBO.h | |
* | |
* Created on: 08/04/2012 | |
* Author: arturo | |
*/ | |
#pragma once | |
#include "ofConstants.h" | |
#include "ofTexture.h" |
NewerOlder