Version: 2017.1

SystemInfo.graphicsDeviceVendor

切换到手册
public static string graphicsDeviceVendor ;

描述

图形设备的供应商(只读)。

此为用户显卡的供应商,由图形驱动程序报告。

另请参阅:SystemInfo.graphicsDeviceNameSystemInfo.graphicsDeviceVersion

using UnityEngine;
using System.Collections;

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