12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- return {
- tag = 'texture-view',
- summary = 'Create a texture view referencing a parent Texture.',
- description = [[
- Creates a new Texture view. A texture view does not store any pixels on its own, but instead
- uses the pixel data of a "parent" Texture object. The width, height, format, sample count, and
- usage flags all match the parent. The view may have a different `TextureType` from the parent,
- and it may reference a subset of the parent texture's layers and mipmap levels.
- Texture views can be used as render targets in a render pass and they can be bound to Shaders.
- They can not currently be used for transfer operations. They are used for:
- - Reinterpretation of texture contents. For example, a cubemap can be treated as
- an array texture.
- - Rendering to a particular image or mipmap level of a texture.
- - Binding a particular image or mipmap level to a shader.
- ]],
- arguments = {
- type = {
- type = 'TextureType',
- description = 'The texture type of the view.'
- },
- layer = {
- type = 'number',
- default = '1',
- description = 'The index of the first layer in the view.'
- },
- layerCount = {
- type = 'number',
- default = 'nil',
- description = 'The number of layers in the view, or `nil` to use all remaining layers.'
- },
- mipmap = {
- type = 'number',
- default = '1',
- description = 'The index of the first mipmap in the view.'
- },
- mipmapCount = {
- type = 'number',
- default = 'nil',
- description = 'The number of mipmaps in the view, or `nil` to use all remaining mipmaps.'
- }
- },
- returns = {
- view = {
- type = 'Texture',
- description = 'The new texture view.'
- }
- },
- variants = {
- {
- description = 'Create a 2D texture view referencing a single layer and mipmap.',
- arguments = { 'layer', 'mipmap' },
- returns = { 'view' }
- },
- {
- description = 'Create a texture view with an explicit type, layer range, and mipmap range.',
- arguments = { 'type', 'layer', 'layerCount', 'mipmap', 'mipmapCount' },
- returns = { 'view' }
- }
- },
- related = {
- 'Texture:isView',
- 'Texture:getParent',
- 'lovr.graphics.newTexture'
- }
- }
|