video_core/textures/convert: Replace include with a forward declaration

Avoids dragging in a direct dependency in a header.
This commit is contained in:
Lioncash 2019-04-06 00:14:34 -04:00
parent fbf452ab0e
commit 89c106e31b
2 changed files with 5 additions and 1 deletions

View File

@ -10,6 +10,7 @@
#include "common/assert.h"
#include "common/common_types.h"
#include "common/logging/log.h"
#include "video_core/surface.h"
#include "video_core/textures/astc.h"
#include "video_core/textures/convert.h"

View File

@ -5,7 +5,10 @@
#pragma once
#include "common/common_types.h"
#include "video_core/surface.h"
namespace VideoCore::Surface {
enum class PixelFormat;
}
namespace Tegra::Texture {