mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-12-15 06:51:36 +00:00
24 lines
519 B
C++
24 lines
519 B
C++
#pragma once
|
|
|
|
class FCanvasTexture;
|
|
// This list keeps track of the cameras that draw into canvas textures.
|
|
struct FCanvasTextureEntry
|
|
{
|
|
TObjPtr<AActor*> Viewpoint;
|
|
FCanvasTexture *Texture;
|
|
FTextureID PicNum;
|
|
double FOV;
|
|
};
|
|
|
|
|
|
struct FCanvasTextureInfo
|
|
{
|
|
TArray<FCanvasTextureEntry> List;
|
|
|
|
void Add (AActor *viewpoint, FTextureID picnum, double fov);
|
|
void UpdateAll (std::function<void(AActor *, FCanvasTexture *, double fov)> callback);
|
|
void EmptyList ();
|
|
void Serialize(FSerializer &arc);
|
|
void Mark();
|
|
|
|
};
|