move RenderUtils.cpp/h to libraries

This commit is contained in:
ZappoMan 2014-12-15 17:35:26 -08:00
parent e53833b306
commit 37abe8e89c
5 changed files with 6 additions and 5 deletions

View file

@ -18,10 +18,10 @@
#include <PathUtils.h>
#include <ProgramObject.h>
#include <RenderUtil.h>
#include <SharedUtil.h>
#include "Application.h"
#include "RenderUtil.h"
#include "AmbientOcclusionEffect.h"
#include "renderer/GlowEffect.h"

View file

@ -15,10 +15,10 @@
#include <QOpenGLFramebufferObject>
#include <PathUtils.h>
#include <RenderUtil.h>
#include "Application.h"
#include "DeferredLightingEffect.h"
#include "RenderUtil.h"
#include "renderer/GlowEffect.h"
void DeferredLightingEffect::init() {

View file

@ -18,10 +18,11 @@
#include <PathUtils.h>
#include <PerfStat.h>
#include <ProgramObject.h>
#include <RenderUtil.h>
#include <TextureCache.h>
#include "Application.h"
#include "Menu.h"
#include "GlowEffect.h"
#include "RenderUtil.h"
GlowEffect::GlowEffect()
: _initialized(false),

View file

@ -9,7 +9,7 @@
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
//
#include "InterfaceConfig.h"
#include <gpu/GPUConfig.h>
#include "RenderUtil.h"
void renderFullscreenQuad(float sMin, float sMax, float tMin, float tMax) {