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