mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
16 lines
289 B
C++
16 lines
289 B
C++
#include "GfxBase/RenderCaps.h"
|
|
#include "FastLog.h"
|
|
|
|
namespace RBX {
|
|
|
|
RenderCaps::RenderCaps(std::string gfxCardName, size_t vidMemSize )
|
|
: gfxCardName(gfxCardName)
|
|
, vidMemSize(vidMemSize)
|
|
, texturePowerOf2Only(false)
|
|
, supportsGBuffer(false)
|
|
, skinningBoneCount(0)
|
|
{
|
|
}
|
|
|
|
}
|