2011-01-05 20:54:31 -08: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/. */
|
2011-01-05 20:54:31 -08:00
|
|
|
|
|
|
|
#ifndef __mozilla_widget_GfxInfo_h__
|
|
|
|
#define __mozilla_widget_GfxInfo_h__
|
|
|
|
|
2011-01-19 17:30:12 -08:00
|
|
|
#include "GfxInfoBase.h"
|
2011-12-14 21:03:01 -08:00
|
|
|
#include "GfxDriverInfo.h"
|
2011-01-05 20:54:31 -08:00
|
|
|
|
|
|
|
#include "nsString.h"
|
2013-11-15 08:28:43 -08:00
|
|
|
#include "mozilla/Scoped.h"
|
2011-01-05 20:54:31 -08:00
|
|
|
|
|
|
|
namespace mozilla {
|
2013-11-15 08:28:43 -08:00
|
|
|
|
|
|
|
namespace gl {
|
|
|
|
class GLContext;
|
|
|
|
}
|
|
|
|
|
2011-01-05 20:54:31 -08:00
|
|
|
namespace widget {
|
|
|
|
|
2011-01-19 17:30:12 -08:00
|
|
|
class GfxInfo : public GfxInfoBase
|
2011-01-05 20:54:31 -08:00
|
|
|
{
|
|
|
|
public:
|
2012-07-05 07:12:33 -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);
|
|
|
|
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);
|
|
|
|
NS_IMETHOD GetAdapterRAM2(nsAString & aAdapterRAM);
|
|
|
|
NS_IMETHOD GetAdapterDriverVersion2(nsAString & aAdapterDriverVersion);
|
|
|
|
NS_IMETHOD GetAdapterDriverDate2(nsAString & aAdapterDriverDate);
|
|
|
|
NS_IMETHOD GetIsGPU2Active(bool *aIsGPU2Active);
|
2011-01-19 17:30:12 -08:00
|
|
|
using GfxInfoBase::GetFeatureStatus;
|
|
|
|
using GfxInfoBase::GetFeatureSuggestedDriverVersion;
|
|
|
|
using GfxInfoBase::GetWebGLParameter;
|
|
|
|
|
2013-11-15 08:28:43 -08:00
|
|
|
void EnsureInitialized();
|
2011-01-19 17:33:51 -08:00
|
|
|
|
2013-11-15 08:28:42 -08:00
|
|
|
virtual nsString Model();
|
|
|
|
virtual nsString Hardware();
|
|
|
|
virtual nsString Product();
|
|
|
|
virtual nsString Manufacturer();
|
2012-11-01 14:13:10 -07:00
|
|
|
|
2011-12-14 21:04:35 -08:00
|
|
|
#ifdef DEBUG
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
NS_DECL_NSIGFXINFODEBUG
|
|
|
|
#endif
|
|
|
|
|
2013-11-18 05:38:17 -08:00
|
|
|
virtual uint32_t OperatingSystemVersion() MOZ_OVERRIDE;
|
2012-11-01 14:13:10 -07:00
|
|
|
|
2011-01-19 17:30:12 -08:00
|
|
|
protected:
|
|
|
|
|
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
|
|
|
|
2011-01-05 20:54:31 -08:00
|
|
|
private:
|
|
|
|
|
2012-07-05 07:12:33 -07:00
|
|
|
void AddCrashReportAnnotations();
|
2011-01-05 20:54:31 -08:00
|
|
|
|
2013-11-15 08:28:43 -08:00
|
|
|
bool mInitialized;
|
2011-01-05 20:54:31 -08:00
|
|
|
|
2013-11-15 08:28:43 -08:00
|
|
|
class GLStrings;
|
|
|
|
ScopedDeletePtr<GLStrings> mGLStrings;
|
2011-12-14 21:03:03 -08:00
|
|
|
|
2012-07-05 07:12:33 -07:00
|
|
|
nsCString mAdapterDescription;
|
2012-11-01 14:13:10 -07:00
|
|
|
|
|
|
|
OperatingSystem mOS;
|
|
|
|
|
|
|
|
nsString mModel, mHardware, mManufacturer, mProduct;
|
2012-12-21 14:32:14 -08:00
|
|
|
nsCString mOSVersion;
|
|
|
|
uint32_t mOSVersionInteger;
|
2011-01-05 20:54:31 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace widget
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif /* __mozilla_widget_GfxInfo_h__ */
|