• 大小: 6KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-08
  • 语言: Java
  • 标签: opengles  android  YUV  RGB  

资源简介

android使用OpenGLES将YUV数据转为RGB显示

资源截图

代码片段和文件信息

package com.jovision.account.opengles;

import android.app.Activity;
import android.app.ActivityManager;
import android.app.AlertDialog;
import android.app.Dialog;
import android.content.Context;
import android.content.DialogInterface;
import android.content.pm.ConfigurationInfo;

import com.jovision.account.R;

public class GLES20Support {

    public static boolean detectOpenGLES20(Context context) {
        ActivityManager am = (ActivityManager) context.getSystemService(Context.ACTIVITY_SERVICE);
        ConfigurationInfo info = am.getDeviceConfigurationInfo();
        return (info.reqGlEsVersion >= 0x20000);
    }

    public static Dialog getNoSupportGLES20Dialog(final Activity activity) {
        AlertDialog.Builder b = new AlertDialog.Builder(activity);
       

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2014-03-06 13:44  opengles\
     文件        1213  2013-12-09 15:52  opengles\GLES20Support.java
     文件        4522  2014-01-08 15:33  opengles\GLframeRenderer.java
     文件         939  2014-01-13 10:00  opengles\GLframeSurface.java
     文件       15522  2014-01-10 14:21  opengles\GLProgram.java
     文件         159  2013-12-20 14:48  opengles\ISimplePlayer.java

评论

共有 条评论