mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-11 04:35:05 +01:00
15 lines
494 B
C++
15 lines
494 B
C++
// Copyright 2019 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include "core/frontend/image_interface.h"
|
|
|
|
class LodePNGImageInterface final : public Frontend::ImageInterface {
|
|
public:
|
|
bool DecodePNG(std::vector<u8>& dst, u32& width, u32& height, const std::string& path) override;
|
|
bool EncodePNG(const std::string& path, const std::vector<u8>& src, u32 width,
|
|
u32 height) override;
|
|
};
|