Texture
continuous-integration/drone/push Build is passing Details

main
cosmonaut 2021-01-25 18:22:59 -08:00
parent a0705c5037
commit 690cf0dabd
2 changed files with 52 additions and 0 deletions

View File

@ -1,6 +1,7 @@
---
title: "Buffer"
date: 2021-01-25T14:41:43-08:00
weight: 1
---
Buffers are basically containers for data. They are the bread and butter of any renderer.

View File

@ -0,0 +1,51 @@
---
title: "Texture"
date: 2021-01-25T14:59:49-08:00
weight: 2
---
Textures are containers for pixel data. They always have a width, height, and color format. The most simple and common kind of texture is just a 2D texture. But textures can also have depth (3D textures), multiple layers (cubemaps), multiple resolution levels (mipmap levels), or a multisample count. Describing the use cases for all of these is beyond the scope of this tutorial, but they should come up as you learn how to execute certain rendering techniques.
To create a new texture resource, you can set up a `TextureCreateInfo` struct:
```cs
var textureCreateInfo = new TextureCreateInfo
{
Width = 128,
Height = 128,
Depth = 1,
Format = ColorFormat.R8G8B8A8,
IsCube = false,
LevelCount = 1,
SampleCount = SampleCount.One,
UsageFlags = TextureUsageFlags.SamplerBit
};
var myTexture = new Texture(GraphicsDevice, textureCreateInfo);
```
This sets up 128x128 2D Texture that uses 32 bits per pixel: 8 bits each for red, green, blue, and alpha.
We also indicate that we intend to use the texture for sampling.
To put pixels in the texture, we use the `SetData` method.
```cs
var pixels = new Color[width * height];
// set pixel array data here
myTexture.SetData(pixels);
```
Of course, having to fill in all this data every time is kind of cumbersome, so we have some shortcut methods for common texture usages.
```cs
var my2DTexture = Texture.CreateTexture2D(GraphicsDevice, 128, 128, ColorFormat.R8G8B8A8, TextureUsageFlags.SamplerBit);
var my3DTexture = Texture.CreateTexture3D(GraphicsDevice, 128, 128, ColorFormat.R8G8B8A8, TextureUsageFlags.SamplerBit);
var myCubeTexture = Texture.CreateTextureCube(GraphicsDevice, 128, ColorFormat.R8G8B8A8, TextureUsageFlags.SamplerBit);
```
There is also a built-in PNG loader that creates a 2D R8G8B8A8 texture and fills it with pixel data.
```cs
var myPNGTexture = Texture.LoadPNG(GraphicsDevice, "coldsteel_the_hedgehog.png");
```