Common: Move GL classes to subdirectory

This commit is contained in:
Connor McLaughlin
2019-11-03 15:22:37 +10:00
parent 47849465d8
commit d68f7085d6
13 changed files with 49 additions and 32 deletions

View File

@ -1,7 +1,7 @@
#pragma once
#include "common/gl_program.h"
#include "common/gl_stream_buffer.h"
#include "common/gl_texture.h"
#include "common/gl/program.h"
#include "common/gl/stream_buffer.h"
#include "common/gl/texture.h"
#include "glad.h"
#include "gpu_hw.h"
#include <array>

View File

@ -1,7 +1,7 @@
#include "gpu_sw.h"
#include "YBaseLib/Log.h"
#include "YBaseLib/Timer.h"
#include "common/gl_texture.h"
#include "common/gl/texture.h"
#include "host_interface.h"
#include "system.h"
#include <algorithm>

View File

@ -1,5 +1,5 @@
#pragma once
#include "common/gl_texture.h"
#include "common/gl/texture.h"
#include "gpu.h"
#include <array>
#include <memory>