2011-01-06 07:54:31 +03:00
|
|
|
/* vim: se cin sw=2 ts=2 et : */
|
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
2012-05-21 15:12:37 +04:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2011-01-06 07:54:31 +03:00
|
|
|
|
|
|
|
#ifndef __mozilla_widget_GfxInfo_h__
|
|
|
|
#define __mozilla_widget_GfxInfo_h__
|
|
|
|
|
2011-01-20 04:30:12 +03:00
|
|
|
#include "GfxInfoBase.h"
|
2011-12-15 09:03:01 +04:00
|
|
|
#include "GfxDriverInfo.h"
|
2011-01-06 07:54:31 +03:00
|
|
|
|
|
|
|
#include "nsString.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace widget {
|
|
|
|
|
2011-01-20 04:30:12 +03:00
|
|
|
class GfxInfo : public GfxInfoBase
|
2011-01-06 07:54:31 +03:00
|
|
|
{
|
|
|
|
public:
|
2012-07-05 18:12:33 +04:00
|
|
|
GfxInfo();
|
|
|
|
|
2011-01-20 04:30:12 +03:00
|
|
|
// We only declare the subset of nsIGfxInfo that we actually implement. The
|
|
|
|
// rest is brought forward from GfxInfoBase.
|
2011-09-29 10:19:26 +04:00
|
|
|
NS_SCRIPTABLE NS_IMETHOD GetD2DEnabled(bool *aD2DEnabled);
|
|
|
|
NS_SCRIPTABLE NS_IMETHOD GetDWriteEnabled(bool *aDWriteEnabled);
|
|
|
|
NS_SCRIPTABLE NS_IMETHOD GetAzureEnabled(bool *aAzureEnabled);
|
2011-01-20 04:30:12 +03:00
|
|
|
NS_SCRIPTABLE NS_IMETHOD GetDWriteVersion(nsAString & aDwriteVersion);
|
2011-05-11 04:30:20 +04:00
|
|
|
NS_SCRIPTABLE NS_IMETHOD GetCleartypeParameters(nsAString & aCleartypeParams);
|
2011-01-20 04:30:12 +03:00
|
|
|
NS_SCRIPTABLE NS_IMETHOD GetAdapterDescription(nsAString & aAdapterDescription);
|
|
|
|
NS_SCRIPTABLE NS_IMETHOD GetAdapterDriver(nsAString & aAdapterDriver);
|
2011-12-15 09:03:01 +04:00
|
|
|
NS_SCRIPTABLE NS_IMETHOD GetAdapterVendorID(nsAString & aAdapterVendorID);
|
|
|
|
NS_SCRIPTABLE NS_IMETHOD GetAdapterDeviceID(nsAString & aAdapterDeviceID);
|
2011-01-20 04:30:12 +03:00
|
|
|
NS_SCRIPTABLE NS_IMETHOD GetAdapterRAM(nsAString & aAdapterRAM);
|
|
|
|
NS_SCRIPTABLE NS_IMETHOD GetAdapterDriverVersion(nsAString & aAdapterDriverVersion);
|
|
|
|
NS_SCRIPTABLE NS_IMETHOD GetAdapterDriverDate(nsAString & aAdapterDriverDate);
|
2011-08-12 17:46:41 +04:00
|
|
|
NS_SCRIPTABLE NS_IMETHOD GetAdapterDescription2(nsAString & aAdapterDescription);
|
|
|
|
NS_SCRIPTABLE NS_IMETHOD GetAdapterDriver2(nsAString & aAdapterDriver);
|
2011-12-15 09:03:01 +04:00
|
|
|
NS_SCRIPTABLE NS_IMETHOD GetAdapterVendorID2(nsAString & aAdapterVendorID);
|
|
|
|
NS_SCRIPTABLE NS_IMETHOD GetAdapterDeviceID2(nsAString & aAdapterDeviceID);
|
2011-08-12 17:46:41 +04:00
|
|
|
NS_SCRIPTABLE NS_IMETHOD GetAdapterRAM2(nsAString & aAdapterRAM);
|
|
|
|
NS_SCRIPTABLE NS_IMETHOD GetAdapterDriverVersion2(nsAString & aAdapterDriverVersion);
|
|
|
|
NS_SCRIPTABLE NS_IMETHOD GetAdapterDriverDate2(nsAString & aAdapterDriverDate);
|
2011-09-29 10:19:26 +04:00
|
|
|
NS_SCRIPTABLE NS_IMETHOD GetIsGPU2Active(bool *aIsGPU2Active);
|
2011-01-20 04:30:12 +03:00
|
|
|
using GfxInfoBase::GetFeatureStatus;
|
|
|
|
using GfxInfoBase::GetFeatureSuggestedDriverVersion;
|
|
|
|
using GfxInfoBase::GetWebGLParameter;
|
|
|
|
|
2012-07-05 18:12:33 +04:00
|
|
|
void EnsureInitializedFromGfxInfoData();
|
2011-01-20 04:33:51 +03:00
|
|
|
|
2011-12-15 09:04:35 +04:00
|
|
|
#ifdef DEBUG
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
NS_DECL_NSIGFXINFODEBUG
|
|
|
|
#endif
|
|
|
|
|
2011-01-20 04:30:12 +03:00
|
|
|
protected:
|
|
|
|
|
2011-11-03 18:50:40 +04:00
|
|
|
virtual nsresult GetFeatureStatusImpl(PRInt32 aFeature,
|
|
|
|
PRInt32 *aStatus,
|
|
|
|
nsAString & aSuggestedDriverVersion,
|
2011-12-15 09:02:59 +04:00
|
|
|
const nsTArray<GfxDriverInfo>& aDriverInfo,
|
2011-11-03 18:50:40 +04:00
|
|
|
OperatingSystem* aOS = nsnull);
|
2011-12-15 09:02:59 +04:00
|
|
|
virtual const nsTArray<GfxDriverInfo>& GetGfxDriverInfo();
|
2011-01-20 04:30:12 +03:00
|
|
|
|
2011-01-06 07:54:31 +03:00
|
|
|
private:
|
|
|
|
|
2012-07-05 18:12:33 +04:00
|
|
|
void AddCrashReportAnnotations();
|
2011-01-06 07:54:31 +03:00
|
|
|
|
2012-07-05 18:12:33 +04:00
|
|
|
bool mInitializedFromJavaData;
|
2011-01-06 07:54:31 +03:00
|
|
|
|
2012-07-05 18:12:33 +04:00
|
|
|
// the GL strings
|
|
|
|
nsCString mVendor;
|
|
|
|
nsCString mRenderer;
|
|
|
|
nsCString mVersion;
|
|
|
|
// a possible error message produced by the data source (e.g. if EGL initialization failed)
|
|
|
|
nsCString mError;
|
2011-12-15 09:03:03 +04:00
|
|
|
|
2012-07-05 18:12:33 +04:00
|
|
|
nsCString mAdapterDescription;
|
2011-01-06 07:54:31 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace widget
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif /* __mozilla_widget_GfxInfo_h__ */
|