2010-08-13 15:43:35 +00:00
|
|
|
/* -*- Mode: IDL; 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/. */
|
2010-08-13 15:43:35 +00:00
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
|
2010-08-16 07:15:03 +00:00
|
|
|
/* NOTE: this interface is completely undesigned, not stable and likely to change */
|
|
|
|
|
2014-07-09 18:21:49 +00:00
|
|
|
[scriptable, uuid(27212e99-ed25-449b-b79f-32ecb88d251e)]
|
2010-08-13 15:43:35 +00:00
|
|
|
interface nsIGfxInfo : nsISupports
|
|
|
|
{
|
2010-10-02 03:55:19 +00:00
|
|
|
/*
|
|
|
|
* These are win32-specific
|
|
|
|
*/
|
2010-08-13 15:43:35 +00:00
|
|
|
readonly attribute boolean D2DEnabled;
|
2010-08-16 07:15:03 +00:00
|
|
|
readonly attribute boolean DWriteEnabled;
|
2011-01-14 12:57:17 +00:00
|
|
|
readonly attribute DOMString DWriteVersion;
|
2011-05-11 00:30:20 +00:00
|
|
|
readonly attribute DOMString cleartypeParameters;
|
2011-08-12 13:46:41 +00:00
|
|
|
|
|
|
|
// XXX: Switch to a list of devices, rather than explicitly numbering them.
|
|
|
|
|
2010-08-27 15:49:02 +00:00
|
|
|
/**
|
|
|
|
* The name of the display adapter.
|
|
|
|
*/
|
|
|
|
readonly attribute DOMString adapterDescription;
|
2011-08-12 13:46:41 +00:00
|
|
|
readonly attribute DOMString adapterDescription2;
|
2010-08-27 15:49:02 +00:00
|
|
|
|
|
|
|
readonly attribute DOMString adapterDriver;
|
2011-08-12 13:46:41 +00:00
|
|
|
readonly attribute DOMString adapterDriver2;
|
2010-08-27 15:49:02 +00:00
|
|
|
|
|
|
|
/* These types are inspired by DXGI_ADAPTER_DESC */
|
2011-12-15 05:03:01 +00:00
|
|
|
readonly attribute DOMString adapterVendorID;
|
|
|
|
readonly attribute DOMString adapterVendorID2;
|
2010-08-27 15:49:02 +00:00
|
|
|
|
2011-12-15 05:03:01 +00:00
|
|
|
readonly attribute DOMString adapterDeviceID;
|
|
|
|
readonly attribute DOMString adapterDeviceID2;
|
2011-08-12 13:46:41 +00:00
|
|
|
|
2014-07-09 18:21:49 +00:00
|
|
|
readonly attribute DOMString adapterSubsysID;
|
|
|
|
readonly attribute DOMString adapterSubsysID2;
|
|
|
|
|
2010-08-27 15:49:02 +00:00
|
|
|
/**
|
|
|
|
* The amount of RAM in MB in the display adapter.
|
|
|
|
*/
|
|
|
|
readonly attribute DOMString adapterRAM;
|
2011-08-12 13:46:41 +00:00
|
|
|
readonly attribute DOMString adapterRAM2;
|
2010-08-27 15:49:02 +00:00
|
|
|
|
|
|
|
readonly attribute DOMString adapterDriverVersion;
|
2011-08-12 13:46:41 +00:00
|
|
|
readonly attribute DOMString adapterDriverVersion2;
|
2010-08-27 15:49:02 +00:00
|
|
|
|
|
|
|
readonly attribute DOMString adapterDriverDate;
|
2011-08-12 13:46:41 +00:00
|
|
|
readonly attribute DOMString adapterDriverDate2;
|
|
|
|
|
|
|
|
readonly attribute boolean isGPU2Active;
|
2010-08-30 21:45:29 +00:00
|
|
|
|
2011-02-07 19:44:48 +00:00
|
|
|
void getFailures(
|
|
|
|
[optional] out unsigned long failureCount,
|
|
|
|
[retval, array, size_is(failureCount)] out string failures);
|
|
|
|
|
|
|
|
[noscript, notxpcom] void logFailure(in ACString failure);
|
2010-08-30 21:45:29 +00:00
|
|
|
/*
|
|
|
|
* A set of constants for features that we can ask this GfxInfo object
|
|
|
|
* about via GetFeatureStatus
|
|
|
|
*/
|
|
|
|
/* Don't assign 0 or -1 */
|
|
|
|
/* Whether Direct2D is supported for content rendering. */
|
|
|
|
const long FEATURE_DIRECT2D = 1;
|
|
|
|
/* Whether Direct3D 9 is supported for layers. */
|
|
|
|
const long FEATURE_DIRECT3D_9_LAYERS = 2;
|
|
|
|
/* Whether Direct3D 10.0 is supported for layers. */
|
|
|
|
const long FEATURE_DIRECT3D_10_LAYERS = 3;
|
|
|
|
/* Whether Direct3D 10.1 is supported for layers. */
|
|
|
|
const long FEATURE_DIRECT3D_10_1_LAYERS = 4;
|
|
|
|
/* Whether OpenGL is supported for layers */
|
|
|
|
const long FEATURE_OPENGL_LAYERS = 5;
|
|
|
|
/* Whether WebGL is supported via OpenGL. */
|
|
|
|
const long FEATURE_WEBGL_OPENGL = 6;
|
|
|
|
/* Whether WebGL is supported via ANGLE (D3D9 -- does not check for the presence of ANGLE libs). */
|
|
|
|
const long FEATURE_WEBGL_ANGLE = 7;
|
2011-11-03 14:50:40 +00:00
|
|
|
/* Whether WebGL antialiasing is supported. */
|
|
|
|
const long FEATURE_WEBGL_MSAA = 8;
|
2012-11-01 21:13:10 +00:00
|
|
|
/* Whether Stagefright is supported */
|
|
|
|
const long FEATURE_STAGEFRIGHT = 9;
|
2014-03-20 13:37:16 +00:00
|
|
|
/* Whether Webrtc Hardware acceleration is supported */
|
|
|
|
const long FEATURE_WEBRTC_HW_ACCELERATION = 10;
|
2014-05-16 16:16:21 +00:00
|
|
|
/* Whether Direct3D 11 is supported for layers. */
|
|
|
|
const long FEATURE_DIRECT3D_11_LAYERS = 11;
|
2010-08-30 21:45:29 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* A set of return values from GetFeatureStatus
|
|
|
|
*/
|
2011-12-15 05:02:59 +00:00
|
|
|
|
2014-07-01 21:44:09 +00:00
|
|
|
/* The driver is save to the best of our knowledge */
|
|
|
|
const long FEATURE_STATUS_OK = 1;
|
2011-12-15 05:02:59 +00:00
|
|
|
/* We don't know the status of the feature yet. The analysis probably hasn't finished yet. */
|
|
|
|
const long FEATURE_STATUS_UNKNOWN = 2;
|
2010-10-07 04:40:08 +00:00
|
|
|
/* This feature is blocked on this driver version. Updating driver will typically unblock it. */
|
2011-12-15 05:02:59 +00:00
|
|
|
const long FEATURE_BLOCKED_DRIVER_VERSION = 3;
|
2010-10-07 04:40:08 +00:00
|
|
|
/* This feature is blocked on this device, regardless of driver version.
|
|
|
|
* Typically means we hit too many driver crashes without a good reason to hope for them to
|
|
|
|
* get fixed soon. */
|
2011-12-15 05:02:59 +00:00
|
|
|
const long FEATURE_BLOCKED_DEVICE = 4;
|
2010-08-30 21:45:29 +00:00
|
|
|
/* This feature is available and can be used, but is not suggested (e.g. shouldn't be used by default */
|
2011-12-15 05:02:59 +00:00
|
|
|
const long FEATURE_DISCOURAGED = 5;
|
2010-10-12 21:27:14 +00:00
|
|
|
/* This feature is blocked on this OS version. */
|
2011-12-15 05:02:59 +00:00
|
|
|
const long FEATURE_BLOCKED_OS_VERSION = 6;
|
2010-08-30 21:45:29 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Ask about a feature, and return the status of that feature
|
|
|
|
*/
|
|
|
|
long getFeatureStatus(in long aFeature);
|
2010-10-07 04:40:08 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Ask about a feature, return the minimum driver version required for it if its status is
|
|
|
|
* FEATURE_BLOCKED_DRIVER_VERSION, otherwise return an empty string.
|
|
|
|
*/
|
|
|
|
DOMString getFeatureSuggestedDriverVersion(in long aFeature);
|
2010-12-16 20:49:54 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* WebGL info; valid params are "full-renderer", "vendor", "renderer", "version",
|
|
|
|
* "shading_language_version", "extensions". These return info from
|
|
|
|
* underlying GL impl that's used to implement WebGL.
|
|
|
|
*/
|
|
|
|
DOMString getWebGLParameter(in DOMString aParam);
|
2011-09-07 21:17:44 +00:00
|
|
|
|
|
|
|
// only useful on X11
|
|
|
|
[noscript, notxpcom] void GetData();
|
2011-11-02 20:53:59 +00:00
|
|
|
|
|
|
|
[implicit_jscontext]
|
|
|
|
jsval getInfo();
|
2010-08-13 15:43:35 +00:00
|
|
|
};
|
|
|
|
|