Version: 2017.3
public static string graphicsDeviceVendor ;

説明

グラフィックデバイスのベンダー(読み取り専用)

これはグラフィックスドライバで報告される、ユーザーのグラフィックカードのベンダーです。

See Also: SystemInfo.graphicsDeviceName, SystemInfo.graphicsDeviceVersion.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Example() { print(SystemInfo.graphicsDeviceVendor); } }