2010-10-01 20:55:19 -07: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 04:12:37 -07: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/. */
|
2010-10-01 20:55:19 -07:00
|
|
|
|
|
|
|
#ifndef __mozilla_widget_GfxInfo_h__
|
|
|
|
#define __mozilla_widget_GfxInfo_h__
|
|
|
|
|
2011-01-19 17:30:12 -08:00
|
|
|
#include "GfxInfoBase.h"
|
2010-10-01 20:55:19 -07:00
|
|
|
|
|
|
|
#include "nsString.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace widget {
|
|
|
|
|
2011-01-19 17:30:12 -08:00
|
|
|
class GfxInfo : public GfxInfoBase
|
2010-10-01 20:55:19 -07:00
|
|
|
{
|
|
|
|
public:
|
2011-09-27 06:55:42 -07:00
|
|
|
|
|
|
|
GfxInfo();
|
2011-01-19 17:30:12 -08:00
|
|
|
// We only declare the subset of nsIGfxInfo that we actually implement. The
|
|
|
|
// rest is brought forward from GfxInfoBase.
|
2012-07-06 13:31:49 -07:00
|
|
|
NS_IMETHOD GetD2DEnabled(bool *aD2DEnabled);
|
|
|
|
NS_IMETHOD GetDWriteEnabled(bool *aDWriteEnabled);
|
|
|
|
NS_IMETHOD GetDWriteVersion(nsAString & aDwriteVersion);
|
|
|
|
NS_IMETHOD GetCleartypeParameters(nsAString & aCleartypeParams);
|
|
|
|
NS_IMETHOD GetAdapterDescription(nsAString & aAdapterDescription);
|
|
|
|
NS_IMETHOD GetAdapterDriver(nsAString & aAdapterDriver);
|
|
|
|
NS_IMETHOD GetAdapterVendorID(nsAString & aAdapterVendorID);
|
|
|
|
NS_IMETHOD GetAdapterDeviceID(nsAString & aAdapterDeviceID);
|
2014-07-09 11:21:49 -07:00
|
|
|
NS_IMETHOD GetAdapterSubsysID(nsAString & aAdapterSubsysID);
|
2012-07-06 13:31:49 -07:00
|
|
|
NS_IMETHOD GetAdapterRAM(nsAString & aAdapterRAM);
|
|
|
|
NS_IMETHOD GetAdapterDriverVersion(nsAString & aAdapterDriverVersion);
|
|
|
|
NS_IMETHOD GetAdapterDriverDate(nsAString & aAdapterDriverDate);
|
|
|
|
NS_IMETHOD GetAdapterDescription2(nsAString & aAdapterDescription);
|
|
|
|
NS_IMETHOD GetAdapterDriver2(nsAString & aAdapterDriver);
|
|
|
|
NS_IMETHOD GetAdapterVendorID2(nsAString & aAdapterVendorID);
|
|
|
|
NS_IMETHOD GetAdapterDeviceID2(nsAString & aAdapterDeviceID);
|
2014-07-09 11:21:49 -07:00
|
|
|
NS_IMETHOD GetAdapterSubsysID2(nsAString & aAdapterSubsysID);
|
2012-07-06 13:31:49 -07:00
|
|
|
NS_IMETHOD GetAdapterRAM2(nsAString & aAdapterRAM);
|
|
|
|
NS_IMETHOD GetAdapterDriverVersion2(nsAString & aAdapterDriverVersion);
|
|
|
|
NS_IMETHOD GetAdapterDriverDate2(nsAString & aAdapterDriverDate);
|
|
|
|
NS_IMETHOD GetIsGPU2Active(bool *aIsGPU2Active);
|
2011-12-14 21:04:35 -08:00
|
|
|
|
2011-01-19 17:30:12 -08:00
|
|
|
using GfxInfoBase::GetFeatureStatus;
|
|
|
|
using GfxInfoBase::GetFeatureSuggestedDriverVersion;
|
|
|
|
using GfxInfoBase::GetWebGLParameter;
|
|
|
|
|
2011-01-19 17:33:51 -08:00
|
|
|
virtual nsresult Init();
|
|
|
|
|
2011-12-14 21:04:35 -08:00
|
|
|
#ifdef DEBUG
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
NS_DECL_NSIGFXINFODEBUG
|
|
|
|
#endif
|
|
|
|
|
2013-11-16 23:27:11 -08:00
|
|
|
virtual uint32_t OperatingSystemVersion() MOZ_OVERRIDE { return mOSXVersion; }
|
2012-11-01 14:13:10 -07:00
|
|
|
|
2011-01-19 17:30:12 -08:00
|
|
|
protected:
|
|
|
|
|
2014-07-08 14:23:18 -07:00
|
|
|
virtual ~GfxInfo() {}
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
virtual nsresult GetFeatureStatusImpl(int32_t aFeature,
|
|
|
|
int32_t *aStatus,
|
2011-11-03 07:50:40 -07:00
|
|
|
nsAString & aSuggestedDriverVersion,
|
2011-12-14 21:02:59 -08:00
|
|
|
const nsTArray<GfxDriverInfo>& aDriverInfo,
|
2012-07-30 07:20:58 -07:00
|
|
|
OperatingSystem* aOS = nullptr);
|
2011-12-14 21:02:59 -08:00
|
|
|
virtual const nsTArray<GfxDriverInfo>& GetGfxDriverInfo();
|
2011-01-19 17:30:12 -08:00
|
|
|
|
2010-10-01 20:55:19 -07:00
|
|
|
private:
|
|
|
|
|
2011-09-27 06:55:42 -07:00
|
|
|
void GetDeviceInfo();
|
2010-10-01 20:55:19 -07:00
|
|
|
void AddCrashReportAnnotations();
|
|
|
|
|
2013-08-01 22:25:16 -07:00
|
|
|
nsString mAdapterRAMString;
|
2010-10-01 20:55:19 -07:00
|
|
|
nsString mDeviceID;
|
|
|
|
nsString mDriverVersion;
|
|
|
|
nsString mDriverDate;
|
|
|
|
nsString mDeviceKey;
|
|
|
|
|
2011-12-14 21:03:01 -08:00
|
|
|
nsString mAdapterVendorID;
|
|
|
|
nsString mAdapterDeviceID;
|
2011-09-27 06:55:42 -07:00
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t mOSXVersion;
|
2010-10-01 20:55:19 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace widget
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif /* __mozilla_widget_GfxInfo_h__ */
|