mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-01 19:31:09 +01:00
18 lines
357 B
C++
18 lines
357 B
C++
// Copyright 2013 Dolphin Emulator Project
|
|
// Licensed under GPLv2
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include "Common.h"
|
|
#include "TextureDecoder.h"
|
|
#include "VideoCommon.h"
|
|
|
|
namespace TextureConversionShader
|
|
{
|
|
u16 GetEncodedSampleCount(u32 format);
|
|
|
|
const char *GenerateEncodingShader(u32 format, API_TYPE ApiType = API_OPENGL);
|
|
|
|
}
|