本文整理汇总了Java中android.opengl.EGL14.eglQuerySurface方法的典型用法代码示例。如果您正苦于以下问题:Java EGL14.eglQuerySurface方法的具体用法?Java EGL14.eglQuerySurface怎么用?Java EGL14.eglQuerySurface使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类android.opengl.EGL14
的用法示例。
在下文中一共展示了EGL14.eglQuerySurface方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getWidth
import android.opengl.EGL14; //导入方法依赖的package包/类
/**
* Queries the surface's width.
*/
public int getWidth() {
int[] value = new int[1];
EGL14.eglQuerySurface(mEGLDisplay, mEGLSurface, EGL14.EGL_WIDTH, value, 0);
return value[0];
}
示例2: getHeight
import android.opengl.EGL14; //导入方法依赖的package包/类
/**
* Queries the surface's height.
*/
public int getHeight() {
int[] value = new int[1];
EGL14.eglQuerySurface(mEGLDisplay, mEGLSurface, EGL14.EGL_HEIGHT, value, 0);
return value[0];
}
示例3: querySurface
import android.opengl.EGL14; //导入方法依赖的package包/类
public int querySurface(final EGLSurface eglSurface, final int what) {
final int[] value = new int[1];
EGL14.eglQuerySurface(mEglDisplay, eglSurface, what, value, 0);
return value[0];
}
示例4: querySurface
import android.opengl.EGL14; //导入方法依赖的package包/类
/**
* Performs a simple surface query.
*/
public int querySurface(EGLSurface eglSurface, int what) {
int[] value = new int[1];
EGL14.eglQuerySurface(mEGLDisplay, eglSurface, what, value, 0);
return value[0];
}
示例5: querySurface
import android.opengl.EGL14; //导入方法依赖的package包/类
public int querySurface(EGLSurface eglSurface, int what) {
int[] value = new int[1];
EGL14.eglQuerySurface(mEGLDisplay, eglSurface, what, value, 0);
return value[0];
}
示例6: surfaceWidth
import android.opengl.EGL14; //导入方法依赖的package包/类
@Override
public int surfaceWidth() {
final int widthArray[] = new int[1];
EGL14.eglQuerySurface(eglDisplay, eglSurface, EGL14.EGL_WIDTH, widthArray, 0);
return widthArray[0];
}
示例7: surfaceHeight
import android.opengl.EGL14; //导入方法依赖的package包/类
@Override
public int surfaceHeight() {
final int heightArray[] = new int[1];
EGL14.eglQuerySurface(eglDisplay, eglSurface, EGL14.EGL_HEIGHT, heightArray, 0);
return heightArray[0];
}
示例8: surfaceWidth
import android.opengl.EGL14; //导入方法依赖的package包/类
@Override
public int surfaceWidth() {
EGL14.eglQuerySurface(eglDisplay, eglSurface, EGL14.EGL_WIDTH, widthArray, 0);
return widthArray[0];
}
示例9: surfaceHeight
import android.opengl.EGL14; //导入方法依赖的package包/类
@Override
public int surfaceHeight() {
EGL14.eglQuerySurface(eglDisplay, eglSurface, EGL14.EGL_HEIGHT, heightArray, 0);
return heightArray[0];
}