mirror of
https://github.com/overte-org/overte.git
synced 2025-04-25 12:53:03 +02:00
Fixed warning on Mac and Ubuntu
This commit is contained in:
parent
39604363ea
commit
bccd6df57c
1 changed files with 2 additions and 2 deletions
|
@ -137,8 +137,8 @@ void BlurParams::setLinearDepthPosFar(float farPosDepth) {
|
|||
|
||||
|
||||
BlurInOutResource::BlurInOutResource(bool generateOutputFramebuffer, unsigned int downsampleFactor) :
|
||||
_generateOutputFramebuffer(generateOutputFramebuffer),
|
||||
_downsampleFactor(downsampleFactor) {
|
||||
_downsampleFactor(downsampleFactor),
|
||||
_generateOutputFramebuffer(generateOutputFramebuffer) {
|
||||
assert(downsampleFactor > 0);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue