Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygend3d9_resource.c
Go to the documentation of this file.
00001 /* 00002 * COPYRIGHT: See COPYING in the top level directory 00003 * PROJECT: ReactOS ReactX 00004 * FILE: dll/directx/d3d9/d3d9_resource.c 00005 * PURPOSE: d3d9.dll internal resource functions 00006 * PROGRAMERS: Gregor Gullwi <gbrunmar (dot) ros (at) gmail (dot) com> 00007 */ 00008 #include "d3d9_resource.h" 00009 #include "d3d9_device.h" 00010 00011 void InitDirect3DResource9(Direct3DResource9_INT* pResource, D3DPOOL Pool, LPDIRECT3DDEVICE9_INT pBaseDevice, enum REF_TYPE RefType) 00012 { 00013 InitD3D9BaseObject(&pResource->BaseObject, RefType, (IUnknown*)&pBaseDevice->lpVtbl); 00014 00015 pResource->Pool = Pool; 00016 } Generated on Sun May 27 2012 04:21:17 for ReactOS by
1.7.6.1
|