mirror of
https://github.com/libretro/RetroArch
synced 2025-04-03 10:21:31 +00:00
Start undoing C++ comments
This commit is contained in:
parent
ed061fd27b
commit
6a5ad56bc6
@ -12,9 +12,9 @@
|
|||||||
|
|
||||||
#ifndef DIRECT3D_VERSION
|
#ifndef DIRECT3D_VERSION
|
||||||
#define DIRECT3D_VERSION 0x0900
|
#define DIRECT3D_VERSION 0x0900
|
||||||
#endif //DIRECT3D_VERSION
|
#endif /* DIRECT3D_VERSION */
|
||||||
|
|
||||||
// include this file content only if compiling for DX9 interfaces
|
/* include this file content only if compiling for DX9 interfaces */
|
||||||
#if(DIRECT3D_VERSION >= 0x0900)
|
#if(DIRECT3D_VERSION >= 0x0900)
|
||||||
|
|
||||||
|
|
||||||
@ -51,11 +51,11 @@
|
|||||||
DEFINE_GUID(IID_IDirect3D9, 0x81bdcbca, 0x64d4, 0x426d, 0xae, 0x8d, 0xad, 0x1, 0x47, 0xf4, 0x27, 0x5c);
|
DEFINE_GUID(IID_IDirect3D9, 0x81bdcbca, 0x64d4, 0x426d, 0xae, 0x8d, 0xad, 0x1, 0x47, 0xf4, 0x27, 0x5c);
|
||||||
|
|
||||||
/* IID_IDirect3DDevice9 */
|
/* IID_IDirect3DDevice9 */
|
||||||
// {D0223B96-BF7A-43fd-92BD-A43B0D82B9EB} */
|
/* {D0223B96-BF7A-43fd-92BD-A43B0D82B9EB} */
|
||||||
DEFINE_GUID(IID_IDirect3DDevice9, 0xd0223b96, 0xbf7a, 0x43fd, 0x92, 0xbd, 0xa4, 0x3b, 0xd, 0x82, 0xb9, 0xeb);
|
DEFINE_GUID(IID_IDirect3DDevice9, 0xd0223b96, 0xbf7a, 0x43fd, 0x92, 0xbd, 0xa4, 0x3b, 0xd, 0x82, 0xb9, 0xeb);
|
||||||
|
|
||||||
/* IID_IDirect3DResource9 */
|
/* IID_IDirect3DResource9 */
|
||||||
// {05EEC05D-8F7D-4362-B999-D1BAF357C704}
|
/* {05EEC05D-8F7D-4362-B999-D1BAF357C704} */
|
||||||
DEFINE_GUID(IID_IDirect3DResource9, 0x5eec05d, 0x8f7d, 0x4362, 0xb9, 0x99, 0xd1, 0xba, 0xf3, 0x57, 0xc7, 0x4);
|
DEFINE_GUID(IID_IDirect3DResource9, 0x5eec05d, 0x8f7d, 0x4362, 0xb9, 0x99, 0xd1, 0xba, 0xf3, 0x57, 0xc7, 0x4);
|
||||||
|
|
||||||
/* IID_IDirect3DBaseTexture9 */
|
/* IID_IDirect3DBaseTexture9 */
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
//////////////////////////////////////////////////////////////////////////////
|
/*
|
||||||
//
|
*
|
||||||
// Copyright (C) Microsoft Corporation. All Rights Reserved.
|
* Copyright (C) Microsoft Corporation. All Rights Reserved.
|
||||||
//
|
*
|
||||||
// File: d3dx9.h
|
* File: d3dx9.h
|
||||||
// Content: D3DX utility library
|
* Content: D3DX utility library
|
||||||
//
|
*
|
||||||
//////////////////////////////////////////////////////////////////////////////
|
*/
|
||||||
|
|
||||||
#ifdef __D3DX_INTERNAL__
|
#ifdef __D3DX_INTERNAL__
|
||||||
#error Incorrect D3DX header used
|
#error Incorrect D3DX header used
|
||||||
@ -14,8 +14,7 @@
|
|||||||
#ifndef __D3DX9_H__
|
#ifndef __D3DX9_H__
|
||||||
#define __D3DX9_H__
|
#define __D3DX9_H__
|
||||||
|
|
||||||
|
/* Defines */
|
||||||
// Defines
|
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
|
|
||||||
#define D3DX_DEFAULT ((UINT) -1)
|
#define D3DX_DEFAULT ((UINT) -1)
|
||||||
@ -40,9 +39,7 @@
|
|||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* Includes */
|
||||||
|
|
||||||
// Includes
|
|
||||||
#include "d3d9.h"
|
#include "d3d9.h"
|
||||||
#include "d3dx9math.h"
|
#include "d3dx9math.h"
|
||||||
#include "d3dx9core.h"
|
#include "d3dx9core.h"
|
||||||
@ -55,9 +52,7 @@
|
|||||||
#include "d3dx9shape.h"
|
#include "d3dx9shape.h"
|
||||||
#include "d3dx9anim.h"
|
#include "d3dx9anim.h"
|
||||||
|
|
||||||
|
/* Errors */
|
||||||
|
|
||||||
// Errors
|
|
||||||
#define _FACDD 0x876
|
#define _FACDD 0x876
|
||||||
#define MAKE_DDHRESULT( code ) MAKE_HRESULT( 1, _FACDD, code )
|
#define MAKE_DDHRESULT( code ) MAKE_HRESULT( 1, _FACDD, code )
|
||||||
|
|
||||||
@ -74,4 +69,4 @@ enum _D3DXERR {
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
#endif //__D3DX9_H__
|
#endif /*__D3DX9_H__ */
|
||||||
|
@ -1,28 +1,27 @@
|
|||||||
//////////////////////////////////////////////////////////////////////////////
|
/*
|
||||||
//
|
*
|
||||||
// Copyright (C) Microsoft Corporation. All Rights Reserved.
|
* Copyright (C) Microsoft Corporation. All Rights Reserved.
|
||||||
//
|
*
|
||||||
// File: d3dx9anim.h
|
* File: d3dx9anim.h
|
||||||
// Content: D3DX mesh types and functions
|
* Content: D3DX mesh types and functions
|
||||||
//
|
*/
|
||||||
//////////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
#ifndef __D3DX9ANIM_H__
|
#ifndef __D3DX9ANIM_H__
|
||||||
#define __D3DX9ANIM_H__
|
#define __D3DX9ANIM_H__
|
||||||
|
|
||||||
// {698CFB3F-9289-4d95-9A57-33A94B5A65F9}
|
/* {698CFB3F-9289-4d95-9A57-33A94B5A65F9} */
|
||||||
DEFINE_GUID(IID_ID3DXAnimationSet,
|
DEFINE_GUID(IID_ID3DXAnimationSet,
|
||||||
0x698cfb3f, 0x9289, 0x4d95, 0x9a, 0x57, 0x33, 0xa9, 0x4b, 0x5a, 0x65, 0xf9);
|
0x698cfb3f, 0x9289, 0x4d95, 0x9a, 0x57, 0x33, 0xa9, 0x4b, 0x5a, 0x65, 0xf9);
|
||||||
|
|
||||||
// {FA4E8E3A-9786-407d-8B4C-5995893764AF}
|
/* {FA4E8E3A-9786-407d-8B4C-5995893764AF} */
|
||||||
DEFINE_GUID(IID_ID3DXKeyframedAnimationSet,
|
DEFINE_GUID(IID_ID3DXKeyframedAnimationSet,
|
||||||
0xfa4e8e3a, 0x9786, 0x407d, 0x8b, 0x4c, 0x59, 0x95, 0x89, 0x37, 0x64, 0xaf);
|
0xfa4e8e3a, 0x9786, 0x407d, 0x8b, 0x4c, 0x59, 0x95, 0x89, 0x37, 0x64, 0xaf);
|
||||||
|
|
||||||
// {6CC2480D-3808-4739-9F88-DE49FACD8D4C}
|
/* {6CC2480D-3808-4739-9F88-DE49FACD8D4C} */
|
||||||
DEFINE_GUID(IID_ID3DXCompressedAnimationSet,
|
DEFINE_GUID(IID_ID3DXCompressedAnimationSet,
|
||||||
0x6cc2480d, 0x3808, 0x4739, 0x9f, 0x88, 0xde, 0x49, 0xfa, 0xcd, 0x8d, 0x4c);
|
0x6cc2480d, 0x3808, 0x4739, 0x9f, 0x88, 0xde, 0x49, 0xfa, 0xcd, 0x8d, 0x4c);
|
||||||
|
|
||||||
// {AC8948EC-F86D-43e2-96DE-31FC35F96D9E}
|
/* {AC8948EC-F86D-43e2-96DE-31FC35F96D9E} */
|
||||||
DEFINE_GUID(IID_ID3DXAnimationController,
|
DEFINE_GUID(IID_ID3DXAnimationController,
|
||||||
0xac8948ec, 0xf86d, 0x43e2, 0x96, 0xde, 0x31, 0xfc, 0x35, 0xf9, 0x6d, 0x9e);
|
0xac8948ec, 0xf86d, 0x43e2, 0x96, 0xde, 0x31, 0xfc, 0x35, 0xf9, 0x6d, 0x9e);
|
||||||
|
|
||||||
@ -134,20 +133,20 @@ DECLARE_INTERFACE(ID3DXSaveUserData)
|
|||||||
LPD3DXFILESAVEOBJECT pXofSave,
|
LPD3DXFILESAVEOBJECT pXofSave,
|
||||||
LPD3DXFILESAVEDATA pXofMeshData) PURE;
|
LPD3DXFILESAVEDATA pXofMeshData) PURE;
|
||||||
|
|
||||||
// NOTE: this is called once per Save. All top level objects should be added using the
|
/* NOTE: this is called once per Save. All top level objects should be added using the
|
||||||
// provided interface. One call adds objects before the frame hierarchy, the other after
|
* provided interface. One call adds objects before the frame hierarchy, the other after */
|
||||||
STDMETHOD(AddTopLevelDataObjectsPre)(LPD3DXFILESAVEOBJECT pXofSave) PURE;
|
STDMETHOD(AddTopLevelDataObjectsPre)(LPD3DXFILESAVEOBJECT pXofSave) PURE;
|
||||||
STDMETHOD(AddTopLevelDataObjectsPost)(LPD3DXFILESAVEOBJECT pXofSave) PURE;
|
STDMETHOD(AddTopLevelDataObjectsPost)(LPD3DXFILESAVEOBJECT pXofSave) PURE;
|
||||||
|
|
||||||
// callbacks for the user to register and then save templates to the XFile
|
/* callbacks for the user to register and then save templates to the XFile */
|
||||||
STDMETHOD(RegisterTemplates)(LPD3DXFILE pXFileApi) PURE;
|
STDMETHOD(RegisterTemplates)(LPD3DXFILE pXFileApi) PURE;
|
||||||
STDMETHOD(SaveTemplates)(LPD3DXFILESAVEOBJECT pXofSave) PURE;
|
STDMETHOD(SaveTemplates)(LPD3DXFILESAVEOBJECT pXofSave) PURE;
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef enum _D3DXCALLBACK_SEARCH_FLAGS
|
typedef enum _D3DXCALLBACK_SEARCH_FLAGS
|
||||||
{
|
{
|
||||||
D3DXCALLBACK_SEARCH_EXCLUDING_INITIAL_POSITION = 0x01, // exclude callbacks at the initial position from the search
|
D3DXCALLBACK_SEARCH_EXCLUDING_INITIAL_POSITION = 0x01, /* exclude callbacks at the initial position from the search */
|
||||||
D3DXCALLBACK_SEARCH_BEHIND_INITIAL_POSITION = 0x02, // reverse the callback search direction
|
D3DXCALLBACK_SEARCH_BEHIND_INITIAL_POSITION = 0x02, /* reverse the callback search direction */
|
||||||
|
|
||||||
D3DXCALLBACK_SEARCH_FORCE_DWORD = 0x7fffffff,
|
D3DXCALLBACK_SEARCH_FORCE_DWORD = 0x7fffffff,
|
||||||
} D3DXCALLBACK_SEARCH_FLAGS;
|
} D3DXCALLBACK_SEARCH_FLAGS;
|
||||||
@ -160,37 +159,37 @@ typedef interface ID3DXAnimationSet *LPD3DXANIMATIONSET;
|
|||||||
|
|
||||||
DECLARE_INTERFACE_(ID3DXAnimationSet, IUnknown)
|
DECLARE_INTERFACE_(ID3DXAnimationSet, IUnknown)
|
||||||
{
|
{
|
||||||
// IUnknown
|
/* IUnknown */
|
||||||
STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE;
|
STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE;
|
||||||
STDMETHOD_(ULONG, AddRef)(THIS) PURE;
|
STDMETHOD_(ULONG, AddRef)(THIS) PURE;
|
||||||
STDMETHOD_(ULONG, Release)(THIS) PURE;
|
STDMETHOD_(ULONG, Release)(THIS) PURE;
|
||||||
|
|
||||||
// Name
|
/* Name */
|
||||||
STDMETHOD_(LPCSTR, GetName)(THIS) PURE;
|
STDMETHOD_(LPCSTR, GetName)(THIS) PURE;
|
||||||
|
|
||||||
// Period
|
/* Period */
|
||||||
STDMETHOD_(DOUBLE, GetPeriod)(THIS) PURE;
|
STDMETHOD_(DOUBLE, GetPeriod)(THIS) PURE;
|
||||||
STDMETHOD_(DOUBLE, GetPeriodicPosition)(THIS_ DOUBLE Position) PURE; // Maps position into animation period
|
STDMETHOD_(DOUBLE, GetPeriodicPosition)(THIS_ DOUBLE Position) PURE; /* Maps position into animation period */
|
||||||
|
|
||||||
// Animation names
|
/* Animation names */
|
||||||
STDMETHOD_(UINT, GetNumAnimations)(THIS) PURE;
|
STDMETHOD_(UINT, GetNumAnimations)(THIS) PURE;
|
||||||
STDMETHOD(GetAnimationNameByIndex)(THIS_ UINT Index, LPCSTR *ppName) PURE;
|
STDMETHOD(GetAnimationNameByIndex)(THIS_ UINT Index, LPCSTR *ppName) PURE;
|
||||||
STDMETHOD(GetAnimationIndexByName)(THIS_ LPCSTR pName, UINT *pIndex) PURE;
|
STDMETHOD(GetAnimationIndexByName)(THIS_ LPCSTR pName, UINT *pIndex) PURE;
|
||||||
|
|
||||||
// SRT
|
/* SRT */
|
||||||
STDMETHOD(GetSRT)(THIS_
|
STDMETHOD(GetSRT)(THIS_
|
||||||
DOUBLE PeriodicPosition, // Position mapped to period (use GetPeriodicPosition)
|
DOUBLE PeriodicPosition, /* Position mapped to period (use GetPeriodicPosition) */
|
||||||
UINT Animation, // Animation index
|
UINT Animation, /* Animation index */
|
||||||
D3DXVECTOR3 *pScale, // Returns the scale
|
D3DXVECTOR3 *pScale, /* Returns the scale */
|
||||||
D3DXQUATERNION *pRotation, // Returns the rotation as a quaternion
|
D3DXQUATERNION *pRotation, /* Returns the rotation as a quaternion */
|
||||||
D3DXVECTOR3 *pTranslation) PURE; // Returns the translation
|
D3DXVECTOR3 *pTranslation) PURE; /* Returns the translation */
|
||||||
|
|
||||||
// Callbacks
|
/* Callbacks */
|
||||||
STDMETHOD(GetCallback)(THIS_
|
STDMETHOD(GetCallback)(THIS_
|
||||||
DOUBLE Position, // Position from which to find callbacks
|
DOUBLE Position, /* Position from which to find callbacks */
|
||||||
DWORD Flags, // Callback search flags
|
DWORD Flags, /* Callback search flags */
|
||||||
DOUBLE *pCallbackPosition, // Returns the position of the callback
|
DOUBLE *pCallbackPosition, /* Returns the position of the callback */
|
||||||
LPVOID *ppCallbackData) PURE; // Returns the callback data pointer
|
LPVOID *ppCallbackData) PURE; /* Returns the callback data pointer */
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef enum _D3DXPLAYBACK_TYPE
|
typedef enum _D3DXPLAYBACK_TYPE
|
||||||
@ -235,98 +234,98 @@ typedef interface ID3DXKeyframedAnimationSet *LPD3DXKEYFRAMEDANIMATIONSET;
|
|||||||
|
|
||||||
DECLARE_INTERFACE_(ID3DXKeyframedAnimationSet, ID3DXAnimationSet)
|
DECLARE_INTERFACE_(ID3DXKeyframedAnimationSet, ID3DXAnimationSet)
|
||||||
{
|
{
|
||||||
// ID3DXAnimationSet
|
/* ID3DXAnimationSet */
|
||||||
STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE;
|
STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE;
|
||||||
STDMETHOD_(ULONG, AddRef)(THIS) PURE;
|
STDMETHOD_(ULONG, AddRef)(THIS) PURE;
|
||||||
STDMETHOD_(ULONG, Release)(THIS) PURE;
|
STDMETHOD_(ULONG, Release)(THIS) PURE;
|
||||||
|
|
||||||
// Name
|
/* Name */
|
||||||
STDMETHOD_(LPCSTR, GetName)(THIS) PURE;
|
STDMETHOD_(LPCSTR, GetName)(THIS) PURE;
|
||||||
|
|
||||||
// Period
|
/* Period */
|
||||||
STDMETHOD_(DOUBLE, GetPeriod)(THIS) PURE;
|
STDMETHOD_(DOUBLE, GetPeriod)(THIS) PURE;
|
||||||
STDMETHOD_(DOUBLE, GetPeriodicPosition)(THIS_ DOUBLE Position) PURE; // Maps position into animation period
|
STDMETHOD_(DOUBLE, GetPeriodicPosition)(THIS_ DOUBLE Position) PURE; /* Maps position into animation period */
|
||||||
|
|
||||||
// Animation names
|
/* Animation names */
|
||||||
STDMETHOD_(UINT, GetNumAnimations)(THIS) PURE;
|
STDMETHOD_(UINT, GetNumAnimations)(THIS) PURE;
|
||||||
STDMETHOD(GetAnimationNameByIndex)(THIS_ UINT Index, LPCSTR *ppName) PURE;
|
STDMETHOD(GetAnimationNameByIndex)(THIS_ UINT Index, LPCSTR *ppName) PURE;
|
||||||
STDMETHOD(GetAnimationIndexByName)(THIS_ LPCSTR pName, UINT *pIndex) PURE;
|
STDMETHOD(GetAnimationIndexByName)(THIS_ LPCSTR pName, UINT *pIndex) PURE;
|
||||||
|
|
||||||
// SRT
|
/* SRT */
|
||||||
STDMETHOD(GetSRT)(THIS_
|
STDMETHOD(GetSRT)(THIS_
|
||||||
DOUBLE PeriodicPosition, // Position mapped to period (use GetPeriodicPosition)
|
DOUBLE PeriodicPosition, /* Position mapped to period (use GetPeriodicPosition) */
|
||||||
UINT Animation, // Animation index
|
UINT Animation, /* Animation index */
|
||||||
D3DXVECTOR3 *pScale, // Returns the scale
|
D3DXVECTOR3 *pScale, /* Returns the scale */
|
||||||
D3DXQUATERNION *pRotation, // Returns the rotation as a quaternion
|
D3DXQUATERNION *pRotation, /* Returns the rotation as a quaternion */
|
||||||
D3DXVECTOR3 *pTranslation) PURE; // Returns the translation
|
D3DXVECTOR3 *pTranslation) PURE; /* Returns the translation */
|
||||||
|
|
||||||
// Callbacks
|
/* Callbacks */
|
||||||
STDMETHOD(GetCallback)(THIS_
|
STDMETHOD(GetCallback)(THIS_
|
||||||
DOUBLE Position, // Position from which to find callbacks
|
DOUBLE Position, /* Position from which to find callbacks */
|
||||||
DWORD Flags, // Callback search flags
|
DWORD Flags, /* Callback search flags */
|
||||||
DOUBLE *pCallbackPosition, // Returns the position of the callback
|
DOUBLE *pCallbackPosition, /* Returns the position of the callback */
|
||||||
LPVOID *ppCallbackData) PURE; // Returns the callback data pointer
|
LPVOID *ppCallbackData) PURE; /* Returns the callback data pointer */
|
||||||
|
|
||||||
// Playback
|
/* Playback */
|
||||||
STDMETHOD_(D3DXPLAYBACK_TYPE, GetPlaybackType)(THIS) PURE;
|
STDMETHOD_(D3DXPLAYBACK_TYPE, GetPlaybackType)(THIS) PURE;
|
||||||
STDMETHOD_(DOUBLE, GetSourceTicksPerSecond)(THIS) PURE;
|
STDMETHOD_(DOUBLE, GetSourceTicksPerSecond)(THIS) PURE;
|
||||||
|
|
||||||
// Scale keys
|
/* Scale keys */
|
||||||
STDMETHOD_(UINT, GetNumScaleKeys)(THIS_ UINT Animation) PURE;
|
STDMETHOD_(UINT, GetNumScaleKeys)(THIS_ UINT Animation) PURE;
|
||||||
STDMETHOD(GetScaleKeys)(THIS_ UINT Animation, LPD3DXKEY_VECTOR3 pScaleKeys) PURE;
|
STDMETHOD(GetScaleKeys)(THIS_ UINT Animation, LPD3DXKEY_VECTOR3 pScaleKeys) PURE;
|
||||||
STDMETHOD(GetScaleKey)(THIS_ UINT Animation, UINT Key, LPD3DXKEY_VECTOR3 pScaleKey) PURE;
|
STDMETHOD(GetScaleKey)(THIS_ UINT Animation, UINT Key, LPD3DXKEY_VECTOR3 pScaleKey) PURE;
|
||||||
STDMETHOD(SetScaleKey)(THIS_ UINT Animation, UINT Key, LPD3DXKEY_VECTOR3 pScaleKey) PURE;
|
STDMETHOD(SetScaleKey)(THIS_ UINT Animation, UINT Key, LPD3DXKEY_VECTOR3 pScaleKey) PURE;
|
||||||
|
|
||||||
// Rotation keys
|
/* Rotation keys */
|
||||||
STDMETHOD_(UINT, GetNumRotationKeys)(THIS_ UINT Animation) PURE;
|
STDMETHOD_(UINT, GetNumRotationKeys)(THIS_ UINT Animation) PURE;
|
||||||
STDMETHOD(GetRotationKeys)(THIS_ UINT Animation, LPD3DXKEY_QUATERNION pRotationKeys) PURE;
|
STDMETHOD(GetRotationKeys)(THIS_ UINT Animation, LPD3DXKEY_QUATERNION pRotationKeys) PURE;
|
||||||
STDMETHOD(GetRotationKey)(THIS_ UINT Animation, UINT Key, LPD3DXKEY_QUATERNION pRotationKey) PURE;
|
STDMETHOD(GetRotationKey)(THIS_ UINT Animation, UINT Key, LPD3DXKEY_QUATERNION pRotationKey) PURE;
|
||||||
STDMETHOD(SetRotationKey)(THIS_ UINT Animation, UINT Key, LPD3DXKEY_QUATERNION pRotationKey) PURE;
|
STDMETHOD(SetRotationKey)(THIS_ UINT Animation, UINT Key, LPD3DXKEY_QUATERNION pRotationKey) PURE;
|
||||||
|
|
||||||
// Translation keys
|
/* Translation keys */
|
||||||
STDMETHOD_(UINT, GetNumTranslationKeys)(THIS_ UINT Animation) PURE;
|
STDMETHOD_(UINT, GetNumTranslationKeys)(THIS_ UINT Animation) PURE;
|
||||||
STDMETHOD(GetTranslationKeys)(THIS_ UINT Animation, LPD3DXKEY_VECTOR3 pTranslationKeys) PURE;
|
STDMETHOD(GetTranslationKeys)(THIS_ UINT Animation, LPD3DXKEY_VECTOR3 pTranslationKeys) PURE;
|
||||||
STDMETHOD(GetTranslationKey)(THIS_ UINT Animation, UINT Key, LPD3DXKEY_VECTOR3 pTranslationKey) PURE;
|
STDMETHOD(GetTranslationKey)(THIS_ UINT Animation, UINT Key, LPD3DXKEY_VECTOR3 pTranslationKey) PURE;
|
||||||
STDMETHOD(SetTranslationKey)(THIS_ UINT Animation, UINT Key, LPD3DXKEY_VECTOR3 pTranslationKey) PURE;
|
STDMETHOD(SetTranslationKey)(THIS_ UINT Animation, UINT Key, LPD3DXKEY_VECTOR3 pTranslationKey) PURE;
|
||||||
|
|
||||||
// Callback keys
|
/* Callback keys */
|
||||||
STDMETHOD_(UINT, GetNumCallbackKeys)(THIS) PURE;
|
STDMETHOD_(UINT, GetNumCallbackKeys)(THIS) PURE;
|
||||||
STDMETHOD(GetCallbackKeys)(THIS_ LPD3DXKEY_CALLBACK pCallbackKeys) PURE;
|
STDMETHOD(GetCallbackKeys)(THIS_ LPD3DXKEY_CALLBACK pCallbackKeys) PURE;
|
||||||
STDMETHOD(GetCallbackKey)(THIS_ UINT Key, LPD3DXKEY_CALLBACK pCallbackKey) PURE;
|
STDMETHOD(GetCallbackKey)(THIS_ UINT Key, LPD3DXKEY_CALLBACK pCallbackKey) PURE;
|
||||||
STDMETHOD(SetCallbackKey)(THIS_ UINT Key, LPD3DXKEY_CALLBACK pCallbackKey) PURE;
|
STDMETHOD(SetCallbackKey)(THIS_ UINT Key, LPD3DXKEY_CALLBACK pCallbackKey) PURE;
|
||||||
|
|
||||||
// Key removal methods. These are slow, and should not be used once the animation starts playing
|
/* Key removal methods. These are slow, and should not be used once the animation starts playing */
|
||||||
STDMETHOD(UnregisterScaleKey)(THIS_ UINT Animation, UINT Key) PURE;
|
STDMETHOD(UnregisterScaleKey)(THIS_ UINT Animation, UINT Key) PURE;
|
||||||
STDMETHOD(UnregisterRotationKey)(THIS_ UINT Animation, UINT Key) PURE;
|
STDMETHOD(UnregisterRotationKey)(THIS_ UINT Animation, UINT Key) PURE;
|
||||||
STDMETHOD(UnregisterTranslationKey)(THIS_ UINT Animation, UINT Key) PURE;
|
STDMETHOD(UnregisterTranslationKey)(THIS_ UINT Animation, UINT Key) PURE;
|
||||||
|
|
||||||
// One-time animaton SRT keyframe registration
|
/* One-time animaton SRT keyframe registration */
|
||||||
STDMETHOD(RegisterAnimationSRTKeys)(THIS_
|
STDMETHOD(RegisterAnimationSRTKeys)(THIS_
|
||||||
LPCSTR pName, // Animation name
|
LPCSTR pName, /* Animation name */
|
||||||
UINT NumScaleKeys, // Number of scale keys
|
UINT NumScaleKeys, /* Number of scale keys */
|
||||||
UINT NumRotationKeys, // Number of rotation keys
|
UINT NumRotationKeys, /* Number of rotation keys */
|
||||||
UINT NumTranslationKeys, // Number of translation keys
|
UINT NumTranslationKeys, /* Number of translation keys */
|
||||||
CONST D3DXKEY_VECTOR3 *pScaleKeys, // Array of scale keys
|
CONST D3DXKEY_VECTOR3 *pScaleKeys, /* Array of scale keys */
|
||||||
CONST D3DXKEY_QUATERNION *pRotationKeys, // Array of rotation keys
|
CONST D3DXKEY_QUATERNION *pRotationKeys, /* Array of rotation keys */
|
||||||
CONST D3DXKEY_VECTOR3 *pTranslationKeys, // Array of translation keys
|
CONST D3DXKEY_VECTOR3 *pTranslationKeys, /* Array of translation keys */
|
||||||
DWORD *pAnimationIndex) PURE; // Returns the animation index
|
DWORD *pAnimationIndex) PURE; /* Returns the animation index */
|
||||||
|
|
||||||
// Compression
|
/* Compression */
|
||||||
STDMETHOD(Compress)(THIS_
|
STDMETHOD(Compress)(THIS_
|
||||||
DWORD Flags, // Compression flags (use D3DXCOMPRESS_STRONG for better results)
|
DWORD Flags, /* Compression flags (use D3DXCOMPRESS_STRONG for better results) */
|
||||||
FLOAT Lossiness, // Compression loss ratio in the [0, 1] range
|
FLOAT Lossiness, /* Compression loss ratio in the [0, 1] range */
|
||||||
LPD3DXFRAME pHierarchy, // Frame hierarchy (optional)
|
LPD3DXFRAME pHierarchy, /* Frame hierarchy (optional) */
|
||||||
LPD3DXBUFFER *ppCompressedData) PURE; // Returns the compressed animation set
|
LPD3DXBUFFER *ppCompressedData) PURE; /* Returns the compressed animation set */
|
||||||
|
|
||||||
STDMETHOD(UnregisterAnimation)(THIS_ UINT Index) PURE;
|
STDMETHOD(UnregisterAnimation)(THIS_ UINT Index) PURE;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
//----------------------------------------------------------------------------
|
/*
|
||||||
// ID3DXCompressedAnimationSet:
|
* ID3DXCompressedAnimationSet:
|
||||||
// ----------------------------
|
* ----------------------------
|
||||||
// This interface implements a compressed keyframed animation set.
|
* This interface implements a compressed keyframed animation set.
|
||||||
//----------------------------------------------------------------------------
|
*/
|
||||||
typedef interface ID3DXCompressedAnimationSet ID3DXCompressedAnimationSet;
|
typedef interface ID3DXCompressedAnimationSet ID3DXCompressedAnimationSet;
|
||||||
typedef interface ID3DXCompressedAnimationSet *LPD3DXCOMPRESSEDANIMATIONSET;
|
typedef interface ID3DXCompressedAnimationSet *LPD3DXCOMPRESSEDANIMATIONSET;
|
||||||
|
|
||||||
@ -335,54 +334,54 @@ typedef interface ID3DXCompressedAnimationSet *LPD3DXCOMPRESSEDANIMATIONSET;
|
|||||||
|
|
||||||
DECLARE_INTERFACE_(ID3DXCompressedAnimationSet, ID3DXAnimationSet)
|
DECLARE_INTERFACE_(ID3DXCompressedAnimationSet, ID3DXAnimationSet)
|
||||||
{
|
{
|
||||||
// ID3DXAnimationSet
|
/* ID3DXAnimationSet */
|
||||||
STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE;
|
STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE;
|
||||||
STDMETHOD_(ULONG, AddRef)(THIS) PURE;
|
STDMETHOD_(ULONG, AddRef)(THIS) PURE;
|
||||||
STDMETHOD_(ULONG, Release)(THIS) PURE;
|
STDMETHOD_(ULONG, Release)(THIS) PURE;
|
||||||
|
|
||||||
// Name
|
/* Name */
|
||||||
STDMETHOD_(LPCSTR, GetName)(THIS) PURE;
|
STDMETHOD_(LPCSTR, GetName)(THIS) PURE;
|
||||||
|
|
||||||
// Period
|
/* Period */
|
||||||
STDMETHOD_(DOUBLE, GetPeriod)(THIS) PURE;
|
STDMETHOD_(DOUBLE, GetPeriod)(THIS) PURE;
|
||||||
STDMETHOD_(DOUBLE, GetPeriodicPosition)(THIS_ DOUBLE Position) PURE; // Maps position into animation period
|
STDMETHOD_(DOUBLE, GetPeriodicPosition)(THIS_ DOUBLE Position) PURE; /* Maps position into animation period */
|
||||||
|
|
||||||
// Animation names
|
/* Animation names */
|
||||||
STDMETHOD_(UINT, GetNumAnimations)(THIS) PURE;
|
STDMETHOD_(UINT, GetNumAnimations)(THIS) PURE;
|
||||||
STDMETHOD(GetAnimationNameByIndex)(THIS_ UINT Index, LPCSTR *ppName) PURE;
|
STDMETHOD(GetAnimationNameByIndex)(THIS_ UINT Index, LPCSTR *ppName) PURE;
|
||||||
STDMETHOD(GetAnimationIndexByName)(THIS_ LPCSTR pName, UINT *pIndex) PURE;
|
STDMETHOD(GetAnimationIndexByName)(THIS_ LPCSTR pName, UINT *pIndex) PURE;
|
||||||
|
|
||||||
// SRT
|
/* SRT */
|
||||||
STDMETHOD(GetSRT)(THIS_
|
STDMETHOD(GetSRT)(THIS_
|
||||||
DOUBLE PeriodicPosition, // Position mapped to period (use GetPeriodicPosition)
|
DOUBLE PeriodicPosition, /* Position mapped to period (use GetPeriodicPosition) */
|
||||||
UINT Animation, // Animation index
|
UINT Animation, /* Animation index */
|
||||||
D3DXVECTOR3 *pScale, // Returns the scale
|
D3DXVECTOR3 *pScale, /* Returns the scale */
|
||||||
D3DXQUATERNION *pRotation, // Returns the rotation as a quaternion
|
D3DXQUATERNION *pRotation, /* Returns the rotation as a quaternion */
|
||||||
D3DXVECTOR3 *pTranslation) PURE; // Returns the translation
|
D3DXVECTOR3 *pTranslation) PURE; /* Returns the translation */
|
||||||
|
|
||||||
// Callbacks
|
/* Callbacks */
|
||||||
STDMETHOD(GetCallback)(THIS_
|
STDMETHOD(GetCallback)(THIS_
|
||||||
DOUBLE Position, // Position from which to find callbacks
|
DOUBLE Position, /* Position from which to find callbacks */
|
||||||
DWORD Flags, // Callback search flags
|
DWORD Flags, /* Callback search flags */
|
||||||
DOUBLE *pCallbackPosition, // Returns the position of the callback
|
DOUBLE *pCallbackPosition, /* Returns the position of the callback */
|
||||||
LPVOID *ppCallbackData) PURE; // Returns the callback data pointer
|
LPVOID *ppCallbackData) PURE; /* Returns the callback data pointer */
|
||||||
|
|
||||||
// Playback
|
/* Playback */
|
||||||
STDMETHOD_(D3DXPLAYBACK_TYPE, GetPlaybackType)(THIS) PURE;
|
STDMETHOD_(D3DXPLAYBACK_TYPE, GetPlaybackType)(THIS) PURE;
|
||||||
STDMETHOD_(DOUBLE, GetSourceTicksPerSecond)(THIS) PURE;
|
STDMETHOD_(DOUBLE, GetSourceTicksPerSecond)(THIS) PURE;
|
||||||
|
|
||||||
// Scale keys
|
/* Scale keys */
|
||||||
STDMETHOD(GetCompressedData)(THIS_ LPD3DXBUFFER *ppCompressedData) PURE;
|
STDMETHOD(GetCompressedData)(THIS_ LPD3DXBUFFER *ppCompressedData) PURE;
|
||||||
|
|
||||||
// Callback keys
|
/* Callback keys */
|
||||||
STDMETHOD_(UINT, GetNumCallbackKeys)(THIS) PURE;
|
STDMETHOD_(UINT, GetNumCallbackKeys)(THIS) PURE;
|
||||||
STDMETHOD(GetCallbackKeys)(THIS_ LPD3DXKEY_CALLBACK pCallbackKeys) PURE;
|
STDMETHOD(GetCallbackKeys)(THIS_ LPD3DXKEY_CALLBACK pCallbackKeys) PURE;
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef enum _D3DXPRIORITY_TYPE
|
typedef enum _D3DXPRIORITY_TYPE
|
||||||
{
|
{
|
||||||
D3DXPRIORITY_LOW = 0, // This track should be blended with all low priority tracks before mixed with the high priority result
|
D3DXPRIORITY_LOW = 0, /* This track should be blended with all low priority tracks before mixed with the high priority result */
|
||||||
D3DXPRIORITY_HIGH = 1, // This track should be blended with all high priority tracks before mixed with the low priority result
|
D3DXPRIORITY_HIGH = 1, /* This track should be blended with all high priority tracks before mixed with the low priority result */
|
||||||
|
|
||||||
D3DXPRIORITY_FORCE_DWORD = 0x7fffffff, /* force 32-bit size enum */
|
D3DXPRIORITY_FORCE_DWORD = 0x7fffffff, /* force 32-bit size enum */
|
||||||
} D3DXPRIORITY_TYPE;
|
} D3DXPRIORITY_TYPE;
|
||||||
@ -453,18 +452,18 @@ typedef interface ID3DXAnimationController *LPD3DXANIMATIONCONTROLLER;
|
|||||||
|
|
||||||
DECLARE_INTERFACE_(ID3DXAnimationController, IUnknown)
|
DECLARE_INTERFACE_(ID3DXAnimationController, IUnknown)
|
||||||
{
|
{
|
||||||
// IUnknown
|
/* IUnknown */
|
||||||
STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE;
|
STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE;
|
||||||
STDMETHOD_(ULONG, AddRef)(THIS) PURE;
|
STDMETHOD_(ULONG, AddRef)(THIS) PURE;
|
||||||
STDMETHOD_(ULONG, Release)(THIS) PURE;
|
STDMETHOD_(ULONG, Release)(THIS) PURE;
|
||||||
|
|
||||||
// Max sizes
|
/* Max sizes */
|
||||||
STDMETHOD_(UINT, GetMaxNumAnimationOutputs)(THIS) PURE;
|
STDMETHOD_(UINT, GetMaxNumAnimationOutputs)(THIS) PURE;
|
||||||
STDMETHOD_(UINT, GetMaxNumAnimationSets)(THIS) PURE;
|
STDMETHOD_(UINT, GetMaxNumAnimationSets)(THIS) PURE;
|
||||||
STDMETHOD_(UINT, GetMaxNumTracks)(THIS) PURE;
|
STDMETHOD_(UINT, GetMaxNumTracks)(THIS) PURE;
|
||||||
STDMETHOD_(UINT, GetMaxNumEvents)(THIS) PURE;
|
STDMETHOD_(UINT, GetMaxNumEvents)(THIS) PURE;
|
||||||
|
|
||||||
// Animation output registration
|
/* Animation output registration */
|
||||||
STDMETHOD(RegisterAnimationOutput)(THIS_
|
STDMETHOD(RegisterAnimationOutput)(THIS_
|
||||||
LPCSTR pName,
|
LPCSTR pName,
|
||||||
D3DXMATRIX *pMatrix,
|
D3DXMATRIX *pMatrix,
|
||||||
@ -472,7 +471,7 @@ DECLARE_INTERFACE_(ID3DXAnimationController, IUnknown)
|
|||||||
D3DXQUATERNION *pRotation,
|
D3DXQUATERNION *pRotation,
|
||||||
D3DXVECTOR3 *pTranslation) PURE;
|
D3DXVECTOR3 *pTranslation) PURE;
|
||||||
|
|
||||||
// Animation set registration
|
/* Animation set registration */
|
||||||
STDMETHOD(RegisterAnimationSet)(THIS_ LPD3DXANIMATIONSET pAnimSet) PURE;
|
STDMETHOD(RegisterAnimationSet)(THIS_ LPD3DXANIMATIONSET pAnimSet) PURE;
|
||||||
STDMETHOD(UnregisterAnimationSet)(THIS_ LPD3DXANIMATIONSET pAnimSet) PURE;
|
STDMETHOD(UnregisterAnimationSet)(THIS_ LPD3DXANIMATIONSET pAnimSet) PURE;
|
||||||
|
|
||||||
@ -480,12 +479,12 @@ DECLARE_INTERFACE_(ID3DXAnimationController, IUnknown)
|
|||||||
STDMETHOD(GetAnimationSet)(THIS_ UINT Index, LPD3DXANIMATIONSET *ppAnimationSet) PURE;
|
STDMETHOD(GetAnimationSet)(THIS_ UINT Index, LPD3DXANIMATIONSET *ppAnimationSet) PURE;
|
||||||
STDMETHOD(GetAnimationSetByName)(THIS_ LPCSTR szName, LPD3DXANIMATIONSET *ppAnimationSet) PURE;
|
STDMETHOD(GetAnimationSetByName)(THIS_ LPCSTR szName, LPD3DXANIMATIONSET *ppAnimationSet) PURE;
|
||||||
|
|
||||||
// Global time
|
/* Global time */
|
||||||
STDMETHOD(AdvanceTime)(THIS_ DOUBLE TimeDelta, LPD3DXANIMATIONCALLBACKHANDLER pCallbackHandler) PURE;
|
STDMETHOD(AdvanceTime)(THIS_ DOUBLE TimeDelta, LPD3DXANIMATIONCALLBACKHANDLER pCallbackHandler) PURE;
|
||||||
STDMETHOD(ResetTime)(THIS) PURE;
|
STDMETHOD(ResetTime)(THIS) PURE;
|
||||||
STDMETHOD_(DOUBLE, GetTime)(THIS) PURE;
|
STDMETHOD_(DOUBLE, GetTime)(THIS) PURE;
|
||||||
|
|
||||||
// Tracks
|
/* Tracks */
|
||||||
STDMETHOD(SetTrackAnimationSet)(THIS_ UINT Track, LPD3DXANIMATIONSET pAnimSet) PURE;
|
STDMETHOD(SetTrackAnimationSet)(THIS_ UINT Track, LPD3DXANIMATIONSET pAnimSet) PURE;
|
||||||
STDMETHOD(GetTrackAnimationSet)(THIS_ UINT Track, LPD3DXANIMATIONSET *ppAnimSet) PURE;
|
STDMETHOD(GetTrackAnimationSet)(THIS_ UINT Track, LPD3DXANIMATIONSET *ppAnimSet) PURE;
|
||||||
|
|
||||||
@ -499,11 +498,11 @@ DECLARE_INTERFACE_(ID3DXAnimationController, IUnknown)
|
|||||||
STDMETHOD(SetTrackDesc)(THIS_ UINT Track, LPD3DXTRACK_DESC pDesc) PURE;
|
STDMETHOD(SetTrackDesc)(THIS_ UINT Track, LPD3DXTRACK_DESC pDesc) PURE;
|
||||||
STDMETHOD(GetTrackDesc)(THIS_ UINT Track, LPD3DXTRACK_DESC pDesc) PURE;
|
STDMETHOD(GetTrackDesc)(THIS_ UINT Track, LPD3DXTRACK_DESC pDesc) PURE;
|
||||||
|
|
||||||
// Priority blending
|
/* Priority blending */
|
||||||
STDMETHOD(SetPriorityBlend)(THIS_ FLOAT BlendWeight) PURE;
|
STDMETHOD(SetPriorityBlend)(THIS_ FLOAT BlendWeight) PURE;
|
||||||
STDMETHOD_(FLOAT, GetPriorityBlend)(THIS) PURE;
|
STDMETHOD_(FLOAT, GetPriorityBlend)(THIS) PURE;
|
||||||
|
|
||||||
// Event keying
|
/* Event keying */
|
||||||
STDMETHOD_(D3DXEVENTHANDLE, KeyTrackSpeed)(THIS_ UINT Track, FLOAT NewSpeed, DOUBLE StartTime, DOUBLE Duration, D3DXTRANSITION_TYPE Transition) PURE;
|
STDMETHOD_(D3DXEVENTHANDLE, KeyTrackSpeed)(THIS_ UINT Track, FLOAT NewSpeed, DOUBLE StartTime, DOUBLE Duration, D3DXTRANSITION_TYPE Transition) PURE;
|
||||||
STDMETHOD_(D3DXEVENTHANDLE, KeyTrackWeight)(THIS_ UINT Track, FLOAT NewWeight, DOUBLE StartTime, DOUBLE Duration, D3DXTRANSITION_TYPE Transition) PURE;
|
STDMETHOD_(D3DXEVENTHANDLE, KeyTrackWeight)(THIS_ UINT Track, FLOAT NewWeight, DOUBLE StartTime, DOUBLE Duration, D3DXTRANSITION_TYPE Transition) PURE;
|
||||||
STDMETHOD_(D3DXEVENTHANDLE, KeyTrackPosition)(THIS_ UINT Track, DOUBLE NewPosition, DOUBLE StartTime) PURE;
|
STDMETHOD_(D3DXEVENTHANDLE, KeyTrackPosition)(THIS_ UINT Track, DOUBLE NewPosition, DOUBLE StartTime) PURE;
|
||||||
@ -511,13 +510,13 @@ DECLARE_INTERFACE_(ID3DXAnimationController, IUnknown)
|
|||||||
|
|
||||||
STDMETHOD_(D3DXEVENTHANDLE, KeyPriorityBlend)(THIS_ FLOAT NewBlendWeight, DOUBLE StartTime, DOUBLE Duration, D3DXTRANSITION_TYPE Transition) PURE;
|
STDMETHOD_(D3DXEVENTHANDLE, KeyPriorityBlend)(THIS_ FLOAT NewBlendWeight, DOUBLE StartTime, DOUBLE Duration, D3DXTRANSITION_TYPE Transition) PURE;
|
||||||
|
|
||||||
// Event unkeying
|
/* Event unkeying */
|
||||||
STDMETHOD(UnkeyEvent)(THIS_ D3DXEVENTHANDLE hEvent) PURE;
|
STDMETHOD(UnkeyEvent)(THIS_ D3DXEVENTHANDLE hEvent) PURE;
|
||||||
|
|
||||||
STDMETHOD(UnkeyAllTrackEvents)(THIS_ UINT Track) PURE;
|
STDMETHOD(UnkeyAllTrackEvents)(THIS_ UINT Track) PURE;
|
||||||
STDMETHOD(UnkeyAllPriorityBlends)(THIS) PURE;
|
STDMETHOD(UnkeyAllPriorityBlends)(THIS) PURE;
|
||||||
|
|
||||||
// Event enumeration
|
/* Event enumeration */
|
||||||
STDMETHOD_(D3DXEVENTHANDLE, GetCurrentTrackEvent)(THIS_ UINT Track, D3DXEVENT_TYPE EventType) PURE;
|
STDMETHOD_(D3DXEVENTHANDLE, GetCurrentTrackEvent)(THIS_ UINT Track, D3DXEVENT_TYPE EventType) PURE;
|
||||||
STDMETHOD_(D3DXEVENTHANDLE, GetCurrentPriorityBlend)(THIS) PURE;
|
STDMETHOD_(D3DXEVENTHANDLE, GetCurrentPriorityBlend)(THIS) PURE;
|
||||||
|
|
||||||
@ -528,7 +527,7 @@ DECLARE_INTERFACE_(ID3DXAnimationController, IUnknown)
|
|||||||
|
|
||||||
STDMETHOD(GetEventDesc)(THIS_ D3DXEVENTHANDLE hEvent, LPD3DXEVENT_DESC pDesc) PURE;
|
STDMETHOD(GetEventDesc)(THIS_ D3DXEVENTHANDLE hEvent, LPD3DXEVENT_DESC pDesc) PURE;
|
||||||
|
|
||||||
// Cloning
|
/* Cloning */
|
||||||
STDMETHOD(CloneAnimationController)(THIS_
|
STDMETHOD(CloneAnimationController)(THIS_
|
||||||
UINT MaxNumAnimationOutputs,
|
UINT MaxNumAnimationOutputs,
|
||||||
UINT MaxNumAnimationSets,
|
UINT MaxNumAnimationSets,
|
||||||
@ -539,7 +538,7 @@ DECLARE_INTERFACE_(ID3DXAnimationController, IUnknown)
|
|||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif //__cplusplus
|
#endif /* __cplusplus */
|
||||||
|
|
||||||
HRESULT WINAPI
|
HRESULT WINAPI
|
||||||
D3DXLoadMeshHierarchyFromXA
|
D3DXLoadMeshHierarchyFromXA
|
||||||
@ -638,38 +637,38 @@ D3DXFrameRegisterNamedMatrices
|
|||||||
LPD3DXANIMATIONCONTROLLER pAnimController
|
LPD3DXANIMATIONCONTROLLER pAnimController
|
||||||
);
|
);
|
||||||
|
|
||||||
//----------------------------------------------------------------------------
|
/*
|
||||||
// D3DXFrameNumNamedMatrices:
|
* D3DXFrameNumNamedMatrices:
|
||||||
// --------------------------
|
* --------------------------
|
||||||
// Counts number of frames in a subtree that have non-null names
|
* Counts number of frames in a subtree that have non-null names
|
||||||
//
|
*
|
||||||
// Parameters:
|
* Parameters:
|
||||||
// pFrameRoot
|
* pFrameRoot
|
||||||
// Pointer to the root node of the subtree
|
* Pointer to the root node of the subtree
|
||||||
// Return Value:
|
* Return Value:
|
||||||
// Count of frames
|
* Count of frames
|
||||||
//
|
*
|
||||||
//----------------------------------------------------------------------------
|
*/
|
||||||
UINT WINAPI
|
UINT WINAPI
|
||||||
D3DXFrameNumNamedMatrices
|
D3DXFrameNumNamedMatrices
|
||||||
(
|
(
|
||||||
CONST D3DXFRAME *pFrameRoot
|
CONST D3DXFRAME *pFrameRoot
|
||||||
);
|
);
|
||||||
|
|
||||||
//----------------------------------------------------------------------------
|
/*
|
||||||
// D3DXFrameCalculateBoundingSphere:
|
* D3DXFrameCalculateBoundingSphere:
|
||||||
// ---------------------------------
|
* ---------------------------------
|
||||||
// Computes the bounding sphere of all the meshes in the frame hierarchy.
|
* Computes the bounding sphere of all the meshes in the frame hierarchy.
|
||||||
//
|
*
|
||||||
// Parameters:
|
* Parameters:
|
||||||
// pFrameRoot
|
* pFrameRoot
|
||||||
// Pointer to the root node
|
* Pointer to the root node
|
||||||
// pObjectCenter
|
* pObjectCenter
|
||||||
// Returns the center of the bounding sphere
|
* Returns the center of the bounding sphere
|
||||||
// pObjectRadius
|
* pObjectRadius
|
||||||
// Returns the radius of the bounding sphere
|
* Returns the radius of the bounding sphere
|
||||||
//
|
*
|
||||||
//----------------------------------------------------------------------------
|
*/
|
||||||
HRESULT WINAPI
|
HRESULT WINAPI
|
||||||
D3DXFrameCalculateBoundingSphere
|
D3DXFrameCalculateBoundingSphere
|
||||||
(
|
(
|
||||||
@ -679,28 +678,29 @@ D3DXFrameCalculateBoundingSphere
|
|||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
//----------------------------------------------------------------------------
|
/*
|
||||||
// D3DXCreateKeyframedAnimationSet:
|
* D3DXCreateKeyframedAnimationSet:
|
||||||
// --------------------------------
|
* --------------------------------
|
||||||
// This function creates a compressable keyframed animations set interface.
|
* This function creates a compressable keyframed animations set interface.
|
||||||
//
|
*
|
||||||
// Parameters:
|
* Parameters:
|
||||||
// pName
|
* pName
|
||||||
// Name of the animation set
|
* Name of the animation set
|
||||||
// TicksPerSecond
|
* TicksPerSecond
|
||||||
// Number of keyframe ticks that elapse per second
|
* Number of keyframe ticks that elapse per second
|
||||||
// Playback
|
* Playback
|
||||||
// Playback mode of keyframe looping
|
* Playback mode of keyframe looping
|
||||||
// NumAnimations
|
* NumAnimations
|
||||||
// Number of SRT animations
|
* Number of SRT animations
|
||||||
// NumCallbackKeys
|
* NumCallbackKeys
|
||||||
// Number of callback keys
|
* Number of callback keys
|
||||||
// pCallbackKeys
|
* pCallbackKeys
|
||||||
// Array of callback keys
|
* Array of callback keys
|
||||||
// ppAnimationSet
|
* ppAnimationSet
|
||||||
// Returns the animation set interface
|
* Returns the animation set interface
|
||||||
//
|
*
|
||||||
//-----------------------------------------------------------------------------
|
*/
|
||||||
|
|
||||||
HRESULT WINAPI
|
HRESULT WINAPI
|
||||||
D3DXCreateKeyframedAnimationSet
|
D3DXCreateKeyframedAnimationSet
|
||||||
(
|
(
|
||||||
@ -714,29 +714,30 @@ D3DXCreateKeyframedAnimationSet
|
|||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
//----------------------------------------------------------------------------
|
/*
|
||||||
// D3DXCreateCompressedAnimationSet:
|
* D3DXCreateCompressedAnimationSet:
|
||||||
// --------------------------------
|
* --------------------------------
|
||||||
// This function creates a compressed animations set interface from
|
* This function creates a compressed animations set interface from
|
||||||
// compressed data.
|
* compressed data.
|
||||||
//
|
*
|
||||||
// Parameters:
|
* Parameters:
|
||||||
// pName
|
* pName
|
||||||
// Name of the animation set
|
* Name of the animation set
|
||||||
// TicksPerSecond
|
* TicksPerSecond
|
||||||
// Number of keyframe ticks that elapse per second
|
* Number of keyframe ticks that elapse per second
|
||||||
// Playback
|
* Playback
|
||||||
// Playback mode of keyframe looping
|
* Playback mode of keyframe looping
|
||||||
// pCompressedData
|
* pCompressedData
|
||||||
// Compressed animation SRT data
|
* Compressed animation SRT data
|
||||||
// NumCallbackKeys
|
* NumCallbackKeys
|
||||||
// Number of callback keys
|
* Number of callback keys
|
||||||
// pCallbackKeys
|
* pCallbackKeys
|
||||||
// Array of callback keys
|
* Array of callback keys
|
||||||
// ppAnimationSet
|
* ppAnimationSet
|
||||||
// Returns the animation set interface
|
* Returns the animation set interface
|
||||||
//
|
*
|
||||||
//-----------------------------------------------------------------------------
|
*/
|
||||||
|
|
||||||
HRESULT WINAPI
|
HRESULT WINAPI
|
||||||
D3DXCreateCompressedAnimationSet
|
D3DXCreateCompressedAnimationSet
|
||||||
(
|
(
|
||||||
@ -762,6 +763,6 @@ D3DXCreateAnimationController
|
|||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif //__cplusplus
|
#endif /*__cplusplus */
|
||||||
|
|
||||||
#endif //__D3DX9ANIM_H__
|
#endif /*__D3DX9ANIM_H__ */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user