0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

GL_TEXTURE_EXTERNAL_OESのサンプル

Last updated at Posted at 2020-09-20

[環境]
OS : win10pro
IDE : AndroidStudio 4.0.1
確認した実機: Galaxys8

元ネタ https://github.com/crossle/MediaPlayerSurface
AndroidStudioがうまくビルドしてくれなかったのでプロジェクト新規作成した。
AndroidManifest.xmlで起動Activityを指定する

GLSurface
EGL版
OpenGLES

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".MediaPlayerSurfaceStubActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>


image.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?