diff --git a/man/man1/fgfs.1 b/man/man1/fgfs.1
index fb509b87c..246b93c74 100644
--- a/man/man1/fgfs.1
+++ b/man/man1/fgfs.1
@@ -272,18 +272,6 @@ Set the range multiplier (the breakpoint from a low to a high level of detail)
 to \fImultiplier\fR. This option is available only if the terrain engine in
 use is \fBpagedLOD\fR.
 .TP
-\fB\-\-enable\-rembrandt\fR, \fB\-\-disable\-rembrandt\fR
-Enable/disable the
-.UR http://\:wiki.flightgear.org/\:Project_Rembrandt
-Rembrandt engine
-.UE ,
-which adds deferred shading (rendering all properties of an object, such as
-shading, lighting, fog) in more than one pass.
-.TP
-\fB\-\-renderer=\fIname\fR
-If the Rembrandt engine is enabled, use the rendering pipeline described in
-\fI$FG_ROOT/Effects/\fRname\fI.xml\fR.
-.TP
 \fB\-\-enable\-splash\-screen\fR, \fB\-\-disable\-splash\-screen\fR
 Show/hide the simulator splash screen while loading the aircraft/scenery.
 .TP
diff --git a/src/Main/options.cxx b/src/Main/options.cxx
index 7801241cd..9e71dfda9 100644
--- a/src/Main/options.cxx
+++ b/src/Main/options.cxx
@@ -1652,9 +1652,6 @@ struct OptionDesc {
     {"enable-sentry",                false, OPTION_BOOL,   "/sim/startup/sentry-crash-reporting-enabled", true, "", nullptr },
     {"disable-sentry",               false, OPTION_BOOL,   "/sim/startup/sentry-crash-reporting-enabled", false, "", nullptr },
     {"allow-nasal-from-sockets",     false, OPTION_IGNORE, "", false, "", 0 },
-    {"disable-rembrandt",            false, OPTION_BOOL,   "/sim/rendering/rembrandt/enabled", false, "", 0 },
-    {"enable-rembrandt",             false, OPTION_BOOL,   "/sim/rendering/rembrandt/enabled", true, "", 0 },
-    {"renderer",                     true,  OPTION_STRING, "/sim/rendering/rembrandt/renderer", false, "", 0 },
     {"compositor",                   true,  OPTION_STRING, "/sim/rendering/default-compositor", false, "", 0 },
     {"disable-splash-screen",        false, OPTION_BOOL,   "/sim/startup/splash-screen", false, "", 0 },
     {"enable-splash-screen",         false, OPTION_BOOL,   "/sim/startup/splash-screen", true, "", 0 },