Esempio n. 1
0
            public int SurfaceWidth()
            {
                var widthArray = new int[1];

                EGL14.EglQuerySurface(_eglDisplay, _eglSurface, 12375, widthArray, 0);
                return(widthArray[0]);
            }
Esempio n. 2
0
            public int SurfaceHeight()
            {
                var heightArray = new int[1];

                EGL14.EglQuerySurface(_eglDisplay, _eglSurface, 12374, heightArray, 0);
                return(heightArray[0]);
            }