gl_buffer_cache: Remove unnecessary includes

This commit is contained in:
Lioncash 2018-09-06 14:57:40 -04:00
parent 68296d9474
commit 14230fe2af
2 changed files with 4 additions and 2 deletions

View File

@ -2,8 +2,10 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include <cstring>
#include <memory>
#include "common/alignment.h"
#include "common/assert.h"
#include "core/core.h"
#include "core/memory.h"
#include "video_core/renderer_opengl/gl_buffer_cache.h"

View File

@ -4,8 +4,8 @@
#pragma once
#include <cstddef>
#include <memory>
#include <unordered_map>
#include "common/common_types.h"
#include "video_core/rasterizer_cache.h"