2
1

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 1 year has passed since last update.

Raspberry Pi の Chromium でコマンドラインで WebGL を使えるようにする

Posted at

Raspberry Pi の Chromium で、WebGL のコンテンツが表示されなかったため、表示できるようにするためのメモ。

キオスク端末とかデジタルサイネージ的なものを想定して、GUI ではなくコマンドラインでやりたい。

環境

機種: Raspberry Pi 4B (メモリ4GB)

OS:

pi@raspberrypi:~ $ uname -a
Linux raspberrypi 5.10.63-v7l+ #1488 SMP Thu Nov 18 16:15:28 GMT 2021 armv7l GNU/Linux

Chromium:

$ chromium-browser --version
Chromium 95.0.4638.78 Built on Raspbian , running on Raspbian 11

コマンド

以下のように --gpu --gpu-launcher --in-process-gpu --ignore-gpu-blacklist --ignore-gpu-blocklist というオプションをつけてコマンドを実行する。

chromium-browser \
--gpu \
--gpu-launcher \
--in-process-gpu \
--ignore-gpu-blacklist \
--ignore-gpu-blocklist \
https://get.webgl.org/

以下のスクリーンショットのようにキューブが表示されていればオッケー。

2
1
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
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?