- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
public static Texture loadTextureFromIntBuffer(int[] data, int width,
int height)
{
// Convert:
int numPixels = width * height;
byte[] dataBytes = new byte[numPixels * 4];
...
// Cleans variables
dataBytes = null;
data = null;
...
}
Комментарии (0) RSS
Добавить комментарий