Add default parameter to mip loaded notifications

This commit is contained in:
Brad Davis 2016-04-15 00:50:28 -07:00
parent c35d81260d
commit ac3d6c77b9

View file

@ -430,7 +430,7 @@ public:
Stamp getSamplerStamp() const { return _samplerStamp; } Stamp getSamplerStamp() const { return _samplerStamp; }
// Only callable by the Backend // 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 {}; const GPUObjectPointer gpuObject {};