2011-01-06 04:54:31 +00: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 11:12:37 +00: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 04:54:31 +00:00
|
|
|
|
|
|
|
#ifndef __mozilla_widget_GfxInfo_h__
|
|
|
|
#define __mozilla_widget_GfxInfo_h__
|
|
|
|
|
2011-01-20 01:30:12 +00:00
|
|
|
#include "GfxInfoBase.h"
|
2011-12-15 05:03:01 +00:00
|
|
|
#include "GfxDriverInfo.h"
|
2011-01-06 04:54:31 +00:00
|
|
|
|
|
|
|
#include "nsString.h"
|
2013-11-15 16:28:43 +00:00
|
|
|
#include "mozilla/Scoped.h"
|
2011-01-06 04:54:31 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
2013-11-15 16:28:43 +00:00
|
|
|
|
|
|
|
namespace gl {
|
|
|
|
class GLContext;
|
|
|
|
}
|
|
|
|
|
2011-01-06 04:54:31 +00:00
|
|
|
namespace widget {
|
|
|
|
|
2011-01-20 01:30:12 +00:00
|
|
|
class GfxInfo : public GfxInfoBase
|
2011-01-06 04:54:31 +00:00
|
|
|
{
|
|
|
|
public:
|
2012-07-05 14:12:33 +00:00
|
|
|
GfxInfo();
|
|
|
|
|
2011-01-20 01:30:12 +00:00
|
|
|
// We only declare the subset of nsIGfxInfo that we actually implement. The
|
|
|
|
// rest is brought forward from GfxInfoBase.
|
2012-07-06 20:31:49 +00: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-20 01:30:12 +00:00
|
|
|
using GfxInfoBase::GetFeatureStatus;
|
|
|
|
using GfxInfoBase::GetFeatureSuggestedDriverVersion;
|
|
|
|
using GfxInfoBase::GetWebGLParameter;
|
|
|
|
|
2013-11-15 16:28:43 +00:00
|
|
|
void EnsureInitialized();
|
2011-01-20 01:33:51 +00:00
|
|
|
|
2013-11-15 16:28:42 +00:00
|
|
|
virtual nsString Model();
|
|
|
|
virtual nsString Hardware();
|
|
|
|
virtual nsString Product();
|
|
|
|
virtual nsString Manufacturer();
|
2012-11-01 21:13:10 +00:00
|
|
|
|
2011-12-15 05:04:35 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
NS_DECL_NSIGFXINFODEBUG
|
|
|
|
#endif
|
|
|
|
|
2013-11-18 13:38:17 +00:00
|
|
|
virtual uint32_t OperatingSystemVersion() MOZ_OVERRIDE;
|
2012-11-01 21:13:10 +00:00
|
|
|
|
2011-01-20 01:30:12 +00:00
|
|
|
protected:
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
virtual nsresult GetFeatureStatusImpl(int32_t aFeature,
|
|
|
|
int32_t *aStatus,
|
2011-11-03 14:50:40 +00:00
|
|
|
nsAString & aSuggestedDriverVersion,
|
2011-12-15 05:02:59 +00:00
|
|
|
const nsTArray<GfxDriverInfo>& aDriverInfo,
|
2012-07-30 14:20:58 +00:00
|
|
|
OperatingSystem* aOS = nullptr);
|
2011-12-15 05:02:59 +00:00
|
|
|
virtual const nsTArray<GfxDriverInfo>& GetGfxDriverInfo();
|
2011-01-20 01:30:12 +00:00
|
|
|
|
2011-01-06 04:54:31 +00:00
|
|
|
private:
|
|
|
|
|
2012-07-05 14:12:33 +00:00
|
|
|
void AddCrashReportAnnotations();
|
2011-01-06 04:54:31 +00:00
|
|
|
|
2013-11-15 16:28:43 +00:00
|
|
|
bool mInitialized;
|
2011-01-06 04:54:31 +00:00
|
|
|
|
2013-11-15 16:28:43 +00:00
|
|
|
class GLStrings;
|
|
|
|
ScopedDeletePtr<GLStrings> mGLStrings;
|
2011-12-15 05:03:03 +00:00
|
|
|
|
2012-07-05 14:12:33 +00:00
|
|
|
nsCString mAdapterDescription;
|
2012-11-01 21:13:10 +00:00
|
|
|
|
|
|
|
OperatingSystem mOS;
|
|
|
|
|
|
|
|
nsString mModel, mHardware, mManufacturer, mProduct;
|
2012-12-21 22:32:14 +00:00
|
|
|
nsCString mOSVersion;
|
|
|
|
uint32_t mOSVersionInteger;
|
2011-01-06 04:54:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace widget
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif /* __mozilla_widget_GfxInfo_h__ */
|