summaryrefslogtreecommitdiff
path: root/retrace/glws_waffle.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'retrace/glws_waffle.cpp')
-rw-r--r--retrace/glws_waffle.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/retrace/glws_waffle.cpp b/retrace/glws_waffle.cpp
index 92eabaf7..4cb3b45a 100644
--- a/retrace/glws_waffle.cpp
+++ b/retrace/glws_waffle.cpp
@@ -169,6 +169,9 @@ createVisual(bool doubleBuffer, unsigned samples, Profile profile) {
int profileMask = profile.core ? WAFFLE_CONTEXT_CORE_PROFILE : WAFFLE_CONTEXT_COMPATIBILITY_PROFILE;
config_attrib_list.add(WAFFLE_CONTEXT_PROFILE, profileMask);
}
+ if (profile.forwardCompatible) {
+ config_attrib_list.add(WAFFLE_CONTEXT_FORWARD_COMPATIBLE, true);
+ }
}
config_attrib_list.add(WAFFLE_RED_SIZE, 8);
config_attrib_list.add(WAFFLE_GREEN_SIZE, 8);