port from perforce

This commit is contained in:
2026-04-18 22:31:51 +02:00
commit 8d0ab5b7cc
8409 changed files with 3972376 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#pragma once
#include "Resource.h"
struct ITexture;
struct IRenderTargetBase;
struct __declspec(novtable) IRenderTargetTexture
{
virtual void SetTextureParameters(uint32 argWidth, uint32 argHeight, DataFormat::Enumeration argFormat, uint32 argMultiSampleCount = 1, uint32 argMultiSampleQuality = 0) = 0;
virtual void Resize(int argWidth, int argHeight) = 0;
virtual ITexture& get_TextureResource() const = 0;
virtual IRenderTargetBase& get_Base() = 0;
};