From cbc8b7c9ce9d803821ee58f584328d8c062e98ca Mon Sep 17 00:00:00 2001 From: Krisjanis Rijnieks Date: Wed, 30 Dec 2015 11:22:18 +0000 Subject: [PATCH] Replace `addFboSource` with `registerFboSource` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 785316f..aff70c7 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ ofxPiMapper features FBO sources that allow you to create generative openFramewo ``` ofxPiMapper * mapper = new ofxPiMapper(); CustomSource * source = new CustomSource(); -mapper.addFboSource(*source); +mapper.registerFboSource(*source); mapper.setup(); // Setup must be run after adding the FBO source ```