グラフィックデバイス名(読み取り専用)
これはグラフィックスドライバで報告される、グラフィックカード名です。
// Prints "ATI Radeon X1600 OpenGL Engine" on MacBook Pro running OS X 10.4.8
print (SystemInfo.graphicsDeviceName);
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void Example() { print(SystemInfo.graphicsDeviceName); } }
オペレーティングシステムやドライバなどに応じて別の名前で報告される同じグラフィックカードに注意してください。
いくつかの特定のカードを確実に識別したい場合、 SystemInfo.graphicsDeviceID や SystemInfo.graphicsDeviceVendorID を使用します。
SystemInfo.graphicsDeviceVendorID
See Also: SystemInfo.graphicsDeviceID, SystemInfo.graphicsDeviceVendor, SystemInfo.graphicsDeviceVersion.