diff --git a/docs/htmlsrc/guides/linux-notes/rpi2.html b/docs/htmlsrc/guides/linux-notes/rpi2.html
index 2b9dd5d45d..172a376320 100644
--- a/docs/htmlsrc/guides/linux-notes/rpi2.html
+++ b/docs/htmlsrc/guides/linux-notes/rpi2.html
@@ -71,7 +71,7 @@
Fetching and Building Cinder
git clone --recursive https://github.com/cinder/Cinder.git
cd Cinder
mkdir build && cd build
-cmake .. -DCINDER_TARGET_GL=es2-rpi
+cmake .. -DCINDER_TARGET_GL=es3-rpi
make -j 3
@@ -79,7 +79,7 @@ Building and Running BasicApp
Building
cd samples/BasicApp/proj/cmake
mkdir build && cd build
-cmake .. -DCINDER_TARGET_GL=es2-rpi
+cmake .. -DCINDER_TARGET_GL=es3-rpi
make
Running
diff --git a/docs/htmlsrc/guides/linux-notes/rpi3.html b/docs/htmlsrc/guides/linux-notes/rpi3.html
index 8b290bfdfe..87218b5ee6 100644
--- a/docs/htmlsrc/guides/linux-notes/rpi3.html
+++ b/docs/htmlsrc/guides/linux-notes/rpi3.html
@@ -52,7 +52,11 @@ Cinder Dependencies
gstreamer1.0-alsa \
gstreamer1.0-pulseaudio \
gstreamer1.0-plugins-bad \
-libboost-filesystem-dev
+libboost-filesystem-dev \
+libxrandr-dev \
+libxinerama-dev \
+libx11-xcb-dev \
+libxi-dev
Building Cinder
@@ -60,7 +64,7 @@ Fetching and Building Cinder
git clone --recursive https://github.com/cinder/Cinder.git
cd Cinder
mkdir build && cd build
-cmake .. -DCINDER_TARGET_GL=es2-rpi
+cmake .. -DCINDER_TARGET_GL=es3-rpi
make -j 3
@@ -77,7 +81,7 @@ Building and Running BasicApp
Building
cd samples/BasicApp/proj/cmake
mkdir build && cd build
-cmake .. -DCINDER_TARGET_GL=es2-rpi
+cmake .. -DCINDER_TARGET_GL=es3-rpi
make
Running
diff --git a/proj/cmake/configure.cmake b/proj/cmake/configure.cmake
index 708e84ed26..751d2bc786 100644
--- a/proj/cmake/configure.cmake
+++ b/proj/cmake/configure.cmake
@@ -60,7 +60,7 @@ else()
set( CINDER_TARGET_GL_DEFAULT "" )
endif()
-set( CINDER_TARGET_GL ${CINDER_TARGET_GL_DEFAULT} CACHE STRING "Target GL for the system. Valid options: ogl, es2, es3, es31, es32, es2-rpi" )
+set( CINDER_TARGET_GL ${CINDER_TARGET_GL_DEFAULT} CACHE STRING "Target GL for the system. Valid options: ogl, es2, es3, es31, es32, es3-rpi" )
if( CINDER_TARGET_GL )
ci_log_v( "CINDER_TARGET_GL: ${CINDER_TARGET_GL}" )