From 914464811a2db81913fd1f9fb7359940b0e7954f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emmanuel=20Beno=C3=AEt?= Date: Wed, 15 Nov 2017 20:36:08 +0100 Subject: [PATCH] Refactoring - Ops header renamed --- control.cc | 2 +- demo.hh | 11 +---------- opcomp.cc | 2 +- ops.cc | 2 +- control.hh => ops.hh | 0 parsercheck.cc | 2 +- 6 files changed, 5 insertions(+), 14 deletions(-) rename control.hh => ops.hh (100%) diff --git a/control.cc b/control.cc index 3a354fb..f5916c3 100644 --- a/control.cc +++ b/control.cc @@ -1,5 +1,5 @@ #include "externals.hh" -#include "control.hh" +#include "ops.hh" #include "globals.hh" #include "sync.hh" diff --git a/demo.hh b/demo.hh index 4e4d2bf..b0e2e20 100644 --- a/demo.hh +++ b/demo.hh @@ -1,15 +1,6 @@ #pragma once -#if 0 -#include "raymarcher.hh" -#include "dof.hh" -#include "bloom.hh" -#include "combine.hh" -#include "fxaa.hh" -#include "profiling.hh" -#include "sync.hh" -#endif -#include "control.hh" +#include "opcomp.hh" struct T_Demo diff --git a/opcomp.cc b/opcomp.cc index 7074796..7d02c3a 100644 --- a/opcomp.cc +++ b/opcomp.cc @@ -1,5 +1,5 @@ #include "externals.hh" -#include "control.hh" +#include "ops.hh" #include "opcomp.hh" #include diff --git a/ops.cc b/ops.cc index 60919b6..3276129 100644 --- a/ops.cc +++ b/ops.cc @@ -1,5 +1,5 @@ #include "externals.hh" -#include "control.hh" +#include "ops.hh" #include "globals.hh" #include "profiling.hh" #include "rendertarget.hh" diff --git a/control.hh b/ops.hh similarity index 100% rename from control.hh rename to ops.hh diff --git a/parsercheck.cc b/parsercheck.cc index 9469b53..3da315a 100644 --- a/parsercheck.cc +++ b/parsercheck.cc @@ -1,6 +1,6 @@ #include "externals.hh" #include "opast.hh" -#include "control.hh" +#include "ops.hh" #include "opcomp.hh" #include #include