mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01:00
fix android/mac build error
This commit is contained in:
parent
f58400950a
commit
4e4f8866cd
2 changed files with 2 additions and 2 deletions
|
@ -148,7 +148,7 @@ void Blit::run(const RenderContextPointer& renderContext, const gpu::Framebuffer
|
|||
});
|
||||
}
|
||||
|
||||
NewFramebuffer::NewFramebuffer(gpu::Element pixelFormat = gpu::Element::COLOR_SRGBA_32) {
|
||||
NewFramebuffer::NewFramebuffer(gpu::Element pixelFormat) {
|
||||
_pixelFormat = pixelFormat;
|
||||
}
|
||||
|
||||
|
|
|
@ -88,7 +88,7 @@ public:
|
|||
using Output = gpu::FramebufferPointer;
|
||||
using JobModel = render::Job::ModelO<NewFramebuffer, Output>;
|
||||
|
||||
NewFramebuffer(gpu::Element pixelFormat);
|
||||
NewFramebuffer(gpu::Element pixelFormat = gpu::Element::COLOR_SRGBA_32);
|
||||
|
||||
void run(const render::RenderContextPointer& renderContext, Output& output);
|
||||
protected:
|
||||
|
|
Loading…
Reference in a new issue