mirror of
https://github.com/overte-org/overte.git
synced 2025-08-06 04:23:56 +02:00
move RenderUtils.cpp/h to libraries
This commit is contained in:
parent
e53833b306
commit
37abe8e89c
5 changed files with 6 additions and 5 deletions
|
@ -18,10 +18,10 @@
|
||||||
|
|
||||||
#include <PathUtils.h>
|
#include <PathUtils.h>
|
||||||
#include <ProgramObject.h>
|
#include <ProgramObject.h>
|
||||||
|
#include <RenderUtil.h>
|
||||||
#include <SharedUtil.h>
|
#include <SharedUtil.h>
|
||||||
|
|
||||||
#include "Application.h"
|
#include "Application.h"
|
||||||
#include "RenderUtil.h"
|
|
||||||
|
|
||||||
#include "AmbientOcclusionEffect.h"
|
#include "AmbientOcclusionEffect.h"
|
||||||
#include "renderer/GlowEffect.h"
|
#include "renderer/GlowEffect.h"
|
||||||
|
|
|
@ -15,10 +15,10 @@
|
||||||
#include <QOpenGLFramebufferObject>
|
#include <QOpenGLFramebufferObject>
|
||||||
|
|
||||||
#include <PathUtils.h>
|
#include <PathUtils.h>
|
||||||
|
#include <RenderUtil.h>
|
||||||
|
|
||||||
#include "Application.h"
|
#include "Application.h"
|
||||||
#include "DeferredLightingEffect.h"
|
#include "DeferredLightingEffect.h"
|
||||||
#include "RenderUtil.h"
|
|
||||||
#include "renderer/GlowEffect.h"
|
#include "renderer/GlowEffect.h"
|
||||||
|
|
||||||
void DeferredLightingEffect::init() {
|
void DeferredLightingEffect::init() {
|
||||||
|
|
|
@ -18,10 +18,11 @@
|
||||||
#include <PathUtils.h>
|
#include <PathUtils.h>
|
||||||
#include <PerfStat.h>
|
#include <PerfStat.h>
|
||||||
#include <ProgramObject.h>
|
#include <ProgramObject.h>
|
||||||
|
#include <RenderUtil.h>
|
||||||
|
#include <TextureCache.h>
|
||||||
|
|
||||||
#include "Application.h"
|
#include "Menu.h"
|
||||||
#include "GlowEffect.h"
|
#include "GlowEffect.h"
|
||||||
#include "RenderUtil.h"
|
|
||||||
|
|
||||||
GlowEffect::GlowEffect()
|
GlowEffect::GlowEffect()
|
||||||
: _initialized(false),
|
: _initialized(false),
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
// 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"
|
#include "RenderUtil.h"
|
||||||
|
|
||||||
void renderFullscreenQuad(float sMin, float sMax, float tMin, float tMax) {
|
void renderFullscreenQuad(float sMin, float sMax, float tMin, float tMax) {
|
Loading…
Reference in a new issue