예제 #1
0
파일: GLFW.cs 프로젝트: smack0007/GLDotNet
 private static extern void SetWindowPosCallback32(IntPtr window, WindowPosFun cbfun);
예제 #2
0
파일: Glfw.cs 프로젝트: Ziriax/LearnCS
 public static void SetWindowPosCallback(IntPtr window, WindowPosFun cbfun)
 {
     currentWindowPosFun = cbfun;
     _SetWindowPosCallback(window, currentWindowPosFun);
 }
예제 #3
0
파일: GLFW.cs 프로젝트: smack0007/GLDotNet
 internal static void SetWindowPosCallback(IntPtr window, WindowPosFun cbfun)
 {
     if (!Environment.Is64BitProcess)
     {
         SetWindowPosCallback32(window, cbfun);
     }
     else
     {
         SetWindowPosCallback64(window, cbfun);
     }
 }
예제 #4
0
파일: Glfw.cs 프로젝트: Ziriax/LearnCS
 private static extern void _SetWindowPosCallback(IntPtr window, WindowPosFun cbfun);