From ac3d6c77b9e2574d2d4265a4ba2a60351dc75166 Mon Sep 17 00:00:00 2001 From: Brad Davis Date: Fri, 15 Apr 2016 00:50:28 -0700 Subject: [PATCH] Add default parameter to mip loaded notifications --- libraries/gpu/src/gpu/Texture.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/gpu/src/gpu/Texture.h b/libraries/gpu/src/gpu/Texture.h index 9dde359596..49885f4f19 100755 --- a/libraries/gpu/src/gpu/Texture.h +++ b/libraries/gpu/src/gpu/Texture.h @@ -430,7 +430,7 @@ public: Stamp getSamplerStamp() const { return _samplerStamp; } // Only callable by the Backend - void notifyMipFaceGPULoaded(uint16 level, uint8 face) const { return _storage->notifyMipFaceGPULoaded(level, face); } + void notifyMipFaceGPULoaded(uint16 level, uint8 face = 0) const { return _storage->notifyMipFaceGPULoaded(level, face); } const GPUObjectPointer gpuObject {};