gpt4 book ai didi

c++ - OpenGL 纹理格式,为 OpenGL 创建图像/纹理数据

转载 作者:搜寻专家 更新时间:2023-10-31 00:08:48 30 4
gpt4 key购买 nike

好的,所以我需要创建自己的纹理/图像数据,然后将其显示到 OpenGL 中的四边形上。我有四边形工作,我可以用我自己的纹理加载器在上面显示一个 TGA 文件,它完美地映射到四边形。

但是我如何创建自己的“自制图像”,即每个像素 1000x1000 和 3 个 channel (RGB 值)?纹理数组的格式是什么,例如如何将像素 (100,100) 设置为黑色?

这就是我对全白图像/纹理的想象:

#DEFINE SCREEN_WIDTH 1000
#DEFINE SCREEN_HEIGHT 1000

unsigned int* texdata = new unsigned int[SCREEN_HEIGHT * SCREEN_WIDTH * 3];
for(int i=0; i<SCREEN_HEIGHT * SCREEN_WIDTH * 3; i++)
texdata[i] = 255;

GLuint t = 0;
glEnable(GL_TEXTURE_2D);
glGenTextures( 1, &t );
glBindTexture(GL_TEXTURE_2D, t);

// Set parameters to determine how the texture is resized
glTexParameteri ( GL_TEXTURE_2D , GL_TEXTURE_MIN_FILTER , GL_LINEAR_MIPMAP_LINEAR );
glTexParameteri ( GL_TEXTURE_2D , GL_TEXTURE_MAG_FILTER , GL_LINEAR );
// Set parameters to determine how the texture wraps at edges
glTexParameteri ( GL_TEXTURE_2D , GL_TEXTURE_WRAP_S , GL_REPEAT );
glTexParameteri ( GL_TEXTURE_2D , GL_TEXTURE_WRAP_T , GL_REPEAT );
// Read the texture data from file and upload it to the GPU
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, SCREEN_WIDTH, SCREEN_HEIGHT, 0,
GL_RGB, GL_UNSIGNED_BYTE, texdata);
glGenerateMipmap(GL_TEXTURE_2D);

编辑:以下答案是正确的,但我还发现 OpenGL 不处理我使用的普通整数,但它与 uint8_t 一起工作正常。我认为这是因为我在上传到 GPU 时使用了 GL_RGB 和 GL_UNSIGNED_BYTE(只有 8 位,普通 int 不是 8 位)标志。

最佳答案

But how do I create my own "homemade image", that is 1000x1000 and 3 channels (RGB values) for each pixel?

std::vector< unsigned char > image( 1000 * 1000 * 3 /* bytes per pixel */ );

What is the format of the texture array

红色字节,然后是绿色字节,然后是蓝色字节。重复。

how do I for example set pixel (100,100) to black?

unsigned int width = 1000;
unsigned int x = 100;
unsigned int y = 100;
unsigned int location = ( x + ( y * width ) ) * 3;
image[ location + 0 ] = 0; // R
image[ location + 1 ] = 0; // G
image[ location + 2 ] = 0; // B

上传方式:

// the rows in the image array don't have any padding
// so set GL_UNPACK_ALIGNMENT to 1 (instead of the default of 4)
// https://www.khronos.org/opengl/wiki/Pixel_Transfer#Pixel_layout
glPixelStorei( GL_UNPACK_ALIGNMENT, 1 );
glTexImage2D
(
GL_TEXTURE_2D, 0,
GL_RGB, 1000, 1000, 0,
GL_RGB, GL_UNSIGNED_BYTE, &image[0]
);

关于c++ - OpenGL 纹理格式,为 OpenGL 创建图像/纹理数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46833380/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com