video_core/engines: Remove unnecessary includes

Removes a few unnecessary dependencies on core-related machinery, such
as the core.h and memory.h, which reduces the amount of rebuilding
necessary if those files change.

This also uncovered some indirect dependencies within other source
files. This also fixes those.
This commit is contained in:
Lioncash 2019-03-05 20:25:01 -05:00
parent 999a48c856
commit f596ce7887
10 changed files with 11 additions and 11 deletions

View file

@ -5,8 +5,7 @@
#pragma once
#include <array>
#include "common/assert.h"
#include "common/bit_field.h"
#include <cstddef>
#include "common/common_funcs.h"
#include "common/common_types.h"
#include "video_core/gpu.h"