Compare commits
2 Commits
f0b8419517
...
6dff7f14ce
Author | SHA1 | Date |
---|---|---|
Shaun Reed | 6dff7f14ce | |
Shaun Reed | 656c0a92ff |
|
@ -37,8 +37,8 @@ jobs:
|
||||||
tidy-checks: ''
|
tidy-checks: ''
|
||||||
# Check the entire repo for source files to tidy
|
# Check the entire repo for source files to tidy
|
||||||
files-changed-only: false
|
files-changed-only: false
|
||||||
# Ignore the build dirctory
|
# Ignore qtk build and external assimp directories
|
||||||
ignore: '.github|build'
|
ignore: '.github|build|extern/assimp/assimp'
|
||||||
# Point to compile_commands.json produced by build
|
# Point to compile_commands.json produced by build
|
||||||
database: 'build'
|
database: 'build'
|
||||||
# Use thread comments as feedback
|
# Use thread comments as feedback
|
||||||
|
|
|
@ -49,6 +49,8 @@ QOpenGLTexture * OpenGLTextureFactory::initCubeMap(const char * tile) {
|
||||||
QOpenGLTexture * OpenGLTextureFactory::initCubeMap(
|
QOpenGLTexture * OpenGLTextureFactory::initCubeMap(
|
||||||
const char * right, const char * top, const char * front, const char * left,
|
const char * right, const char * top, const char * front, const char * left,
|
||||||
const char * bottom, const char * back) {
|
const char * bottom, const char * back) {
|
||||||
|
if (false)
|
||||||
|
return
|
||||||
return initCubeMap(
|
return initCubeMap(
|
||||||
QImage(right), QImage(top), QImage(front), QImage(left), QImage(bottom),
|
QImage(right), QImage(top), QImage(front), QImage(left), QImage(bottom),
|
||||||
QImage(back));
|
QImage(back));
|
||||||
|
|
Loading…
Reference in New Issue