aboutsummaryrefslogtreecommitdiff
path: root/docs/examples/web/shaders_postprocessing.c
diff options
context:
space:
mode:
authorvictorfisac <victorfisac@gmail.com>2017-04-03 20:31:10 +0200
committervictorfisac <victorfisac@gmail.com>2017-04-03 20:31:10 +0200
commit256bc6e1dccfd021239dd0e5a66c377a402c3c59 (patch)
treec0baef923b5c60128e7fc76d50eb85982e1ba725 /docs/examples/web/shaders_postprocessing.c
parent0d06c946f2a6b7ce0eb374159333872392a707d9 (diff)
parente6ed85e993b049a28dcc3c37bd5fadc6ab159df7 (diff)
downloadraylib-256bc6e1dccfd021239dd0e5a66c377a402c3c59.tar.gz
raylib-256bc6e1dccfd021239dd0e5a66c377a402c3c59.zip
Merge remote-tracking branch 'refs/remotes/raysan5/develop' into develop
Diffstat (limited to 'docs/examples/web/shaders_postprocessing.c')
-rw-r--r--docs/examples/web/shaders_postprocessing.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/docs/examples/web/shaders_postprocessing.c b/docs/examples/web/shaders_postprocessing.c
index 9bb2844f..f7a78b01 100644
--- a/docs/examples/web/shaders_postprocessing.c
+++ b/docs/examples/web/shaders_postprocessing.c
@@ -65,9 +65,7 @@ int main()
target = LoadRenderTexture(screenWidth, screenHeight);
// Setup orbital camera
- SetCameraMode(CAMERA_ORBITAL); // Set an orbital camera mode
- SetCameraPosition(camera.position); // Set internal camera position to match our camera position
- SetCameraTarget(camera.target); // Set internal camera target to match our camera target
+ SetCameraMode(camera, CAMERA_ORBITAL); // Set an orbital camera mode
#if defined(PLATFORM_WEB)
emscripten_set_main_loop(UpdateDrawFrame, 0, 1);