显卡名称(只读)。
这是用户的显卡名称,由显卡驱动程序报告。
using UnityEngine;
public class Example : MonoBehaviour { void Start() { // Prints using the following format - "ATI Radeon X1600 OpenGL Engine" on MacBook Pro running Mac OS X 10.4.8 print(SystemInfo.graphicsDeviceName); } }
请注意,相同的显卡可能会因操作系统、驱动程序等的不同而使用不同的名称进行报告。如果你想可靠地识别某些特定显卡,请使用 SystemInfo.graphicsDeviceID SystemInfo.graphicsDeviceVendorID。
其他资源:SystemInfo.graphicsDeviceID、SystemInfo.graphicsDeviceVendor、SystemInfo.graphicsDeviceVersion。