Lines Matching refs:texture_data
5736 std::vector<GLubyte> texture_data; in fillTexture() local
5739 texture_data.resize(m_texture_width * m_texture_height * 4); in fillTexture()
5749 texture_data[point_offset + 0] = color[0]; /* red */ in fillTexture()
5750 texture_data[point_offset + 1] = color[1]; /* green */ in fillTexture()
5751 texture_data[point_offset + 2] = color[2]; /* blue */ in fillTexture()
5752 texture_data[point_offset + 3] = color[3]; /* alpha */ in fillTexture()
5756 texture.update(m_texture_width, m_texture_height, GL_RGBA, GL_UNSIGNED_BYTE, &texture_data[0]); in fillTexture()
5919 std::vector<GLuint> texture_data; in fillTexture() local
5922 texture_data.resize(m_texture_width * m_texture_height * 4); in fillTexture()
5932 texture_data[point_offset + 0] = color[0]; /* red */ in fillTexture()
5933 texture_data[point_offset + 1] = color[1]; /* green */ in fillTexture()
5934 texture_data[point_offset + 2] = color[2]; /* blue */ in fillTexture()
5935 texture_data[point_offset + 3] = color[3]; /* alpha */ in fillTexture()
5939 …texture.update(m_texture_width, m_texture_height, GL_RGBA_INTEGER, GL_UNSIGNED_INT, &texture_data[… in fillTexture()