ActivateDisplayImpl() 개인적인 메소드

private ActivateDisplayImpl ( IntPtr nativeDisplay, int width, int height, int refreshRate ) : void
nativeDisplay System.IntPtr
width int
height int
refreshRate int
리턴 void
예제 #1
0
 public void Activate(int width, int height, int refreshRate)
 {
     Display.ActivateDisplayImpl(this.nativeDisplay, width, height, refreshRate);
 }
예제 #2
0
 public void Activate()
 {
     Display.ActivateDisplayImpl(this.nativeDisplay, 0, 0, 60);
 }