Bug 598339 - Simplying GPU Accelerated Window message in case no window is GPU Accelerated. r=joedrew

This commit is contained in:
Atul Aggarwal 2011-11-28 01:44:58 +05:30
parent ef93d2dbda
commit e0e58a421e

View File

@ -354,9 +354,9 @@ function populateGraphicsSection() {
}
}
let msg = acceleratedWindows + "/" + totalWindows;
let msg = acceleratedWindows;
if (acceleratedWindows) {
msg += " " + mgrType;
msg += "/" + totalWindows + " " + mgrType;
} else {
#ifdef XP_WIN
var feature = gfxInfo.FEATURE_DIRECT3D_9_LAYERS;