VideoCommon: add cubemap as a sampler target for shaders, add cubemap as a valid texture asset

This commit is contained in:
iwubcode
2023-09-05 21:11:19 -05:00
parent 9419d92446
commit 589834f562
4 changed files with 17 additions and 7 deletions

View File

@ -28,7 +28,8 @@ struct TextureData
{
Type_Undefined,
Type_Texture2D,
Type_Max = Type_Texture2D
Type_TextureCube,
Type_Max = Type_TextureCube
};
Type m_type;
CustomTextureData m_data;