3
0
Fork 0
mirror of https://github.com/lubosz/overte.git synced 2025-04-27 21:55:28 +02:00

FIx warnings

This commit is contained in:
samcake 2016-07-19 13:24:03 -07:00
parent 7f169b8e4f
commit 8f663f20e0
2 changed files with 1 additions and 4 deletions
libraries
render-utils/src
render/src/render

View file

@ -379,7 +379,6 @@ void DebugDeferredBuffer::run(const SceneContextPointer& sceneContext, const Ren
auto& deferredFramebuffer = inputs.get0();
auto& linearDepthTarget = inputs.get1();
auto& surfaceGeometryFramebuffer = inputs.get2();
auto& diffusedCurvatureFramebuffer = inputs.get3();
gpu::doInBatch(args->_context, [&](gpu::Batch& batch) {
batch.enableStereo(false);

View file

@ -149,13 +149,11 @@ public:
gpu::PipelinePointer getBlurHPipeline();
protected:
BlurParamsPointer _parameters;
gpu::PipelinePointer _blurVPipeline;
gpu::PipelinePointer _blurHPipeline;
BlurInOutResource _inOutResources;
BlurParamsPointer _parameters;
};
}