17 lines
376 B
C++
17 lines
376 B
C++
#include "StdAfx.h"
|
|
#include "GrpVertexBufferStatic.h"
|
|
|
|
bool CStaticVertexBuffer::Create(int vtxCount, DWORD fvf, bool /*isManaged*/)
|
|
{
|
|
return CGraphicVertexBuffer::Create(vtxCount, fvf, D3DUSAGE_WRITEONLY, D3DPOOL_MANAGED);
|
|
}
|
|
|
|
CStaticVertexBuffer::CStaticVertexBuffer()
|
|
{
|
|
}
|
|
|
|
CStaticVertexBuffer::~CStaticVertexBuffer()
|
|
{
|
|
}
|
|
//martysama0134's 2e58d0b8baeb072acdf3afc4a5d1999f
|