2. libdrm없이 kernel의 DRM드라이버를 바로 사용하는 어플리케이션 예제
Linux Graphics system with DRM libdrm없이 kernel의 DRM드라이버를 바로 사용하는 어플리케이션 예제 /* Opening the DRI device */// DRM device 오픈int fd = open("/dev/dri/card0",O_RDWR | O_CLOEXEC);/* Kernel Mode Setting (KMS) *///KMS셋팅을 위해 Master권한을 얻는다-- Acquire Master right --ioctl(fd, DRM_IOCTL_SET_MASTER, 0);//사용 가능한 커넥터 리소스를 찾는다-- Get connectors resource to find available connectors --ioctl(fd, DRM_IOCTL_MODE_GETCONN..