parent
656c0a92ff
commit
0540cf11fd
|
@ -1,4 +1,4 @@
|
||||||
name: Build Test
|
name: All Builds
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
|
@ -1,4 +1,4 @@
|
||||||
name: Clang Tidy Format
|
name: Linting
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
|
@ -72,9 +72,8 @@ QOpenGLTexture * OpenGLTextureFactory::initCubeMap(
|
||||||
int i = 0;
|
int i = 0;
|
||||||
for(const auto & face : faces) {
|
for(const auto & face : faces) {
|
||||||
QImage faceImage(faceTextures[i]);
|
QImage faceImage(faceTextures[i]);
|
||||||
if(faceImage.isNull()) {
|
if(faceImage.isNull())
|
||||||
qDebug() << "Error loading cube map image\n";
|
qDebug() << "Error loading cube map image\n";
|
||||||
}
|
|
||||||
faceImage = faceImage.convertToFormat(QImage::Format_RGBA8888);
|
faceImage = faceImage.convertToFormat(QImage::Format_RGBA8888);
|
||||||
|
|
||||||
// On the first iteration, set format and allocate texture storage
|
// On the first iteration, set format and allocate texture storage
|
||||||
|
|
Loading…
Reference in New Issue