LeviLamina
Loading...
Searching...
No Matches
IImageCache.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
8namespace cg { class ImageBuffer; }
9// clang-format on
10
11class IImageCache {
12public:
13 // virtual functions
14 // NOLINTBEGIN
15 virtual ~IImageCache() = default;
16
17 virtual ::cg::ImageBuffer* getCachedImage(::ResourceLocation const& resourceLocation) = 0;
18
19 virtual ::cg::ImageBuffer*
20 insertImageIntoCache(::ResourceLocation const& resourceLocation, ::cg::ImageBuffer&& imageBuffer) = 0;
21 // NOLINTEND
22
23public:
24 // virtual function thunks
25 // NOLINTBEGIN
26
27 // NOLINTEND
28};
Definition IImageCache.h:5
Definition ResourceLocation.h:15
Definition ImageBuffer.h:16