14 lines
271 B
C++
14 lines
271 B
C++
#include "RenderPCH.h"
|
|
#include "RendElement.h"
|
|
|
|
void CREOcclusionQuery::mfPrepare()
|
|
{
|
|
gRenDev->EF_CheckOverflow(0, 0, this);
|
|
|
|
gRenDev->m_RP.m_pRE = this;
|
|
gRenDev->m_RP.m_RendNumIndices = 0;
|
|
gRenDev->m_RP.m_FirstVertex = 0;
|
|
gRenDev->m_RP.m_RendNumVerts = 4;
|
|
}
|
|
|