1 | ///////////////////////////////////////////////////////////////////////////////
|
---|
2 | //
|
---|
3 | // ## ######
|
---|
4 | // ###### ###
|
---|
5 | // ## ############### Shark 3D Engine (www.shark3d.com)
|
---|
6 | // ########## # # #
|
---|
7 | // ######## Copyright (c) 1996-2006 Spinor GmbH.
|
---|
8 | // ######### # # # All rights reserved.
|
---|
9 | // ## ##########
|
---|
10 | // ##
|
---|
11 | //
|
---|
12 | ///////////////////////////////////////////////////////////////////////////////
|
---|
13 |
|
---|
14 | //@cpp
|
---|
15 | #ifndef S3D_DRV_D3D9_H
|
---|
16 | #define S3D_DRV_D3D9_H
|
---|
17 |
|
---|
18 | #include "drv_d3d9_public.h"
|
---|
19 | #include "drv/interf/drv_gfx.h"
|
---|
20 | #include "comp/core/comp_module.h"
|
---|
21 | #include "comp/core/comp_resmgr.h"
|
---|
22 |
|
---|
23 | ///////////////////////////////////////////////////////////////////////////////
|
---|
24 |
|
---|
25 | //@
|
---|
26 | S3D_DRV_D3D9_PUBLIC_DECL
|
---|
27 | s3d_CCompSupplPtr s3d_DrvD3d9CompSupplCreate();
|
---|
28 |
|
---|
29 | //@
|
---|
30 | S3D_DRV_D3D9_PUBLIC_DECL
|
---|
31 | s3d_CDrvGfxEngPtr s3d_DrvD3d9GfxEngCreate(
|
---|
32 | s3d_CUtilMsgHandler *MsgHandler, s3d_CUtilStr_cr Info,
|
---|
33 | bool Bare, s3d_CCompSuppl *CompSuppl,
|
---|
34 | s3d_CUtilAtomMgr *AtomMgr, s3d_CUtilMemPool *MemPool,
|
---|
35 | s3d_CUtilStorageMgr *StorageMgr, s3d_CCompResMgr *ResMgr,
|
---|
36 | s3d_CCompSuppl *UnivProgSuppl,
|
---|
37 | s3d_CCompSuppl *UnivProgGivenSuppl,
|
---|
38 | s3d_CUtilSnkChunk *DefaultOutParam);
|
---|
39 |
|
---|
40 | ///////////////////////////////////////////////////////////////////////////////
|
---|
41 |
|
---|
42 | S3D_COMP_MODULE_ENTRANCE_DECL_STD(s3d_ModuleEntrance_drv_d3d9);
|
---|
43 |
|
---|
44 | ///////////////////////////////////////////////////////////////////////////////
|
---|
45 |
|
---|
46 | #endif
|
---|