hi everyone :
i want the equivalent and the correct vb.NET code for the following interface memeber :
virtual void STDMETHODCALLTYPE ClearRenderTargetView(
/* [annotation] */
__in ID3D10RenderTargetView *pRenderTargetView,
/* [annotation] */
__in const FLOAT ColorRGBA[ 4 ]) = 0;
REMARKS:
FLOAT is float;
this declaration is from MSDN :
void ClearRenderTargetView(
[in] ID3D10RenderTargetView *pRenderTargetView,
[in] const FLOAT ColorRGBA[4]
);
____________________________________________________________________________________________________________