Revert "Set multiview as the default for stereoscopic rendering (#9682)" (#9713)

This reverts commit f10a7d9bbc.
This commit is contained in:
Sungun Park
2026-02-12 14:13:18 -08:00
committed by Sungun Park
parent 7ea1f97b57
commit e00be09af6
14 changed files with 154 additions and 10 deletions

View File

@@ -160,6 +160,12 @@ static int handleCommandLineArguments(int argc, char* argv[], App* app) {
}
int main(int argc, char** argv) {
#if !defined(FILAMENT_SAMPLES_STEREO_TYPE_MULTIVIEW)
std::cerr << "This sample only works with multiview enabled.\n";
exit(1);
#endif
App app{};
app.config.title = "stereoscopic rendering";
handleCommandLineArguments(argc, argv, &app);