File tree 2 files changed +4
-5
lines changed
2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,6 @@ void gfxConfigManager::Init() {
60
60
#ifdef XP_WIN
61
61
DeviceManagerDx::Get ()->CheckHardwareStretchingSupport (mHwStretchingSupport );
62
62
mScaledResolution = HasScaledResolution ();
63
- mIsWin8Point1OrLater = IsWin8Point1OrLater ();
64
63
mIsWin10OrLater = IsWin10OrLater ();
65
64
mIsWin11OrLater = IsWin11OrLater ();
66
65
mWrCompositorDCompRequired = true ;
@@ -263,10 +262,11 @@ void gfxConfigManager::ConfigureWebRender() {
263
262
" FEATURE_FAILURE_DCOMP_PREF_DISABLED" _ns);
264
263
}
265
264
266
- if (!mIsWin8Point1OrLater ) {
265
+ if (!mIsWin10OrLater ) {
266
+ // XXX relax win version to windows 8.
267
267
mFeatureWrDComp ->Disable (FeatureStatus::Unavailable,
268
- " Requires Windows 8.1 or later" ,
269
- " FEATURE_FAILURE_DCOMP_NOT_WIN8.1 " _ns);
268
+ " Requires Windows 10 or later" ,
269
+ " FEATURE_FAILURE_DCOMP_NOT_WIN10 " _ns);
270
270
}
271
271
272
272
if (!mFeatureGPUProcess ->IsEnabled ()) {
Original file line number Diff line number Diff line change @@ -109,7 +109,6 @@ class gfxConfigManager {
109
109
bool mIsNightly ;
110
110
bool mIsEarlyBetaOrEarlier ;
111
111
bool mSafeMode ;
112
- bool mIsWin8Point1OrLater ;
113
112
bool mIsWin10OrLater ;
114
113
bool mIsWin11OrLater ;
115
114
};
You can’t perform that action at this time.
0 commit comments