UnityEngine.Display.SetRenderingResolutionImpl C# (CSharp) Method

SetRenderingResolutionImpl() private method

private SetRenderingResolutionImpl ( IntPtr nativeDisplay, int w, int h ) : void
nativeDisplay System.IntPtr
w int
h int
return void
        private static extern void SetRenderingResolutionImpl(IntPtr nativeDisplay, int w, int h);

Usage Example

コード例 #1
0
 public void SetRenderingResolution(int w, int h)
 {
     Display.SetRenderingResolutionImpl(this.nativeDisplay, w, h);
 }