_aglSetFullScreen() 개인적인 메소드

private _aglSetFullScreen ( AGLContext ctx, int width, int height, int freq, int device ) : byte
ctx AGLContext
width int
height int
freq int
device int
리턴 byte
예제 #1
0
파일: Agl.cs 프로젝트: conankzhang/fez
 internal static void aglSetFullScreen(IntPtr ctx, int width, int height, int freq, int device)
 {
     if ((int)Agl._aglSetFullScreen(ctx, width, height, freq, device) != 0)
     {
         return;
     }
     Agl.AglError error = Agl.GetError();
     throw new MacOSException(error, Agl.ErrorString(error));
 }