A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://docs.unity3d.com/Manual/../ScriptReference/SystemInfo-graphicsDeviceVersion.html below:

Unity - Scripting API: SystemInfo.graphicsDeviceVersion

SystemInfo.graphicsDeviceVersion Suggest a change Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close Your name Your email Suggestion*

Cancel

public static string graphicsDeviceVersion;

Description

The graphics API type and driver version used by the graphics device (Read Only).

Returns a string identifying low-level graphics API kind and driver version. In most cases when you need to detect which graphics API is being used it is much easier to use SystemInfo.graphicsDeviceType.

In case of OpenGL API, the returned string will contain "OpenGL" followed by version in "major.minor" format, followed by full version string in square brackets.

In case of Direct3D9 API, the returned string will contain "Direct3D 9.0c" followed by driver name and version in square brackets.

In case of Direct3D11 API, the returned string will contain "Direct3D 11.0" followed by feature level in square brackets.

Additional resources: SystemInfo.graphicsDeviceType, SystemInfo.graphicsDeviceName, SystemInfo.graphicsDeviceVendor.

using UnityEngine;
public class ExampleClass : MonoBehaviour
{
    void Start()
    {
        // Prints "OpenGL 2.0 [2.0 ATI-1.4.40]" on MacBook Pro running Mac OS X 10.4.8
        // Prints "Direct3D 9.0c [atiumdag.dll 7.14.10.471]" on MacBook Pro running Windows Vista
        print(SystemInfo.graphicsDeviceVersion);
    }
}

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4