LoginSignup
0
0

More than 5 years have passed since last update.

video要素のテクスチャでテクスチャサイズが2のn乗でないと怒られた時の対処方法

Last updated at Posted at 2017-10-29

Video要素など、普通に2のn乗ではない、画像をテクスチャとして
張り付けたいときは以下のように記述することで、警告を受けずに済んだ。

const texture = new THREE.Texture(
      videoelm, THREE.UVMapping, THREE.ClampToEdgeWrapping,
      THREE.ClampToEdgeWrapping);
texture.generateMipmaps = false;
texture.minFilter = THREE.LinearFilter;
texture.magFilter = THREE.LinearFilter;
texture.needsUpdate = true;

参考資料

関連記事

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