java - Android:使用 OpenGL ES 显示文本

标签 java android opengl-es

我想编写一个在设备上显示文本恰好 1/60 秒(帧速率 = 60 Hz)的应用程序。

管理此任务的最佳方式是什么?

我首先在没有 OpenGL 的情况下使用 ImageView 进行了尝试,但是时间管理并不容易,因为我无法访问渲染器。或者有没有办法访问渲染器?

我的以下代码未使用 OpenGL 显示“T E S T I N G”,我不知道为什么。

public class MainActivity extends AppCompatActivity implements GLSurfaceView.Renderer {

// The texture pointer
private int[] textures = new int[1];

private Bitmap bitmap;
private Canvas canvas;
private Drawable background;
private Paint textPaint;

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);


    GLSurfaceView glSurfaceView = new GLSurfaceView(this);

    // OpenGL Version 2
    glSurfaceView.setEGLContextClientVersion(2);
    // bits for the channels of output image (red, green, blue, alpha, depth, stencil)
    glSurfaceView.setEGLConfigChooser(8, 8, 8, 8, 16, 0);
    // Activity acts as the Renderer
    glSurfaceView.setRenderer(this);
    // update on demand
    glSurfaceView.setRenderMode(GLSurfaceView.RENDERMODE_WHEN_DIRTY);


    // our bitmap
    bitmap = Bitmap.createBitmap(256, 256, Bitmap.Config.ARGB_4444);
    // get a canvas to paint over the bitmap
    canvas = new Canvas(bitmap);
    bitmap.eraseColor(0);

    // get a background image from resources
    // note the image format must match the bitmap format
    background = this.getApplicationContext().getResources().getDrawable(R.drawable.background);
    background.setBounds(0, 0, 256, 256);
    // draw the background to our bitmap
    background.draw(canvas);

    // draw the text
    textPaint = new Paint();
    textPaint.setTextSize(32);
    textPaint.setAntiAlias(true);
    textPaint.setARGB(0xff, 0x00, 0x00, 0x00);
    // draw the text centered
    canvas.drawText("T E S T I N G", 16, 112, textPaint);
}

// when OpenGL starts up
@Override
public void onSurfaceCreated(GL10 gl, EGLConfig config) {

    // default state to background color light grey state
    GLES20.glClearColor(0.0f, 0.0f, 0.0f, 1.0f);
}

// called as often as possible => high frame rate
@Override
public void onDrawFrame(GL10 gl) {

    // clear the color buffer (bitmaps)
    GLES20.glClear(GLES20.GL_COLOR_BUFFER_BIT);

    // generate one texture pointer...
    gl.glGenTextures(1, textures, 0);
    //...and bind it to our array
    gl.glBindTexture(GL10.GL_TEXTURE_2D, textures[0]);

    // create Nearest Filtered Texture
    gl.glTexParameterf(GL10.GL_TEXTURE_2D, GL10.GL_TEXTURE_MIN_FILTER, GL10.GL_NEAREST);
    gl.glTexParameterf(GL10.GL_TEXTURE_2D, GL10.GL_TEXTURE_MAG_FILTER, GL10.GL_LINEAR);

    // different possible texture parameters, e.g. GL10.GL_CLAMP_TO_EDGE
    gl.glTexParameterf(GL10.GL_TEXTURE_2D, GL10.GL_TEXTURE_WRAP_S, GL10.GL_REPEAT);
    gl.glTexParameterf(GL10.GL_TEXTURE_2D, GL10.GL_TEXTURE_WRAP_T, GL10.GL_REPEAT);

    // use the Android GLUtils to specify a two-dimensional texture image from our bitmap
    GLUtils.texImage2D(GL10.GL_TEXTURE_2D, 0, bitmap, 0);

    // clean up
    bitmap.recycle();
}

// for resizing purposes
@Override
public void onSurfaceChanged(GL10 gl, int width, int height) {

    // when size of the GLSurfaceView changes we also want to change the size of the rendering view port to be the same
    GLES20.glViewport(0, 0, width, height);
}}

最佳答案

您将在这里找到一个开始使用 GLSurfaceView 的好地方:

https://developer.android.com/training/graphics/opengl/environment.html

但是,对于文本,只需将文本绘制到纹理并渲染纹理即可。请参阅此答案以了解如何做到这一点:https://stackoverflow.com/a/4336679/2979092

为了确保使用 GLES 2.0,请将其添加到您的 list 中

<uses-feature android:glEsVersion="0x00020000" android:required="true" />

扩展 GLSurfaceView

class MyGLSurfaceView extends GLSurfaceView {

    private final MyGLRenderer mRenderer;

    public MyGLSurfaceView(Context context){
        super(context);
        setEGLContextClientVersion(2);
        mRenderer = new MyGLRenderer(); // extended GLSurfaceView.Renderer
        setRenderer(mRenderer);
    }
}

你的渲染器骨架

public class MyGLRenderer implements GLSurfaceView.Renderer {

    public void onSurfaceCreated(GL10 unused, EGLConfig config) {
        GLES20.glClearColor(0.0f, 0.0f, 0.0f, 1.0f);
    }

    public void onDrawFrame(GL10 unused) {
        GLES20.glClear(GLES20.GL_COLOR_BUFFER_BIT);
    }

    public void onSurfaceChanged(GL10 unused, int width, int height) {
        GLES20.glViewport(0, 0, width, height);
    }
}

按需更新设置

setRenderMode(GLSurfaceView.RENDERMODE_WHEN_DIRTY);

使用位图将文本渲染到纹理(从链接的答案复制)

Bitmap bitmap = Bitmap.createBitmap(256, 256, Bitmap.Config.ARGB_4444);
// get a canvas to paint over the bitmap
Canvas canvas = new Canvas(bitmap);
bitmap.eraseColor(0);

// get a background image from resources
// note the image format must match the bitmap format
Drawable background = context.getResources().getDrawable(R.drawable.background);
background.setBounds(0, 0, 256, 256);
background.draw(canvas); // draw the background to our bitmap

// Draw the text
Paint textPaint = new Paint();
textPaint.setTextSize(32);
textPaint.setAntiAlias(true);
textPaint.setARGB(0xff, 0x00, 0x00, 0x00);
// draw the text centered
canvas.drawText("Hello World", 16,112, textPaint);

//Generate one texture pointer...
gl.glGenTextures(1, textures, 0);
//...and bind it to our array
gl.glBindTexture(GL10.GL_TEXTURE_2D, textures[0]);

//Create Nearest Filtered Texture
gl.glTexParameterf(GL10.GL_TEXTURE_2D, GL10.GL_TEXTURE_MIN_FILTER, GL10.GL_NEAREST);
gl.glTexParameterf(GL10.GL_TEXTURE_2D, GL10.GL_TEXTURE_MAG_FILTER, GL10.GL_LINEAR);

//Different possible texture parameters, e.g. GL10.GL_CLAMP_TO_EDGE
gl.glTexParameterf(GL10.GL_TEXTURE_2D, GL10.GL_TEXTURE_WRAP_S, GL10.GL_REPEAT);
gl.glTexParameterf(GL10.GL_TEXTURE_2D, GL10.GL_TEXTURE_WRAP_T, GL10.GL_REPEAT);

//Use the Android GLUtils to specify a two-dimensional texture image from our bitmap
GLUtils.texImage2D(GL10.GL_TEXTURE_2D, 0, bitmap, 0);

//Clean up
bitmap.recycle();

如果您使用的是 GLES 2.0,您还需要在渲染之前绑定(bind)着色器程序。

关于java - Android:使用 OpenGL ES 显示文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39980932/

相关文章:

c - GCC:如何修复或抑制警告:未知转义序列: '\#'

java - 如何在java中使用CSS图

java - Jackson Collection<Object> 属性到顶级 JSON 输出字符串

java - 开关机一次后按钮停止工作

java - TabLayout改变tabText颜色

android - Android Widget ID 是否持久化

c++ - 带有 C++ 的 iPhone 上的 OpenGL ES?

graphics - 正确的缩放和旋转转换设置

java - 在流程中的任何阶段失败时重试 akka 中的流

java - Eclipse、subclipse 和 JAR 依赖项