Android SurfaceView模拟器OpenGL错误

7
我在Android模拟器中运行一个绘制SurfaceView的简单代码时,遇到了几个OpenGL错误。因此,在模拟器中运行时,SurfaceView不会绘制。相同的代码在设备上(在这种情况下是Amazon Fire HD 8 (2017 - KFDOWI))上正确运行。

以下是错误:

Emulator: android/android-emugl/host/libs/Translator/GLES_V2/GLESv2Imp.cpp:glReadPixels:2827 error 0x502

Emulator: sPrepareTexImage2D:3087 failed validation

Emulator: android/android-emugl/host/libs/Translator/GLES_V2/GLESv2Imp.cpp:glTexImage2D:3133 error 0x500

Emulator: sPrepareTexImage2D:3087 failed validation

Emulator: android/android-emugl/host/libs/Translator/GLES_V2/GLESv2Imp.cpp:glTexImage2D:3133 error 0x500

Emulator: android/android-emugl/host/libs/Translator/GLES_V2/GLESv2Imp.cpp:glTexSubImage2D:3237 error 0x500

以下是代码:

import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.util.AttributeSet;
import android.view.SurfaceHolder;
import android.view.SurfaceView;

public class CustomSurfaceView extends SurfaceView implements SurfaceHolder.Callback  {

    private SurfaceHolder surfaceHolder;

    public CustomSurfaceView(Context context) {
        super(context);
        init();
    }

        public CustomSurfaceView(Context context, AttributeSet attributeSet) {
        super(context, attributeSet);
        init();
    }

    private void init() {
        this.surfaceHolder = getHolder();
        surfaceHolder.addCallback(this);
    }

    @Override
    public void surfaceCreated(SurfaceHolder surfaceHolder) {
        Canvas canvas = surfaceHolder.lockCanvas();
        canvas.drawColor(Color.RED);
        surfaceHolder.unlockCanvasAndPost(canvas);
    }

    @Override
    public void surfaceChanged(SurfaceHolder surfaceHolder, int i, int i1, int i2) {
    }

    @Override
    public void surfaceDestroyed(SurfaceHolder surfaceHolder) {
    }
}

活动:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="MainActivity">

    <CustomSurfaceView
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

</android.support.constraint.ConstraintLayout>

系统信息:

  • MacOS High Sierra 10.13.2
  • 16 GB RAM
  • Android Studio 3.0.1
  • JRE 1.8.0_152
  • HAXM 6.2.1

AVD信息:

  • API 25
  • 图形:自动
  • RAM:1536 MB

应用程序信息:

  • API 26
  • 最小SDK:19

此外,我可以在同一模拟器中运行OpenGL ES 2.0代码而没有这些问题。


我有同样的问题,你找到答案了吗? - Симеон Симеонов
1个回答

7

禁用硬件加速。

[打开虚拟设备配置 -> 编辑虚拟设备 -> 使用软件模式图形]


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接