2
0

CompressedTexture.html 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <base href="../../../" />
  6. <script src="list.js"></script>
  7. <script src="page.js"></script>
  8. <link type="text/css" rel="stylesheet" href="page.css" />
  9. </head>
  10. <body>
  11. [page:Texture] &rarr;
  12. <h1>[name]</h1>
  13. <p class="desc">
  14. Creates a texture based on data in compressed form, for example from a [link:https://en.wikipedia.org/wiki/DirectDraw_Surface DDS] file.<br /><br />
  15. For use with the [page:CompressedTextureLoader CompressedTextureLoader].
  16. </p>
  17. <h2>Constructor</h2>
  18. <h3>[name]( [param:Array mipmaps], [param:Number width], [param:Number height], [param:Constant format], [param:Constant type], [param:Constant mapping], [param:Constant wrapS], [param:Constant wrapT], [param:Constant magFilter], [param:Constant minFilter], [param:Number anisotropy] )</h3>
  19. <p>
  20. [page:Array mipmaps] -- The mipmaps array should contain objects with data, width and height. The mipmaps should be of the correct format and type.<br />
  21. [page:Number width] -- The width of the biggest mipmap.<br />
  22. [page:Number height] -- The height of the biggest mipmap.<br />
  23. [page:Constant format] -- The format used in the mipmaps.
  24. See [page:Textures ST3C Compressed Texture Formats],
  25. [page:Textures PVRTC Compressed Texture Formats] and
  26. [page:Textures ETC Compressed Texture Format] for other choices.<br />
  27. [page:Constant type] -- Default is [page:Textures THREE.UnsignedByteType].
  28. See [page:Textures type constants] for other choices.<br />
  29. [page:Constant mapping] -- How the image is applied to the object. An object type of [page:Textures THREE.UVMapping].
  30. See [page:Textures mapping constants] for other choices.<br />
  31. [page:Constant wrapS] -- The default is [page:Textures THREE.ClampToEdgeWrapping].
  32. See [page:Textures wrap mode constants] for other choices.<br />
  33. [page:Constant wrapT] -- The default is [page:Textures THREE.ClampToEdgeWrapping].
  34. See [page:Textures wrap mode constants] for other choices.<br />
  35. [page:Constant magFilter] -- How the texture is sampled when a texel covers more than one pixel.
  36. The default is [page:Textures THREE.LinearFilter]. See [page:Textures magnification filter constants] for other choices.<br />
  37. [page:Constant minFilter] -- How the texture is sampled when a texel covers less than one pixel.
  38. The default is [page:Textures THREE.LinearMipMapLinearFilter]. See [page:Textures minification filter constants] for other choices.<br />
  39. [page:Number anisotropy] -- The number of samples taken along the axis through the pixel that has the highest density of texels.
  40. By default, this value is 1. A higher value gives a less blurry result than a basic mipmap, at the cost of more texture samples being used.
  41. Use renderer.getMaxAnisotropy() to find the maximum valid anisotropy value for the GPU; this value is usually a power of 2.<br /><br />
  42. </p>
  43. <h2>Properties</h2>
  44. See the base [page:Texture Texture] class for common properties.
  45. <h3>[property:boolean flipY]</h3>
  46. <p>
  47. False by default. Flipping textures does not work for compressed textures.
  48. </p>
  49. <h3>[property:boolean generateMipmaps]</h3>
  50. <p>
  51. False by default. Mipmaps can't be generated for compressed textures
  52. </p>
  53. <h2>Methods</h2>
  54. <h2>Source</h2>
  55. [link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js]
  56. </body>
  57. </html>